/* ===================  Стили для offer-modal - всплывашки при уходе ===================== */
#offer-modal{
    max-width: 1200px;
    background-color: #f1f1f1;
    font-size: 17px;
    line-height: 19px;
}
#offer-modal .title{
    margin-top: 45px;
    font-size: 35px;
    margin-bottom: 0;
}
#offer-modal .subtitle{
    font-size: 25px;
    margin-bottom: 30px;
}
#offer-modal .model-specific{
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
    pointer-events: none;
    color: #2c2c2c;
    cursor: default;    
}
#offer-modal .model-specific span{
    position: relative;   
    padding: 0 20px 0 0;
}
#offer-modal .content-container{
    padding: 0;
}
#offer-modal .columns {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
#offer-modal .column{
    width: 32.33%;
    position: relative;
    padding: 0 0 25px;
    border: none;
    margin: 0 0.5% 45px;
    background: #ffffff;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 4px 0px;
    -webkit-box-shadow: rgb(0 0 0 / 10%) 0px 0px 4px 0px;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 4px 0px;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
#offer-modal .model-name{
    font-size: 21px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px;
}
#offer-modal .model-subtitle{
    font-size: 17px;
    line-height: 19px;
    font-weight: 400;
    margin: 0 0 20px;
    text-align: left;
}
#offer-modal .columns .img-container{
    display: -webkit-flex;    
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    height: 300px;
    margin: 0 0 30px;
    width: 100%;
    border-bottom: 1px solid #dddddd;
    overflow: hidden;
}
#offer-modal .columns .img-container img{
    height: auto;
    max-height: 100%;
    margin: 10px auto;
}
#offer-modal .model-inner{
    padding: 0 10px;
    flex: auto 1 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
#offer-modal ul{
    margin: 0 0 30px;
}
#offer-modal ul li{
    position: relative;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    text-align: left;
    margin: 0 0 5px;
    padding: 0 0 0 20px;
}
#offer-modal ul li:before{
    content: "\f00c";
    font-family: fontawesome !important;
    position: absolute;
    left: 0;
    top: 0;
    color: #31c488;
    font-size: 14px;
}
#offer-modal .button{
    width: 150px;
    font-size: 19px;
}
#offer-modal .bottom-block{
    flex: 60px 0 0;
}
@media (max-width: 1200px){
    #offer-modal .model-specific{
        color: #008851;
        text-decoration: underline;
        cursor: pointer;
        text-align: center;
        pointer-events: all;
    }
    #offer-modal .model-specific span:before{
        content: "\f103";
        font-family: fontawesome !important;
        position: absolute;
        right: 0;
        top: 3px;
        color: #008851;   
    }
    #offer-modal .model-specific.opened span:before{
        content: "\f102";  
    }    
    #offer-modal ul{
        display: none;
        margin: 0;
    }
    #offer-modal .specific-list.active{
        display: block;
    }
    #offer-modal .bottom-block{
        margin-top: 20px;
    }
    #offer-modal .column{
        margin: 0 0 20px;
    }
}

@media (max-width: 767px){
    #offer-modal .content-container{
        padding: 0 10px;
    }
    #offer-modal .columns{
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    #offer-modal .column{
        width: 100%;
    }
    #offer-modal .columns .img-container{
        display: block;
        height: auto;
    }    
    #offer-modal .title{
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 5px;
    }
    #offer-modal .subtitle{
        font-size: 20px;
        line-height: 20px;
    }
    #offer-modal .button{
        font-size: 16px;
        padding: 10px 15px;
    }
}