button.toast-close-button{
	right: 0;
	top: 0;
	background-image: url(../img/toastr-bg/close-color.svg) !important;
	background-position: 2px;
	background-size: 13px;
	width: 13px;
	height: 13px;
	text-indent: -99999px;
	outline: none;
	opacity: .5;
}

.toast-progress{
	height: 3px;
	opacity: 1 !important;
	background: #aaa !important;
}

/*=========== Toastr Light Template Start ================*/

.toastr-light>div{
	padding: 22px 10px 22px 55px !important;
	border-radius: 3px !important;
	opacity: 1 !important;
	overflow: visible !important;
}
.toastr-light>div:before {
    content: '';
    width: 7px;
    background-color: #000;
    position: absolute;
    top: 5px;
    left: -3px;
	bottom: 5px;
	border-radius: 5px;
}
.toastr-light button.toast-close-button {
    background-image: url(../img/toastr-bg/close.svg) !important;
    background-position: 0;
    background-size: 19px;
    opacity: 1;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50% !important;
	right: 5px !important;
	transform: translateY(-50%);
}
.toastr-light>.toast{
	background-color: #FFF !important;
	color: #333 !important;
}
.toastr-light .toast-title {
    font-size: 14px;
	font-weight: 700;
	color: #000;
}
.toastr-light .toast-message{
	font-size: 12px;
	color: #000;
}
.toast a{
	font-weight: 700;
	color: #000;
	display: inline-block;
	text-decoration: underline;
}
#toast-container>.toast{
	background-size: 24px;
	-webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15) !important;
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15) !important;
}

#toast-container.toastr-light>div.toast-success {
    background-image: url(../img/toastr-bg/success.svg) !important;
    background-position-x: 19px;
    background-position-y: center;
}
#toast-container.toastr-light>.toast-success:before{
	background-color: #0ec186;
}

#toast-container.toastr-light>.toast-error{
	background-image: url(../img/toastr-bg/error.svg) !important;
	background-position-x: 19px;
    background-position-y: center;
}
#toast-container.toastr-light>.toast-error:before{
	background-color: #f33535;
}

#toast-container.toastr-light>.toast-info{
	background-image: url(../img/toastr-bg/info.svg) !important;
	background-position-x: 19px;
    background-position-y: center;
}
#toast-container.toastr-light>.toast-info:before{
	background-color: #21a67a;
}

#toast-container.toastr-light>.toast-warning{
	background-image: url(../img/toastr-bg/warning.svg) !important;
	background-position-x: 19px;
    background-position-y: center;
}
#toast-container.toastr-light>.toast-warning:before{
	background-color: #e9b30e;
}


/*============================
	toastr RTL Code
=============================*/
html[dir="rtl"] .toast-top-right {
    right: auto;
    left: 12px;
}
html[dir="rtl"] .toastr-light>div{
	padding: 22px 55px 22px 10px !important;
}
html[dir="rtl"] #toast-container>.toast{
	background-position: right 19px center !important;
}
html[dir="rtl"] .toastr-light>div:before{
	left: auto;
	right: -3px;
}
html[dir="rtl"] #toast-container>.toast .toast-progress{
	left: auto;
	right: 0;
}
html[dir="rtl"] .toastr-light button.toast-close-button{
	right: auto !important;
	left: 5px !important;
}



