@import url("../fonts/fonts.css");
@import url("font-awesome.min.css");

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
}
body {
  color: #0c0c0c;
  background: #EBEBEB;
  font-weight: 300;
  font-family: "Russia";
  line-height: 1.2;
  font-size: 15px;
}
.page {
  overflow: hidden;
  position: relative;
}
body * {
  box-sizing: border-box;
}
button,
select, input[type="text"],
input[type="email"],
input[type="password"],
input[type="phone"],
input[type="date"],
textarea, input[type="submit"], a{
  transition: .3s ease;
}
button,
select {
  cursor: pointer;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #464646;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="phone"],
input[type="date"],
textarea {
  color: #464646;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #102942;
}

input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

img {
  max-width: 100%;
}

a {
  color: #036;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #0c0c0c;
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  line-height: 1;
  text-align: left;
}

h1 {
  font-size: 60px;
  line-height: 1;
}

h2, h3, h4 {
  color: #141414;
  font-weight: 600;
  line-height: 1;
  margin: 20px 0 15px;
  font-size: 21px;
  text-transform: uppercase;
}

h5 {
  font-size: 14px;
  line-height: 1.2;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

ol li,
ul li {
  margin: 0 0 10px;
}

p{
  margin-bottom: 15px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.flex-box.flex-column {
  flex-direction: column;
}

.flex-box.align-stretch {
  align-items: stretch;
}

.flex-box.align-none {
  align-items: inherit;
}

.flex-box.flex-center {
  align-items: center;
}

.flex-box.space-between {
  justify-content: space-between;
}

.flex-box.space-center {
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 980px;
  padding: 0 10px;
  margin: 0 auto;
  position: relative; }

input[type="checkbox"] {
  opacity: 0;
  z-index: 2;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer; }

.psevdo-checkbox {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
}

.psevdo-checkbox:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #444444;
  border-radius: 2px;
  z-index: 0;
  cursor: pointer;
  content: "";
  position: absolute;
  background: #fff;
}

.psevdo-checkbox:after {
  top: -1px;
  left: 1px;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
}

input[type="checkbox"]:checked ~ .psevdo-checkbox:after {
  text-align: center;
  background: url(../images/ico/check.svg) center center no-repeat;
}

input[type="radio"] {
  opacity: 0;
  z-index: 2;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer; }

.psevdo-radio {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
}

.psevdo-radio:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 15px;
  z-index: 0;
  cursor: pointer;
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #036;
}

.psevdo-radio:after {
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 9px;
  content: "";
  display: block;
  position: absolute;
}
input[type="radio"]:checked ~ .psevdo-radio:before {
  background: #fff;
}
input[type="radio"]:checked ~ .psevdo-radio:after {
  background: #036;
}

.form textarea {
  resize: none;
}

.form-row{
  position: relative;
}

.form-row.checkbox-row {
  padding-left: 26px;
}

.form-row.radio-row {
  padding-left: 20px;
  padding-right: 20px;
}

.form-row label {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  display: block;
}
.form-row.checkbox-row label {
  line-height: 1.2;
}

::-webkit-input-placeholder {
  color: #999999; }

::-moz-placeholder {
  color: #999999; }

:-moz-placeholder {
  color: #999999; }

:-ms-input-placeholder {
  color: #999999; }

/* input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
input[type=number]{
  -moz-appearance: textfield;
} */
.number_wrap {
  position: relative;
}
.number_wrap .number_minus {
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  width: 15px;
  padding: 0;
  display: block;
  text-align: center;
  border: none;
  border-right: 1px solid #ddd;
  font-size: 14px;
  font-weight: 500;
}
.number_wrap input {
  height: 31px;
  padding: 6px;
  width: 100%;
  text-align: center;
  font-size: 12px;
}
.number_wrap .number_plus {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 15px;
  padding: 0;
  display: block;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  font-size: 14px;
  font-weight: 500;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.35s ease-out; }

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8; }

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0; }

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.35s ease-out; }

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0; }

.btn {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  color: #fff;
  background: #000;
  font-size: 14px;
  cursor: pointer;
  padding-left: 49px;
  padding-right: 49px;
  transition: .3s ease;
  vertical-align: middle;
}
.btn:hover {
  color: #fff;
  background: #036;
}
.btn.btn_small {
  height: 22px;
  line-height: 22px;
  padding: 0 10px;
  font-size: 14px;
}
.btn.btn_lg{
  font-size: 24px;
  height: 45px;
  line-height: 45px;
  text-transform: uppercase;
}
.btn.btn_md{
  font-size: 17px;
  height: 43px;
  line-height: 43px;
}
.btn.btn_black{
  background: #000;
  border: 1px solid #aaa;
  color: #aaa;
}
.btn.btn_black:hover{
  background: #aaa;
  color: #000;
}
.btn.btn_bb{
  background: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn.btn_bb:hover{
  background: #036;
  border: 1px solid #036;
  color: #fff;
}
.btn.btn_blue{
  background: #036;
  border: 1px solid #fff;
  color: #fff;
}
.btn.btn_blue:hover{
  background: #fff;
  color: #036;
  border: 1px solid #036;
}
.btn.btn_more{
  background: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn.btn_more:hover{
  background: #036;
  border: 1px solid #036;
  color: #fff;
}
.btn.btn_gray{
  background: #737373;
  border: 1px solid #737373;
  color: #fff;
}
.btn.btn_gray:hover{
  background: #141414;
  color: #fff;
  border: 1px solid #141414;
}

.btn.load > img {
  display: inline-block;
  margin-left: 12px;
  margin-bottom: -4px;
  transition: .3s ease;
}
.btn.load:hover > img {
  transform: rotate(360deg);
}
.btn.go{
  padding-left: 55px;
  padding-right: 55px;
}
.btn.go > img {
  display: inline-block;
  margin-left: 12px;
  margin-bottom: -4px;
  transition: .3s ease;
}
.btn.go:hover > img {
  transform: scale(1.15);
}
.btn_blue {
  background: #5362EF;
  color: #fff;
}
.btn_blue:hover {
  background: #8AA594;
  color: #fff;
}
.btn_white {
  background: #fff;
  color: #DD4646;
}
.btn_white:hover {
  background: #DD4646;
  color: #fff;
}
.btn_green {
  background: #D7F0EC;
  color: #8AA594;
}
.btn_green:hover {
  background: #8AA594;
  color: #fff;
}

.jq-selectbox__select {
  height: 40px;
  padding: 0 45px 0 10px;
  border: 1px solid #102942;
  border-bottom-color: #B3B3B3;
  border-radius: 0px;
  background: #fff;
  box-shadow: none;
  font: inherit;
  color: #464646;
  text-shadow: none;
  line-height: 40px;
}
.jq-selectbox__trigger-arrow {
  top: 18px;
}
.jq-selectbox__select:hover {
  background: #fff;
}
.jq-selectbox li.selected {
  background-color: #A3ABB1;
  color: #FFF;
}
.jq-selectbox li:hover {
  background-color: #036;
  color: #FFF;
}

.title{
  color: #141414;
  font-weight: 600;
  line-height: 1;
  margin: 20px 0 15px;
  font-size: 24px;
  text-transform: uppercase;
  padding: 0;
  display: block;
  text-align: center;
}
.title.left{
  text-align: left;
}

.sub_title{
  display: block;
  margin: 0;
  padding: 0;
  font-size: 24px;
  margin-top: 32px;
  text-align: center;
}
.full_width{
  width: 100% !important;
}

.top {
  background: #141414;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}
.top_wrap{
  height: 46px;
}
.top .top_wrap .city_select {
  min-width: 50%;
  position: relative;
}
.top .top_wrap .city_select .selected_city {
  display: inline-block;
  margin-right: 35px;
}
.top .top_wrap .city_select .selected_city span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  line-height: 22px;
}
.top .top_wrap .city_select .selected_city span:nth-child(1) {
  margin-right: 7px;
}
.top .top_wrap .city_select .selected_city span:nth-child(2) {
  cursor: pointer;
}
.top .top_wrap .city_select .selected_city span:nth-child(2):hover{
  text-decoration: underline;
}
.top .top_wrap .city_select .popup_city {
    background: #fdfdfd;
    color: #fff;
    padding: 15px;
    max-width: 340px;
    width: 340px;
    max-width: 290px;
    width: 290px;
    display: none;
    position: absolute;
    top: 50px;
    top: 30px;
    left: 0;
    border: 1px solid #ccc;
    box-shadow: 0 0 8px #aaa;
    z-index: 999;
}
.top .top_wrap .city_select .popup_city .choose_title {
  color: #1e1e1e;
  padding: 0;
  display: block;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.top .top_wrap .city_select .popup_city ul.tabs {
  padding: 20px 0 0;
  margin: 0;
}
.top .top_wrap .city_select .popup_city ul.tabs li {
  list-style: none;
  border: 1px solid transparent;
  display: inline-block;
}
.top .top_wrap .city_select .popup_city ul.tabs li.active {
  border: 1px solid #1e1e1e;
}
.top .top_wrap .city_select .popup_city ul.tabs li a {
  display: block;
  line-height: 26px;
  color: #1e1e1e;
  text-decoration: none;
  padding: 0 12px;
}
.top .top_wrap .city_select .popup_city input[type="text"]{
  line-height: 30px;
  outline: none;
  border: 1px solid #e3e3e3;
  color: #6c6e6b;
  padding: 0;
  width: 100%;
  text-indent: 15px;
  margin-bottom: 3px;
  display: block;
}
.top .top_wrap .city_select .popup_city .tab_container .tab_content ul {
  /*overflow-y: scroll;*/
  width: 100%;
  display: block;
  padding: 0 0 0 3px;
  height: 150px;
  margin-bottom: 0;
  height: 280px;
}
.top .top_wrap .city_select .popup_city .tab_container .tab_content ul p {
  color: #2d3333;
  padding: 3px 0;
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}
.top .top_wrap .city_select .popup_city .tab_container .tab_content ul li {
  list-style: none;
  cursor: pointer;
  color: #2d3333;
  padding: 3px 0;
  margin: 0;
  font-size: 15px;
  line-height: 1;
}

.top .top_wrap .search {
  min-width: 25%;
  
  text-align: right;
}
.top .top_wrap .search .search_form {}
.top .top_wrap .search .search_form input[type="text"] {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 122px;
}
.top .top_wrap .search .search_form input[type="submit"] {}
.top .top_wrap .user_area {
  min-width: 25%;
  
  display: none;
}
.top .top_wrap .user_area  ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: right;
}
.top .top_wrap .user_area  ul li {
  display: inline-block;
  margin-left: 3px;
  margin-bottom: 0;
  line-height: 15px;
}
.top .top_wrap .user_area  ul li:nth-child(1){
  border-right: 1px solid #fff;
  padding-right: 7px;
  margin-left: 0;
}
.top .top_wrap .user_area  ul li a {
  color: #fff;
}

.header {
  padding-top: 25px;
  position: relative;
  z-index: 100;
}
.header .navigation {
  background: #464646;
  height: 90px;
}
.header .navigation .logo {
  display: block;
  width: 90px;
  height: 90px;
  background: #fff;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header .navigation .menu_burger{
  display: none;
}
.header .navigation .logo img{
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  object-fit: cover;
}
.header .navigation .menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  width: calc(100% - 90px);
}
.header .navigation .menu li {
  display: inline-block;
  margin: 0;
  padding-left: 12px;
  padding-right: 12px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-bottom: 2px solid #464646;
}
.header .navigation .menu li.active{
  background: #737373;
  border-bottom: 2px solid #737373;
}
.header .navigation .menu li:hover {
  border-bottom: 2px solid #f5d328;
}
.header .navigation .menu li a {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  color: #fff;
  text-transform: uppercase;
  font-family: 'AGLettericaCondensedLight';
  text-decoration: none;
  font-size: 13px;
}
.header .navigation .menu li .sub_menu{
  display: none;
}
.header .sub_navigation{
  background: #737373;
  padding: 12px;
}
.header .sub_navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header .sub_navigation ul li{
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  border-left: 1px solid #fff;
  padding-right: 3px;
  line-height: 15px;
  padding-left: 5px;
}
.header .sub_navigation ul li:nth-child(1){
  border-left: 1px solid transparent;
  padding-left: 0;
}
.header .sub_navigation ul li a{
  color: #ebebeb;
  font-size: 16px;
}
.header .sub_navigation ul li.active a {
  font-weight: 600;
}

.breadcrumbs {
  margin-top: 10px;
  margin-bottom: 20px;
}
.breadcrumbs .breadcrumb {
  font-size: 0;
}
.breadcrumbs .breadcrumb .item {
  white-space: nowrap;
  line-height: 14px;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
  font-size: 14px;
}
.breadcrumbs .breadcrumb .item i {
  color: #b5bdc2;
  line-height: 13px;
  font-size: 12px;
  vertical-align: middle;
  margin-right: 5px;
}
.breadcrumbs .breadcrumb .item a {}
.breadcrumbs .breadcrumb .item span {}

.promo {
  margin-top: -115px;
}
.promo .slider_wrap{
  position: relative;
}
.promo .slider_wrap .promo_nav {
  background: rgba(20,20,20,.5);
  color: #fff;
  font-size: 32px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: background .3s;
  width: 46px;
  z-index: 1;
  font-weight: normal;
}
.promo .slider_wrap .promo_nav:hover {
  background:rgba(20,20,20,.8);
  color:#fff
}
.promo .slider_wrap .promo_nav.nav_prev{
  left: 0;
}
.promo .slider_wrap .promo_nav.nav_next{
  right: 0;
}
.promo .slider_wrap .promo_slider .item {
  height: 660px;
  overflow: hidden;
  position: relative;
}
.promo .slider_wrap .promo_slider .item img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
  height: 660px;
  object-fit: cover;
  
  width: 100%;
}
.promo .slider_wrap .promo_slider .item .info{
  position: relative;
  height: 660px;
}
.promo .slider_wrap .promo_slider .item .info span {
  color:#fff;
  position:absolute;
  display: block;
  z-index: 100;
  opacity: 0;
  left: 0;
}
.promo .slider_wrap .promo_slider .item .info span.head {
  background:#036;
  bottom:100%;
  font-size:56px;
  line-height:1;
  padding:5px 10px;
  line-height: 56px;
  text-transform: uppercase;
  width: 100%;
  font-weight:500;
  bottom: 100%;
  transition: opacity .6s cubic-bezier(.65,.11,.86,.37),bottom .6s ease-out;
}
.promo .slider_wrap .promo_slider .item .info span.description {
  background:rgba(20,20,20,.7);
  max-width:60%;
  padding:12px;
  top:100%;
  transition: opacity .6s cubic-bezier(.65,.11,.86,.37),top .6s ease-out;
}
.promo .slider_wrap .promo_slider .slick-active .item .info span.head {
  bottom:120px;
  opacity:1;
  margin:15px 0;
}
.promo .slider_wrap .promo_slider .slick-active .item .info span.description {
  opacity:1;
  top:336px;
}
.promo .promo_link {
  margin-top: -125px;

}
.promo .promo_link .items {
  display: flex;
  flex-wrap: wrap;
}
.promo .promo_link .items .item {
  width: 25%;
  color: #fff;
  padding: 28px 16px;
  position: relative;
  text-align: center;
  transition: background .15s,color .15s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promo .promo_link .items .item:hover{
  color: #141414 !important;
  background: #fff !important;
}
.promo .promo_link .items .item:nth-child(1) {
  background: #737373;
}
.promo .promo_link .items .item:nth-child(2) {
  background: #646464;
}
.promo .promo_link .items .item:nth-child(3) {
  background: #555555;
}
.promo .promo_link .items .item:nth-child(4) {
  background: #464646;
}
.promo .promo_link .items .item span {
  display: block;
}
.promo .promo_link .items .item span.icon {
  height: 64px;
  width: 64px;
}
.promo .promo_link .items .item span.icon img{
  height: 64px;
  width: 64px;
  object-fit: contain;
  filter: invert(100%);
}
.promo .promo_link .items .item:hover span.icon img{
  filter: invert(0%);
}
.promo .promo_link .items .item span.name {
  font-size: 18px;
  margin: 22px 0;
  text-transform: uppercase;
  width: 100%;
}
.promo .promo_link .items .item span.description {
  color: #c8c8c8;
  font-size: 14px;
  transition: color .15s;
}

.main_catalog {
  width: 25%;
  box-shadow: 0 0 8px #aaa;
  width: 30%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.main_catalog .head {
  display: block;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  color: #141414;
  line-height: 1;
  margin: 20px 0 15px;
  font-size: 21px;
}
.main_catalog .slider_wrap{
  position: relative;
}
.main_catalog .slider_wrap .catalog_nav {
  background: rgba(20,20,20,.5);
  color: #fff;
  font-size: 25px;
  height: 38px;
  line-height: 35px;
  margin-top: -105px;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: background .3s;
  width: 28px;
  z-index: 1;
  font-weight: normal;
}
.main_catalog .slider_wrap .catalog_nav:hover {
  background:rgba(20,20,20,.8);
  color:#fff
}
.main_catalog .slider_wrap .catalog_nav.nav_cat_prev{
  left: 0;
}
.main_catalog .slider_wrap .catalog_nav.nav_cat_next{
  right: 0;
}
.main_catalog .slider_wrap .catalog_slider {}
.main_catalog .slider_wrap .catalog_slider .item {
  padding: 20px;
}
.main_catalog .slider_wrap .catalog_slider .item .image {
  min-height: 120px;
  display: block;
}
.main_catalog .slider_wrap .catalog_slider .item .image img {
  width: 100%;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.main_catalog .slider_wrap .catalog_slider .item span {
  display: block;
}
.main_catalog .slider_wrap .catalog_slider .item .name {
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
  white-space: nowrap;
  color: #141414;
  font-weight: 500;
  line-height: 1;
  font-size: 21px;
  text-transform: uppercase;
}
.main_catalog .slider_wrap .catalog_slider .item .description {
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}
.main_catalog .slider_wrap .catalog_slider .item .price {
  margin-bottom: 15px;
  font-size: 16px;
}
.main_catalog .slider_wrap .catalog_slider .item .price b {
  font-weight: 700;
}
.main_catalog .slider_wrap .catalog_slider .item .thumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.main_catalog .slider_wrap .catalog_slider .item .thumbs .thumb {
  width: 20%;
  padding-left: 5px;
  padding-right: 5px;
  cursor: pointer;
}
.main_catalog .slider_wrap .catalog_slider .item .thumbs .thumb.active{
  display: none;
}
.main_catalog .slider_wrap .catalog_slider .item .thumbs .thumb img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.main_catalog .slider_wrap .catalog_slider .item .thumbs .thumb span{
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: 12px;
}

.main_calculator {
  width: calc(70% - 20px);
  box-shadow: 0 0 8px #aaa;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.main_calculator .calculator_wrap {
  display: flex;
  flex-wrap: wrap;
}
.main_calculator .controls {
  display: flex;
  width: 45%;
  background: #464646;
  padding: 14px;
  font-size: 14px;
  color: #fff;
  min-height: 467px;
}
.main_calculator.inner .controls {
  width: 35%;
}
.main_calculator .calculator_wrap .controls .wrap .link {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 25px;
}
.main_calculator .calculator_wrap .controls .wrap .head {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 18px;
}
.main_calculator .calculator_wrap .controls .wrap .tab_control {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.main_calculator .calculator_wrap .controls .wrap .tab_control li {
  width: 32%;
}
.main_calculator .calculator_wrap .controls .wrap .tab_control li.active {}
.main_calculator .calculator_wrap .controls .wrap .tab_control li a {
  display: block;
  width: 100%;
  height: 52px;
  background: #fff;
  text-align: center;
  line-height: 52px;
}
.main_calculator .calculator_wrap .controls .wrap .tab_control li a img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 29px;
  filter: grayscale(100%);
}
.main_calculator .calculator_wrap .controls .wrap .tab_control li.active a img {
  filter: grayscale(0%);
}
.main_calculator .calculator_wrap .controls .wrap .tab {}
.main_calculator .calculator_wrap .controls .wrap .tab .head {
  margin-top: 10px;
}
.main_calculator .calculator_wrap .controls .wrap .tab .input {
  margin-bottom: 5px;
  margin-top: 5px;
}
.main_calculator .calculator_wrap .controls .wrap .tab .input .lbl {
  width: 68%;
}
.main_calculator .calculator_wrap .controls .wrap .tab .input .lbl em {
  color: #fe4f4f;
  font-style: normal;
}
.main_calculator .calculator_wrap .controls .wrap .tab .input .tooltip {
  display: none;
}
.main_calculator .calculator_wrap .controls .wrap .tab .input .number_wrap {
  width: 30%;
}
.main_calculator .calculator_wrap .controls .wrap .tab .input .number_wrap input {
  height: 31px;
  padding: 6px;
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.main_calculator .calculator_wrap .controls .wrap .tab .input .input_wrap {
  width: 30%;
}
.main_calculator .calculator_wrap .controls .wrap .tab .input .input_wrap .col {
  width: 49%;
}
.main_calculator .calculator_wrap .controls .wrap .tab .input .input_wrap .col em {
  display: block;
  color: #fe4f4f;
  font-style: normal;
  text-align: center;
}
.main_calculator .calculator_wrap .controls .wrap .tab .input .input_wrap .col input {
  height: 31px;
  padding: 6px;
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.main_calculator .calculator_wrap .controls .wrap .tab .btn.btn_lg{
  width: 100%;
  display: block;
  margin-top: 15px;
}
.main_calculator .calculator_wrap .scheme {
  display: flex;
  width: 55%;
}
.main_calculator.inner .calculator_wrap .scheme {
  width: 65%;
}
.main_calculator .calculator_wrap .scheme .variant {
  display: none;
  padding: 30px;
  text-align: center;
  width: 100%;
}
.main_calculator .calculator_wrap .scheme .variant.active{
  display: block;
}
.main_calculator .calculator_wrap .scheme .variant .name {
  display: block;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
.main_calculator .calculator_wrap .scheme .variant img{
  max-width: 100%;
  display: inline-block;
  margin-top: 75px;
/*   max-height: 250px; */
}

.dealers_map {
  position: relative;
}
.dealers_map .legend {
  position: absolute;
  width: 100px;
  z-index: 1;
  right: 0;
  top: 60px;
}
.dealers_map .legend span{
  display: block;
  width: 100px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.8);
}
.dealers_map .legend span.wholesale {

}
.dealers_map .legend span.wholesale:before {
  content: "";
  display: block;
  float: left;
  margin-right: 7px;
  border-radius: 10px;
  width: 15px;
  height: 15px;
  position: relative;
  background: #036;
  background: url(../images/ico/map/g3.png) no-repeat 50%;
  background-size: contain;
  top: 2px;
}
.dealers_map .legend span.retail {

}
.dealers_map .legend .retail:before {
  content: "";
  display: block;
  float: left;
  background: url(../images/ico/map/g2.png) no-repeat 50%;
  background-size: contain;
  margin-right: 7px;
  border-radius: 10px;
  width: 15px;
  height: 15px;
  position: relative;
  top: 2px;
}
.dealers_map .map_main {
  height: 300px;
  width: 100%;
}
.dealers_map .dealers_list {
  display: none !important;
}
.dealers_map .google_window {
  text-align: center;
  position: relative;
  padding: 10px;
}
.dealers_map .google_window .name {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 5px;
}
.dealers_map .google_window .address {
  margin-bottom: 5px;
  font-size: 13px;
}
.dealers_map .google_window .phone {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
}
.dealers_map .google_window .site {
  font-size: 14px;
  margin-bottom: 5px;
}
.dealers_map .gm-style .gm-style-iw-d{
  max-height: 200px !important;
}
.dealers_map .buttons{
  text-align: center;
  padding-top: 20px;
}

.main_info {

}
.main_info .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main_info .items .item {
  width: 24%;
  display: flex;
  background: #fff;
}
.main_info .items .item .wrap{
  text-align: center;
}
.main_info .items .item .wrap .image {}
.main_info .items .item .wrap .image img {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
}
.main_info .items .item .wrap a.name {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 10px;
}
.main_info .items .item .wrap p {
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  hyphens: auto;
  font-size: 14px;
}
.main_info .items .item .wrap p a {}
.main_info .buttons {
  text-align: center;
  padding-top: 20px;
}

.main_discount {
  color: #fff;
  margin: 32px auto;
  padding: 28px 0;
  text-align: center;
  background: url(../images/e8c100a9c68e039dde7ed0858ed89d7d.jpg) center center no-repeat;
}
.main_discount span {
  display: block;
}
.main_discount span.first {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.main_discount span.second {
  font-size: 36px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.main_discount span.blue {
  background: #036;
  display: inline-block;
  font-size: 48px;
  margin: 12px 0;
  padding: 5px 10px;
  text-transform: uppercase;
}
.main_discount span.description {
  font-size: 16px;
  margin: 12px auto;
  max-width: 400px;
}
.main_discount .btn_more {}

.main_links {}
.main_links .items {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main_links .items .item {
  display: flex;
  width: 32%;
}
.main_links .items .item a {
  display: block;
  text-align: center;
}
.main_links .items .item a img{
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
.main_links .items .item a span{
  display: block;
  padding-top: 15px;
  color: #141414;
  font-size: 18px;
  text-transform: uppercase;
}
.main_links .items .item a:hover span {
  color: #036;
}

.content {

}
.content .column_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.content .column_wrap .wrapper {
  width: calc(100% - 253px);
}
.content .column_wrap .sidebar {
  width: 228px;
}
.content .dealer_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.content .dealer_wrap .wrapper {
  width: calc(100% - 230px);
}
.content .dealer_wrap .sidebar {
  width: 210px;
}
.content .column_wrap .sidebar .sub_title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
}

.advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.advantages .item {
  display: flex;
  width: calc(33.3333% - 7px);
  margin-bottom: 10px;
  margin-right: 10px;
}
.advantages.double .item {
  width: 49%;
}
.advantages .item:nth-child(3n+3){
  margin-right: 0;
}
.advantages.double .item:nth-child(3n+3){
  margin-right: 10px;
}
.advantages.double .item:nth-child(2n+2){
  margin-right: 0;
}
.advantages .item .wrap {
  background: #fff;
  hyphens: auto;
  position: relative;
  
  width: 100%;
}
.articles .advantages .item .wrap {
  padding-bottom: 30px;
}
.advantages .item .wrap .image {
  position: relative;
}
.advantages .item .wrap .image .lbl {
  position: absolute;
  right: 12px;
  top: 12px;
}
.advantages .item .wrap .image .lbl img {}
.advantages .item .wrap .image > img{
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
  
  height: auto;
}
.advantages .item .wrap .name {
  display: block;
  /* padding: 12px; */
  padding: 12px 0px 0 24px;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.2;
}
.advantages .item .wrap .description {
  display: block;
  padding: 12px;
  font-size: 14px;
}
.advantages .item .wrap .date{
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 14px;
  color: #737373;
}

.ico_menu {
  list-style-type: none;
  margin: 0;
  top: 0;
}
.ico_menu li{
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
  min-height: 50px;
  line-height: 50px;
  transition: .3s ease;
}
.ico_menu li:hover{
  opacity: 0.8;
}
.ico_menu li a img{
  display: inline-block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  vertical-align: middle;
}
.ico_menu li a span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
  margin-left: 5px;
}
.ico_menu li:hover a span {
  color: #0c0c0c;
}

.ask_question {
  background: #036 url(../images/ico/sidebar/sidebar-faq-link.png) center 20px no-repeat;
  color: #fff;
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 100px 0 20px;
  text-align: center;
}
.ask_question strong {
  display: block;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 8px;
}
.ask_question:hover {
  background-color:#141414;
  color:#fff;
}

.tags_cloud {}
.tags_cloud a:hover {
  opacity: 0.7;
  color: #036;
}

.catalog_section{

}
.catalog_section .item{
  width: 24%;
  background: #fff;
  color: #141414;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #fff;
}
.catalog_section .item:hover{
  background: transparent;
  border: 1px solid #141414;
}

.catalog_element {}
.catalog_element .element_gallery {}
.catalog_element .element_gallery .type {
  margin-top: 15px;
  margin-bottom: 15px;
}
.catalog_element .element_gallery .type .lbl {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  color: #141414;
  line-height: 1;
  font-weight: 400;
}
.catalog_element .element_gallery .type ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.catalog_element .element_gallery .type ul li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 5px;
  width: 90px;
  height: 50px;
}
.catalog_element .element_gallery .type ul li a {
  display: block;
  background: #fff;
  border: 1px solid #fff;
}
.catalog_element .element_gallery .type ul li a.active{
  border: 1px solid #036;
}
.catalog_element .element_gallery .type ul li a img {
  width: 90px;
  height: 50px;
  display: inline-block;
  object-fit: contain;
}
.catalog_element .element_gallery .result_view {
  margin-bottom: 15px;
}
.catalog_element .element_gallery .result_view img{
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.catalog_element .element_description {

}
.catalog_element .element_description table {
  margin: 15px 0;
  width: 100%;
}
.catalog_element .element_description table th {
  padding: 10px;
  background: #464646;
  border: 1px solid #464646;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.catalog_element .element_description table td {
  padding: 10px;
  background: #fff;
  border: 1px solid #aaa;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.catalog_element .element_description table td span {
  display: none;
}

.questions {
  position: relative;
}
.questions .btn {
  position: absolute;
  top: -50px;
  right: 0;
}
.questions .items {

}
.questions .items .item {
  padding-top: 20px;
}
.questions .items .item .question {
  display: block;
  color: #141414;
  font-weight: 500;
  line-height: 1;
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.questions .items .item .answer {}
.questions .items .item .answer:hover {
  text-decoration: underline;
}

.text_page {
  text-align: left;
}
.text_page p {}
.text_page b, .text_page strong{
  font-weight: 500;
}
.text_page ul , .text_page ol {
  padding-left: 35px;
}
.text_page .img_left{
  float: left;
  margin-right: 15px;
  max-width: 32%;
}
.text_page .img_right {
  float: right;
  margin-left: 15px;
  max-width: 32%;
}
.text_page .img_full {
  width: 100%;
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 15px;
  margin-top: 15px;
}
.text_page .video_wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
  margin: 15px 0;
}
.text_page .video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}

.catalog_section_tile {}
.catalog_section_tile .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.catalog_section_tile .items .item {
  display: flex;
  width: 24%;
}
.catalog_section_tile.third .items .item{
  width: 32%;
}

.catalog_section_tile .items .item .wrap {
  background: #fff;
  text-align: center;
}
.catalog_section_tile .items .item .wrap img{
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
}
.catalog_section_tile .items .item .wrap .info{
  padding: 14px;
}
.catalog_section_tile .items .item .wrap .info .name {
  display: block;
  height: 50px;
  overflow: hidden;
  font-weight: 400;
  margin-bottom: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #1a1a1a;
  font-size: 18px;
}
.catalog_section_tile .items .item .wrap .info .btn {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.interesting {
  margin: 15px 0;
}
.interesting .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.interesting .wrap .image {
  width: 50%;
}
.interesting .wrap .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interesting .wrap .text {
  width: 50%;
  background: #036;
  color: #fff;
  line-height: 1.4;
  padding: 20px;
}

.colors_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.colors_gallery .thumbs {
  width: 49%;
}
.colors_gallery .thumbs  ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.colors_gallery .thumbs ul li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 1px;
  width: 90px;
  height: 90px;
  margin-bottom: 5px;
}
.colors_gallery .thumbs ul li:last-child{
  margin-right: 0;
}
.colors_gallery .thumbs ul li a {
  display: block;
  background: #fff;
  border: 1px solid #fff;
}
.colors_gallery .thumbs ul li a.active{
  border: 1px solid #036;
}
.colors_gallery .thumbs ul li a img {
  width: 90px;
  height: 90px;
  display: inline-block;
  object-fit: contain;
}
.colors_gallery .result_view {
  width: 49%;
  background: #fff;
}
.colors_gallery .result_view  img{
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

.seo_text {
  text-align: left;
}
.seo_text.white {
  background: #fff;
  padding: 40px 80px;
}
.seo_text p {}
.seo_text b, .seo_text strong{
  font-weight: 500;
}
.seo_text ul , .seo_text ol {
  padding-left: 35px;
}


.instructions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: #fff;
}
.instructions .item {
  width: 33.33333%;
  display: flex;
  background: #fff;
  margin-bottom: 10px;
}
.instructions .item .wrap {
  width: 100%;
  text-align: center;
  padding: 10px;
}
.instructions .item .wrap img {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
}
.instructions .item .wrap .name {
  display: block;
  font-weight: 400;
  margin: 12px 0;
  text-transform: uppercase;
}

.steps {}
.steps .indication {
  margin: 30px 0;
  text-align: center;
}
.steps .indication ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.steps .indication ul li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 20px;
  position: relative;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
}
.steps .indication ul li:nth-child(2):before {
  position: absolute;
  left: -20px;
  top: 9px;
  width: 20px;
  height: 2px;
  background: #737373;
  content: "";
}
.steps .indication ul li:nth-child(2):after {
  position: absolute;
  right: -20px;
  top: 9px;
  width: 20px;
  height: 2px;
  background: #737373;
  content: "";
}
.steps .indication ul li a {
  display: block;
  background: #fff;
  border-radius: 20px;
  font-size: 14px;
  line-height: 17px;
  border: 2px solid #737373;
  border-radius: 20px;
}
.steps .indication ul li a.active {
  background: #036;
  color: #fff;
  border: 2px solid #036;
}
.steps .step {
  display: none;
}
.steps .step:nth-child(2) {
  display: block;
}

.nav_tabs{
  font-size: 0;
}
.nav_tabs .item {
  display: inline-block;
  vertical-align: top;
  padding: 15px;
  background-color: #ebebeb;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #d7d7d7;
  border-radius: 2px 10px 0 0;
}
.nav_tabs .item.active {
  background-color: #fff;
}
.nav_tabs .item .title{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 21px;
  font-weight: 500;
}
.nav_tabs .item a {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

.compare {
  margin-top: 30px;
  margin-bottom: 30px;
}
.compare .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.compare .item .info {
  width: 45%;
  display: flex;
  padding-right: 30px;
}
.compare .item .info .ico {
  width: 30%;
}
.compare .item .info .ico img {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}
.compare .item .info .text {
  padding-left: 20px;
  width: 70%;
}
.compare .item .info .text span {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 21px;
  line-height: 1;
}
.compare .item .image {
  width: 55%;
  display: flex;
  padding-left: 50px;
  background: url("../images/ico/compare/result.png") left center no-repeat;
  align-items: center;
}
.compare .item .image img {}

.manufacturers {}
.manufacturers .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.manufacturers .items .item {
  display: flex;
  width: 49%;
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  justify-content: space-between;
  align-items: center ;
}
.manufacturers .items .item .image {
  width: 30%;
}
.manufacturers .items .item .image img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
.manufacturers .items .item .info {
  width: 70%;
}
.manufacturers .items .item .info .name {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.manufacturers .items .item .info span {
  display: block;
  margin-bottom: 5px;
}

.dealers {}
.dealers .filter {
  background: #036;
  padding: 10px 15px;
}
.dealers .filter > div {
  width: 24%;
}
.dealers .filter .controls {
  text-align: right;
}
.dealers .filter .controls .btn {
  text-transform: uppercase;
}
.dealers .buttons{
  margin-top: 10px;
}
.dealers .buttons .btn{
  width: 49%;
  text-align: center;
  text-transform: none;
  font-size: 17px;
  height: 48px;
  line-height: 48px;
}
.dealers .buttons .btn:hover{
  color: #fff;
  background: #141414;
}
.dealers .views{
  margin-top: 10px;
  margin-bottom: 10px;
}
.dealers .views .emty{
  width: 49%;
}
.dealers .views .wrap {
  width: 49%;
}
.dealers .views .wrap .btn{
  width: 45%;
  text-align: center;
}

.dealers_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 20px;
}
.dealers_list .item {
  width: 24%;
  margin-right: 1%;
  margin-bottom: 1%;
  padding: 10px;
  background: #fff;
}
.dealers_list .item .name {
  margin-bottom: 5px;
  font-weight: bold;
}
.dealers_list .item .address {
  font-size: 13px;
  margin-bottom: 5px;
}
.dealers_list .item .phone {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.dealers_list .item .site {
  font-size: 14px;
  margin-bottom: 5px;
}

.dealer_wrap {}
.dealer_wrap .sidebar {
  text-align: center;
}
.dealer_wrap .sidebar .image {
  margin-bottom: 20px;
}
.dealer_wrap .sidebar .image img {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}
.dealer_wrap .sidebar .contacts {

}
.dealer_wrap .sidebar .contacts span {
  display: block;
  margin-bottom: 15px;
}
.dealer_wrap .sidebar .contacts span.address {
}
.dealer_wrap .sidebar .contacts span.phone {
  font-size: 24px;
}
.dealer_wrap .sidebar .contacts span.email {}
.dealer_wrap .sidebar .contacts span.site {
  font-size: 24px;
}
.dealer_wrap .sidebar .contacts .share {}
.dealer_wrap .dealer_info {}
.dealer_wrap .dealer_info .description {}
.dealer_wrap .dealer_info .map {}
.dealer_wrap .dealer_info .map .address {
  margin-bottom: 20px;
}
.dealer_wrap .dealer_info .map .address span {
  display: block;
  margin-bottom: 5px;
}
.dealer_wrap .dealer_info .reviews {
  margin-top: 30px;
  margin-bottom: 60px;
}
.dealer_wrap .dealer_info .reviews .controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.manufacturers {}
.manufacturers .manufacturers_map {
  margin: 15px 0;
  /* overflow: hidden; */
  position: relative;
}
.manufacturers .manufacturers_map .map_marker{
  background: url(../images/ico/map/marker.png) no-repeat left top;
  display: block;
  height: 28px;
  position: absolute;
  width: 20px;
  z-index: 22;
  bottom: 180px;
  left: 300px;
}
.manufacturers .manufacturers_map .map_popup{
  background:#fff;
  box-shadow:5px 5px 10px 0 rgba(0,0,0,.5);
  display:none;
  font-size:14px;
  margin:0 0 28px;
  padding:20px;
  position:absolute;
  z-index:33;
}
.manufacturers .manufacturers_map .map_popup:after{
  border-color:#fff transparent transparent;
  border-style:solid;
  border-width:10px 5px 0;
  bottom:-10px;
  content:"";
  display:block;
  height:0;
  left:5px;
  position:absolute;
  width:0;
}
.manufacturers .manufacturers_map .map_popup .close{
  font-size:20px;
  position:absolute;
  right:6px;
  top:0
}
.manufacturers .manufacturers_map .map_popup .contacts .name{
  font-size:15px;
  margin-bottom: 10px;
}
.manufacturers .manufacturers_map .map_popup .contacts span{
  color:#737373;
  display:block;
  margin-top: 8px;
}
.manufacturers .manufacturers_list {}
.manufacturers .manufacturers_list .item {
  border-bottom: 1px solid #bebebe;
  margin-bottom: 15px;
}
.manufacturers .manufacturers_list .item .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.manufacturers .manufacturers_list .item .info .image {
  width: 200px;
  display: flex;
  background: #fff;
  align-items: center;
  text-align: center;
}
.manufacturers .manufacturers_list .item .info .image img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
.manufacturers .manufacturers_list .item .info .description {
  width: calc(100% - 215px);
  display: flex;
  flex-direction: column;
}
.manufacturers .manufacturers_list .item .info .description .name {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.manufacturers .manufacturers_list .item .info .description p:last-child{
  margin-bottom: 0;
}
.manufacturers .manufacturers_list .item .contacts {
  color: #141414;
  padding: 10px 0;
}
.manufacturers .manufacturers_list .item .contacts span {
  display: inline-block;
  margin-right: 25px;
}
.manufacturers .manufacturers_list .item .contacts span:last-child{
  margin-right: 0;
}

.manufacturer_wrap {}
.manufacturer_wrap .controls {

}
.manufacturer_wrap .info {
  box-shadow: 0 0 8px #aaa;
  background: #fff;
  margin-top: 30px;
}
.manufacturer_wrap .info .banner {
  position: relative;
  width: 100%;
  height: 245px;
  overflow: hidden;
}
.manufacturer_wrap .info .background {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manufacturer_wrap .info .logo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 238px;
  height: 165px;
  z-index: 2;
  background: #fff;
  padding: 15px;
}
.manufacturer_wrap .info .logo img {
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  object-fit: cover;
}
.manufacturer_wrap .info .description {
  padding: 15px;
}
.manufacturer_wrap .contact_us {}
.manufacturer_wrap .contact_us .contact {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 8px #aaa;
  width: 50%;
}
.manufacturer_wrap .contact_us .contact span{
  display: block;
  margin-bottom: 10px;
}
.manufacturer_wrap .contact_us .contact span:last-child{
  margin-bottom: 0;
}

.top_links {

}
.top_links a {
  background: #fff;
  color: #141414;
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 24%;
}
.top_links a.active, .top_links a:hover {
  background: #036;
  color: #fff;
}

.gallery {}
.gallery .big_slider {}
.gallery .big_slider .item {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.gallery .big_slider .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .small_slider {
  margin-top: 20px;
}
.gallery .small_slider .item {
  width: 100%;
  height: 100px;
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}
.gallery .small_slider .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: .3s ease;
}
.gallery .small_slider .slick-current .item img {
  filter: grayscale(0%);
}

.education {
  padding-top: 70px;
}
.education .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.education .items .item {
  width: 49%;
  padding-bottom: 50px;
  position: relative;
}
.education .items .item .image {
  position: relative;
}
.education .items .item .image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: inline-block;
  vertical-align: top;
}
.education .items .item .image .link {
  position: absolute;
  display: block;
  padding: 5px 10px;
  background: #036;
  color: #fff;
  text-transform: uppercase;
  left: 0;
  bottom: 0;
  font-size: 25px;
  width: 100%;
}
.education .items .item .description {
  padding-top: 25px;
  padding-bottom: 10px;
}
.education .items .item .description p {}
.education .items .item .controls {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.education .items .item .controls .btn {}

.order {}
.order .order_form {}
.order .order_form .types {}
.order .order_form .types .show_type {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.order .order_form .types .show_type .item {
  width: 32%;
  background: #fff;
}
.order .order_form .types .show_type .item .image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #fff;
}
.order .order_form .types .show_type .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.order .order_form .types .show_type .item .description {
  padding: 15px;
}
.order .order_form .types .show_type .item .description .name {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
}
.order .order_form .types .show_type .item .description .chars {}
.order .order_form .types .show_thubs {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.order .order_form .types .show_thubs .lbl {
  width: 100px;
  font-size: 16px;
}
.order .order_form .types .show_thubs ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  width: calc(100% - 100px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.order .order_form .types .show_thubs ul li {
  display: inline-block;
  margin-bottom: 0;
  width: 16%;
  margin-bottom: 5px;
}
.order .order_form .types .show_thubs ul li:last-child{
  margin-right: 0;
}
.order .order_form .types .show_thubs ul li a {
  display: block;
  background: #fff;
  border: 1px solid #fff;
}
.order .order_form .types .show_thubs ul li a.active{
  border: 1px solid #036;
}
.order .order_form .types .show_thubs ul li a img {
  width: 100%;
  height: 100px;
  display: inline-block;
  object-fit: contain;
}
.order .order_form .calc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 15px;
  background: #fff;
}
.order .order_form .calc .lbl {
  font-size: 16px;
}
.order .order_form .calc .lbl b {
  display: none;
}
.order .order_form .calc .number_wrap{
  width: 100px;
}
.order .order_form .calc .number_wrap input{
  height: 40px;
  border: 1px solid #ddd;
  font-size: 16px;
}
.order .order_form .calc .quatro {
  width: 50%;
  align-items: center ;
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  padding-right: 50px;
}
.order .order_form .calc .quatro .lbl {
  padding-right: 30px;
}
.order .order_form .calc .quantity {
  width: 50%;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  padding-left: 50px;
  position: relative;
}
.order .order_form .calc .quantity:before {
  background: url("../images/ico/calculator/ravno-img.webp") center top  no-repeat;
  width: 46px;
  height: 34px;
  position: absolute;
  left: -22px;
  top: 3px;
  content: "";
}
.order .order_form .calc .quantity .lbl {
  padding-left: 30px;
}

.order .order_form .form {
  padding: 15px;
  background: #fff;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.order .order_form .form .wrap {
  width: 70%;
  padding-right: 20px;
}
.order .order_form .form .wrap .tlt {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}
.order .order_form .form .wrap .line {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.order .order_form .form .wrap .line label{
  width: 25%;
  text-align: right;
  padding-right: 10px;
}
.order .order_form .form .wrap .line input{
  width: 75%;
  padding-left: 10px;
  height: 40px;
  padding-left: 10px;
}
.order .order_form .form .wrap textarea {
  display: block;
  width: 100%;
  height: 300px;
  padding-top: 10px;
  padding-left: 10px;
  resize: none;
}
.order .order_form .form .wrap .agree {
  padding-top: 20px;
  padding-bottom: 20px;
}
.order .order_form .form .wrap .btn {
  width: 100%;
  text-align: center;
}
.order .order_form .form .description {
  width: 30%;
}

.docs {}
.docs ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.docs ul li{
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}
.docs ul li a {}
.docs ul li a i {
  margin-right: 5px;
  color: #141414;
  font-size: 22px;
}
.docs ul li a span {
  display: block;
  color: #737373;
  padding-left: 27px;
}

.search_page {}
.search_page .search_form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.search_page .search_form input {
  height: 40px;
  display: block;
  border: 1px solid #D9D9D9;
  background: #F8F7F7;
  width: calc(100% - 170px);
  padding-left: 20px;
}
.search_page .search_form .btn {
  padding-left: 0;
  padding-right: 0;
  width: 150px;
}
.search_page .result_count {
  display: block;
  margin-top: 10px;
  color: #8a8a8a;
}

.page_404 {
  padding-top: 70px;
  padding-bottom: 0px;
  text-align: center;
  font-size: 20px;
}
.page_404 img {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
  margin-bottom: 50px;
}
.page_404 p {

}
.page_404 p a {
  font-weight: 600;
}

.pagination {
  margin: 15px 0;
  text-align: center;
}
.pagination ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 0;
}
.pagination ul li {
  display: inline-block;
  margin-right: 1px;
  margin-left: 1px;
  font-size: 15px;
}
.pagination ul li span {
  background: #fff;
  color: #464646;
  display: block;
  height: 24px;
  line-height: 24px;
  transition: all .15s;
  width: 30px;
}
.pagination ul li.active span {
  font-weight: 500;
}
.pagination ul li a {
  background: #fff;
  display: block;
  height: 24px;
  line-height: 24px;
  transition: all .15s;
  width: 30px;
}

.search_result {}
.search_result .item {
  margin-bottom: 20px;
}
.search_result .item a.name {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.search_result .item a.name b {
  font-weight: 600;
}
.search_result .item p {
  hyphens: auto;
}
.search_result .item p b {
  font-weight: 600;
  color: #036;
}
.search_result .item span.date {
  display: block;
  text-align: right;
  color: #8a8a8a;
}

footer.footer{
  padding-top: 20px;
}
footer.footer .menu{
  background: #000;
}
footer.footer .menu ul {
  list-style-type: none;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 40px;
}
footer.footer .menu ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  border-left: 1px solid #fff;
  padding-right: 7px;
  line-height: 15px;
  padding-left: 7px;
}
footer.footer .menu ul li:nth-child(1){
  border-left: 1px solid transparent;
  padding-left: 0;
}
footer.footer .menu ul li a{
  color: #fff;
  text-decoration: none;
}
footer.footer .menu ul li a:hover{
  text-decoration: underline;
}
footer.footer .info {
  background: #464646;
  color: #c9c9c9;
  padding: 10px 0;
}
footer.footer .info a.logo {
  margin-right: 15px;
}
footer.footer .info a.logo img {
  display: inline-block;
  vertical-align: top;
  max-width: 58px;
}
footer.footer .info .copyright {

}
footer.footer .info .copyright p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
footer.footer .info .copyright a {
  color: #c9c9c9;
  text-decoration: underline;
}
footer.footer .info .copyright a:hover{
  text-decoration: none;
}
footer.footer .info .socials {

}
footer.footer .info .socials ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
footer.footer .info .socials ul li {
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
}
footer.footer .info .socials ul li a {}
footer.footer .info .socials ul li a img {
  max-width: 29px;
}
#slideUp {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: url(../images/ico/up.png) 50% no-repeat;
  cursor: pointer;
}




.main_calculator.full_width.inner {margin-bottom: 40px;}
.calculation-results .price {
    box-sizing: border-box;
    color: #141414;
    font-size: 21px;
    padding-right: 30px;
    text-transform: uppercase;
}

.calculation-results .price strong {
    font-size: 48px;
    font-weight: 300;
    text-transform: none;
}
.calculation-results {
    margin: 25px 0;
}
.prices-comparison .title {
    background: #464646;
    color: #fff;
    margin: 0;
    padding: 10px;
    text-align: center;
    text-transform: none;
}
h3.title {
    font-size: 18px;
    font-weight: 600;
}
.prices-comparison {
    background: #fff;
    border: 1px solid #464646;
}

.prices-comparison .column {
    float: left;
    font-size: 16px;
    padding: 15px 0;
    text-align: center;
    width: 20%;
}

.prices-comparison .column strong {
    color: #141414;
    display: block;
    font-size: 24px;
}

.calc-results-new-full {
    background: #fff;
    border: 1px solid #464646;
    padding: 15px;
	display: inline-table;
/* 	display: table-cell; */
width: 100%;
}

.calc-results-new-full .block {
    min-height: 72px;
    width: 33%;
    float: left;
    font-size: 14px;
    margin-bottom: 15px;
}


.calc-results-new-full .block h5 {
    margin: 0px;
    padding: 0px;
    margin-bottom: 5px;
	
	color: #141414;
    font-weight: 600;
    line-height: 1;
    font-size: 18px;
	text-transform: none;
    text-align: left;
}

.calc-results-new-full .block p {
    font-size: 12px;
    padding: 0px;
    margin: 0px;
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
}


.button:hover {
    background: #036;
    color: #fff;
}

.buttons-block .button {
    border: 0px none;
    width: 100%;
    width: 29.3%;
    float: left;
    margin-top: 10px;
    margin-bottom: 15px;
    margin-right: 2%;
    margin-left: 2%;
}

.button {
    background: #141414;
    color: #fff;
    display: block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: background .15s;
    width: 220px;
}
.buttons-block {
    clear: both;
    height: 50px;
}


element.style {
}
hr {
    display: block;
    unicode-bidi: isolate;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    overflow: hidden;
    border-style: inset;
    border-width: 1px;
}


.promo .promo_link .items .item:hover  .description{
    color: #141414;
}

form.example-form {
    background: #036;
    margin: 0 0 25px;
    padding: 1.5%;
}

.questions input[type=number], .questions input[type=password], .questions input[type=tel], .questions input[type=text], .questions input[type="email"] {
    border: 1px solid #102942;
    box-sizing: border-box;
    color: #464646;
    display: block;
    padding: 10px;
}

.questions button {
    background: #036;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    height: 40px;
    transition: all .15s;
	width: 28%;
	margin: 10px 0;
}
.questions textarea {
    padding: 10px;
}

.questions button:hover {
    background: #fff;
    color: #036;
}

form.example-form div a{color: white;text-decoration: underline;}
form.example-form div a:hover{text-decoration: none;}
form.example-form div {color: white;}


div.question {
    background: #fff;
    border: 1px solid #aaa;
    margin: 8px 0 8px 23px;
    padding: 10px;
    position: relative;
	
	font: 15px/1.2 Russia,Arial,sans-serif!important;
    text-transform: none!important;
}

.questions h5 {
    color: #141414;
    font-weight: 600;
    line-height: 1;
    margin: 20px 0 15px;
    font-size: 18px;
}

.questions span.date {
    color: #737373;
}

div.question:before {
    background: #aaa url(/images/faq-entry.png) 50% no-repeat;
    border-bottom: 1px solid #aaa;
    border-top: 1px solid #aaa;
    content: "";
    display: block;
    height: 100%;
    left: -24px;
    position: absolute;
    top: -1px;
    width: 23px;
}

.advantages.double .item .wrap .name {
    padding: 12px 12px 0 27px;
}

.example-form input:nth-child(2) {
    float: left;
    margin-right: 1.5%;
    width: 70%;
}

.example-form textarea {
    float: left;
    margin-right: 1.5%;
    width: 70%;
	max-height: 164px;
}
.example-form{
display: inherit!important;
}
.example-form input:nth-child(3) {
    width: 28%;
}

.example-form input:nth-child(4) {
    width: 28%;
	float: right;
	margin-right: 3px;
}
.add-rewrite-form-dealer .form-add-rewrite textarea {
    width: 100%;
    height: 150px;
}
.dealers_newlist .item img {
    float: left;
    width: 135px;
    margin-right: 2%;
    max-width: 18%;
	border: 1px solid #464646;
}

.dealers_newlist .item .name {
    margin-right: 15px;
    font: 18px/1.2 Russia, Arial, sans-serif;
    font-weight: bold;
	margin-bottom: 10px;
}

.dealers_newlist .item .name a {
    color: #0c0c0c !important;
}

.dealers_newlist .item {
    min-height: 220px;
    margin-top: 20px;
    border-bottom: 1px solid #464646;
    padding: 15px 20px;
}

.dealers_newlist .description {
    max-width: 600px;
    float: left;
    padding-right: 20px;
    min-height: 100px;
}
.tab.active span.lbl {
    height: 31px;
    vertical-align: middle;
	line-height: 31px;
}

.wrap.roofm .tab.active>form div:nth-child(6) .lbl, .wrap.roofm .tab.active>form div:nth-child(8) .lbl, .wrap.roofm .tab.active>form div:nth-child(10) .lbl{line-height: 1!important;}

.tab.active a {
    border-bottom: 1px dotted #fff;
    color: #fff;
    cursor: help;
}

.tab.active a:hover {
    border-bottom: none;
}
input[type="radio"]:checked ~ .psevdo-radio:after {
    background: #000;
}

.questions .item div>a{
float: left;
    height: 24px;
    line-height: 24px;
    width: 148px;
	background: #141414;
    color: #fff;
    display: block;
    font-size: 14px;
	text-align: center;
    transition: background .15s;
	}
.questions .item div>a:hover {background:#036}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fa {
    position: relative;
}

.fa-check-circle:before {
    content: "\f058";
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
}

.closed {
    color: #0f9b47;
}

.review .text_page form div textarea {
    width: 100%;
}
.main_calculator .note {
    display:none;
}

.main_calculator .calculator_wrap .controls .wrap form span:nth-child(5){
    display: none;
}
.main_calculator .calculator_wrap .controls .wrap form span:nth-child(3){
    margin: 17px 0 8px!important;
}
.main_calculator.full_width.inner .head {
    display: block!important;
}


.main_calculator.full_width.inner .note {
    color: #aebfd0;
    font-size: 13px;
	display:block;
	padding-top: 10px;
}

.main_calculator.full_width.inner input.btn.btn_blue.btn_lg {
    margin-top: 40px!important;
}

   .photo {
    display: inline-block;
    position: relative;
	line-height: 1;
   }
   .photo:hover::after {
    content: attr(data-title);
    position: absolute;
    left: 0; top: -119px;
    z-index: 1; 
    background: #fff;
	padding: 14px;
    font-size: 14px;
    border: 1px solid #464646;
	box-shadow: 3px 3px 1px 0 rgb(0 0 0 / 30%);
    color: #464646;
    width: 240px;
	line-height: 1.2;
   }
   
   .photo:hover::before {
   background: url(/images/calc-tooltip.png) no-repeat;
    content: "";
    display: block;
    height: 13px;
    left: 14px;
    position: absolute;
    width: 19px;
	z-index: 9;
	top: -10px;
   }
   
   span.head {
    margin: 28px 0 8px!important;}
	
	.tab.active>form>span.head:nth-child(1){margin-top: 0!important;}
	
.wrapper.review textarea {
    margin-bottom: 8px;
	margin-top: 0px;
}
.wrapper.review input#star {
    margin-bottom: 18px;
}



#hider {
    position: absolute;
    top: -9999px;
    left: -9999px;
}
#hider:checked + .contentm {
    display: block!important;
	
}
#clickme {
    color: white;
    cursor: pointer;
}
#clickme:hover {
    color: #036;
}
.contentm {
    margin-top: 10px;
    display: none!important;
}


.questions .note {
    font-size: 13px;
    margin: 0 0 10px;
}

.advantages.double span.description {
    height: 86px;
    overflow: hidden;
}
.advantages.double .item .wrap .description {
  font-size: 15px;
}

.advantages.double a.name {
    height: 55px;
    overflow: hidden;
}
.advantages.double .item .wrap .image {
    height: 235px;
}
.advantages.double .item .wrap .image > img {
    object-fit: cover;
    height: 100%;
}

.main_calculator .calculator_wrap .controls .wrap .tab .input .number_wrap input {
    text-align: left;
}
label.head:after {
    content: "\25BC";
    margin-left: 5px;
    color: #bbb;
}

label.head {
    padding: 12px 0 8px 0;
	cursor: pointer;
}

.wb1,
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ .wb1 {
  display: block;
}
.number_minus, .number_plus {display: none!important;}
@media (max-width: 480px) {
.example-form textarea, .example-form input {width: 100%!important;}
.example-form input:nth-child(4) {margin-right: 0px;}
   }
   
.send-me-form {
  color: #fff;
  display: none;
  background: #003366;
  padding: 15px 30px;
  margin-top: 30px;
}
.send-me-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.send-me-form form input[type="email"] {
  display: flex;
  width: calc(100% - 200px);
  border: 1px solid #102942;
  color: #464646;
  display: block;
  padding: 10px;
}
.send-me-form form button {
  margin: 0px;
  border: none;
  width: 190px;
}
.send-me-form form .checkbox-row {
  width: 100%;
  margin-top: 10px;
}
.send-me-form form .checkbox-row a {
  color: #fff;
  text-decoration: underline;
}

.form_order_wrap {

}
.form_order_wrap .form_wrap {
  width: 70%;
  padding-right: 50px;
}
.form_order_wrap .form_wrap .form {
  margin-bottom: 30px;
}
.form_order_wrap .form_wrap .form .form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.form_order_wrap .form_wrap .form .form-row.checkbox-row {
  display: block;
  margin-left: 30%;
  width: 70%;
}
.form_order_wrap .form_wrap .form h3 {
  width: 100%;
}
.form_order_wrap .form_wrap .form .form-row input.form_input{
  display: block;
  width: 70%;
  border: 1px solid #102942;
  color: #464646;
  display: flex;
  padding: 10px;
}
.form_order_wrap .form_wrap .form .form-row label {
  width: 28%;
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.form_order_wrap .form_wrap .form .form-row.checkbox-row label {
  display: block;
  width: 100%;
  text-align: left;
}
.form_order_wrap .form_wrap .form textarea {
  display: block;
  width: 100%;
  border: 1px solid #102942;
  color: #464646;
  display: block;
  padding: 10px;
  margin-bottom: 20px;
  height: 200px;
  resize: none;
}
.form_order_wrap .form_wrap .form .btn {
  display: block;
  width: 100%;
}
.form_order_wrap .form_wrap .data {

}
.form_order_wrap .form_wrap .data .roof_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form_order_wrap .form_wrap .data .roof_info .block {
  width: 25%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 15px;
  text-align: center;
}
.form_order_wrap .form_wrap .data .roof_info .block span {
  font-size: 14px;
}
.form_order_wrap .form_wrap .data .roof_info .block strong {
  margin-top: 3px;
  font-size: 18px;
  font-weight: 700;
}
.form_order_wrap .form_wrap .data .roof_result {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form_order_wrap .form_wrap .data .roof_result .block {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 15px;
  text-align: center;
}
.form_order_wrap .form_wrap .data .roof_result .block span {
  font-size: 14px;
}
.form_order_wrap .form_wrap .data .roof_result .block strong {
  margin-top: 3px;
  font-size: 18px;
  font-weight: 700;
}
.form_order_wrap .form_wrap .data .materials_result {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #464646;
  padding: 15px;
  display: none;
}
.form_order_wrap .form_wrap .data .materials_result .result_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form_order_wrap .form_wrap .data .materials_result .result_wrap .block {
  width: 33%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 15px;
  text-align: left;
}
.form_order_wrap .form_wrap .data .materials_result .result_wrap .block span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}
.form_order_wrap .form_wrap .data .materials_result .result_wrap .block p {
  font-size: 12px;
  margin-bottom: 0;
}
.form_order_wrap .info_wrap {
  width: 30%;
  padding-top: 20px;
}

.popup_form {
  width: 380px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.85);
  -moz-box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.85);
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.85);
  text-align: center;
  position: relative;
}

.formNew {

}
.formNew form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.formNew form input[type="text"], .formNew form input[type="email"]{
  display: block;
  width: 100%;
  border: 1px solid #102942;
  color: #464646;
  display: block;
  padding: 10px;
  margin-top: 15px;
}
.formNew form textarea{
  display: block;
  width: 100%;
  border: 1px solid #102942;
  color: #464646;
  display: block;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  height: 100px;
  resize: none;
}
.formNew form .btn {
  width: 100%;
  margin-top: 15px;
}

.rate_wrap span{
  display: inline-block;
  line-height: 25px;
  vertical-align: middle;
}
.rate_wrap .rate {
    width: 125px;
    height: 24px;
    display: inline-block;
    background: url("../images/ico/star_gray2.png") repeat-x;
    margin-left: 15px;
    vertical-align: middle;
}
.rate_wrap .rate div {
    width: 125px;
    height: 24px;
    background: url("../images/ico/star2.png") repeat-x;
}
.rate_wrap .rate.editable ul,
.rate_wrap .rate.editable li {
    display: block;
    margin: 0px ;
    padding: 0px;
    list-style: none;
    position: relative;
    height: 24px;
}
.rate_wrap .rate.editable ul li {
    height: 24px;
    position: absolute;
    left: 0px;
    top: 0;
}
.rate_wrap .rate.editable ul li:hover,
.rate_wrap .rate.editable ul li.active {
    background: url("../images/ico/star2.png") repeat-x;
}
.rate_wrap .rate.editable ul li.r1 {
    width: 25px;
    z-index: 5;
}
.rate_wrap .rate.editable ul li.r2 {
    width: 50px;
    z-index: 4;
}
.rate.editable ul li.r3 {
    width: 75px;
    z-index: 3;
}
.rate_wrap .rate.editable ul li.r4 {
    width: 100px;
    z-index: 2;
}
.rate_wrap .rate.editable ul li.r5 {
    width: 125px;
    z-index: 1;
}
.rate_wrap .rate_text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
}

.popup_city .mCSB_scrollTools {
  width: 4px;
}
.popup_city .mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0,0,0,.05);
}
.popup_city .mCSB_scrollTools .mCSB_dragger {
  max-height: 30px !important;
}
.popup_city .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,.4);
}
.popup_city .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,.5);
}
.popup_city .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.popup_city .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0,0,0,.75);
}

.rate_result .rate {
    width: 125px;
    height: 24px;
    display: inline-block;
    background: url("../images/ico/star_gray2.png") repeat-x;
    vertical-align: middle;
}
.rate_result .rate div {
    width: 125px;
    height: 24px;
    background: url("../images/ico/star2.png") repeat-x;
}
.rate_result .rate ul,
.rate_result .rate li {
    display: block;
    margin: 0px ;
    padding: 0px;
    list-style: none;
    position: relative;
    height: 24px;
}
.rate_result .rate ul li {
    height: 24px;
    position: absolute;
    left: 0px;
    top: 0;
}
.rate_result .rate ul li.active {
    background: url("../images/ico/star2.png") repeat-x;
}
.rate_result .rate ul li.r1 {
    width: 25px;
    z-index: 5;
}
.rate_result .rate ul li.r2 {
    width: 50px;
    z-index: 4;
}
.rate_result .rate ul li.r3 {
    width: 75px;
    z-index: 3;
}
.rate_result .rate ul li.r4 {
    width: 100px;
    z-index: 2;
}
.rate_result .rate ul li.r5 {
    width: 125px;
    z-index: 1;
}

@media (max-width: 762px) {
.sub_menu .active {
  background: #989898 !important;
}
}
