/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

html {
    box-sizing: border-box;
}
*, *::after, *::before {
    box-sizing: inherit;
}
* {
    margin: 0;
}
body {
    font: 16px 'Oswald',sans-serif;
}
a {
    text-decoration: none;
    color: #e20612;
}
h1, h2, h3 {
    font-weight: bold;
}
h1{
    font-size:22px;
}
h2{
    font-size:19px;
}
h3{
    font-size:15px;
}
li{
    list-style-type: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ul {
    list-style-position: inside;
}

.wrp {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
#header {
    position: relative;
    height: 60px;
    line-height: 60px;
    background: #cfb381;
    background: #000;
}
#header > div {
    height: 60px;
}
#header .beige {
    background: #cfb381;
     background: #000;
    font-size: 22px;
}
#header .grey {
    position: absolute;
    top: 0;
    right: 0;
    /*background:#ccc;*/
    box-sizing: border-box;
    /*border-left:5px solid #fff;*/
    padding: 0 20px;
    font-size: 17px;
    height: 60px;
}
#header .beige a {
    color: #fff;
}
#header .grey a {
    color: #fff;
}
#header ul {
    padding: 0;
}
#header ul > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 15px;
    padding-left: 15px;
}
#header ul > li:first-child {
    margin-left: 0;
    padding-left: 0;
}
#header ul > li.active {
    font-weight: bold;
}
#header ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 3px 5px #000;
    background: #fff;
    z-index: 2;
}
#header ul > li:hover > ul {
    display: block;
}
#header ul ul img {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    height: auto;
}
#header ul ul span {
    display: inline-block;
    vertical-align: middle;
}
#header ul > li > ul > li {
    display: block;
    padding: 0 50px 0 0;
    margin: 0;
    white-space: nowrap;
    cursor: pointer;
}
#header ul > li > ul > li:hover {
    color: #E20612;
}
#header .grey li:before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    height: 22px;
    border-left: 1px solid #000;
}
#header li:first-child:before {
    content: normal;
}
#header .grey li:before {
    top: 23px;
    height: 15px;
    border-left: 1px solid #fff;
}
#header .beige > ul > li {
    margin-left: 0;
    padding-left: 5px;
}
#codeInput{
    padding:16px 0 0 50px;
}
#codeInput input{
    display:block;
    border:0;
    height:30px;
    padding:3px 10px;
}

.confBtn{
    display:inline-block;
    background:#e20612;
    padding:5px 10px;
    cursor:pointer;
    color:#fff;
    text-align:center;
}
.confBtn.grey{
    background:#b2b2b2;
}

