.sales-banner[hidden] {
    display: none !important;
}

.sales-banner {
    position: relative;
    width: 100%;
    background: #001b36;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    z-index: 10000;
}

.sales-banner__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    /*max-width: 1440px;*/
    margin: 0 auto;
    padding: 8px 90px;
}

.sales-banner__message {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0;
    text-align: center;
}

.sales-banner__icon {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    fill: none;
    stroke: #f2c230;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sales-banner__phone {
    color: #f2c230;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.sales-banner__phone:hover,
.sales-banner__phone:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

.sales-banner__divider {
    opacity: 0.75;
}

.sales-banner__close {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font: inherit;
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
}

.sales-banner__close:hover,
.sales-banner__close:focus-visible {
    opacity: 1;
}

.sales-banner__close:focus-visible {
    outline: 2px solid #f2c230;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .sales-banner {
        font-size: 14px;
    }

    .sales-banner__inner {
        min-height: 52px;
        padding: 9px 58px 9px 20px;
    }

    .sales-banner__message {
        gap: 3px 7px;
    }

    .sales-banner__icon {
        width: 21px;
        height: 21px;
    }

    .sales-banner__divider {
        display: none;
    }

    .sales-banner__close {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .sales-banner__inner {
        padding-left: 16px;
        padding-right: 52px;
    }

    .sales-banner__message {
        display: block;
        padding-left: 24px;
        padding-right: 4px;
    }

    .sales-banner__icon {
        position: absolute;
        margin-left: -29px;
        margin-top: -1px;
    }

    .sales-banner__phone {
        margin-left: 4px;
    }

    .sales-banner__message > span:last-child {
        display: block;
    }

    .sales-banner__close {
        right: 8px;
        width: 34px;
        height: 34px;
    }
}