.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-container p {
	margin: 0;
}

.modal-header{
	padding: 15px;
	background: #0d99d9;
	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: #0d99d9;
	color: #fff;
}

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

.modal-enter {
	opacity: 0;
}

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

.js-alert {
	color: #860000;
	border-radius: 5px;
	background-color: #ff7b7b;
	font-size: 1.3rem;
	opacity: 0;
	animation: fadeOut 4s ease forwards;
	transform: translateY(-5px);
	position: absolute;
	top: 100px;
	left: -5%;
	text-align: center;
	padding: 15px 50px;
	width: 110%;
}

@keyframes fadeOut {
	0%{ transform: translateY(-10px); opacity: 0; }
	50%{ transform: translateY(0px); opacity: 1; }
	70%{ transform: translateY(0px); opacity: 1; }
	100%{ transform: translateY(10px); opacity: 0; visibility: hidden; }
}

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

[v-cloak] {
	display: none;
}

.grecaptcha-badge {
	display: none;
}