﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');
 
 
.alertify,
.alertify-log {
	font-family: 'Inter', arial;
	font-size:14px;
	line-height:20px;
}
.alertify {
	background: #ffffff;
	padding:10px;
	padding-left:60px;
	border-radius: 12px;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
	background-image: url('../../../commonfiles/images/flaticons/comment-info.png');
	background-position: 15px 20px;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	border:0px solid #ffffff;
}

.alertify-text {
	border: 0px solid #CCC;
	padding: 10px;
	border-radius: 0px;
	
}

.alertify-button {
	min-width:80px;
	color:#000;
	background-color:#c18726;
	border:0px solid #dddddd;
	font-family:'Inter', arial, helvetica,sans-serif;
	font-size:13px;
	font-weight:600;
	border-radius:8px;
	margin-left:5px;
	margin-top:35px;
	padding:12px;
	padding-left:15px;
	padding-right:15px;
	padding-bottom:12px;
	cursor:hand;
	-webkit-appearance: none;
	background-repeat: no-repeat;
	background-position: 10px 12px;
	background-size: 14px 14px;
	filter: invert(1);
 }

.alertify-button:hover:enabled {
	background-color:#b27120;		
}

.alertify-button:disabled {
	background-color:#cccccc;		
}

.alertify-button:active:hover {
	background-color:#c18726;	
	filter: invert(1);
	
}

.alertify-button:focus {outline:0;}	



.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);
	}