.new-adress__btn {
    max-width: 300px;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    color: #FFF;
    background: linear-gradient(90deg, #FE4B77 0%, #A98AEA 100%);
    border: 3px solid #BD4E9B;
    border-radius: 3px;
    position: relative;
    transition: all .2s ease-in-out;
    box-shadow: 0px 3px 0px 1px #00000040;
}
.new-adress__btn span {
    position: relative;
    z-index: 2;
    color: #FFF;
}
.new-adress__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FE4B77;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.new-adress__btn:hover::after {
    opacity: 1;
}
.new-adress__btn:hover {
    border-color: #FE4B77;
}
.new-adress__block-mobile {
    display: none;
}

.new-adress__block {
    background: linear-gradient(90deg, #8970C2 0%, #FF4A76 100%);
    height: 78px;
    display: block;
}

.new-adress__block-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;
}

.new-adress__block-text {
    color: #F0EDFF;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    text-align: end;
}
.new-adress__block-row svg + .new-adress__block-text {
    text-align: start;
}

.new-adress__block-row + .new-adress__block-mobile svg {
    margin-top: -7px;
}

@media (max-width: 900px) {
    .new-adress__block-row {
        gap: 15px;
    }
}
@media (max-width: 790px) {
    .new-adress__block-row svg,
    .new-adress__block-text {
        display: none;
    }
    .new-adress__block-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0 10px;
        max-width: 330px;
    }
    .new-adress__block {
        height: auto;
        padding: 10px 0;
    }
    .new-adress__btn {
        max-width: 330px;
        margin: 12px 0;
    }
    .new-adress__block-text-mobile {
        font-size: 18px;
        line-height: 26px;
        color: #F0EDFF;
        font-weight: 700;
        padding: 0 10px;
        text-align: center;
    }
}
@media (max-width: 450px) {
    .new-adress__btn {
        max-width: 100%;
        width: calc(100% - 30px);
    }
    .new-adress__block-mobile {
        max-width: 100%;
        padding: 0 25px;
    }
}
@media (max-width: 400px) {
    .new-adress__block-text-mobile {
        padding: 0;
    }
}
@media (max-width: 380px) {
    .new-adress__block-text-mobile {
        font-size: 17px;
    }
}
@media (max-width: 365px) {
    .new-adress__block-text-mobile {
        font-size: 16px;
    }
}
@media (max-width: 345px) {
    .new-adress__block-text-mobile {
        font-size: 15px;
    }
}
@media (max-width: 329px) {
    .new-adress__block-text-mobile {
        font-size: 14px;
    }
}