
/* ===================================
   NOTIFICATION CAROUSEL COMPONENT
   =================================== */

.site-notification {
    background: var(--primary-color, #104239);
    color: var(--notification-color);
    font-size: 13px;
    min-height: 40px;
    position: relative;
    padding: 10px 20px;
    margin: 0;
    width: 100%;
    display: block;
}

.site-notification .carousel-item {
    transition: transform 0.6s ease-in-out;
    font-weight: 500;
}

/*
.site-notification .carousel-control-prev,
.site-notification .carousel-control-next {
    opacity: 1;
}

.site-notification .carousel-control-prev-icon,
.site-notification .carousel-control-next-icon {
    padding: 10px 10px;
    border-radius: 50%;
}

!* Hide controls on mobile if only one notification *!
@media (max-width: 768px) {
    .site-notification .carousel-control-prev,
    .site-notification .carousel-control-next {
        display: none;
    }
}

!* RTL Support *!
[dir="rtl"] .site-notification .carousel-control-prev {
    right: auto;
}

[dir="rtl"] .site-notification .carousel-control-next {
    left: auto;
}*/
