.popup-phones{
    background-color: transparent;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 40;
    visibility: hidden;
    box-sizing: border-box;
    transition: background-color .2s ease, visibility .1s ease .2s;
}

.popup-phones *{
    box-sizing: border-box;
}

.popup-phones.show{
    visibility: visible;
    background-color: rgb(255 255 255 / 70%);
    transition: background-color .2s ease .2s;
}

.popup-phones__content{
    /* background-color: #ffffff; */
    padding: 20px;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    transform: translate(0, 100%);
    transition: all .2s ease;
}

.popup-phones.show .popup-phones__content{
    transform: translate(0, 0);
    transition: all .4s ease .2s;
}

.popup-phones__link{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 326px;
    width: 100%;
    font-size: 16px;
    height: 43px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    margin: 0 auto;
    outline: none;
    border: none;
    font-family: 'Roboto',sans-serif;
    font-weight: 600;
    color: #ffffff;
}
.popup-phones__link+.popup-phones__link{
    margin: 6px auto 0 auto;
}
.popup-phones__link svg{
    margin-right: 5px;
    fill: var(--main-color);
    height: 14px;
    width: 14px;
}
