/**
 * AlertifyJS 1.13.1 – Default Theme (Formatted)
 * http://alertifyjs.com
 * Licensed under GPL 3
 */

/* =========================
   Dialog
========================= */
.alertify .ajs-dialog {
	background-color: #fff;
	box-shadow: 0 15px 20px rgba(0, 0, 0, 0.25);
	border-radius: 2px;
}

/* =========================
   Header
========================= */
.alertify .ajs-header {
	background: #fafafa;
	color: #000;
	font-weight: 700;
	border-bottom: 1px solid #eee;
	border-radius: 2px 2px 0 0;
}

/* =========================
   Body
========================= */
.alertify .ajs-body {
	color: #000;
}

.alertify .ajs-body .ajs-content p {
	margin: 0;
}

.alertify .ajs-body .ajs-content .ajs-input {
	display: block;
	width: 100%;
	padding: 8px;
	margin: 4px 0;
	border: 1px solid #ccc;
	border-radius: 2px;
}

/* =========================
   Footer
========================= */
.alertify .ajs-footer {
	background: #fbfbfb;
	border-top: 1px solid #eee;
	border-radius: 0 0 2px 2px;
}

/* =========================
   Buttons
========================= */
.alertify .ajs-footer .ajs-buttons .ajs-button {
	background-color: transparent;
	border: 0;
	color: #000;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}

.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
	color: #3593d2;
}

/* =========================
   Notifier (Toast)
========================= */
.alertify-notifier .ajs-message {
	background: rgba(255, 255, 255, 0.95);
	color: #000;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 2px;
}

/* =========================
   Toast Variants
========================= */
.alertify-notifier .ajs-message.ajs-success {
	background: rgba(91, 189, 114, 0.95);
	color: #fff;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.alertify-notifier .ajs-message.ajs-error {
	background: rgba(217, 92, 92, 0.95);
	color: #fff;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.alertify-notifier .ajs-message.ajs-warning {
	background: rgba(252, 248, 215, 0.95);
	border-color: #999;
}