.alertify, .alertify-show, .alertify-log {
	-webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
	transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeOutBack */
}
.alertify-hide {
	-webkit-transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
	transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045); /* easeInBack */
}
.alertify-log-hide {
	-webkit-transition: all 500ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
	transition: all 500ms cubic-bezier(0.600, -0.280, 0.735, 0.045); /* easeInBack */
}
.alertify-cover {
	position: fixed;
	z-index: 8000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	opacity: 0.7;
}
.alertify-cover-hidden {
	display: none;
}
.alertify {
	position: fixed;
	z-index: 9000;
	top: 200px; /* orig: 250px */
	left: 40%;
	width: 400px;
	opacity: 1;
}
.alertify-hidden {
	-webkit-transform: translate(0, -150px);
	transform: translate(0, -150px);
	opacity: 0;
	display: none;
}
/* overwrite display: none; for everything except IE6-8 */
:root *> .alertify-hidden {
	display: block;
	visibility: hidden;
}
.alertify-logs {
	position: fixed;
	z-index: 10000;
	bottom: 10px;
	right: 10px;
	width: 300px;
}
.alertify-logs-hidden {
	display: none;
}
.alertify-log {
	display: block;
	margin-top: 10px;
	position: relative;
	right: -300px;
	opacity: 0;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-ms-word-break: break-all;
	word-break: break-word;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}
.alertify-log-show {
	right: 0;
	opacity: 1;
}
.alertify-log-hide {
	-webkit-transform: translate(300px, 0);
	transform: translate(300px, 0);
	opacity: 0;
}
.alertify-dialog {
	padding: 15px;
}
.alertify-resetFocus {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.alertify-inner {
	text-align: center;
}
.alertify-text {
	margin-top: 10px;
	margin-bottom: 5px;
	width: 100%;
	box-sizing: border-box;
	font-size: 100%;
}
.alertify-text-area {
  height: 150px;
	resize: vertical;
}
.alertify-button, .alertify-button:hover, .alertify-button:active, .alertify-button:visited {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 0.688rem;
	display: inline-block;
	cursor: pointer;
	margin-bottom: 10px;
}
 @media only screen and (max-width: 680px) {
	.alertify, .alertify-logs {
		width: 90%;
		box-sizing: border-box;
	}
	.alertify {
		left: 5%;
		margin: 0;
	}
}
.alertify, .alertify-log {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 0.875rem;
}

.alertify p, .alertify-log p,  article.alertify-log p {
    font-size: 0.750rem;
    line-height: 1.0rem;
    color: #ffffff;
    padding-bottom: 15px;
}

p.alertify-message {
	color: #424242;
}

article.alertify-log p {
  margin-top: 10px;
}

.alertify {
	background: #fff;
	border-style: solid;
	border-width: 2px;
	border-color: #008a00;
	border-radius: 6px;
	background-clip: padding-box;
	box-shadow: 0 5px 8px 0 rgba(0,0,0,0.7);
}
.alertify-text {
	border: 1px solid #ccc;
	padding: 6px;
	box-shadow: 0 0 4px #d5d5d5;
}
.alertify-button {
	float: none!important;
	height: auto;
	text-transform: uppercase;
	border-radius: 4px;
	color: #008a00;
  padding: 6px;
	text-decoration: none;
	text-shadow: 0px 1px 0 #fff;
	box-shadow: inset 0 1px 0 0 rgba(255,255,255,.5);
  background-color: #e5e5e5;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fff), color-stop(1, #c5c5c5));
	background: -webkit-linear-gradient(top, #fff 5%, #c5c5c5 100%);
	background: linear-gradient(to bottom, #fff 5%, #c5c5c5 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#d5d5d5',GradientType=0)";
}
.alertify-button:hover, .alertify-button:focus {
	outline: none;
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,.1), rgba(0,0,0,0));
	background-image: -webkit-linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,0));
	background-image: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,0));
}
.alertify-button:focus {
	box-shadow: 0 1px 2px 0 #a5a5a5;
}
.alertify-button:active {
	position: relative;
	box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.alertify-button-cancel {
	margin-right: 10px;
	border: 1px solid #917a7a;
	color: #8a0000;
}
.alertify-button-cancel:hover, .alertify-button-cancel:focus {
	border: 1px solid #917a7a;
	color: #fff;
	background: #d30000!important;
	text-shadow: none;
}
.alertify-button-ok {
	color: #008a00;
	border: 1px solid #999;
	margin-right: 5px;
}
.alertify-button-ok:hover, .alertify-button-ok:focus {
	color: #fff;
	border: 1px solid #999;
	background: #008a00;
	text-shadow: none;
}
.alertify-button-ok:active, .alertify-button-cancel:active {
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5) inset, 0 1px 0 0 rgba(255, 255, 255, 0.1) inset;
	color: #ddd;
}
.alertify-log {
	background: #2b9da7;
  background: -webkit-linear-gradient(top,  #2b9da7 0%,#399cab 3%,#3199a7 19%,#17989f 47%,#0c979c 53%,#008f94 78%,#008990 100%);
  background: linear-gradient(to bottom,  #2b9da7 0%,#399cab 3%,#3199a7 19%,#17989f 47%,#0c979c 53%,#008f94 78%,#008990 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b9da7', endColorstr='#008990',GradientType=0 )";
	padding: 12px;
	border-radius: 4px;
	color: #fff;
	text-shadow: -1px -1px 0 rgba(0,0,0,.5);
}
.alertify-log-error {
	background: #9d3d3a;
	background: -webkit-linear-gradient(top,  #9d3d3a 0%,#9f4445 3%,#9d3e3f 19%,#922727 53%,#8b1b14 75%,#861305 100%);
	background: linear-gradient(to bottom,  #9d3d3a 0%,#9f4445 3%,#9d3e3f 19%,#922727 53%,#8b1b14 75%,#861305 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d3d3a', endColorstr='#861305',GradientType=0 )";
}

.alertify-log-warning {
	background: #ff4e33;
}

.alertify-log-success {
	background: #48a72b;
	background: -webkit-linear-gradient(top,  #48a72b 0%,#4daa39 3%,#48a731 19%,#3a9e17 47%,#369c0c 53%,#359b01 56%,#2b9400 78%,#279000 100%);
	background: linear-gradient(to bottom,  #48a72b 0%,#4daa39 3%,#48a731 19%,#3a9e17 47%,#369c0c 53%,#359b01 56%,#2b9400 78%,#279000 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#48a72b', endColorstr='#279000',GradientType=0 )";
}