.modal-mask {
	position: fixed;
	z-index: 9998;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	display: table;
	transition: opacity .3s ease-out;
}

.modal-wrapper {
	display: table-cell;
	vertical-align: middle;
}

.modal-container {
	width: 70%;
	margin: 0px auto;
	background-color: #fff;
	box-shadow: 0 5px 8px rgba(0, 0, 0, 0.59);
	transition: all .3s ease;
	font-family: Helvetica, Arial, sans-serif;
	max-width: 500px;
}

.modal-header{
	padding: 15px;
	background: #b89328;
	color: #fff;
	text-align: center;
	font-size: 1.5rem;
}

.modal-footer {
	padding: 0 0 15px;
	text-align: center;
}

.modal-body {
	padding: 15px;
	text-align: center;
}

.modal-button {
	padding: 5px 15px;
	margin-right: 5px;
}

.modal-button:hover{
	opacity: .75;
}

.modal-success-button {
	background-color: #b89328;
	color: #fff;
}

.modal-secondary-button {
	background-color: #717171;
	color: #fff;
}

.modal-enter {
	opacity: 0;
}

.modal-leave-active {
	opacity: 0;
}

.error-message {
	display: block;
	color: #ff0000;
}

.js-alert {
	opacity: 0; 
	animation: fadeOut 3s ease forwards; 
	transform: translateY(-5px);
	position: absolute;
	top: 30px;
	text-align: center;
	background: #74cac2;
	padding: 15px 50px;
	color: #02695f;
	border-radius: 5px;
	left: -20px;
	width: 110%;
	font-size: 1rem;
}

.grecaptcha-badge {
	display: none;
}

[v-cloak] {
	display: none;
}

@keyframes fadeOut {
	20%{ transform: translateY(0px); opacity: 1; }
	70%{ transform: translateY(0px); opacity: 1; }
	100%{ transform: translateY(10px); opacity: 0; }
}

@media ( max-width:576px ){
	.modal-container {
		width: 90%;
	}

	.modal-button {
		width: 70%;
		margin: 5px;
	}

	.js-alert {
		top: 0px;
		left: -10px;
		width: 106%;
	}

}