.toast-row {
	align-items: center;
}

button.toast-close-button {
	color: #0F1E56;
	padding-right: 10px;
}

.toast-image {
	background: #fff;
	padding: 13px;
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.sub-toast-msg {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    line-height: 17.15px;
    margin-top: 10px;
    letter-spacing: 0.2px;
}

.main-toast-msg {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 17.15px;
	letter-spacing: 0.2px;
}

.toastr-centered-div {
	display: contents;
	place-items: center;
}

.toastr-centered-image {
	max-width: 100%;
	max-height: 100%;
}

#toast-container>div {
	opacity: 1;
	/* padding: 15px; */
	border-radius: 8px;
	width: 440px;
	color: #333;
	border: none;
}
#toast-container > .toast {
    --bg-color: white;
    background: linear-gradient(180deg, var(--bg-color) 0%, #FFFFFF 100%) !important;
}

/* Success Toast */
#toast-container > .toast-success {
    position: relative;
    padding-left: 55px;
}

#toast-container > .toast-success::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('/seva_nivesh/assets/plugins/toastr/img/toastr-success-72c7e7076c38b8eac5fe75b35994c7ef.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Error Toast */
#toast-container > .toast-error {
    position: relative;
    padding-left: 55px;
    border-left: 1px solid #FF507A;
}

#toast-container > .toast-error::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('/seva_nivesh/assets/plugins/toastr/img/toastr-error-1c754574f2cd28f853d063fd727b41a5.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Warning Toast */
#toast-container > .toast-warning {
    position: relative;
    padding-left: 55px;
}

#toast-container > .toast-warning::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('/seva_nivesh/assets/plugins/toastr/img/toastr-warning-b4cfe9666f0a787c9f8eadd43094c0f6.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
}

/* Info Toast */
#toast-container > .toast-info {
    position: relative;
    padding-left: 55px;
}

#toast-container > .toast-info::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('/seva_nivesh/assets/plugins/toastr/img/toastr-info-fe9f23860d34fa97f484f632adf551f5.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
