@font-face{
    font-family: 'Intro';
    font-weight: normal;

    src: url(../fonts/Intro-Book.ttf), url(../fonts/Intro-Book.woff);
}

@font-face{
    font-family: 'Intro';
    font-weight: 700;

    src: url(../fonts/Intro-Bold.ttf), url(../fonts/Intro-Bold.woff);
}

@font-face{
    font-family: 'Lineatura';
    font-weight: normal;

    src: url(../fonts/LineaturaRegular.ttf), url(../fonts/LineaturaRegular.woff);
}

*{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

img{
    border: none;
}

textarea{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active{
         outline: none transparent !important;
    box-shadow: none;

    -moz-outline: none !important;
}

input[type=submit],
button[type=submit]{
    -webkit-border-radius: 0;

    -webkit-appearance: none;
}

:focus{
    outline: none;
}
.fa-stop{
    margin-right: 6px;
    background: #989292;
    border-radius: 1px;
}
.fa-stop:before{
    margin: 1px;
}

/*---------------    Main styles---------------*/

.clear{
    clear: both;
}

.left{
    float: left;
}

.right{
    float: right;
}

html{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body{
    background: #fff;

    -webkit-text-size-adjust: 100%;
}

.wrap{
    overflow: hidden;

    opacity: 0;
}

.cont{
    position: relative;

    width: 100%;
    max-width: 1230px;

    margin: 0 auto;
    padding: 0 15px;
}


/*---------------   Sidebar---------------*/

aside{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    overflow: hidden;
    width: 15.5%;
    height: 100%;

    background: #fff;
}

aside .logo{
    height: 25%;
}

aside .logo a{
    position: relative;

    display: block;

    width: 100%;
    height: 100%;
}

aside .logo img{
    position: absolute;
    top: 50%;
    left: 50%;

    max-width: 75%;
    max-height: 75%;

    transform: translate(-50%, -50%);
}

aside .mob_logo{
    display: none;
    float: left;

    height: 130px;

    padding: 0 30px;

    line-height: 130px;
}

aside .mob_logo img{
    position: relative;
    top: -1px;

    vertical-align: middle;

    max-width: 90%;
    height: 54px;
    max-height: 90%;
}

aside .menu{
    display: block;

    height: calc(75% + 2px);
}

aside .menu li{
    display: table;

    width: calc(100% + 1px);
    height: 25%;

    list-style-type: none;
}

aside .menu li:nth-child(1) a{
    background: #78b40a;
}

aside .menu li:nth-child(2) a{
    background: #ffcf00;
}

aside .menu li:nth-child(3) a{
    background: #2c3e50;
}

aside .menu li:nth-child(4) a{
    background: #f00a66;

    text-decoration: none;
}

aside .menu li a{
    display: table-cell;
    vertical-align: middle;

    padding: 10px 20px;

    color: #fff;
    font: 18px/22px Intro;

    text-align: center;
    text-decoration: none;
}

aside .menu li a span{
    border-bottom: 1px solid #fff;

    transition: border-color .2s linear;
}

aside .menu li a.order_link div{
    position: relative;

    display: block;

    width: 95px;
    height: 95px;

    margin: 0 auto;
    padding: 31px 3px;

    font-size: 17px;
    font-weight: 700;
    line-height: 15px;

    border: 1px solid #fff;
    border-radius: 50%;

    transition: .2s linear;
}

aside .menu li a.order_link div:after{
    position: absolute;
    top: 12px;
    right: 29px;

    display: block;

    width: 9px;
    height: 9px;

    border-radius: 50%;
    background: #fff;

    content: '';
    transition: background .2s linear;
}

aside .menu li a:hover span{
    border-color: transparent;
}

aside .menu li a.order_link:hover div{
    color: #f00967;

    background: #fff;
}

aside .menu li a.order_link:hover div:after{
    background: #f00967;
}


/*---------------   Menu---------------*/

.box .title i{
        display:none;
    }

.menu_link{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;

    display: block;

    color: #2c3e50;
    font: 18px/80px Intro;

    text-decoration: none;
    transition: color .2s linear;
}

.menu_link .icon{
    display: inline-block;
    vertical-align: top;

    width: 80px;
    height: 80px;

    margin-left: 11px;
    padding: 28px 0;

    border-radius: 50%;
    background: #2c3e50;

    transition: .2s linear;
}

.menu_link .icon span{
    display: block;

    width: 36px;
    height: 4px;

    margin: 0 auto;
}

.menu_link .icon span + span{
    margin-top: 6px;
}

.menu_link .icon span:nth-child(1){
    background: #ffcf00;
}

.menu_link .icon span:nth-child(2){
    background: #ef0966;
}

.menu_link .icon span:nth-child(3){
    background: #009fff;
}

.menu_link:hover .icon{
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

.menu_link.white{
    color: #fff;
}

.menu_link.white .icon{
    color: #fff;

    background: #fff;
}

#menu{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;

    display: table;

    width: 35%;
    height: 100%;

    background: #fff;

    transition: transform .3s linear;
    transform: translateX(100%);
}

#menu.show{
    transform: translateX(0);
}

#menu .close_link{
    position: absolute;
    top: 10px;
    right: 10px;

    display: block;

    width: 70px;
    height: 70px;

    background: url(../images/ic_close.png) 50% 0 no-repeat;
}

#menu .close_link:hover{
    background-position: 50% 100%;
}

