@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');
/* Eric Meyer's CSS Reset */
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;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body {
	font-family: 'Open Sans', Tahoma, Arial, sans-serif;
	font-size: 14px;
	line-height: 18px;
	width: 100%;
	height: 100%;
	color: #333;
	background: #fff;
}
input, textarea, select, button {
	font-family: Tahoma, Arial, sans-serif;
	font-size: 14px;
	line-height: 18px;
}
.wrapper {
	width: 96%;
	max-width: 1280px;
	margin: 0 auto;
}
.wrapper_w100 {
	width: 100%;
}
h1, .h1 { font-size: 28px; }
h2, .h2 { font-size: 24px; }
h3, .h3, h4, .h4, h5, .h5 { font-size: 22px; }
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
	font-family: Tahoma, Arial, sans-serif;
	line-height: 1.2em;
}
h2.red {
	padding: 20px;
	margin: 10px 0;
	text-align: center;
	color: #fff;
	background: #fc9900;
}
h2.grey {
	padding: 20px;
	margin: 10px 0;
	text-align: center;
	color: #fff;
	background: #444;
}
a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
a.standard {
	color: #fc9900;
	padding-bottom: 1px;
	border-bottom: 1px dotted #fc9900;
}
a.standard:hover, a.standard.active { border-bottom: 0; }
img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}
b, strong, .strong { font-weight: 600; }
i { font-style: italic; }
/* sb - standard block, sb-100 - standard block + width 100% */
.sb, .sb-100 {
	display: inline-block;
	float: left;
}
.sb-100 { width: 100%; }
/* tac - text align center */
.tac { text-align: center; }
/* taj - text align justify */
.taj { text-align: justify; }
/* tar - text align right */
.tar { text-align: right; }
/* fr - float right */
.fr { float: right; }
/* pr - position relative */
.pr { position: relative; }
/* p_tb... - padding top bottom */
.p_tb20px { padding: 20px 0; }
.p_tb40px { padding: 40px 0; }
/* font weight bold */
.fwb { font-weight: 600; }
/* p_t... - padding top */
.p_t70px { padding-top: 70px; }
.p_t40px { padding-top: 40px; }
.p10px { padding: 10px; box-sizing: border-box; }
.mt10px {
	margin-top: 10px;
  }
  .mt20px {
	margin-top: 20px;
  }
  .mt40px {
	margin-top: 40px;
  }
  .m_tb20px {
	  margin: 20px 0;
  }
  /* width % */
  .w25 {
	width: 25%;
  }
  .w60 {
	width: 60%;
  }
  .w50 {
	width: 50%;
  }
  .w40 {
	width: 40%;
  }
  .flex-wrap-sb {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	justify-content: space-between;
  }
  .aic {
	align-items: center;
  }
  .h-title a:hover {
	color: #fc9900;	  
  }
  .small-text {
	  font-size: 12px;
	  line-height: 14px;
	  color: #777;
  }
  .ttu { text-transform: uppercase; }
