.push-popup {
    align-items: center;
    background-color: #ffffff;
    bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgb(35 75 112 / 15%);
    display: none;
    flex-direction: column;
    opacity: 0;
    padding: 30px 69px 36px;
    position: fixed;
    right: 50px;
    transition: all .3s;
    z-index: 1000;
}

.push-popup__text {
    font-size: 21px;
    font-weight: 600;
    line-height: 29px;
    margin-bottom: 30px;
    text-align: center;
}
.push-popup__button {
    color: #252526;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    padding: 8px 26px;
}
.push-popup__button-accept {
    color: white;
    background: #FB9023;
    border-radius: 4px;
    transition: all .3s;
}
.push-popup__button-accept:hover {
    background-color: #FFB83A;
    box-shadow: 0 4px 15px rgb(248 161 7 / 50%);
}


@media (max-width: 666px) {
    .push-popup {
        align-items: stretch;
        bottom: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 10px 15px;
        right: 0;
        width: 100%;
    }
    .push-popup__image {
        width: 15%
    }
    .push-popup__text {
        font-size: 18px;
        font-weight: 600;
        flex-basis: 65%;
        line-height: 25px;
        margin-bottom: 18px;
        text-align: left;
    }
}
