

/* Growl Notification */
.admin-bar .growl-notification.position-top-right,
.admin-bar .growl-notification.position-top-left {
/*     top: 50px!important; */
}
/* Growl Notification - Error */
.growl-notification {
	background-color: #fff;
}
.growl-notification__desc {
    font-size: 13px
}
.growl-notification__title,
.growl-notification__desc {
    font-family: 'Poppins', var(--e-global-typography-primary-font-family), sans-serif;
}
.growl-notification--success:before {
	background-color: #00D181;
}
.growl-notification--success .growl-notification__title,
.growl-notification--success .growl-notification__desc {
	color: #00bf4d;
}
.growl-notification--warning .growl-notification__title,
.growl-notification--warning .growl-notification__desc {
	color: #000;
}

.growl-notification--error:before {
	background-color: #fa0328;
}
.growl-notification--error .growl-notification__title,
.growl-notification--error .growl-notification__desc {
	color: #fa0328;
}

.growl-notification--info:before {
    background-color: #0360f4;
}
.growl-notification--info .growl-notification__title,
.growl-notification--info .growl-notification__desc {
    color: #0360f4;
}


.growl-notification-with-image {
    display: flex;
    width: 100%;
    gap: 8px;
    align-items: center;
}

.growl-notification-with-image img {
    max-width:45px; 
    max-height:45px; 
    object-fit:cover; 
    border-radius: 4px;
    border: 1px dashed #fa0328;
}