@charset "UTF-8";
.alertify .ajs-modal,
.alertify .ajs-dimmer {
	z-index: 10000;
}
.alertify .ajs-dialog {
	position: relative;
	margin: 48% auto 0;
	min-height: 110px;
	max-width: 450px;
	padding: 1em;
	outline: 0;
	background-color: #FFF;
	border-radius: 3px;
}
@media screen and (min-width: 900px) {
	.alertify .ajs-dialog {
		margin: 20% auto 0;
	}
}
@media screen and (max-width: 568px) {
	.alertify .ajs-dialog {
		min-width: 150px;
	}
}
.alertify.ajs-closable .ajs-commands button.ajs-close {
	display: none;
}
.alertify .ajs-header {
	margin: 0;
	padding: 4.5% 0;
	border-radius: 5px;
	color: #FFF;
	background: #F4D12D;
	font-size: 124%;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}
.alertify .ajs-header img {
	width: 65%;
	max-width: 355px;
	margin: 0 auto;
}
.alertify .ajs-body {
	min-height: 0;
}
.alertify .ajs-body .ajs-content {
	text-align: left;
	padding: 6%;
	color: #666;
	font-size: 112%;
	line-height: 1.4;
}
.alertify .ajs-body .ajs-content em {
	color: #FF5353;
	font-weight: bold;
}
.alertify .ajs-footer {
	padding: 0;
	margin: 0;
}
.alertify .ajs-footer .ajs-buttons.ajs-primary {
	text-align: center;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
	margin: 0 auto;
	padding: 3% 0;
	border: 0;
	border-radius: 5px;
	width: 50%;
	display: block;
	box-sizing: border-box;
	background-color: #618fc9;
	color: #fff;
	font-size: 126%;
	font-weight: 700;
	text-transform: uppercase;
	outline: 0;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok:hover {
	opacity: 0.8;
}
@-moz-document url-prefix() {
	.alertify button:focus {
		outline: 1px dotted #3593D2;
	}
}
.alertify .ajs-dimmer,
.alertify .ajs-modal {
-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
-webkit-transition-property: opacity, visibility;
		transition-property: opacity, visibility;
-webkit-transition-timing-function: linear;
		transition-timing-function: linear;
/*-webkit-transition-duration: 250ms;
		transition-duration: 250ms;*/
-webkit-transition-duration: 125ms;
		transition-duration: 125ms;
}
.alertify.ajs-hidden .ajs-dimmer,
.alertify.ajs-hidden .ajs-modal {
	visibility: hidden;
	opacity: 0;
}
.alertify.ajs-in:not(.ajs-hidden) .ajs-dialog {
	/*-webkit-animation-duration: 500ms;
		animation-duration: 500ms;*/
	-webkit-animation-duration: 125ms;
			animation-duration: 125ms;
}
.alertify.ajs-out.ajs-hidden .ajs-dialog {
/*-webkit-animation-duration: 250ms;
		animation-duration: 250ms;*/
-webkit-animation-duration: 125ms;
		animation-duration: 125ms;
}
.alertify .ajs-dialog.ajs-shake {
	-webkit-animation-name: ajs-shake;
			animation-name: ajs-shake;
	-webkit-animation-duration: .1s;
			animation-duration: .1s;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}
@-webkit-keyframes ajs-shake {
	0%,
	100% {
		-webkit-transform: translate3d(0, 0, 0);
				transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
				transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
				transform: translate3d(10px, 0, 0);
	}
}
@keyframes ajs-shake {
	0%,
	100% {
		-webkit-transform: translate3d(0, 0, 0);
				transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
				transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
				transform: translate3d(10px, 0, 0);
	}
}
.alertify.ajs-slide.ajs-in:not(.ajs-hidden) .ajs-dialog {
	-webkit-animation-name: ajs-slideIn;
			animation-name: ajs-slideIn;
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
			animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.alertify.ajs-slide.ajs-out.ajs-hidden .ajs-dialog {
	-webkit-animation-name: ajs-slideOut;
			animation-name: ajs-slideOut;
	-webkit-animation-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
			animation-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.alertify.ajs-zoom.ajs-in:not(.ajs-hidden) .ajs-dialog {
	-webkit-animation-name: ajs-zoomIn;
			animation-name: ajs-zoomIn;
}
.alertify.ajs-zoom.ajs-out.ajs-hidden .ajs-dialog {
	-webkit-animation-name: ajs-zoomOut;
			animation-name: ajs-zoomOut;
}
.alertify.ajs-fade.ajs-in:not(.ajs-hidden) .ajs-dialog {
	-webkit-animation-name: ajs-fadeIn;
			animation-name: ajs-fadeIn;
}
.alertify.ajs-fade.ajs-out.ajs-hidden .ajs-dialog {
	-webkit-animation-name: ajs-fadeOut;
			animation-name: ajs-fadeOut;
}
.alertify.ajs-pulse.ajs-in:not(.ajs-hidden) .ajs-dialog {
	-webkit-animation-name: ajs-pulseIn;
			animation-name: ajs-pulseIn;
}
.alertify.ajs-pulse.ajs-out.ajs-hidden .ajs-dialog {
	-webkit-animation-name: ajs-pulseOut;
			animation-name: ajs-pulseOut;
}
.alertify.ajs-flipx.ajs-in:not(.ajs-hidden) .ajs-dialog {
	-webkit-animation-name: ajs-flipInX;
			animation-name: ajs-flipInX;
}
.alertify.ajs-flipx.ajs-out.ajs-hidden .ajs-dialog {
	-webkit-animation-name: ajs-flipOutX;
			animation-name: ajs-flipOutX;
}
.alertify.ajs-flipy.ajs-in:not(.ajs-hidden) .ajs-dialog {
	-webkit-animation-name: ajs-flipInY;
			animation-name: ajs-flipInY;
}
.alertify.ajs-flipy.ajs-out.ajs-hidden .ajs-dialog {
	-webkit-animation-name: ajs-flipOutY;
			animation-name: ajs-flipOutY;
}
@-webkit-keyframes ajs-pulseIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
				transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
				transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
				transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
				transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
				transform: scale3d(0.97, 0.97, 0.97);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
				transform: scale3d(1, 1, 1);
	}
}
@keyframes ajs-pulseIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
				transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
				transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
				transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
				transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
				transform: scale3d(0.97, 0.97, 0.97);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
				transform: scale3d(1, 1, 1);
	}
}
@-webkit-keyframes ajs-pulseOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
				transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
				transform: scale3d(1.1, 1.1, 1.1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}
}
@keyframes ajs-pulseOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
				transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
				transform: scale3d(1.1, 1.1, 1.1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}
}
@-webkit-keyframes ajs-zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.25, 0.25, 0.25);
				transform: scale3d(0.25, 0.25, 0.25);
	}
	100% {
	opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
				transform: scale3d(1, 1, 1);
	}
}
@keyframes ajs-zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.25, 0.25, 0.25);
				transform: scale3d(0.25, 0.25, 0.25);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
				transform: scale3d(1, 1, 1);
	}
}
@-webkit-keyframes ajs-zoomOut {
	0% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
				transform: scale3d(1, 1, 1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.25, 0.25, 0.25);
				transform: scale3d(0.25, 0.25, 0.25);
	}
}
@keyframes ajs-zoomOut {
	0% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
				transform: scale3d(1, 1, 1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(0.25, 0.25, 0.25);
				transform: scale3d(0.25, 0.25, 0.25);
	}
}
@-webkit-keyframes ajs-fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes ajs-fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes ajs-fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes ajs-fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@-webkit-keyframes ajs-flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
				transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
				transition-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
				transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
				transition-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
				transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
				transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	100% {
		-webkit-transform: perspective(400px);
				transform: perspective(400px);
	}
}
@keyframes ajs-flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
				transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
				transition-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
				transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
				transition-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
				transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
				transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	100% {
		-webkit-transform: perspective(400px);
				transform: perspective(400px);
	}
}
@-webkit-keyframes ajs-flipOutX {
	0% {
		-webkit-transform: perspective(400px);
				transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
				transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
				transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}
@keyframes ajs-flipOutX {
	0% {
		-webkit-transform: perspective(400px);
				transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
				transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
				transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}
@-webkit-keyframes ajs-flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
				transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
				transition-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
				transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
				transition-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
				transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
				transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	100% {
		-webkit-transform: perspective(400px);
				transform: perspective(400px);
	}
}
@keyframes ajs-flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
				transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
				transition-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
				transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
				transition-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
				transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
				transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	100% {
		-webkit-transform: perspective(400px);
				transform: perspective(400px);
	}
}
@-webkit-keyframes ajs-flipOutY {
	0% {
		-webkit-transform: perspective(400px);
				transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
				transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
				transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}
@keyframes ajs-flipOutY {
	0% {
		-webkit-transform: perspective(400px);
				transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
				transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
				transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}
@-webkit-keyframes ajs-slideIn {
	0% {
		margin-top: -100%;
	}
	100% {
		margin-top: 5%;
	}
}
@keyframes ajs-slideIn {
	0% {
		margin-top: -100%;
	}
	100% {
		margin-top: 5%;
	}
}
@-webkit-keyframes ajs-slideOut {
	0% {
		margin-top: 5%;
	}
	100% {
		margin-top: -100%;
	}
}
@keyframes ajs-slideOut {
	0% {
		margin-top: 5%;
	}
	100% {
		margin-top: -100%;
	}
}

@media screen and (min-width:751px) {
	.alertify .ajs-body .ajs-content {
		padding: 20px;
	}
}