/**
 * Twitter Bootstrap Look and Feel
 * Based on http://twitter.github.com/bootstrap/
 */

.alertify {
	background: #FFFFFF;
	border: thin solid rgba(0,0,0,.25);
    box-shadow: 5px 5px 15px rgba(0,0,0,.5);
}
.alertify-dialog {
	padding: 0;
}
.alertify-inner {
	text-align: left;
}
.alertify-message {
	padding: 15px;
	margin: 0;
}
.alertify-text-wrapper {
	padding: 0 15px;
}
.alertify-text {
	border-radius: 4px;
	padding: 8px;
	background-color: #FFF;
	border: 1px solid #CCC;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
.alertify-text:focus {
	border-color: rgba(82,168,236,.8);
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
}

.alertify-buttons {
	padding: 14px 15px 15px;
	border-radius: 0 0 6px 6px;
	text-align: right;
}
.alertify-button,
.alertify-button:hover,
.alertify-button:focus,
.alertify-button:active {
	margin-left: 10px;
	border-radius: 4px;
	font-weight: normal;
	padding: 4px 12px;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
	background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
	background-image:    -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
	background-image:     -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
	background-image:      -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
	background-image:         linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
}
.alertify-button:focus {
	outline: none;
	box-shadow: none;
}
.alertify-button:active {
	position: relative;
	box-shadow: none;
}
.alertify-button-cancel,
.alertify-button-cancel:hover,
.alertify-button-cancel:focus,
.alertify-button-cancel:active {
	font-family: helvetica;
	font-weight: bold;
    color: rgb(14,113,185) !important;
    font-size: 13px;
    padding: 8px 16px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: none;
    background: white;
	cursor: pointer;
	display: inline-block;
	text-decoration: none !important;
	line-height: initial;
	margin: 2px;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
.alertify-button-cancel:hover {
	background: rgba(14,113,185,.1);
}
.alertify-button-ok,
.alertify-button-ok:hover,
.alertify-button-ok:focus,
.alertify-button-ok:active {
	font-family: helvetica;
	font-weight: bold;
    color: #FFFFFF !important;
    font-size: 13px;
    padding: 8px 16px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: none;
    background: rgb(14,113,185);
	cursor: pointer;
	display: inline-block;
	text-decoration: none !important;
	line-height: initial;
	margin: 2px;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
.alertify-button-ok:hover {
	background: rgba(14,113,185,.8);
}

.alertify-log {
	background: #D9EDF7;
	padding: 8px 14px;
	border-radius: 4px;
	color: #3A8ABF;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
	border: 1px solid #BCE8F1;
}
.alertify-log-error {
	color: #B94A48;
	background: #F2DEDE;
	border: 1px solid #EED3D7;
}
.alertify-log-success {
	color: #468847;
	background: #DFF0D8;
	border: 1px solid #D6E9C6;
}



.alertify-cover {
	background: black;
	opacity: .4;
}