.notification_block {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s linear, visibility 0.3s linear;
}

.notification_block.shown {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s linear, visibility 0.3s linear;
}

.audit-modal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.special-offer {
    padding: 160px 0 0;
    color: white;
}

.special-offer__container {
    background-color: #1C1F33;
    padding: 44px;
}

.special-offer__block {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.special-offer__left {
    width: 60.65%;
}

.special-offer__text {
    font-size: 24px;
    font-family: "P 22 Underground CY Pro - Book", Helvetica, Arial, sans-serif;
    margin-bottom: 34px;
    opacity: 0.8;
}

.special-offer__list {
    padding-inline-start: 0;

}

.special-offer__item {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
}

.special-offer__item p {
    opacity: 0.7;
    font-family: "P 22 Underground CY Pro - Book", Helvetica, Arial, sans-serif;
    font-size: 16px;
    margin-bottom: 0;
}

.special-offer__item-number {
    width: 44px;
    height: 44px;
    background-color: #E72165;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: "P 22 Underground CY Pro - Demi", Helvetica, Arial, sans-serif;
    flex-shrink: 0;
}

.special-offer__right {
    width: 34%;
    background-color: #FFFFFF0F;
    padding: 34px;
}

.special-offer__pref-title {
    color: #E72165;
    font-family: "P 22 Underground CY Pro - Book", Helvetica, Arial, sans-serif;
    font-size: 24px;
    margin-bottom: 34px;
}

.special-offer__pref-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.special-offer__pref-name {
    font-size: 14px;
    font-family: "P 22 Underground CY Pro - Book", Helvetica, Arial, sans-serif;
    opacity: 0.7;
    width: 100%;
    max-width: 130px;
    margin-bottom: 0;
}

.special-offer__pref-value {
    display: flex;
    flex-direction: column;
    font-family: "P22UndergroundCYMedium", Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-align: end;
    margin-bottom: 0;
}

.special-offer__pref-value span {
    text-align: end;
}

.special-offer__pref-value span.line-through {
    font-family: "P 22 Underground CY Pro - Book", Helvetica, Arial, sans-serif;
    font-size: 14px;
    opacity: 0.3;
    text-decoration: line-through;
}

.special-offer__button {
    margin : 34px 0 0;
    width: 100%;
}

@media screen and (max-width:1000px) {
             .special-offer {
            padding-top: 52px;
        }

        .special-offer__container {
            padding: 20px;
            max-width: 92%;
        }

        .special-offer__block {
            flex-direction: column;
            gap: 10px;
        }

        .special-offer__left, .special-offer__right {
            width: 100%;
        }

        .special-offer__text {
            font-size: 14px;
            margin-bottom: 28px;
        }

        .special-offer__item {
            gap: 14px;
            padding-bottom: 18px;
        }

        .special-offer__item p {
            font-size: 14px;
        }

        .special-offer__pref-value {
            font-size: 14px;
        }

        .special-offer__item-number {
            width: 42px;
            height: 42px;
            font-size: 20px;
        }

        .special-offer__right {
            padding: 18px;
        }

        .special-offer__pref-title {
            font-size: 14px;
            margin-bottom: 24px;
        }

        .special-offer__pref-name {
            font-size: 13px;
        }
}