body {
    overflow-x: hidden;
    width: 100vw;
}

.popup-fix {
    padding-left: calc(100vw - 100%)!important;
}


@media (max-width: 767px) {
    .popup-fix {
        width: 100vw;
        padding-left: 15px!important;
        padding-right: 15px!important;
    }
}




.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 8, 12, 0.7);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
}
    .popup {
        position: absolute;
        background-color: rgba(0, 0, 0, 0.76);
        border-radius: 2px;
        /*border: 7px solid #c95e48;*/
        padding: 10px;
        min-height: 100px;
        margin-top: 20px;
        margin-bottom: 30px;
        display: none;
        z-index: 1001;
        
        -webkit-transition: width 0s;
        -o-transition: width 0s;
        transition: width 0s;
    }
    
    @media (max-width: 767px) {
        .popup {
           width: 100%;
        }
    }
        .popup__close_icon {
            position: absolute;
            right: -36px;
            top: 0px;
            display: block;
            opacity: 0.8;
            width: 34px;
            height: 34px;
            cursor: pointer;
            
            /*background-color: #c95e48;*/
            background-image: url('close.png');
            background-repeat: no-repeat;
            background-position: 0 0;
            background-size: 22px auto;
            
            -webkit-transition: opacity 0.2s;
            -moz-transition: opacity 0.2s;
            -ms-transition: opacity 0.2s;
            -khtml-transition: opacity 0.2s;
        }
        
        @media (max-width: 767px) {
            .popup__close_icon {
               opacity: 0.2;
            }
        }
            .popup__close_icon:hover {
                opacity: 1;
                
                -webkit-transition: opacity 0.2s;
                -o-transition: opacity 0.2s;
                transition: opacity 0.2s;
            }
            
        .popup__close_inset {
               right: 3px;
               top: 3px;
               background-position: 6px 6px;
            }
                .popup__close_inset:hover {
                    
                }
        
        
        .popup__title {
            font-size: 20px;
            color: #ffaa4f;
            font-weight: 100;
            padding-right: 30px;
            cursor: default;
            margin: 0!important;
        }
        
        .popup__content {
            margin-top: 20px;
        }
        
        .popup__buttons-block {
            margin-top: 10px;
            text-align: center;
        }
            .popup__buttons-block::after {
                content: "";
                display: table;
                width: 100%;
                clear: both;
            }
            
            .popup__buttons-item {
                cursor: pointer;
                display: inline-block;
                color: #fff;
                padding: 8px 30px;
                border-radius: 20px;
                border: none;
                font-size: 18px;
                background-color: #ff9600;
            }
                .popup__buttons-item:hover {
                    color: #fff;
                }
                
                .popup__buttons-item + .popup__buttons-item {
                    margin-right: 5px;
                    /*padding-right: 5px;
                    border-right: 1px solid #cdd5da;*/
                }
            .popup__buttons-item.popup__close__bottom {
                background-color: #ff613f;
            }
                .popup__buttons-item.popup__close__bottom:hover {
                    color: #fff;
                }
            
        