:root {
    --header-banner-height: 170px;
}

.header-promotion {
    background: linear-gradient(90deg, #9b4f5d 3.61%, #514f6f 97.36%);
    color: white;
    width: 100%;
    text-align: center;
    margin: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-promotion__bg {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    left: 0;
    top: 0;
}
.header-promotion__title {
    font-size: 24px;
    line-height: 1.41667em;
}
.header-promotion__close {
    width: 12px;
    height: 12px;
    stroke: #f2f2f2;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.header-promotion-closed .header-promotion {
    display: none;
}
@media screen and (min-width: 960px) {
    .header-promotion {
        /*position: fixed;*/
        height: var(--header-banner-height);
    }
}
@media screen and (max-width: 959px) {
    .header-promotion {
        position: relative;
        padding: 32px 20px;
        justify-content: start;
        align-items: start;
        text-align: start;
    }
    .header-promotion .pt-wrapper {
        max-width: unset;
        margin: 0;
        width: 100%;
    }
    .header-promotion__title {
        font-weight: 500;
        font-size: 18px;
        line-height: 140%;
    }
    .header-promotion button {
        width: 100%;
    }
}