#menu .box{
    display: table-cell;
    vertical-align: middle;

    height: 100%;

    padding: 20px 50px;

    text-align: center;
}

#menu li{
    display: block;

    list-style-type: none;
}

#menu li + li{
    margin-top: 15px;
}

#menu li a{
    display: inline-block;
    vertical-align: top;

    color: #2c3e50;
    font: 22px/26px Lineatura;

    text-decoration: none;
    transition: color .2s linear;
}

#menu li a:hover,
#menu li a.active{
    color: #00a0ff;
}

#menu .phones{
    margin-top: 50px;

    color: #2c3e50;
    font: 24px/30px Lineatura;

    letter-spacing: .02em;
}

#menu .phones .number{
    height: 30px;

    line-height: 15px;
}

#menu .phones .number + .number{
    margin-top: 10px;
}

#menu .socials{
    margin-top: 40px;
}

#menu .socials a{
    display: inline-block;
    vertical-align: top;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    background: url(../images/ic_socials.png) 0 0 no-repeat;

    text-align: center;
}

#menu .socials a + a{
    margin-left: 15px;
}

#menu .socials a.soc1{
    background-position: 0 0;
}

#menu .socials a.soc2{
    background-position: -40px 0;
}

#menu .socials a.soc3{
    background-position: -80px 0;
}

#menu .socials a.soc1:hover{
    background-position: 0 100%;
}

#menu .socials a.soc2:hover{
    background-position: -40px 100%;
}

#menu .socials a.soc3:hover{
    background-position: -80px 100%;
}

.share_link{
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 99;

    display: block;

    width: 75px;
    height: 75px;

    background: url(../images/share_white.svg) 50% 0 no-repeat;
}

.share_link.white{
    background-position: 50% 100%;
}

.share_modal{
    position: absolute;
    top: 0;
    right: 10%;
    z-index: 100;

    width: 345px;

    padding: 30px;

    color: #2c3e50;
    font: 18px/26px Intro;

    background: #fff;

    transition: transform .3s linear;
    transform: translateY(-100%);
}

.share_modal.show{
    transform: translateY(0);
}

.share_modal.show .title{
    margin: 0 0 10px 10px;
    text-transform: uppercase;
}

.share_modal .close_link{
    position: absolute;
    top: 5px;
    right: 5px;

    display: block;

    width: 70px;
    height: 70px;

    background: url(../images/close_normal.svg) 50% 50% no-repeat;
}

.share_modal .close_link:hover{
    background: url(../images/close_hover.svg) 50% 50% no-repeat;
}
}

.share_modal .title{
    margin-bottom: 20px;

    color: #2c3e50;
    font: 700 18px Intro;

    text-transform: uppercase;
    letter-spacing: .02em;
}

.share_modal .link + .link{
    margin-top: 5px;
}

.share_modal .link a{
    display: inline-block;
    vertical-align: top;

    padding-left: 5px;

    color: #2c3e50;

    text-decoration: none;
    transition: color .2s linear;
}

.share_modal .link i {
    margin-right: 10px;
}

.share_modal .link a.share1 i{
    color: #343e9b;
    margin-left: 4px;
}