.hidden-block {
	display: none;
}
.button {
	padding: 10px 20px;
	border-radius: 5px;
	color: #fff;
	background: #000;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none!important;
	outline: none;
	border: 0;
	cursor: pointer;
}
.button:hover {
	color: #fff;
	background: #333;
}
.button_buy { background: #fc9900; }
.button_buy:hover { background: #8b081b; }

/* Header */
.header {
    border-top: 1px solid white;
	height: 70px;
	background: #000;
	color: #fff;
	border-bottom: 1px solid #333;
	
	top: 0;
	left: 0;
	z-index: 10000;
}
.header .wrapper { width: 100%; display: flex; flex-direction: row; justify-content: space-between; align-items: center;}
.header__phone {font-size: 1.2em;font-weight: 600;padding: 0 15px; display: flex;}
.header__phone i {margin-right: 5px;}
.header__logo { margin: 0; }
.header__logo img { height: 60px; }
.header__logo:hover { opacity: 0.65; }
hr {
	background: #fc9900;
    height: 1px;
	border: none;
	margin: 10px 0;	
}

/* Main menu */
.main-menu ul li {
	display: inline-block;
	float: left;
}

.main-menu ul li a {
	font-size: 1.2em;
  line-height: 70px;
  font-weight: 600;
  display: inline-block;
  padding: 0 15px;
  background: #000;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
.main-menu ul li + li a { border-left: 0; }
.main-menu ul li ul li a {
	border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
.main-menu ul li a:hover, .main-menu ul li.msMiniCart a {
	background: #fc9900;
	color: #fff;
	border-color: #fc9900;
}
.main-menu ul li ul {
	display: none;
	opacity: 0;
}
.main-menu ul li:hover ul {
	display: block;
	opacity: 1;
}
.main-menu ul li:hover ul li:first-child { border: 0; }

/* breadcrumbs */
.breadcrumbs {
	height: 50px;
	line-height: 50px;
	background: #000;
	color: #ddd;
	
}
.breadcrumbs ul li {
	display: inline-block;
	float: left;
}
.breadcrumbs ul li + li { margin-left: 10px; }
.breadcrumbs ul li + li:before {
	content: "/";
	padding-right: 10px;
}

/* SLider */
.slider-index {
	position: relative;
	/*height: 100vh;*/
	height: 300px;
}
.slider-index .swiper-container {
	width: 100%;
	/*height: 800px;*/
	height: 100%;
}
.slider-index .swiper-slide:after {
	content: " ";
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	/*background: #00000091;*/
}
.slider-index .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #000;
	color: #fff;
	position: relative;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	z-index: 1;
}
/*.slider-index .swiper-slide:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: block;
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
}*/
.catalog__slider { margin: 10px 0; }
.catalog__slider .swiper-slide:before { display: none; }
.catalog__slider .swiper-container {
	width: 100%;
	height: 300px;
}
.catalog__slider .swiper-slide { background: #fff }
.slider-index .swiper-slide p {
	font-size: 34px;
	line-height: 1.2em;
	position: relative;
	z-index: 3;
}
.slider-index .swiper-slide p span {
	font-size: 22px;
	line-height: 1.2em;
}
.slider-index .swiper-slide p a {
	font-size: 18px;
	line-height: 1.2em;
	background: red;
	color: #fff;
	border-radius: 5px;
	padding: 10px 20px;
	text-transform: uppercase;
}
.slider-index .swiper-slide p a:hover {
	opacity: 0.85;
}

/* Product card */
.product-card__content + .product-card__tabs { margin-top: 40px; }
.product-card__tabs { padding: 5px 5px 20px 5px; }
.product-card__slider { text-align: center; }
.product-card__image, .product-card__information { width: 50%; }
.product-card__information {
	padding-left: 40px;
	text-align: left;
	box-sizing: border-box;
}
.product-card__row {
	width: 100%;
	display: inline-block;
	float: left;
}
.product-card__name {
	width: 100%;
	display: inline-block;
	color: #999;
	padding-bottom: 5px;
	float: left;
}
.product-card__cost {
	width: 100%;
	display: inline-block;
	font-size: 1.6em;
	line-height: 1.2em;
	color: #fc9900;
	float: left;
}
.product-card__title + .product-card__row, .product-card__row + .product-card__row {
	margin-top: 10px;
	border-top: 1px solid #f2f2f2;
	padding-top: 10px;
}
.product-card__title + .product-card__row_bn {
	border-top: 0;
}
.product-card__parameter {
	width: 100%;
	display: inline-block;
	float: left;
}
.product-card__parameter + .product-card__parameter { margin-top: 5px; }
.parameter__name { font-weight: 600; }
.product-card__buttons {
	width: 100%;
	display: inline-block;
	float: left;
}
.product-card__row + .product-card__buttons, .product-card__row + .product-tocart { margin-top: 20px; }
.product-card__buttons + .product-card__buttons { margin-top: 10px; }
.product-card__row #product_price, select#option_turbineTransmission , select#option_Stage-test {
	padding:10px;
	border:0;
	box-shadow:0 0 15px 4px rgba(0,0,0,0.06);
}

.product-card__tabs .tabs__list {
	padding: .2em .2em 0;
	border-bottom: 1px solid #dddddd;
	box-sizing: border-box;
}
.product-card__tabs .tabs__item {
	float: left;
	position: relative;
	margin: 1px .2em 0 0;
	padding: .5em 1em;
	border: 1px solid #c5c5c5;
	border-bottom: 0;
    border-radius: 0;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	cursor: pointer;
}
.product-card__tabs .tabs__item_active {
	border-color: #fc9900;
	background: #fc9900;
	color: #ffffff;
}
.product-card__tabs .tabs__item:hover {
	border-color: #fc9900;
	background: #fc9900;
}
.product-card__tabs .tabs__content {
	width: 100%;
	padding: 20px 0;
	display: none;
	float: left;
	box-sizing: border-box;
}
.grid figure img {
    width: 100%;
}

.product-card__tabs .tabs__content_active { display: inline-block; }
.product-card__tabs .tabs__content table tr th { text-align: left; }
.tabs__content .button {
	border-color: #fc9900;
	background: #fc9900;	
}

/* calc */
.tuning__list  {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.tuning__item {
    width: 200px;
    height: 200px;
    margin: 5px;
    background: #eee;
    display: flex;
    align-items: center;
	justify-content: center;
    background-size: cover;
    background-position: center;
    box-shadow: 5px 5px 5px rgba(128, 128, 128, 0.3);
}
.tuning__title {
	color: #ffffff;
    font-weight: 600;
	text-shadow: 2px 2px 2px black;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	text-align: center;
	padding: 10px;
}
.tuning__item:hover .tuning__title { opacity: 0.65; }
[data-tunning-black] {
    text-shadow: none;
    color: #000;
}

.filter__row + .filter__row {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #333;
}
.filter__content {
	padding: 20px;
	box-sizing: border-box;
	background: #eee;
}
.filter__item {
	width: 31%;
	line-height: 34px;
	height: 34px;
	display: inline-block;
	float: left;
	text-align: left;
	margin: 0 1%;
}
.filter__item_long {
	width: 98%;
}
.filter__item select {
	line-height: 34px;
    height: 34px;
    width: 100%;
    border-radius: 5px;
}
.filter__item .jq-selectbox {
	width: 100%;
	text-align: left;
}
.tabs {
	padding: 5px 5px 20px 5px;
	box-sizing: border-box;
}
.tabs-list__row_title {
	font-weight: 600;
	font-size: 1.2em;
	line-height: 1.2em;
}
.tabs-list__top-description { line-height: 50px; }
.tabs__list  {
	border-bottom: 1px solid #dddddd;
	box-sizing: border-box;
}
.tabs__item {
	position: relative;
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 0 1em;
	border: 1px solid #c5c5c5;
	border-radius: 5px;
	cursor: pointer;
}
.tabs__item_active, .tabs__item:hover {
	border-color: #a90302;
	background: #fc9900;
	color: #ffffff;
}
.tabs__content {
	width: 100%;
	margin: 20px 0;
	display: none;
	float: left;
	text-align: left;
	background: #fff;
}
.tabs__content_active { display: inline-block; }
.tabs__table, .table {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #dddddd;
	border-top: 0;
	box-shadow: 1px 1px 11px 3px rgba(0,0,0,0.12);
}
.table-head,
.table-row {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    flex-flow: row;
    padding: 1rem;
    margin: 0 0 8px 0;
    font-size: 16px;
    box-shadow: 0px 0px 1px 1px rgba(241, 241, 241, 1);
}
.table .table-row,
.table .table-head {
    margin: 0;
}
.table-head div,
.table-row div {
    padding: 0;
}
.table-head {
    color: #000000;
    font-weight: 700;
    background-color: #ffffff;
}
.table-row {
    background: #ffffff;
}
.table-row {
    cursor: pointer;
}
.table-row:hover {
    background: #f6f6f6;
}
.table .hl {
    color: #D11925;
    font-weight: 600;
}
.table .col-th {
	font-weight: 600;
}
.table .col-th span {
	color: #D11925;
}
.table .col-b {
	font-size: 1.2em;
	line-height: 1.2em;
}
.table .col-3 {
	width: 21%;
	margin-right: 4%;
}
.table .col-12 {
    width: 100%;
}
.tabs__alert {
	margin: 20px 0;
	padding: 20px;
	box-sizing: border-box;
	background-color: #f3f3f3;
	box-shadow: 6px 6px 14px rgba(0,0,0,0.12);
	border: 1px solid #eeeeee;
}
.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.table th { font-weight: 600; }
.table a { text-decoration: underline; }
.table span.no-wrap {
	font-weight: 600;
	color: #D11925;
}
.tabs__additionally { margin-top: 40px; }
.tabs__additionally .table { margin-top: 20px; }
.content {
    padding-bottom: 1.5em;
}

/* Main menu */
.content_index { padding: 40px 0 0 0; }
.header + .content { margin-top: 140px; }
.content h1 + p, .content h1 + ul, .content h2 + ul, .content h1 + ol, .content h2 + ol { margin-top: 20px; }
.content p + p, .content p + ul, .content ul + p, .content p + ol, .content ol + p, .content p + h2, .content h2 + p, .content ul + ul, .content p + h3, .content h3 + p, .content ul + h3, .content h3 + ul { margin-top: 10px; }
.content_text ul li {
	margin-left: 30px;
	list-style-type: disc;
}
.content_text ol li {
	margin-left: 30px;
	list-style-type: decimal;
}
.content_text ul li + li, .content_text ol li + li { margin-top: 5px; }
.content_text a {
	text-decoration: underline;
	color: #fc9900;
}
.content_text a:hover { text-decoration: none; }
.content_ps p {
	max-width: 800px;
	margin: 0 auto;
}
.content table { width: 100%; }
.content table tr th, .content table tr td {
	padding: 10px;
	border: 1px solid #ddd;
	vertical-align: middle;
}
.content table tr th {
	background: #333;
	color: #fff;
}
.double-content__item { width: 48%; text-align: justify; }
.double-content__item + .double-content__item { margin-left: 4%; }

/* advantages */
.advantages__item {
	width: 30%;
	padding: 20px;
	text-align: center;
	box-sizing: border-box;
}
.advantages__item + .advantages__item { margin-left: 5%; }
.advantages__item i {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
	display: inline-block;
	font-size: 2.4em;
	line-height: 80px;
	color: #fff;
	border-radius: 100%;
	background: #fc9900;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.advantages__item:hover i {
	color: #fff;
	background-color: #000;
	box-shadow: 0 0 10px 0 #fc9900;
}
.advantages__name {
	font-size: 1.4em;
	line-height: 1.2em;
	position: relative;
}
.advantages__name:after {
	position: absolute;
	content: '';
	bottom: -10px;
	left: 50%;
	margin-left: -15px;
	width: 30px;
	height: 2px;
	border-radius: 2px;
	background-color: #fc9900;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.advantages__name + .advantages__description { margin-top: 20px; }

/* banner */
.banner {
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.banner:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: block;
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
}
.banner__title {
	padding: 100px 0;
	text-align: center;
	font-size: 3em;
	line-height: 1.2em;
	font-style: italic;
	font-weight: 600;
	position: relative;
	z-index: 3;
	color: #fff;
}

/* Services */
.services__item {
	width: 30%;
	margin: 0 1.5%;
}
.services__title {
	font-size: 1.4em;
	line-height: 1.2em;
	font-weight: 400;
	text-transform: uppercase;
}
.services__item p {
	width: 100%;
	margin-top: 10px;
	display: inline-block;
	float: left;
}

/* Tuning info */
.tuning-info__item { width: 48%; }
.tuning-info__item + .tuning-info__item { margin-left: 4%; }
.tuning-info__item h2 {
	font-size: 1.4em;
	line-height: 1.2em;
	width: 100%;
	font-weight: 600;
	text-align: left;
	text-transform: uppercase;
	margin-top: 10px;
	display: inline-block;
}
.tuning-info__item p {
	margin-top: 10px;
	display: inline-block;
	float: left;
}

/* Project */
.project {
	position: relative;
	/*height: 100vh;*/
	margin-top: 20px;
}
.project .swiper-container {
	width: 100%;
	height: 600px;
	margin-left: auto;
	margin-right: auto;
}
.project .swiper-slide {
	background-size: cover;
	background-position: center;
	height: auto!important;
	position: relative;
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    justify-content: center;
	align-items: center;
	max-height: 600px;
}
.project .swiper-slide img { max-height: 600px; }
.project .gallery-top {
	max-height: 100%;
	width: 100%;
}
.project .gallery-thumbs {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
	display: none;
}
.project .gallery-thumbs .swiper-slide {
	height: 50%;
	opacity: 0.4;
}
.project .gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}
.project-info__block { display: inline-block; }
.project-info__item {
	width: 400px;
	margin: 0 20px;
	text-align: left;
}
.project-info__title {
	font-size: 1.4em;
	line-height: 1.2em;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.project-info__item p {
	margin-top: 10px;
	display: inline-block;
	float: left;
}
.project-info__item table tr td, .project-info__item table tr th {
	padding: 2.5px;
	width: 150px;
}
.project-info__item table tr th { font-weight: 600; }
.project-info__item table tr td i, .project-info__item table tr th i { color: #fc9900; }
.project .swiper-button-next.swiper-button-white, .project .swiper-container-rtl .swiper-button-prev.swiper-button-white {
 background-image: url(../image/next-red.png);
}
.project .swiper-button-prev.swiper-button-white, .project .swiper-container-rtl .swiper-button-next.swiper-button-white {
 background-image: url(../image/prev-red.png);
}


/* services-list */
.services-list__item {
	width: 30%;
	padding: 20px;
	text-align: center;
	box-sizing: border-box;
}
.services-list__item + .services-list__item { margin-left: 5%; }
.services-list__item:nth-child(n+4) { margin-top: 20px; }
.services-list__item:nth-child(3n+1) {
	clear: both;
	margin-left: 0;
}
.services-list__item i {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
	display: inline-block;
	font-size: 2.4em;
	line-height: 80px;
	color: #fff;
	border-radius: 100%;
	background: #fc9900;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.services-list__item:hover i {
	color: #fff;
	background-color: #000;
	box-shadow: 0 0 10px 0 #fc9900;
}
.services-list__title {
	font-size: 1.4em;
	line-height: 1.2em;
	position: relative;
}
.services-list__title:after {
	position: absolute;
	content: '';
	bottom: -10px;
	left: 50%;
	margin-left: -15px;
	width: 30px;
	height: 2px;
	border-radius: 2px;
	background-color: #fc9900;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.services-list__title + .services-list__description { margin-top: 20px; }

/* Catalog */
.breadcrumbs + .content.p_tb40px { padding-top: 20px; }
.content + .catalog { margin-top: 40px; }
.left-sidebar {
	width: 22%;
	box-sizing: border-box;
}
.left-sidebar + .catalog__list {
    margin-left: 4%;
}
.catalog__list { width: 74%; }
.category, .filters {
	width: 100%;
	display: inline-block;
	float: left;
	border: 1px solid #eee;
}
.category + .filters { margin-top: 40px; }
.search{width:100%;padding:10px;display:inline-block;/*float:left*/;box-sizing:border-box;background:#eee}
.search__label{width:100%;display:inline-block;float:left}
.search__input{width:calc(100% - 70px);display:inline-block;padding-right:30px;line-height:28px;text-indent:10px;box-sizing:border-box;border:1px solid #a9a9a9;border-top-left-radius:5px;border-bottom-left-radius:5px;border-right:0;outline:0;float:left}
.search__submit{width:70px;display:inline-block;line-height:30px;border:1px solid #a9a9a9;border-top-right-radius:5px;border-bottom-right-radius:5px;cursor:pointer;float:left;  -webkit-appearance: none;}
.search__submit:after{content:"\f002";width:100%;display:inline-block;text-align:center;font:normal normal normal 14px/1 FontAwesome;font-size:1.2em;line-height:30px;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.search__list{width:33%;height:34px;display:inline-block;box-sizing:border-box;border:1px solid #a9a9a9;position:relative;float:left}
.search__label+.search__list{margin-left:2%}
.catalog__list h1 + .search, .catalog__list .search + .catalog { margin-top: 20px; }
.category__title {
	width: 100%;
	padding: 15px;
	color: #fff;
	background: #fc9900;
	display: inline-block;
	float: left;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
	box-shadow: 0 0 5px 2px rgb(145, 144, 144);
}
.category__list {
	width: 100%;
	display: inline-block;
	float: left;
	background: #fff;
	box-sizing: border-box;
}
.category_not-main .category__list {
    display: none;
}
.category__list_visible {
	display: inline-block;
}
.category__item {
	width: 100%;
	display: inline-block;
	float: left;
	position: relative;
}
.category__item_container i {
	top: 11px;
	right: 11px;
	display: inline-block;
	position: absolute;
}
.category__item + .category__item { border-top: 1px solid #e5e5e5; }
.category__item ul {
	top: 0;
	/*padding: 10px;*/
	min-width: 150px;
	left: 100%;
	opacity: 0;
	position: absolute;
	transition: all 0.3s ease 0s;
	background: hsl(0, 0%, 100%) none repeat scroll 0 0;
	visibility: hidden;
	border: 1px solid #eee;
	box-shadow: 0 0 5px -1px #666;
	z-index: 200;
}
.category__link {
	width: 100%;
	padding: 10px;
	display: inline-block;
	float: left;
	box-sizing: border-box;
}
.category__link:hover { color: #fc9900; }
.category__item:hover>ul {
	opacity: 1;
	filter: alpha(opacity=100);
	visibility: visible;
}
.catalog .catalog__item {
	width: 24%;
	display: inline-block;
	float: left;
	position: relative;
	text-align: center;
	z-index: 1;
	padding: 10px;
	vertical-align: top;
	box-sizing: border-box;
	border: 1px solid #ddd;
}
.swiper-container-hits, .swiper-container-related-products {
	/* width: calc(100% - 140px); */
	padding-bottom: 40px!important;
	overflow: hidden;
}
.catalog .swiper-slide .catalog__item {
	width: calc(100% - 4px)!important;
}
.catalog .catalog__item_swiper {
	width: 100%;
	display: inline-block;
	float: none;
}
.catalog .catalog__item_swiper + .catalog__item_swiper {
	margin-left: 0;
}
.catalog .catalog__item + .catalog__item { margin-left: 1.3%; }
.catalog .catalog__item:nth-child(4n+1) {
	clear: both;
	margin-left: 0;
}
.catalog .catalog__item:nth-child(n+5) { margin-top: 20px; }
.catalog .catalog__item p { margin-top: 10px; }
.catalog__image-zoom { display: inline-block; }
.catalog__image1 {
	display: inline-block;
	float: left;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
/*.catalog__image2 {
    top: 0;
    display: block;
    margin: 0 auto;
    opacity: 0;
	position: absolute;
	display: inline-block;
	float: left;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.catalog__image-zoom:hover > .catalog__image1 { opacity: 0; }
.catalog__image-zoom:hover > .catalog__image2 { opacity: 1; }*/
.catalog__description {
	font-size: 1.2em;
	line-height: 1.2em;
	text-transform: uppercase;
}
.catalog__title a {
	color: #000;
	text-transform: uppercase;
	min-height: 125px;
	display: inline-block;
}
.catalog__price {
	font-size: 1.6em;
	line-height: 1.2em;
	color: #fc9900;
	font-weight: 600;
}
.catalog__price i { font-size: 0.9em; }
.catalog + .pageNav { margin-top: 40px; }
.pageNav__item {
	display: inline-block;
	float: left;
}
.pageNav__link {
	display: inline-block;
	padding: 5px 10px;
	background: #F5F5F5;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
}
a.pageNav__link:hover {
	color: #333;
	background: #E6E6E6;
}
.pageNav__link_active {
	color: #fff;
	background: #12a4dd;
}
.pageNav__item + .pageNav__item { margin-left: 10px; }
.catalog__product {
	max-width: 768px;
	width: 100%;
	display: block;
	margin: 0 auto;
}
.filters__title {
	width: 100%;
	padding: 15px;
	color: #fff;
	background: #fc9900;
	border-color: #e5e5e5;
	display: inline-block;
	float: left;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
	box-shadow: 0 0 5px 2px rgb(145, 144, 144);
}
.filters__item {
	width: 100%;
	display: inline-block;
	float: left;
	padding: 15px;
	background: #fff;
	box-sizing: border-box;
	cursor: pointer;
}
.filters__item .mse2_number_slider {
	margin-top: 10px;
}
.filters__item label {
	padding-top: 5px;
	display: block;
}
.filters__item + .filters__item, .filters__item + .filters__button { border-top: 1px solid #eee; }
.filters__name, .filters__content {
	width: 100%;
	padding: 10px;
	display: inline-block;
	float: left;
	box-sizing: border-box;
}
.filters__name {
	padding: 15px;
	text-transform: uppercase;
	color: #fff;
	background: #fc9900;
	cursor: pointer;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.form-control_price .form-control_price {
	width: 100%;
	display: inline-block;
	float: left;
}
.filters__element {
	width: 100%;
	display: inline-block;
	float: left;
}
.filters__name + .filters__element, .filters__element + .filters__element { margin-top: 10px; }
/*.filters__element_input {
	width: 100%;
	float: left;
	outline: none;
	color: #757575;
	font-size: 1em;
	line-height: 1.2em;
	padding: 8.5px 10px 8.5px 20px;
	background: #f1f1f1;
	border: 1px solid #ebebeb;
	box-sizing: border-box;
}
.filters__element_input:focus {
	background: #fff;
	border-radius: 0;
	border-color: #12a4dd;
}*/


/* partners */
.partners ul li {
	width: 22%;
	text-align: center;
	display: inline-block;
	float: left;
}
.partners ul li + li { margin-left: 4%; }
.partners ul li:nth-child(n+5) { margin-top: 20px; }
.partners ul li:nth-child(4n+1) {
	clear: both;
	margin-left: 0;
}

/* Social links */
.social-links {
    position: relative;
	background: #000;
	z-index: 2;
}
.social-links ul {
	display: inline-block;
}
.social-links ul li {
	display: inline-block;
	float: left;
	margin: 10px;
}
.social-links ul li a {
	width: 50px;
	height: 50px;
	font-size: 1.4em;
	display: inline-block;
	line-height: 50px;
	border-radius: 100%;
	background: #fc9900;
	color: #fff;
}
.social-links ul li a:hover { opacity: 0.65; }

/* Contact */
.contacts { background: #333; }
.contacts__block_content {
	color: #fff;
	padding: 40px;
	box-sizing: border-box;
}
.contacts__block_content h2 { color: #fc9900; }
.contacts__block {
	width: 50%;
	/*height: 400px;*/
}
.contacts__block_w100 {
	width: 100%;
	padding: 20px;
}
.contact__block-form {
	width: 100%;
	max-width: 600px!important;
	display: inline-block;
}
.contact__form {
	padding: 10px;
	box-sizing: border-box;
}
.contact__form_support { padding: 0; }
.contact__form fieldset + fieldset, .contact__form fieldset + button { margin-top: 15px; }
.contact__form label { color: #777; }
.contact__form .required { color: #ce292d; }
.contact__form input, .contact__form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-family: "Open sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 18px;
    border: 1px solid #eee;
}
.contact__form input.contact__button-submit {
	width: auto;
	margin-top: 20px;
	outline: 0;
	background: #fc9900;
	color: #fff;
	padding: 10px 15px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	border: none;
	text-shadow: none;
	text-decoration: none;
	cursor: pointer;
	width: initial;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
.contact__form input.contact__button-submit:hover, .contact__form input.contact__button-submit:focus {
	background: #333;
	color: #fff;
	text-decoration: none;
}
.contact__form_support input.contact__button-submit { margin: 0; }
.contact__form label + input, .contact__form label + textarea { margin-top: 10px; }
.contact__form .error {
	width: 100%;
	display: inline-block;
	float: left;
	font-size: 12px;
	color: red;
}
.modal {display: none;}

/* shop cart */
.shop-cart__container {
	width: 100%;
}
.shop-cart__order {
    margin-top: 20px;
	width: 100%;
	background: #eee;
	padding: 20px;
	box-sizing: border-box;
}
.shop-cart__table tr {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	box-sizing: border-box;
}
.shop-cart__table table, .shop-cart__table tbody {
	width: 100%;
	display: inline-block;
}
.shop-cart__table tr + tr {
	padding-top: 10px;
	margin-top: 10px;
	border-top: 1px solid #eee;
}
.shop-cart__td-image {
	width: 15%;
}
.shop-cart__td-content {
	width: 45%;
	padding: 0 10px;
	box-sizing: border-box;
	color: #777;
}
.shop-cart__td-content p + p {
	margin-top: 10px;
}
.shop-cart__td-title {
	color: #333;
}
.shop-cart__td-price {
	width: 17%;
	padding: 0 10px;
	box-sizing: border-box;
	color: #fc9900;
	font-weight: 600;
}
.shop-cart__td-count {
	width: 20%;
	padding: 0 10px;
	box-sizing: border-box;
}
.shop-cart__td-delete {
	width: 3%;
	font-size: 24px;
	line-height: 27px;
	text-align: right;
	color: #777;
}
.shop-cart__td-delete button.btn-del {
	padding: 5px;
	border-radius: 5px;
	color: #fff;
	background: #000;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none !important;
	outline: none;
	border: 0;
	cursor: pointer;
	margin: 0;
	float: left;
}
.shop-cart__table a:hover {
	color: #fc9900;
}
.shop-cart__td-count .jq-number__field {
	width: initial;
}
.shop-cart__table .shk-count {
	display: inline-block;
	outline: none;
	background: #fff;
	border: 1px solid #eee;
	color: #333;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 18px;
	padding: 3px 5px;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	width: 100px;
}
.shop-cart__order .contact-form .error {
	font-size: 12px;
	line-height: 14px;
	color: #fc9900;
}

/* cart form */

.shop-cart__info-block {
    width: 30%;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.shop-cart__info-block_long {
    width: 100%;
    border: 0;
    padding: 0;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .shop-cart__info-block {
        width: 100%;
    }
}

#msOrder {
    display: flex;
	margin-top: 0!important;
	flex-flow: row;
	flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.contact-form fieldset + fieldset, .contact-form fieldset p + p, .contact-form fieldset input + p  {
	margin-top: 10px;
}
.contact-form fieldset p.text-error {
	color: red;	
}
.contact-form__input, .contact-form__select, .contact-form__textarea {
	padding: 10px;
	outline: none;
	background: #fff;
	border: 1px solid #eee;
	color: #333;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 18px;
	width: 100%;
	box-sizing: border-box;
}
.contact-form__button {
	padding: 10px 20px;
	color: #fff;
	background: #000;
	text-transform: uppercase;
	outline: 0;
	-moz-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	border: 0;
	font-family: "Open Sans", Arial, sans-serif;
	cursor: pointer;
	margin-top: 10px;
}
.ms2_form .contact-form__button {
    background: #00bf62;
}
.contact-form__button:hover {
	background: #fc9900;
}


/* Footer */
.footer {
	color: #fff;
	background: #333;
}
.footer__top { padding: 40px 0 20px 0; }
.column {
	width: 22%;
	display: inline-block;
	float: left;
}
.column + .column { margin-left: 4%; }
.column__title {
	font-size: 1.4em;
	line-height: 1.2em;
	color: #fc9900;
	font-weight: 600;
	text-transform: uppercase;
}
.column__title + ul { margin-top: 20px; }
.column ul li { list-style-type: none; }
.column ul li + li { margin-top: 5px; }
.column p + p { margin-top: 10px; }
.footer__top + .footer__copyright { margin-top: 20px; }
.footer__copyright {
	border-top: 1px solid #777;
	background: #333;
}
.copyright__right, .copyright__author { width: 100%;  text-align: center;}

.copyright__author { text-align: right; display: none;}
.grid {
        display: flex;
    flex-direction: row;

    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.grid figure {
   flex-basis: 32%;
}

.map-mobile, .dealers-mobile {
    display: none;
}
.pagination_wrap {
    background: #000;
}
.pagination {
    text-align: center;
}
.pagination li {
    margin: 5px;
	display: inline-block;
}
.pagination li a {
	display: inline-block;
	padding: 5px 10px;
	background: #333;
    color: #fff;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
}
.pagination li a:hover {
	color: #333;
	background: #E6E6E6;
}
.pagination li a.active {
	color: #fff;
	background: #12a4dd;
}
.swiper-container_our-everyday-life {
  width: 100%;
  height: 100%;
}
.swiper-container_our-everyday-life .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: column;
}
.swiper-container_our-everyday-life .swiper-wrapper {
    padding-bottom: 40px;
}
.our-everyday-life h2 {
    margin-bottom: 20px;
}
.swiper-container_our-everyday-life .services__item + .services__item {
    margin-top: 0!important;
}

@media (max-width: 420px) {
    .map-mobile, .dealers-mobile {
		display: block;
	}
	.map-desc, .dealers-desc {
		display: none;
	}
}


div[data-finish-price] {
    background: #fc9900;
}
div[data-finish-price]:hover {
    background: #fc9900;
}
div[data-finish-price] div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
div[data-finish-price] div,
div[data-finish-price] div span {
    color: white !important;
} 
div[data-finish-price] div a.button {
background: white !important;
color: black !important;
}
p.data-price-warning {
	font-size: 16px;
	margin: 10px 0;
}
.examples {
   display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center; 
    flex-wrap: wrap;
}
.vacansy .examples_left, .vacansy .examples_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.examples_left {
   
}
.examples_left img {
    max-width: 400px;
    width: 100%;
}
.examples_right {
    margin-left: 50px;
}
.examples_right.w50, .examples_right.w50 img { margin: 0!important; }

.examples_right p {
    font-size: 16px;
    margin: 10px 0;
    display: block;
    line-height: 2;
}
div[data-stage-table-1] .table .row .col-3:last-child {
    display: none;
}
div[data-stage-table-1] .table {
    box-shadow: none;
}
.examples-button {
     background: #fc9900;
     font-size: 20px;
	 margin: 10px auto;
	 display: inline-block;
}
.button.video-button {
	margin-top: 10px;
	color: #333;
	background: #eeeeee;
	display: inline-block;
	text-transform: inherit;
}
.content table.default-table { width: inherit; }
.content table.default-table tr th {
    background: #fff;
    color: inherit;
}
.content table tr th, .content table tr td {
	padding: 5px;
}
.slider-img {
    display: none;
}
@media (max-width: 768px) {
    .examples_right.w50, .examples_left.w50 {
        width: 100%;
    }
}


.sale {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 200px;
    cursor: pointer;
    z-index: 999;
    text-decoration: none;
}

@media (max-width: 1280px) {
    .sale {
        width: 150px;
    }
}
@media (max-width: 414px) {
    .sale {
        left: 20px;
        width: 100px;
    }
}

#go {position:fixed;bottom:25px;right:25px;cursor:pointer;z-index:999; text-decoration: none;}
#go .uptocall-mini-phone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
#go .uptocall-mini-phone i {font-size: 30px;color: white;}
#go .uptocall-mini-phone {-moz-border-radius:50% !important;-webkit-border-radius:50% !important;border-radius:50% !important;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#00e676;
width:70px;height:70px;-webkit-animation: uptocallmini 1.5s 0s ease-out infinite;-moz-animation: uptocallmini 1.5s 0s ease-out infinite;animation: uptocallmini 1.5s 0s ease-out infinite;}

#go .uptocall-mini-phone:before {content: "";position: absolute;width: 100%;height: 100%;top:0;left:0;-webkit-animation: uptocallphone 1.5s linear infinite;-moz-animation: uptocallphone 1.5s linear infinite;animation: uptocallphone 1.5s linear infinite;}

/*background-image:url(../images/mini.png);background-repeat:no-repeat;background-position:center center;*/

@-webkit-keyframes uptocallphone {
0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes uptocallphone {
0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes uptocallphone {
0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes uptocallmini {
0% {box-shadow: 0 0 8px 6px rgba(248, 198, 7, 0), 0 0 0px 0px rgba(0,0,0,0), 0 0 0px 0px rgba(248, 198, 7, 0);}
10% {box-shadow: 0 0 8px 6px #00e676, 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px #00e676;}
100% {box-shadow: 0 0 8px 6px rgba(248, 198, 7, 0), 0 0 0px 40px rgba(0,0,0,0), 0 0 0px 40px rgba(248, 198, 7, 0);}
}
@-moz-keyframes uptocallmini {
0% {box-shadow: 0 0 8px 6px rgba(248, 198, 7, 0), 0 0 0px 0px rgba(0,0,0,0), 0 0 0px 0px rgba(248, 198, 7, 0);}
10% {box-shadow: 0 0 8px 6px #00e676, 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px #00e676;}
100% {box-shadow: 0 0 8px 6px rgba(248, 198, 7, 0), 0 0 0px 40px rgba(0,0,0,0), 0 0 0px 40px rgba(248, 198, 7, 0);}
}
@keyframes uptocallmini {
0% {box-shadow: 0 0 8px 6px rgba(248, 198, 7, 0), 0 0 0px 0px rgba(0,0,0,0), 0 0 0px 0px rgba(248, 198, 7, 0);}
10% {box-shadow: 0 0 8px 6px #00e676, 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px #00e676;}
100% {box-shadow: 0 0 8px 6px rgba(248, 198, 7, 0), 0 0 0px 40px rgba(0,0,0,0), 0 0 0px 40px rgba(248, 198, 7, 0);}
}

/* instagram-widget */
.instagram-widget {
    background-color: #F9F9F9;
}
.instagram-widget .wrapper {
    position: relative;
}
.instagram-widget_link {
 width: 100%;
 height: 100%;
 position: absolute;
 z-index: 3;
 top: 0;
 left: 0;
}

.instagram-widget iframe {
 position: relative;
 z-index: 2;
}

.instagram-widget .instagram-widget_comp { display: block; margin: 20px auto 0 auto; }
.instagram-widget .instagram-widget_mobile { display: none; }

@media (max-width: 1024px) {
    .instagram-widget .instagram-widget_mobile { display: block; margin: 20px auto 0 auto; }
    .instagram-widget .instagram-widget_comp { display: none; }
}

/* additional */
.additional-components__table {
	width: 100%;
	display: flex;
	box-sizing: border-box;
	border: 1px solid #dddddd;
	border-top: 0;
	box-shadow: 1px 1px 11px 3px rgba(0,0,0,0.12);
	flex-direction: column;
	margin-top: 20px;
}
.additional-components__head, .additional-components__body {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.additional-components__head {
	color: #000000;
	font-weight: 700;
}
.additional-components__item {
	width: 32%;
	box-sizing: border-box;
	padding: 10px;
	border: 1px solid #eee;
	display: flex;
	align-items: center;
}
.additional-components__item:first-child {
	width: 4%;
	text-align: center;
}
.additional-components__item input[type=checkbox] {
	display: none;
}
.additional-components__item label:before {
	border-radius: 3px;
}
.additional-components__item input[type=checkbox]:checked + label:before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	font-size: 15px;
	color: #f3f3f3;
	text-align: center;
	line-height: 15px;
}
.additional-components__item label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	width: 20px;
	height: 20px;
}
.additional-components__item label:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #aaa;
	box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);
	margin-top: 1px;
}
.additional-components__item input[type=number] {
	padding: 10px;
	border: 1px solid #eee;
	box-shadow: 0 0 15px 4px rgba(0,0,0,0.06);
	
}
.additional-components__item a {
	color: #D11925;
	text-decoration: underline;
}
.additional-components__item_price {
	color: #D11925;
	font-weight: 600;
	font-size: 1.2em;
	line-height: 1.2em;
}
.additional-components__item_price span { margin-right: 5px; }
.stage_content {
	opacity: 0;
	visibility: hidden;
	width: 0;
	height: 0;
	position: absolute;
}
.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
	cursor: initial!important;
}
/* COOCKIE*/

.cookie_notice {
    display: none;
    position: fixed;
    z-index: 9999999;
    bottom: 7px;
    left: 15px;
    right: 0;
    text-align: center;
    font-size: 15px;
    font-family: Verdana, sans-serif;
    color: #FFF;
    background: #FC9900E6;
    padding: 10px 20px;
    border-top: 4px solid #BFE2FF;
    width: 292px;
    border-radius: 10px;
}
/* ÐžÑ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ðµ ÐºÐ½Ð¾Ð¿Ð¾Ðº */
.cookie_btn {
    display: inline-block;
    margin: 10px 6px 4px 6px;
    text-decoration: none;
    position: relative;
    font-size: 13px;
    padding: 4px 12px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase; 
    background: #000000db;
    border: 2px solid #BFE2FF;
}
.cookie_btn:hover {
    color: #FFF;
}
.cookie_btn:after,
.cookie_btn:before {
    position: absolute;
    height: 2px;
    left: 50%;
    background: #FFF;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.cookie_btn:before {
    top: -6px;
}
.cookie_btn:hover:after,
.cookie_btn:hover:before {
    width: 100%;
    left: 0;
}

.black {
    background: #000;
    color: white;
    clear: both;
}

.black h1 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.breadcrumbs ul li a span {color:#fc9900;}
.breadcrumbs ul li a span.curr {color:#fff;}