#content{
    position: relative;
    padding:0 0 20px;
}
#content .wrp{
    display: flex;
}
#content .left {
    position: relative;
    padding: 50px 40px 30px 0;
    min-width: 70%;
    box-sizing: border-box;
}
#content .left.noPaddingTopBottom{
    padding-top:0;
    padding-bottom:0;
}
#content .left .logo {
    position: absolute;
    top: 28px;
    right: 40px;
    width: 130px;
    height: auto;
}
#content .left .header {
    font-size: 22px;
    font-weight: bold;
}
#content .left .subheader {
    margin-top: 10px;
}
#content .left .subheader span {
    cursor: pointer;
}
#content .right {
    /*min-width:320px;*/
    padding: 50px 0 30px;
    min-width: 30%;
    box-sizing: border-box;
}
#content .right.noPaddingTopBottom{
    padding-top:0;
    padding-bottom:0;
}
#content .right > .header {
    font-size: 22px;
    font-weight: bold;
}
#content .colorBlock {
    margin-top: 35px;
}
#content .colorBlock .header {
    font-size: 18px;
    margin-bottom: 10px;
}
#content .colorBlock .colors {
    white-space: nowrap;
}
#content .colorBlock .colors > div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 39px;
    height: 39px;
    background: #000;
    margin-left: 5px;
    border: 2px solid #fff;
    cursor: pointer;
    box-sizing: border-box;
}
#content .colorBlock .colors > div:first-child {
    margin-left: 0;
}
#content .colorBlock .colors > div.active {
    border: 2px solid #e20612 !important;
}
#content .colorBlock .colors > div.hidden {
    display: none;
}
#content .colorBlock .colors > div.notexist:before {
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    width: 39px;
    height: 39px;
    background: #f6f8f9;
    background: -moz-linear-gradient(45deg, rgba(246, 248, 249, 0.8) 0%, rgba(229, 235, 238, 0.8) 50%, rgba(215, 222, 227, 0.8) 51%, rgba(245, 247, 249, 0.8) 100%);
    background: -webkit-linear-gradient(45deg, rgba(246, 248, 249, 0.8) 0%, rgba(229, 235, 238, 0.8) 50%, rgba(215, 222, 227, 0.8) 51%, rgba(245, 247, 249, 0.8) 100%);
    background: linear-gradient(45deg, rgba(246, 248, 249, 0.8) 0%, rgba(229, 235, 238, 0.8) 50%, rgba(215, 222, 227, 0.8) 51%, rgba(245, 247, 249, 0.8) 100%);
    cursor: default;
}
#content .colorBlock .colors > div.heritage {
    border: 0;
    background: #940e17;
    background: -moz-linear-gradient(-45deg, #940e17 0%, #940e17 50%, #e3e3e3 51%, #e3e3e3 100%);
    background: -webkit-linear-gradient(-45deg, #940e17 0%, #940e17 50%, #e3e3e3 51%, #e3e3e3 100%);
    background: linear-gradient(135deg, #940e17 0%, #940e17 50%, #e3e3e3 51%, #e3e3e3 100%);
}
#content .colorBlock .colors > div.heritage .tooltip {
    margin: 0 0 6px;
}
#content .colorBlock .colors > div.active .tooltip {
    margin: 0 0 8px;
}
#content .colorBlock .tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: -2px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 2px 10px;
    margin: 0 0 8px;
    white-space:normal;
    max-width:300px;
    white-space: nowrap;
}
#content .colorBlock .tooltip:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 4px;
    border: 7px dashed transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.7);
    border-bottom: 0;
}
#content .colorBlock .tooltip .info {
    display: none;
}
#content .colorBlock .colors > div.notexist .tooltip span {
    display: none;
}
#content .colorBlock .colors > div.notexist .tooltip .info {
    display: block;
}
#content .colorBlock .colors > div:hover .tooltip {
    display: block;
}
#content .colorBlock .colors > div:last-child .tooltip {
    left: auto;
    right: -2px;
}
#content .colorBlock .colors > div:last-child .tooltip:before {
    left: auto;
    right: 4px;
}
#content .right .btnLine {
    margin-top: 45px;
}
#content .right .btnLine .btn {
    display: inline-block;
    padding: 5px 20px;
    background: #e20612;
    color: #fff;
    font-weight: bold;
}
#leftSlider {
    position: relative;
    margin: 20px 0 0;
    padding: 0 0 0;
    /*border-bottom: 1px solid #000;*/
}
#leftSlider .top {
    position: relative;
}
.horexSlider .prev, .horexSlider .next {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 37px;
    height: 34px;
    margin-top: -17px;
    background: url("./../img/arrows_grey.png") no-repeat;
    cursor: pointer;
}
.horexSlider .next {
    right: 0;
    left: auto;
    background-position: -37px 0;
}
.horexSlider .toSlide {
    position: relative;
    overflow: hidden;
}
#leftSlider .toSlide img {
    display: none;
    width: 100%;
    height: auto;
}
#leftSlider .toSlide img:first-child {
    display: block;
}
.horexSlider .nav {
    padding: 10px 0;
    text-align: center;
    line-height: 10px;
}
.horexSlider .nav span {
    display: inline-block;
    vertical-align: top;
    background: #000;
    border-radius: 50%;
    margin-left: 20px;
    width: 10px;
    height: 10px;
    cursor: pointer;
}
.horexSlider .nav span.active {
    background: #e20612;
}
#leftSlider .fullscreen{
    position:absolute;
    top:0;
    right:0;
    z-index:1;
    cursor:pointer;
    font-size:24px;
}
#leftSlider .fullscreen .fa{
    display:block;
    font-size:24px;
}
#start {
    width: 80%;
    margin: 20px auto 0;
    text-align: center;
}
#start .header {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}
#start .models {
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
#start .models span {
    display: inline-block;
    width: 260px;
    text-align: left;
    cursor: pointer;
}
#start .models span:first-child {
    text-align: right;
}
#start .models span.active {
    font-weight: bold;
}
#start .btnLine {
    padding-bottom: 10px;
}
#startSlider{
    position: relative;
    margin: 20px 0;
}
#startSlider .toSlide{
    position: relative;
    display: inline-block;
    vertical-align: top;
}
#startSlider .toSlide > img{
    display: block;
    max-width: 100%;
    height: auto;
}
#startSlider .line{
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    margin-left: -2px;
    background: #fff;
    cursor: w-resize;
    z-index: 5;
}
#startSlider .over{
    position: absolute;
    top: 87%;
    left: -24px;
    width: 70px;
    height: 35px;
    background: url("./../img/arrow.jpg") no-repeat;
}
#startSlider .overimg{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
#startSlider .overimg img{
    display: block;
    height: 100%;
}
#step2 > .header {
    text-align:center;
    font-size:22px;
    font-weight:bold;
    margin-top:10px;
}
#step2 .wrp{
    width:66%;
}
#step2 .container{
    display:flex;
    flex-wrap:wrap;
    margin:10px -10px 0;
}
#step2 .itemWrp{
    width:50%;
    padding:0 10px;
}
#step2 .item{
    position:relative;
    min-height:100%;
    padding:20px 20px 120px;
    border:1px solid #d2d2d2;
}
#step2 .imgBlock img{
    display:block;
    width:100%;
    height:auto;
}
#step2 .item .header{
    font-size:30px;
    font-weight:bold;
    margin:30px 0 20px;
    font-weight:bold;
    text-transform:uppercase;
}
#step2 .item .text strong{
    font-weight:bold;
}
#step2 .priceBlock{
    position:absolute;
    left:0;
    bottom:20px;
    width:100%;
    padding:0 20px;
}
#step2 .priceLine{
    color:#575756;
    margin-top:25px;
}
#step2 .btnLine{
    margin-top:20px;
    text-align:right;
}
#step2 .btnLine .confBtn{
    width:50%;
}
.horexForm input[type="text"],
.horexForm input[type="email"],
.horexForm select {
    display: block;
    width: 100%;
    height: 32px;
    background: #e9e9e9;
    border: 1px solid #c9c9c9;
    box-sizing: border-box;
    padding: 0 5px;
}
.horexForm input[type="email"].inlineEl{
    display: inline-block;
    vertical-align: middle;
    width:300px;
}
.horexForm label {
    font-weight: lighter;
}
.horexForm .line {
    margin-top: 15px;
}
.horexForm .salutation label,
.horexForm .salutation select {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
}
.horexForm .checkboxline {
    position: relative;
    padding-left: 20px;
}
.horexForm .checkboxline input {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.horexForm .checkboxline label {
    display: inline-block;
    text-transform: none;
}
.horexForm .submitLine{
    margin-top:25px;
}
.horexForm .submitLine .confBtn + .confBtn{
    margin-left:15px;
}
.horexForm .submitLine input[type="submit"] {
    font: 20px 'Oswald',sans-serif;
    font-weight: 300;
    border: 0;
    background: #b2b2b2;
    display: block;
    color: #fff;
    box-sizing: border-box;
    text-align: left;
    padding: 5px 20px;
    margin-top: 30px;
}
.horexForm .error{
    border:1px solid #e20612 !important;
}
#saveWrp{
    position:relative;
}
#orderForm{
    position:relative;
    padding-bottom:20px;
}
#saveWrp + #orderWrp{
    border-top:1px solid #9D9D9B;
    margin-top:30px;
    padding-top:20px;
}
@keyframes bounce {
  0%{ transform:translateY(0px);}
  50%{ transform:translateY(-4px);}
  100%{ transform:translateY(0px);}
}
.horexFormOverlay{
display:flex;
align-items:center;
justify-content:center;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    color:#fff;
}
.horexFormOverlay span{
    display:inline-block;
    width:4px;
    height:4px;
    background: #fff;
    margin-left: 3px;
    border-radius: 50%;
    animation:bounce 1s ease infinite;
}
.horexFormOverlay span:nth-child(2){
    animation:bounce 1s ease .1s infinite;
}
.horexFormOverlay span:nth-child(3){
    animation:bounce 1s ease .2s infinite;
}
#overlay {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
#overlay > div {
    position: relative;
    width: 800px;
    /*height: 96%;*/
    background: #fff;
    margin: 2% auto;
}
#overlay.message {
    text-align: center;
}
#overlay.message:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
#overlay.message > div {
    width: 300px;
    display: inline-block;
    vertical-align: middle;
    height: auto;
    margin: auto;
    text-align: left;
}
#overlay > div > .header {
    position: absolute;
    height: 60px;
    line-height: 60px;
    background: #000;
    padding-left: 10px;
    font-size: 22px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color:#fff;
}
#overlay > div > .header .close {
    position: absolute;
    top: 14px;
    right: 10px;
    width: 35px;
    height: 32px;
    background: url("./../img/close.png");
    cursor: pointer;
}
#overlay .textWrp {
    padding-top: 60px;
    height: 100%;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#overlay .textBlock {
    padding: 5px 30px 20px;
}
#overlay.message .textBlock {
    padding: 20px 10px;
}
#overlay .textBlock .header {
    font-size: 18px;
    color: #c09c62;
    margin-top: 15px;
}
#overlay table {
    border-collapse: separate;
    width: 100%;
    margin-top: 5px;
    border-spacing: 0;
    font-size: 13px;
}
#overlay table td {
    padding: 2px 10px 2px 20px;
    border-bottom: 1px solid #e2dedd;
    border-left: 0;
    vertical-align: top;
}
#overlay table td:first-child {
    font-weight: bold;
    border-right: 0;
    width: 120px;
    padding-left: 0;
}
#overlay table tr:first-child td {
    border-top: 1px solid #e2dedd;
}
#openMobileNav {
    width: 30px;
    height: 100%;
    box-sizing: border-box;
    padding-top: 8px;
}
#openMobileNav > div {
    height: 5px;
    background: #fff;
    margin-top: 4px;
}
#openMobileNav > div:first-child {
    margin-top: 0;
}
#fullscreenOverlay{
    display:flex;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-content: stretch;
    z-index: 1;
}
#fullscreenOverlay .close{
    position:absolute;
    top:10px;
    right:10px;
    cursor:pointer;
    color:#fff;
    font-size:24px;
}
#fullscreenOverlay .overlaySlider{
    position:relative;
    background:#fff;
    margin:2%;
    width:90%;
}
#fullscreenOverlay .toSlide{
    height:100%;
}
#fullscreenOverlay .toSlide > div{
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
}
#fullscreenOverlay .toSlide img{
    max-width:100%;
    max-height:100%;
}
#fullscreenOverlay .nav{
    position:absolute;
    bottom:0;
    width:100%;
}