.share_modal .link a.share2 i{
    color:#be3ca0;
}

.share_modal .link a.share3 i, .share_modal .link a.share4 i, .share_modal .link a.share2 i:hover{
    color: #00a0ff;
}
.share_modal .link a.share5 i{
    color: #2c3e50;
}

.share_modal .link a:hover{
    color: #00a0ff;
}

#overlay{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    display: none;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .5);
}

.overlay_block{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    display: none;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .5);
}


/*---------------   Main section---------------*/
.section_box {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.section{
    position: relative;

    overflow: hidden;
}

.section .content{
    position: absolute;
    top: 0;
    left: 15%;
    z-index: 10;

    width: 56.5%;
    height: 100%;
}

.section1 .content{
    width: 50%;
}


.main_slider{
    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;
}

.main_slider .owl-slider{
    height: 100%;
}

.main_slider .owl-slide{
    position: relative;

    display: none;
    overflow: hidden;

    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.main_slider .owl-carousel .owl-slide:first-child,
.main_slider .owl-carousel.owl-loaded .owl-slide{
    display: block;
}


.main_slider_content{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 280px;
    padding: 40px 34px 0 45px;
}

.main_slider_content .owl-slider{
    height: 100%;
}

.main_slider_content .owl-slide{
    display: none;
    overflow: hidden;

    color: #2c3e50;
    font: 17px/22px Intro;
}

.main_slider_content .owl-carousel .owl-slide:first-child,
.main_slider_content .owl-carousel.owl-loaded .owl-slide{
    display: block;
}

.main_slider_content .owl-slide .col.left{
    width: 50%;

    padding-right: 15px;
}

.main_slider_content .owl-slide .col.right{
    width: 50%;
    padding-left: 15px;
}
.main_slider_content .owl-slide .col.right h2,
.main_slider_content .owl-slide .col.left h2{
margin-bottom: 20px;
    color: #2c3e50;
    font: 700 21px/21px Intro;
    text-transform: uppercase;
}
.main_slider_content .owl-slide .col.right h2{
    font: 700 17px/21px Intro;
}

.main_slider_content .owl-slide .col.right p{
    margin-bottom: 6px;
}

.main_slider_content .owl-slide .col.left div + div,
.main_slider_content .owl-slide .col.right div + div{
    margin-top: 6px;
}
.main_slider_content .owl-slide .col.left p + p{
    margin-top: 6px;
}
.main_slider_content .owl-slide .col.left h3{
    display: block;
    text-transform: uppercase;
    font: bold 17px/22px Intro; 
}

.main_slider_content .owl-slide .name b{
    display: block;

    text-transform: uppercase;
}

.main_slider_content .owl-slide img{
    display: inline-block;
    vertical-align: middle;

    margin-left: 3px;

    border-radius: 50%;
}


.section1 .right_info{
    width: 35%;
}


.right_info{
    position: relative;
    width: 28.505%;
    height: 100%;
    z-index:99;
}

.right_info .owl-slider{
    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 50%;
}

.right_info .owl-slide{
    position: relative;

    display: none;
    overflow: hidden;

    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.right_info .owl-carousel .owl-slide:first-child,
.right_info .owl-carousel.owl-loaded .owl-slide{
    display: block;
}


.right_info .text{
    position: absolute;
    bottom: 0;
    left: 0;

    display: table;

    width: 100%;
    height: 50%;

    color: #2c3e50;
    font: 18px/26px Intro;

    text-align: center;
    letter-spacing: .02em;
}

.right_info .text .box{
    display: table-cell;
    vertical-align: middle;

    padding: 30px 40px;
}
.right_info .text .title h3{
    display:inline-block;
}
.right_info .text .title h3,
.right_info .text .title{
    margin-top: -10px;
    color: #2c3e50;
    font: 28px/33px Lineatura;
    line-height: 1.4em;
    text-transform: uppercase;
    letter-spacing: .02em;
}



.right_info .text .title img{
    display: none;

    height: 15px;
}

.right_info .text .mob_hide{
    padding-top: 29px;

    text-align: left;
}

.right_info .text h4{
    margin-top: 30px;
    margin-bottom: 10px;

    color: #2c3e50;
    font: 700 18px/26px Intro;

    text-transform: uppercase;
}

.right_info .text p + p{
    margin-top: 7px;
}

.right_info .text ul li{
    list-style: none;
}

.right_info .text ul li a{
    color: #00a0ff;
    line-height: 26px;
    text-decoration: none;
    border-bottom:1px solid #2cacf8;
}

.right_info .text ul li a:hover{
    text-decoration: none;
    border-bottom:none;
}

.right_info .text .link{
    display: inline-block;
    vertical-align: top;

    height: 60px;

    margin-top: 36px;
    padding: 4px 37px;

    color: #2c3e50;
    font: 700 18px/46px Intro;

    border: 2px solid #2c3e50;
    border-radius: 30px;

    text-decoration: none;
    text-transform: none;
    transition: .2s linear;
}

.right_info .text .link:hover{
    color: #fff;

    background: #2c3e50;
}

.section2{
    background: #f2f6ee;
}

.about{
    width: 85%;

    margin-left: 15%;
    padding: 0 60px;

    color: #2c3e50;
    font: 18px/22px Intro;
}

.about h1{
    margin-top: 26px;
    height: 30px;
    margin-bottom: 35px;
    color: #2c3e50;
    font: 30px/15px Lineatura;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 29px;
}

.about p{
    padding-bottom: 10px;
}

.about a{
    color: #00a0ff;
}

.about a:hover{
    text-decoration: none;
}

.about h2{
    margin-bottom: 20px;

    color: #2c3e50;
    font: 700 21px/21px Intro;

    text-transform: uppercase;
    letter-spacing: .05em;
}
.about .right h1{
    margin-left:0;
}

.about img{
    display: block;
    max-width: 100%;
    margin-top: 36px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.about .col_left{
    width: 50%;
    margin-left: 28px;
    padding-right: 30px;
}

.about .col_right{
    width: 45%;

}

.section3 .main_slider{
    height: calc(100% - 280px);
}

.section3 .right_info{
    background: #78b40a;
}

.section3 .right_info .box{
    vertical-align: top;

    padding-top: 150px;
}

.section3 .right_info .text{
    height: 100%;

    color: #fff;

    text-align: left;
}

.section3 .right_info .text .title,
.section3 .right_info .text h3{
    color: #fff;
}

.section4 .main_slider{
    height: calc(100% - 280px);
}

.section4 .right_info{
    background: #ffcf00;
}

.section4 .right_info .box{
    vertical-align: top;

    padding-top: 136px;
}

.section4 .right_info .text{
    height: 100%;

    text-align: left;
}

.section5 .main_slider{
    height: calc(100% - 280px);
}

.section5 .right_info{
    background: #2c3e50;
}

.section5 .right_info .box{
    vertical-align: top;

    padding-top: 150px;
}

.section5 .right_info .text{
    height: 100%;

    color: #fff;

    text-align: left;
}

.section5 .right_info .text h3,
.section5 .right_info .text .title{
    color: #fff;
}

.section6 .main_slider{
    height: calc(100% - 280px);
}

.section6 .right_info{
    background: #3ca0be;
}

.section6 .right_info .box{
    vertical-align: top;

    padding-top: 150px;
}

.section6 .right_info .text{
    height: 100%;

    color: #fff;

    text-align: left;
}

.section6 .right_info .text h3,
.section6 .right_info .text .title{
    color: #fff;
}

.section7 .main_slider{
    height: calc(100% - 280px);
}

.section7 .right_info{
    background: #f2f6ee;
}

.section7 .right_info .box{
    vertical-align: top;

    padding-top: 150px;
}

.section7 .right_info .title{

    font-size: 32px;
    line-height: 16px;
}

.section7 .right_info .text{
    height: 100%;

    text-align: left;
}

.section7 .right_info .text ul li + li,
.section8 .right_info .text ul li + li{
    margin-top: 3px;

}

.section7 .main_slider_content .owl-slide .col.left h3,
.section7 .main_slider_content .owl-slide .col.right h3{
    font-size: 21px;
        display: block;
    text-transform: uppercase;
        margin-bottom: 20px;
}

.section7 .main_slider_content .owl-slide .col.left p + p{
    margin-top: 20px;
}

.section7 .main_slider_content .owl-slide .col.right p + p{
    margin-top: 15px;
}

.section7 .main_slider_content .owl-slide a{
    color: #00a0ff;
}

.section7 .main_slider_content .owl-slide a:hover{
    text-decoration: none;
}

.section8 .main_slider{
    height: calc(100% - 280px);
}

.section8 .right_info{
    background: #f2f6ee;
}

.section8 .right_info .box{
    vertical-align: top;

    padding-top: 150px;
}

.section8 .right_info .title{
    height: 32px;

    font-size: 32px;
    line-height: 16px;
}

.section8 .right_info .text{
    height: 100%;

    text-align: left;
}

.right_info .text ul li + li{
    margin-top: 20px;
}

.section8 .main_slider_content .owl-slide .col.left h3{
    top: -13px;
    position:relative;
    color: #f00a66;
    font: 32px/42px Lineatura;

    text-align: right;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.section8 .main_slider_content .owl-slide .col.right p + p{
    margin-top: 15px;
}

.section8 .main_slider_content .owl-slide a{
    color: #00a0ff;
}

.section8 .main_slider_content .owl-slide a:hover{
    text-decoration: none;
}

.section9{
    background: #f2f6ee;
}

.contacts{
    width: 100%;

    padding: 70px 88px;

    color: #2c3e50;
    font: 18px/22px Intro;
}

.contacts .block_title{
    height: 30px;

    margin-bottom: 35px;

    color: #2c3e50;
    font: 30px/15px Lineatura;

    text-transform: uppercase;
    letter-spacing: .01em;
}

.contacts .col.left{
    width: 50%;

    padding-right: 20px;
}

.contacts .col.left div + div{
    margin-top: 10px;
}

.contacts .col.left a{
    color: #00a0ff;
}

.contacts .col.left a:hover{
    text-decoration: none;
}

.contacts .col.right{
    width: 50%;

    padding-left: 16px;
}

.contacts .col.right div + div{
    margin-top: 10px;
}

.contacts .col.right .title{
    font-weight: 700;
    line-height: 26px;

    text-transform: uppercase;
    letter-spacing: .02em;
}

.visible-lg{display: block;}
.visible-xs{display: none;}

.contacts .socials{
    margin-top: 50px !important;
}

.contacts .socials a{
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
}

.contacts .socials a + a{
    margin-left: 15px;
}

.contacts .socials a.soc1{
    background: url(../images/facebook_normal.svg) 0 0 no-repeat;
}

.contacts .socials a.soc2{
    background: url(../images/twitter_normal.svg) 0 0 no-repeat;
}

.contacts .socials a.soc3{
    background: url(../images/insta_normal.svg) 0 0 no-repeat;
}

.contacts .socials a.soc1:hover{
    background: url(../images/facebook_hover.svg) 0 0 no-repeat;
}

.contacts .socials a.soc2:hover{
    background: url(../images/twitter_hover.svg) 0 0 no-repeat;
}

.contacts .socials a.soc3:hover{
    background: url(../images/insta_hover.svg) 0 0 no-repeat;
}

.map{
    position: absolute !important;
    bottom: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: calc(50% - 35px);
}

.bottom_order_link{
    display: none;

    width: 100%;
    height: 75px;

    padding: 20px 30px;

    color: #fff;
    font: 22px/24px Lineatura;

    background: #f00a66;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.bottom_order_link img{
    position: relative;
    top: -1px;

    vertical-align: middle;

    height: 20px;

    margin-left: 11px;
}

.order_form{
    height: 100%;

    padding: 85px 25px 40px;

    background: #f00a66;
}

.order_form .close_link{
    position: absolute;
    top: 0;
    right: 0;

    display: none;

    width: 70px;
    height: 70px;

    background: url(../images/ic_close2.png) 50% 0 no-repeat;
}

.order_form .close_link:hover{
    background-position: 50% 100%;
}

.order_form .block_title{
    height: 32px;

    margin-bottom: 30px;

    color: #fff;
    font: 32px/14px Lineatura;

    text-align: center;
    text-transform: uppercase;
}

.order_form form .line{
    margin-bottom: 30px;
}

.order_form form .name{
    margin-bottom: 10px;
    color: #fff;
    font: 18px Intro;
    text-align: center;
    line-height: 18px;
}

.order_form form .input{
    display: block;

    width: 100%;
    height: 45px;

    padding: 0 20px;

    color: #2c3d50;
    font: 18px Intro;

    border: none;
    background: #fff;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, .2);

    text-align: center;
}

.order_form form .input:focus{
    box-shadow: inset 0 0 0 1px #850019, inset 0 2px 5px rgba(0, 0, 0, .2);
}

.order_form form .error_text{
        margin-top: -13px;
    color: #ffcf00;
    font: 15px Intro;
    text-align: center;
    position: relative;
    top: 18px;
}

.order_form form .error_text img{
    position: relative;
    top: 1px;

    vertical-align: top;

    margin-right: 5px;
}

.order_form form select{
    display: block;

    width: 100%;
    height: 45px;

    padding: 0 40px 0 20px;

    color: #2c3d50;
    font: 18px Intro;

    border: none;
    background: #fff;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, .2);

    text-align: center;
}

.order_form form .sbHolder{
    position: relative;

    display: block;

    width: 100%;
    height: 45px;
}

.order_form form .sbSelector{
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    height: 45px;

    padding: 0 36px 0 20px;

    color: #2c3d50;
    font: 18px/45px Intro;

    background: #fff;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, .2);

    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    text-overflow: ellipsis;
}

.order_form form .sbToggleOpen + .sbSelector{
    box-shadow: inset 0 0 0 1px #850019, inset 0 2px 5px rgba(0, 0, 0, .2);
}

.order_form form .sbToggle{
    position: absolute;
    top: 50%;
    right: 12px;
    z-index: 98;

    display: block;

    width: 12px;
    height: 12px;

    margin-top: -3px;

    border: 6px solid transparent;
    border-top-color: #2c3d50;

    content: '';
}

.order_form form .sbOptions{
    position: absolute;
    top: 45px !important;
    right: 0;
    z-index: 99;

    overflow: hidden;

    min-width: 100%;
    max-height: auto !important;

    background: #fff;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, .2);
}

.order_form form .sbOptions li{
    list-style: none;

    white-space: nowrap;
}

.order_form form .sbOptions a{
    display: block;

    width: 100%;

    padding: 0 20px;

    color: #2c3d50;
    font: 18px/40px Intro;

    text-align: center;
    text-decoration: none;
    transition: background .2s linear;
}

.order_form form .sbOptions a:hover{
    background: #e4e4ea;
}

.order_form form .submit{

    text-align: center;
}

i.fa-circle{
    margin:0 3px;
}

.order_form form .submit_btn{
    display: inline-block;
    vertical-align: top;
    height: 53px;
    padding: 0px 40px;
    color: #fff;
    font: 700 18px/44px Intro;
    opacity: .5;
    border: 2px solid #fff;
    border-radius: 30px;
    background: none;
    cursor: pointer;
    transition: opacity .2s linear;
    margin-right: 0;
    margin-left: 8px;
}

.order_form form .submit_btn:hover{
    opacity: 1;
}

#order_form_success{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;

    display: table;

    width: 35%;
    height: 100%;

    background: #f00a66;

    transition: transform .3s linear;
    transform: translateX( calc(100% + 1px));
}

#order_form_success.show{
    transform: translateX(0);
}

#order_form_success .close_link{
    position: absolute;
    top: 10px;
    right: 10px;

    display: block;

    width: 70px;
    height: 70px;

    background: url(../images/ic_close2.png) 50% 0 no-repeat;
}

#order_form_success .close_link:hover{
    background-position: 50% 100%;
}

.order_form .box{
    padding: 20px 0;
    color: #fff;
    font: 28px/40px Lineatura;
    text-align: center;
    letter-spacing: .01em;
    top: 50%;
    position: relative;
    margin-top: -120px;
}
#order_form_success .box{

display: table-cell;
    vertical-align: middle;
    height: 100%;
    padding: 20px 50px;
    color: #fff;
    font: 28px/40px Lineatura;
    text-align: center;
    letter-spacing: .01em;
}
.order_form.box div + div{
    margin-top: 20px;
}

.product {
    /* margin-top: -28px; */
    letter-spacing: 0.09em;

}
/* .name {
    width: 100%;
    letter-spacing: 0;
    margin-top: -21px;
}
 */
/*---------------   Footer---------------*/


/*---------------   PopUp---------------*/
@media all and (min-width: 1260px) and (max-height: 720px) and (max-width: 1600px){
    .contacts {
        padding: 40px;}
}