/* Скидка 10% на первый заказ */
.header-basket-discount {
    display: none;
}

.header-basket-discount--is-active {
    display: block;
}

.headerBlock__header-basket-discount {
    position: absolute;
    right: -18px;
    top: 75px;

    padding: 8px 20px 17px;

    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.25);
    color: #212121 !important;

    z-index: 2;
}

.headerBlock__header-basket-discount:before {
    content: '';

    width: 38px;
    height: 38px;

    position: absolute;
    right: 22px;
    top: -18px;

    background-color: transparent;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;

    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMjkiIHZpZXdCb3g9IjAgMCAzNCAyOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3IDBMMzMuNDU0NSAyOC41SDAuNTQ1NTE3TDE3IDBaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K');
}

.header-basket-discount__inner {
    position: relative;
    z-index: 2;
}

.header-basket-discount__title-wrapper {
    margin: 0 0 -6px 0;
}

.header-basket-discount__title {
    color: #ED7E2C !important;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
}

.header-basket-discount__text-wrapper {
    margin: 0 0 5px 0;
}

.header-basket-discount__text {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    color: #212121 !important;
}

.header-basket-discount__apply-button-wrapper {
    text-align: center;
}

.header-basket-discount__apply-button {
    display: inline-block;
    border: 3px solid #ED7E2C;
    border-radius: 20px;
    padding: 10px 15px;
    color: #212121 !important;

    font-size: 14px;
    font-weight: 700;
    line-height: 20px;

    text-transform: uppercase;

    cursor: pointer;
    user-select: none;
    outline: none;
}

.header-basket-discount__apply-button:hover {

}

@media (max-width: 767px) {
    .headerBlock__header-basket-discount {
        top: 60px;
    }
}

@media (max-width: 640px) {
    .headerBlock__header-basket-discount {
        top: 60px;
        padding: 14px 25px 20px;
    }

    .header-basket-discount__title {
        font-size: 24px;
    }
}
/* / Скидка 10% на первый заказ */