@media (max-width: 1200px) {
    .wrp {
        width: auto;
        padding: 0 10px;
    }
}
@media (max-width: 990px) {
    #content .left {
        width: auto;
        padding: 20px 40px 0 0;
    }
    #content .left .logo {
        position: static;
        display: block;
    }
    #content .left .header {
        margin-top: 20px;
    }
    #content .right {
        padding-top: 159px;
    }
}

@media (max-width: 840px) {
    body {
        font-size: 14px;
    }
    #content .wrp {
        display: block;
    }
    #header {
        height: 40px;
        line-height: 40px;
    }
    #header .beige {
        font-size: 16px;
    }
    #header ul ul img {
        width: 80px;
    }
    #header .grey {
        height: 40px;
        padding: 0 10px;
    }
    #header .grey ul {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: #ccc;
        z-index: 2;
    }
    #header .grey ul li {
        white-space: nowrap;
        padding: 0 20px;
        margin: 0;
    }
    #header .grey li::before {
        content: none;
    }
    #content .left {
        padding-right: 0;
    }
    #content .right {
        padding-top: 30px;
    }
    #start .header, #start .models, #content .left .header, #overlay > div > .header, #content .right > .header, #content .colorBlock .header {
        font-size: 16px;
    }
    #overlay > div {
        width: 100%;
    }
    #content .colorBlock {
        margin-top: 20px;
    }
    #content .colorBlock .colors > span {
        width: 50px;
        height: 50px;
    }
}

