﻿@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:#A3703D;
	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:#B5804C;		
}

.alertify-button:disabled {
	background-color:#cccccc;		
}

.alertify-button:active:hover {
	background-color:#B5804C;	
	filter: invert(1);
	
}

.alertify-button:focus {outline:0;}	



.alertify-log {
	border:0px solid #ffffff;
	padding: 15px;
	color: #000000;
	border-radius:10px;
}
	.alertify-log-error {
		border-radius:10px;
		background-color: #16c5db;
		background-image: url('../../../commonfiles/images/flaticons/comment-info.png');
		background-repeat: no-repeat;
		background-position: 15px 15px;
		background-size: 20px 20px; /* Adjust size to match your image */
		filter: invert(100%);
		padding-left:45px;
	}
	.alertify-log-success {
		border-radius:10px;
		background-color: #A347EE;
		background-image: url('../../../commonfiles/images/flaticons/check.png');
		background-repeat: no-repeat;
		background-position: 15px 15px;
		background-size: 20px 20px; /* Adjust size to match your image */
		filter: invert(100%);
		padding-left:45px;
	}