#toast-container>div{
	padding: 12px 15px 12px 53px;
	border: none !important;
	border-radius: 2px;
	opacity: 1;
	-webkit-box-shadow: 0px 1px 6px 0px rgb(0 0 0 / 10%) !important;
    -moz-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0px 1px 6px 0px rgb(0 0 0 / 10%) !important;
}
#toast-container>div::before{
	content: '';
	width: 4px;
	background-color: #000;
	position: absolute;
	top: 4px;
	left: 4px;
	bottom: 4px;
	z-index: 10;
}
button.toast-close-button {
	font-size: 12px;
	font-weight: 400;
    background-image: url(../img/toastr_bg/close.svg) !important;
    background-position: 0;
    background-size: 11px;
    opacity: 1;
    width: 11px;
    height: 11px;
	text-shadow: none;
	text-indent: -999999px;
	outline: none;
	position: absolute;
	right: 10px;
	top: 18px;
}
.toast-message{
	font-size: 13px;
	font-weight: 500;
	color: #000;
	line-height: 24px;
	display: block;
}
.toast-progress{
	height: 2px;
	background-color: #ccc;
	opacity: 1;
}

#toast-container>.toast-success{
	background: #FFF url(../img/toastr_bg/success_bg.svg) no-repeat left 20px center !important;
}
#toast-container>.toast-error{
	background: #FFF url(../img/toastr_bg/error_bg.svg) no-repeat left 20px center !important;
}
#toast-container>.toast-info{
	background: #FFF url(../img/toastr_bg/info_bg.svg) no-repeat left 20px center !important;
}
#toast-container>.toast-warning{
	background: #FFF url(../img/toastr_bg/warning_bg.svg) no-repeat left 20px center !important;
}
#toast-container>.toast-success::before{
	background-color: #21A67A;
}
#toast-container>.toast-error::before{
	background-color: #C9252D;
}
#toast-container>.toast-info::before{
	background-color: #2680EB;
}
#toast-container>.toast-warning::before{
	background-color: #F2952B;
}



html[dir="rtl"] #toast-container>div{
	padding: 12px 53px 12px 15px;
	background-position: right 20px center !important;
}
html[dir="rtl"] .toast::before{
	left: auto;
	right: 4px;
}
html[dir="rtl"] button.toast-close-button{
	right: auto;
	left: 10px;
}