button {
    border: none;
    color: #FFF;
}

.image-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    margin-right: 20px;
}

.image-dot:last-child {
    margin-right: 0;
}

.image-dot--active {
    background-color: red;
}

.container > section {
    display: block;
}
.horex-text {
    display: hidden;
    font-weight: 300;
}
.horex-text strong{
    font-weight:400;
}
#content .horex-text.left{
    padding-bottom:0;
}
@media screen and (min-width: 768px) {
    .horex-text {
        display: block;
    }
}
.horex-text p {
    margin: 0 0 2em;
}
.btnBlock{
    padding-bottom: 0.25em;
    border-bottom: 1px solid #9D9D9B;
    margin-top:2em;
}
.btnBlock button {
    display: block;
    background-color: #9D9D9B;
    padding: 3px 35px;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 5px;
    
    cursor:pointer;
}
@media screen and (min-width: 510px) {
    .btnBlock button {
        display: inline-block;
    }
}
#configurator .category {
    position:relative;
    margin:2em 0 0 0;
    border-bottom:1px solid #9D9D9B;
}
#configurator .category h2 {
    padding-bottom: 0.5em;
}
#configurator .category .close{
    position:absolute;
    top:0;
    right:0;
    font-size:12px;
    color:#9D9D9B;
    padding-top:10px;
    padding:10px 0 0 25px;
    cursor:pointer;
}
#configurator .category .close:before{
    content:"";
    position:absolute;
    left:0;
    bottom:4px;
    border:9px dashed rgba(137,137,137,0);
    border-bottom-width:0;
    border-top:9px solid #898989;
}
#configurator .category .close.closed:before{
    border-top-width:0;
    border-bottom:9px solid #898989;
}
#priceInfotext{
margin-top:20px;
border-top:1px solid #9D9D9B;
padding-top:10px;
font-size:12px;
font-weight:bold;
}
.confiRadio{
    position:relative;
    display:inline-block;
    width:14px;
    height:14px;
    border:1px solid #c2073b;
    border-radius:50%;
    margin-right:8px;
}
.selected .confiRadio,
.confiRadio.selected{
    background:#c2073b;
}
.selected .confiRadio:before,
.confiRadio.selected:before{
    content:"";
    display:block;
    position:absolute;
    top:50%;
    left:50%;
    width:4px;
    height:4px;
    background:#fff;
    border-radius:50%;
    margin:-2px 0 0 -2px;
}
.confiRadio input{
    display:none;
}
.radioBlock{
    cursor:pointer;
}
.radioBlock + .radioBlock{
    margin-left:10px;
}
#configurator .sub_category{
    position: relative;
    margin: 1em 0;
    padding: 1em 0;
    border-bottom: 1px solid #DCDCDC;
}
#configurator .sub_category.hidden,
#configurator .sub_category.standardHidden{
    display:none;
}
#configurator .sub_category:not(.is_standard_equipment){
    cursor:pointer;
}
#configurator .sub_category > h3 {
    padding-left:8px;
}
#configurator .sub_category > h3 .fa {
    margin-right:8px;
    min-width:15px;
}
#configurator .sub_category .text {
    font-size: 14px;
    margin-bottom: 20px;
}
#configurator .sub_category .info{
    position:absolute;
    right:0;
    bottom:0;
    background-color:#DCDCDC;
    line-height:22px;
    min-width:108px;
    color:#fff;
    font-size:14px;
    text-align:center;
    overlfow:hidden;
}
#configurator .sub_category .info.optional {
    background-color:#5A5A5A;
}
#configurator .sub_category .info.added{
   background:#e20612;
}
#configurator .sub_category .info .price{
    display:block;
    position:relative;
    top:0;
    transition:top .2s;
}
#configurator .sub_category .info .add{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    transition:top .2s;
}
#configurator .sub_category:hover .info .price{
    top:-22px;
}
#configurator .sub_category:hover .info .add{
    top:0%;
}
#configurator .sub_category .info .addedText{
    display:none;
}
#configurator .sub_category .info.added .price,
#configurator .sub_category .info.added .add{
    display:none;
}
#configurator .sub_category .info.added .addedText{
   display:inline;
}
@media (min-width: 768px) {
    #configurator .sub_category > h3 {
        margin-right:20px;
        /*min-width:185px;*/
        /*max-width:185px;*/
    }
    
    #configurator .sub_category .text {
        margin-bottom: 0;
        margin-right:120px;
        margin-left:30px;
    }
}
#configuration {
    display: block;
    color: #5A5A5A;
    font-weight: 300;
    margin-top: 20px;
}
#configuration li {
    margin: 20px 0;
    position:relative;
}
#configuration li .fa{
    position:absolute;
    top:5px;
    right:0;
    cursor:pointer;
}
#configuration .header{
    display:none;
}
#configuration button {
    font-family: "Oswald";
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    background-color: #C50636;
    cursor:pointer;
}
#configuration .confBtn{
    /*font-size:28px;*/
    /*font-weight:bold;*/
    /*width:100%;*/
    margin-top:20px;
}
#configuration .price{
    float:right;
    padding-right:20px;
}
#configuration .sumBlock{
    border-top:1px solid #DCDCDC;
    padding-top:10px;
    font-weight:400;
}
#configuration .sumBlock .big{
    font-size:36px;
}
#configuration strong{
    font-weight:bold;
}
#confiForm{
    color: #5A5A5A;
    font-weight: 300;
}
#confiForm strong{
    font-weight:bold;
}
#confiForm .col3Block{
    display:flex;
    padding-bottom:20px;
    border-bottom:1px solid #bebebe;
}
#confiForm .col3Block img{
    display:block;
    width:100%;
    height:auto;
}
#confiForm .col3Block > div{
    width:33.33333%;
    padding:0 10px;
}
#confiForm .col3Block > div:first-child{
    padding:0;
}
#confiForm .col3Block .fontbold{
    font-weight:bold;
    margin-top:25px;
}
#confiForm .col3Block > div > .fontbold:first-child{
    margin-top:0;
}
.rightText{
    color:#5A5A5A;
    font-weight:400;
}
.rightText strong{
    font-weight:bold;
}
.rightText .big{
    font-size:36px;
}
@media screen and (max-width:840px) {
    .rightText{
        margin-top:20px;
    }
}
#firstImgPreview img{
    width:block;
    width:100%;
    height:Auto;
}
#noInfoOverlay{
position:fixed;
top:20px;
left:50%;
transform: translateX(-50%);
z-index:10;
}
#noInfoOverlay > div{
background:#fff;
padding:20px;
box-shadow:0 0 5px #000;
}