.bsHeaderOffer {
    position: relative;
    z-index: 20;
    width: 100%;
    color: var(--bs-header-offer-text, #fff);
}

.bsHeaderOffer[hidden] {
    display: none !important;
}

.bsHeaderOffer__inner {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 80px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    isolation: isolate;
}

.bsHeaderOffer__inner:hover,
.bsHeaderOffer__inner:focus {
    color: inherit;
    text-decoration: none;
}

.bsHeaderOffer--color .bsHeaderOffer__inner {
    background: var(--bs-header-offer-color, #151923);
}

.bsHeaderOffer--gradient .bsHeaderOffer__inner {
    background: linear-gradient(
        var(--bs-header-offer-gradient-angle, 90deg),
        var(--bs-header-offer-gradient-start, #7b2ff7),
        var(--bs-header-offer-gradient-end, #3f8cff)
    );
}

.bsHeaderOffer--image .bsHeaderOffer__inner {
    background-color: var(--bs-header-offer-color, #151923);
    background-image: var(--bs-header-offer-desktop-image, none);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bsHeaderOffer__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--bs-header-offer-overlay, rgba(0, 0, 0, 0));
    pointer-events: none;
}

.bsHeaderOffer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(1370px, calc(100% - 40px));
    margin: auto;
    padding: 13px 0;
}

.bsHeaderOffer__text {
    margin: 0;
    color: inherit;
    font-family: "bsDoran", Sans-serif !important;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.45;
}

.bsHeaderOfferCountdown {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
    gap: 7px;
    direction: ltr;
}

.bsHeaderOfferCountdown__unit {
    display: flex;
    min-width: 65px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 9px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .96);
    color: #1e293b;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .08);
    direction: rtl;
}

.bsHeaderOfferCountdown__unit strong {
    min-width: 20px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.bsHeaderOfferCountdown__unit small {
    position: relative;
    top: 1px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .bsHeaderOffer__inner {
        min-height: 64px;
    }

    .bsHeaderOffer__text {
        font-size: 21px;
    }

    .bsHeaderOfferCountdown__unit {
        min-width: 58px;
        padding: 6px 8px;
    }
}

@media (max-width: 782px) {
    .bsHeaderOffer--image .bsHeaderOffer__inner {
        background-image: var(--bs-header-offer-mobile-image, var(--bs-header-offer-desktop-image, none));
    }

    .bsHeaderOffer__inner {
        min-height: 92px;
    }

    .bsHeaderOffer__content {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        width: calc(100% - 24px);
        padding: 10px 0;
        text-align: center;
    }

    .bsHeaderOffer__text {
        width: 100%;
        font-size: 15px;
        line-height: 1.55;
    }

    .bsHeaderOfferCountdown {
        gap: 5px;
    }

    .bsHeaderOfferCountdown__unit {
        min-width: 53px;
        gap: 4px;
        padding: 5px 7px;
        border-radius: 8px;
    }

    .bsHeaderOfferCountdown__unit strong {
        font-size: 13px;
    }

    .bsHeaderOfferCountdown__unit small {
        font-size: 8px;
    }
}

@media (max-width: 420px) {
    .bsHeaderOfferCountdown__unit {
        min-width: 48px;
        padding-inline: 5px;
    }
}
