/*your custom css goes here*/

/* Topbar Promo Text Slider */
.topbar-text-slider {
    height: 35px;
    min-height: 35px;
    overflow: hidden;
    position: relative;
}
.topbar-text-slider__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 35px;
}
.topbar-text-slider__item {
    height: 35px;
    display: none; /* JS will toggle */
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 12px;
}
.topbar-text-slider__item a,
.topbar-text-slider__item span {
    color: var(--secondary);
}

@media (max-width: 991.98px) {
    .topbar-text-slider,
    .topbar-text-slider__list,
    .topbar-text-slider__item {
        height: 40px;
        min-height: 40px;
    }
}

/* Topbar Social Icons */
.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}
.topbar-social a:hover {
    background-color: var(--soft-light);
    color: var(--dark);
}
