/**
 * Default Look and Feel
 */
.alertify,
.alertify-log {
    font-family: 'Lora', serif;
}
.alertify {
    background-color: #f0ede7;
    border-radius: 0px;
	box-shadow: 0 0 6px #00000033;
}
.alertify-text {
	color: #000;
	border: 1px solid #147e3a;
	padding: 10px;
	border-radius: 4px;
}
.alertify-button {
    background: linear-gradient(180deg, #147e14 0%, #147e3a 100%);
    border-radius: 0px;
    color: #f0f0f0;
    cursor: pointer;   
    font-family: 'Lora', serif;
    font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	padding: 8px 20px;
}
.alertify-button:hover{
    color: #ffffff;
}

.alertify-log {
	background: #1F1F1F;
	background: rgba(0,0,0,.9);
	padding: 15px;
	border-radius: 4px;
	color: #FFF;
	text-shadow: -1px -1px 0 rgba(0,0,0,.5);
}
	.alertify-log-error {
		background: #FE1A00;
		background: rgba(254,26,0,.9);
	}
	.alertify-log-success {
		background: #5CB811;
		background: rgba(92,184,17,.9);
	}