.scroll_blocked{
    overflow: hidden;
}
.alco_popup{
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    z-index: 20;
}
.alco_popup-black{
    opacity: 0;
    transition: 0.3s opacity;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.alco_popup-black.opened{
    opacity: 1;
}
.alco_popup-main{
    padding: 30px 60px;
    background-color: white;
    position: relative;
    width: 660px;
    height: 440px;
    left: 50%;
    top: 30%;
    opacity: 0;
    transition: 0.3s all;
    transform: translate(-50%, -50%);
    background-image: url('/image/catalog/alco_bg_2.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}
.alco_popup-main.opened{
    top: 50%;
    opacity: 1;
}
.alco_popup-main__logo{
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 103px;
    height: 88px;
}
.alco_popup-main__logo img {
    max-width: 100%;
    max-height: 100%;
}
.alco_popup-main__text{
    max-width: 220px;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
}
.alco_popup-main__question{
    max-width: 270px;
    font-family: 'TTNorms-Bold', sans-serif;
    margin-top: 35px;
    color: #fff;
    font-size: 41px;
    line-height: 50px;
    font-weight: 700;
}
.alco_popup-main__buttons{
    display: flex;
    margin-top: 35px;
}
.alco_popup-main__buttons-one{
    cursor: pointer;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    width: 135px;
    height: 55px;
    font-size: 24px;
    line-height: 48px;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    background-color: #E63328;
    border: 2px solid #fff;
    transition: 0.3s all;
    box-shadow: 0px 4px 8px rgba(230, 51, 40, 0.44);
}
.alco_popup-main__buttons-one:last-of-type{
    margin-right: 0;
}
.alco_popup-main__buttons-one:hover{
    color: #E63328;
    background-color: white;
    box-shadow: unset;
}
.alco_popup-main__buttons-one.reverse{
    color: #E63328;
    background-color: white;
    box-shadow: unset;
}
.alco_popup-main__buttons-one.reverse:hover{
    color: #fff;
    background-color: #E63328;
    box-shadow: 0px 4px 8px rgba(230, 51, 40, 0.44);
}

@media(max-width: 799px){
    .alco_popup-main{
        padding: 20px 30px;
        width: 460px;
        height: 307px;
        background-size: cover;
    }
    .alco_popup-main__logo{
        right: 20px;
        bottom: 20px;
        width: 60px;
        height: 51px;
    }
    .alco_popup-main__text{
        max-width: 180px;
        font-size: 16px;
        line-height: 22px;
    }
    .alco_popup-main__question{
        max-width: 220px;
        margin-top: 25px;
        font-size: 30px;
        line-height: 34px;
    }
    .alco_popup-main__buttons{
        margin-top: 30px;
    }
    .alco_popup-main__buttons-one{
        margin-right: 8px;
        width: 100px;
        height: 35px;
        font-size: 16px;
        line-height: 32px;
    }
    .alco_popup-main__buttons-one:last-of-type{
        margin-right: 0;
    }
}

@media(max-width: 479px){
    .alco_popup-main{
        padding: 20px 30px;
        width: 360px;
        height: 290px;
        background-size: cover;
    }
    .alco_popup-main__logo{
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 43px;
    }
    .alco_popup-main__text{
        max-width: 180px;
        font-size: 14px;
        line-height: 20px;
    }
    .alco_popup-main__question{
        max-width: 190px;
        margin-top: 25px;
        font-size: 28px;
        line-height: 32px;
    }
    .alco_popup-main__buttons{
        margin-top: 30px;
    }
    .alco_popup-main__buttons-one{
        margin-right: 12px;
        width: 90px;
        height: 33px;
        font-size: 16px;
        line-height: 30px;
    }
    .alco_popup-main__buttons-one:last-of-type{
        margin-right: 0;
    }
}

@media(max-width: 379px){
    .alco_popup-main{
        width: 320px;
    }
}