@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,800,900&display=swap&subset=cyrillic);
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
 /*   width: 100%;*/
	max-width: 100%;
	max-height: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
              This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
              calculation of the height of the owl-item that breaks page layouts
           */
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(../img/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
.jq-checkbox,
.jq-radio {
	position: relative;
	display: inline-block;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.jq-checkbox input,
.jq-radio input {
	position: absolute;
	z-index: -1;
	margin: 0;
	padding: 0;
	opacity: 0;
}
.jq-file {
	position: relative;
	display: inline-block;
	overflow: hidden;
}
.jq-file input {
	position: absolute;
	top: 0;
	right: 0;
	height: auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	font-size: 100px;
	line-height: 1em;
}
.jq-file__name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.jq-selectbox,
.jq-select-multiple {
	position: relative;
	display: inline-block;
}
.jq-selectbox select,
.jq-select-multiple select {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	opacity: 0;
}
.jq-selectbox li,
.jq-select-multiple li {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
}
.jq-selectbox {
	z-index: 10;
}
.jq-selectbox__select {
	position: relative;
}
.jq-selectbox__select-text {
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.jq-selectbox__dropdown {
	position: absolute;
}
.jq-selectbox__search input {
	-webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
	-webkit-appearance: none;
}
.jq-selectbox__dropdown ul {
	position: relative;
	overflow: auto;
	overflow-x: hidden;
	list-style: none;
	-webkit-overflow-scrolling: touch;
}
.jq-select-multiple ul {
	position: relative;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}
.jq-number {
	display: inline-block;
}
.jq-number__field input {
	-moz-appearance: textfield;
	text-align: left; /* для Opera Presto */
}
.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
	margin: 0; /* в каких-то браузерах присутствует отступ */
	-webkit-appearance: none;
}
.jq-checkbox,
.jq-radio {
	vertical-align: -4px;
	width: 16px;
	height: 16px;
	margin: 0 4px 0 0;
	border: 1px solid #C3C3C3;
	background: linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
	cursor: pointer;
}
.jq-checkbox.focused,
.jq-radio.focused {
	border: 1px solid #08C;
}
.jq-checkbox.disabled,
.jq-radio.disabled {
	opacity: .55;
}
.jq-checkbox {
	border-radius: 3px;
}
.jq-checkbox.checked .jq-checkbox__div {
	width: 8px;
	height: 4px;
	margin: 3px 0 0 3px;
	border-bottom: 2px solid #666;
	border-left: 2px solid #666;
	-webkit-transform: rotate(-50deg);
	transform: rotate(-50deg);
}
.jq-radio {
	border-radius: 50%;
}
.jq-radio.checked .jq-radio__div {
	width: 10px;
	height: 10px;
	margin: 3px 0 0 3px;
	border-radius: 50%;
	background: #777;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,.7);
}
.jq-file {
	width: 270px;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.jq-file input {
	cursor: pointer;
}
.jq-file__name {
	box-sizing: border-box;
	width: 100%;
	height: 34px;
	padding: 0 80px 0 10px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #FFF;
	box-shadow: inset 1px 1px #F1F1F1;
	font: 14px/32px Arial, sans-serif;
	color: #333;
}
.jq-file__browse {
	position: absolute;
	top: 1px;
	right: 1px;
	padding: 0 10px;
	border-left: 1px solid #CCC;
	border-radius: 0 4px 4px 0;
	background: linear-gradient(#FFF, #E6E6E6);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px/32px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #FFF;
}
.jq-file:hover .jq-file__browse {
	background: linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-file:active .jq-file__browse {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
.jq-file.focused .jq-file__name {
	border: 1px solid #5794BF;
}
.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-number {
	position: relative;
	vertical-align: middle;
	padding: 0 36px 0 0;
}
.jq-number__field {
	width: 100px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
}
.jq-number__field:hover {
	border-color: #B3B3B3;
}
.jq-number__field input {
	box-sizing: border-box;
	width: 100%;
	padding: 8px 9px;
	border: none;
	outline: none;
	background: none;
	font: 14px Arial, sans-serif;
	color: #333;
}
.jq-number__spin {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 14px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-shadow: 1px 1px #FFF;
	cursor: pointer;
}
.jq-number__spin.minus {
	top: auto;
	bottom: 0;
}
.jq-number__spin:hover {
	background: linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-number__spin:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
.jq-number__spin:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 11px;
	width: 0;
	height: 0;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #999;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:after {
	top: 5px;
	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-bottom: none;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:hover:after {
	border-top-color: #000;
}
.jq-number__spin.plus:hover:after {
	border-bottom-color: #000;
}
.jq-number.focused .jq-number__field {
	border: 1px solid #5794BF;
}
.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-number.disabled .jq-number__spin:after {
	border-bottom-color: #AAA;
}
.jq-number.disabled .jq-number__spin.minus:after {
	border-top-color: #AAA;
}
.jq-selectbox {
	vertical-align: middle;
	cursor: pointer;
}
.jq-selectbox__select {
	height: 32px;
	padding: 0 45px 0 10px;
	border: 1px solid #0A75B2;
	border-radius: 2px;
	font-size: 12px;
	line-height: 33px;
	color: #333;
	min-width: 158px;
}
.jq-selectbox__select:hover {

}
.jq-selectbox__select:active {
}
.jq-selectbox.focused .jq-selectbox__select {
	border: 1px solid #5794BF;
}
.jq-selectbox.disabled .jq-selectbox__select {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-selectbox__select-text {
	display: block;
	width: 100%;
}
.jq-selectbox .placeholder {
	color: #888;
}
.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 34px;
	height: 100%;
	/*border-left: 1px solid #CCC;*/
}
.jq-selectbox__trigger-arrow {
	position: absolute;
	top: 8px;
	right: 13px;
	width: 10px;
    height: 10px;
    border-top: 2px solid #0a75b2;
    border-right: 2px solid #0a75b2;
    transform: rotate(135deg);


/*	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;*/
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow {
/*	border-top-color: #000;*/
}
.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
	border-top-color: #AAA;
}
.jq-selectbox__dropdown {
	box-sizing: border-box;
	width: 100%;
	margin: 2px 0 0;
	padding: 0;
	border: 1px solid #0a75b2;
	border-radius: 2px;
	background: #FFF;
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
}
.jq-selectbox__search {
	margin: 5px;
}
.jq-selectbox__search input {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 5px 27px 6px 8px;
	border: 1px solid #CCC;
	border-radius: 3px;
	outline: none;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==') no-repeat 100% 50%;
	box-shadow: inset 1px 1px #F1F1F1;
	color: #333;
}
.jq-selectbox__not-found {
	margin: 5px;
	padding: 5px 8px 6px;
	background: #F0F0F0;
	font-size: 13px;
}
.jq-selectbox ul {
	margin: 0;
	padding: 0;
}
.jq-selectbox li {
	min-height: 18px;
	padding: 5px 10px 6px;
	color: #231F20;
}
.jq-selectbox li.selected {
	background-color: #A3ABB1;
	color: #FFF;
}
.jq-selectbox li:hover {

	color: #0a75b2;
}
.jq-selectbox li.disabled {
	color: #AAA;
}
.jq-selectbox li.disabled:hover {
	background: none;
}
.jq-selectbox li.optgroup {
	font-weight: bold;
}
.jq-selectbox li.optgroup:hover {
	background: none;
	color: #231F20;
	cursor: default;
}
.jq-selectbox li.option {
	padding-left: 25px;
}
.jq-select-multiple {
	box-sizing: border-box;
	padding: 1px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #FFF;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px/18px Arial, sans-serif;
	color: #333;
	cursor: default;
}
.jq-select-multiple.focused {
	border: 1px solid #5794BF;
}
.jq-select-multiple.disabled {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-select-multiple ul {
	margin: 0;
	padding: 0;
}
.jq-select-multiple li {
	padding: 3px 9px 4px;
	list-style: none;
}
.jq-select-multiple li:first-child {
	border-radius: 3px 3px 0 0;
}
.jq-select-multiple li:last-child {
	border-radius: 0 0 3px 3px;
}
.jq-select-multiple li.selected {
	background: #08C;
	color: #FFF;
}
.jq-select-multiple li.disabled {
	color: #AAA;
}
.jq-select-multiple li.optgroup {
	font-weight: bold;
}
.jq-select-multiple li.option {
	padding-left: 25px;
}
.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
	background: #CCC;
	color: #FFF;
}
input[type='email'].styler,
input[type='password'].styler,
input[type='search'].styler,
input[type='tel'].styler,
input[type='text'].styler,
input[type='url'].styler,
textarea.styler {
	padding: 8px 9px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
}
input[type='search'].styler {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea.styler {
	overflow: auto;
}
input[type='email'].styler:hover,
input[type='password'].styler:hover,
input[type='search'].styler:hover,
input[type='tel'].styler:hover,
input[type='text'].styler:hover,
input[type='url'].styler:hover,
textarea.styler:hover {
	border-color: #B3B3B3;
}
input[type='email'].styler:hover:focus,
input[type='password'].styler:hover:focus,
input[type='search'].styler:hover:focus,
input[type='tel'].styler:hover:focus,
input[type='text'].styler:hover:focus,
input[type='url'].styler:hover:focus,
textarea.styler:hover:focus {
	border-color: #CCC;
	border-top-color: #B3B3B3;
	outline: none;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
button.styler,
input[type='button'].styler,
input[type='submit'].styler,
input[type='reset'].styler {
	overflow: visible;
	padding: 8px 11px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	outline: none;
	background: linear-gradient(#FFF, #E6E6E6);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #FFF;
	cursor: pointer;
}
button.styler.styler::-moz-focus-inner,
input[type='button'].styler.styler::-moz-focus-inner,
input[type='submit'].styler.styler::-moz-focus-inner,
input[type='reset'].styler.styler::-moz-focus-inner {
	padding: 0;
	border: 0;
}
button.styler:not([disabled]):hover,
input[type='button'].styler:not([disabled]):hover,
input[type='submit'].styler:not([disabled]):hover,
input[type='reset'].styler:not([disabled]):hover,
input[type='reset'].styler:hover {
	background: linear-gradient(#F6F6F6, #E6E6E6);
}
button.styler:active,
input[type='button'].styler:active,
input[type='submit'].styler:active,
input[type='reset'].styler:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
button.styler[disabled],
input[type='button'].styler[disabled],
input[type='submit'].styler[disabled] {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url(../fonts/fontawesome-webfont.eot);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2) format('woff2'),url(../fonts/fontawesome-webfont.woff) format('woff'),url(../fonts/fontawesome-webfont.ttf) format('truetype'),url(../img/fontawesome-webfont.svg#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.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-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}
/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/



/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/



/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCustomScrollbar{ -ms-touch-action: pinch-zoom; touch-action: pinch-zoom; /* direct pointer events to js */ }
	.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action{ -ms-touch-action: auto; touch-action: auto; }
	
	.mCustomScrollBox{ /* contains plugin's markup */
		position: relative;
		overflow: hidden;
		height: 100%;
		max-width: 100%;
		outline: none;
		direction: ltr;
	}

	.mCSB_container{ /* contains the original content */
		overflow: hidden;
		width: auto;
		height: auto;
	}



/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_inside > .mCSB_container{ margin-right: 30px; }

	.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; } /* non-visible scrollbar */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-left: 0; } /* RTL direction/left-side scrollbar */

	.mCSB_scrollTools{ /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
		position: absolute;
		width: 16px;
		height: auto;
		left: auto;
		top: 0;
		right: 0;
		bottom: 0;
	}

	.mCSB_outside + .mCSB_scrollTools{ right: -26px; } /* scrollbar position: outside */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, 
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ /* RTL direction/left-side scrollbar */
		right: auto;
		left: 0;
	}
	
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ left: -26px; } /* RTL direction/left-side scrollbar (scrollbar position: outside) */

	.mCSB_scrollTools .mCSB_draggerContainer{ /* contains the draggable element and dragger rail markup */
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0; 
		height: auto;
	}

	.mCSB_scrollTools a + .mCSB_draggerContainer{ margin: 20px 0; }

	.mCSB_scrollTools .mCSB_draggerRail{
		width: 2px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
	}

	.mCSB_scrollTools .mCSB_dragger{ /* the draggable element */
		cursor: pointer;
		width: 100%;
		height: 30px; /* minimum dragger height */
		z-index: 1;
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* the dragger element */
		position: relative;
		width: 4px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
		text-align: center;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ width: 12px; /* auto-expanded scrollbar */ }
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 8px; /* auto-expanded scrollbar */ }

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown{
		display: block;
		position: absolute;
		height: 20px;
		width: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}

	.mCSB_scrollTools .mCSB_buttonDown{ bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_horizontal.mCSB_inside > .mCSB_container{
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.mCSB_horizontal.mCSB_outside > .mCSB_container{ min-height: 100%; }

	.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; } /* non-visible scrollbar */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal{
		width: auto;
		height: 16px;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
	}

	.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
	.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{ bottom: -26px; } /* scrollbar position: outside */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer{ margin: 0 0px; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 2px;
		margin: 7px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{
		width: 30px; /* minimum dragger width */
		height: 100%;
		left: 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 12px; /* auto-expanded scrollbar */
		margin: 2px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 8px; /* auto-expanded scrollbar */
		margin: 4px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{
		display: block;
		position: absolute;
		width: 20px;
		height: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}
	
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{ left: 0; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{ right: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_buttonRight {
    opacity: 0 !important;
	z-index: -1;
}

.mCSB_buttonLeft {
    opacity: 0 !important;
	z-index: -1;
}

	.mCSB_container_wrapper{
		position: absolute;
		height: auto;
		width: auto;
		overflow: hidden;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin-right: 30px;
		margin-bottom: 30px;
	}
	
	.mCSB_container_wrapper > .mCSB_container{
		padding-right: 30px;
		padding-bottom: 30px;
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 20px; }
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 20px; }
	
	/* non-visible horizontal scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 0; }
	
	/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 0; }
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 20px; }
	
	/* non-visible scrollbar/RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 0; }
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container{ padding-right: 0; }
	
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container{ padding-bottom: 0; }
	
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{
		margin-right: 0; /* non-visible scrollbar */
		margin-left: 0;
	}
	
	/* non-visible horizontal scrollbar */
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_scrollTools, 
	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{
		-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-o-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
	}



/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/

	/* 
	----------------------------------------
	6.1 THEMES 
	----------------------------------------
	*/
	
	/* default theme ("light") */

	.mCSB_scrollTools{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }
	
	.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 0; filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)"; }
	
	.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollBox:hover > .mCSB_scrollTools,
	.mCustomScrollBox:hover ~ .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)"; }

	.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.4);
		filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; 
	}

	.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.85);
		filter: "alpha(opacity=85)"; -ms-filter: "alpha(opacity=85)"; 
	}
	.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.9);
		filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		background-image: url(../img/mCSB_buttons.png); /* css sprites */
		background-repeat: no-repeat;
		opacity: 0.4; filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp{
		background-position: 0 0;
		/* 
		sprites locations 
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonDown{
		background-position: 0 -20px;
		/* 
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonLeft{
		background-position: 0 -40px;
		/* 
		sprites locations 
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonRight{
		background-position: 0 -56px;
		/* 
		sprites locations 
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonUp:hover,
	.mCSB_scrollTools .mCSB_buttonDown:hover,
	.mCSB_scrollTools .mCSB_buttonLeft:hover,
	.mCSB_scrollTools .mCSB_buttonRight:hover{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }

	.mCSB_scrollTools .mCSB_buttonUp:active,
	.mCSB_scrollTools .mCSB_buttonDown:active,
	.mCSB_scrollTools .mCSB_buttonLeft:active,
	.mCSB_scrollTools .mCSB_buttonRight:active{ opacity: 0.9; filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; }
	

	/* theme: "dark" */

	.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.85); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.9); }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px 0; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-2", "dark-2" */

	.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 4px;
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px 0; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{	background-position: -32px -20px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -40px -40px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -56px; }
	
	
	/* theme: "dark-2" */

	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px 0; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -20px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -40px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thick", "dark-thick" */

	.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 6px;
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 4px;
		margin: 6px 0;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 6px;
		margin: 5px auto;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px 0; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{	background-position: -16px -20px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -20px -40px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -56px; }


	/* theme: "dark-thick" */
	
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px 0; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -20px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -40px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -100px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thin", "dark-thin" */
	
	.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }

	.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 2px; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 2px;
		margin: 7px auto;
	}


	/* theme "dark-thin" */
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{	background-position: -80px 0; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger{ height: 14px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 14px;
		margin: 0 1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 14px; }
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 14px;
		margin: 1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		width: 16px; /* auto-expanded scrollbar */
		height: 16px;
		margin: -1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 4px; /* auto-expanded scrollbar */ }
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 16px; /* auto-expanded scrollbar */
		width: 16px;
		margin: 0 -1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 4px; /* auto-expanded scrollbar */
		margin: 6px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{ background-position: 0 -72px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{ background-position: 0 -92px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{ background-position: 0 -112px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{ background-position: 0 -128px; }
	
	
	/* theme "rounded-dark", "rounded-dots-dark" */
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px -72px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -92px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -112px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -128px; }
	
	
	/* theme "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail{ width: 4px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		background-color: transparent;
		background-position: center;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
		background-repeat: repeat-y;
		opacity: 0.3;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		height: 4px;
		margin: 6px 0;
		background-repeat: repeat-x;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px -72px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{ background-position: -16px -92px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -20px -112px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -128px; }
	
	
	/* theme "rounded-dots-dark" */
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
	}
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px -72px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -92px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -112px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -100px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-y;
	/*	background-image: -moz-linear-gradient(left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to right, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);*/
		background-color: #fff;
	}
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-x;
	/*	background-image: -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);*/
		background-color: #fff;
	}
	
	
	/* theme "3d", "3d-dark" */
	
	.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 70px; }
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 70px; }
	
	.mCS-3d.mCSB_scrollTools, 
	.mCS-3d-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{/* -webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;*/ border-radius: 0px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 8px;
		background-color: #c3d4dc; background-color: rgba(195,212,220,1);
/*		box-shadow: inset 1px 0 1px rgba(0,0,0,0.5), inset -1px 0 1px rgba(255,255,255,0.2);*/
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 	 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ /*background-color: #555;*/ }

	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 8px; }

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 10px;
		padding: 1px;
		margin: 4px 0px;
		border: 1px solid rgba(195,212,220,1);
		/*box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.2);*/
	}

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: calc(100% - 1px);
		height: 8px;
		margin: 5px 1px;
		box-sizing:border-box;
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "3d-dark" */
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); }
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "3d-thick", "3d-thick-dark" */
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{ -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
	
	.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical{ right: 1px; }
	
	.mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCS-3d-thick-dark.mCSB_scrollTools_vertical{ box-shadow: inset 1px 0 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5); }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{
		bottom: 1px;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		box-shadow: inset 1px 0 0 rgba(255,255,255,0.4);
		width: 12px;
		margin: 2px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4); }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 12px;
		width: auto;
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #000; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -40px -128px; }
	
	
	/* theme: "3d-thick-dark" */
	
	.mCS-3d-thick-dark.mCSB_scrollTools{ box-shadow: inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 1px 0 0 rgba(255,255,255,0.4), inset -1px 0 0 rgba(0,0,0,0.2); }
	 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #777; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #000; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "minimal", "minimal-dark" */
	
	.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		right: 0; 
		margin: 12px 0; 
	}
	
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{
		bottom: 0; 
		margin: 0 12px; 
	}
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		left: 0; 
		right: auto;
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 50px; }
	
	.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 50px; }
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	
	/* theme: "minimal-dark" */
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	/* ---------------------------------------- */
	
	
	
	/* theme "light-3", "dark-3" */
	
	.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{
		width: 6px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; }

	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 6px;
		margin: 5px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		width: 12px;
	}
	
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "dark-3" */
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
	
	.mCS-inset.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 12px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ 
		width: 6px;
		margin: 3px 5px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 6px;
		margin: 5px 3px;
		position: absolute;
		width: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	
	/* theme "inset-2", "inset-2-dark" */
	
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: transparent;
		border-width: 1px;
		border-style: solid;
		border-color: #fff;
		border-color: rgba(255,255,255,0.2);
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{ border-color: #000; border-color: rgba(0,0,0,0.2); }
	
	
	/* theme "inset-3", "inset-3-dark" */
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.6); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.6); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.75); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }
	
	/* ---------------------------------------- */

@charset "UTF-8";
@font-face {
  font-family: 'roboto_condensedregular';
  src: url(../fonts/roboto-condensed-webfont.eot);
  src: url(../fonts/roboto-condensed-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/roboto-condensed-webfont.woff) format("woff"), url(../fonts/roboto-condensed-webfont.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'roboto_condensedlight';
  src: url(../fonts/robotocondensed-light-webfont.eot);
  src: url(../fonts/robotocondensed-light-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/robotocondensed-light-webfont.woff) format("woff"), url(../fonts/robotocondensed-light-webfont.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'roboto_condensedbold';
  src: url(../fonts/roboto-boldcondensed-webfont.eot);
  src: url(../fonts/roboto-boldcondensed-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/roboto-boldcondensed-webfont.woff) format("woff"), url(../fonts/roboto-boldcondensed-webfont.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

/*!
 * Bootstrap Grid v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

*,
*::before,
*::after {
  box-sizing: inherit; }

.container,
.container-fluid,
.container-xs,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.container {
  max-width: 1px; }

@media (min-width: 2px) {
  .container, .container-sm {
    max-width: 530px; } }

@media (min-width: 531px) {
  .container, .container-sm, .container-md {
    max-width: 944px; } }

@media (min-width: 945px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 1169px; } }

@media (min-width: 1190px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1170px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%; }

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%; }

.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%; }

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%; }

.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 2px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .order-sm-last {
    order: 13; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .order-sm-11 {
    order: 11; }
  .order-sm-12 {
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 531px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .order-md-last {
    order: 13; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .order-md-11 {
    order: 11; }
  .order-md-12 {
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 945px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .order-lg-last {
    order: 13; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .order-lg-11 {
    order: 11; }
  .order-lg-12 {
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1190px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    order: -1; }
  .order-xl-last {
    order: 13; }
  .order-xl-0 {
    order: 0; }
  .order-xl-1 {
    order: 1; }
  .order-xl-2 {
    order: 2; }
  .order-xl-3 {
    order: 3; }
  .order-xl-4 {
    order: 4; }
  .order-xl-5 {
    order: 5; }
  .order-xl-6 {
    order: 6; }
  .order-xl-7 {
    order: 7; }
  .order-xl-8 {
    order: 8; }
  .order-xl-9 {
    order: 9; }
  .order-xl-10 {
    order: 10; }
  .order-xl-11 {
    order: 11; }
  .order-xl-12 {
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 2px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 531px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 945px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1190px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; } }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 2px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 531px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 945px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

@media (min-width: 1190px) {
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; } }

.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

.m-n2 {
  margin: -0.5rem !important; }

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important; }

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important; }

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important; }

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important; }

.m-n3 {
  margin: -1rem !important; }

.mt-n3,
.my-n3 {
  margin-top: -1rem !important; }

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important; }

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important; }

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important; }

.m-n4 {
  margin: -1.5rem !important; }

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important; }

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important; }

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important; }

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important; }

.m-n5 {
  margin: -3rem !important; }

.mt-n5,
.my-n5 {
  margin-top: -3rem !important; }

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important; }

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important; }

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

.mr-auto,
.mx-auto {
  margin-right: auto !important; }

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

.ml-auto,
.mx-auto {
  margin-left: auto !important; }

@media (min-width: 2px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 531px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 945px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

@media (min-width: 1190px) {
  .m-xl-0 {
    margin: 0 !important; }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important; } }

/*!
 * Bootstrap Reboot v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff; }

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent; }
  a:hover {
    color: #0056b3;
    text-decoration: underline; }

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none; }

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em; }

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle;
  border-style: none; }

svg {
  overflow: hidden;
  vertical-align: middle; }

table {
  border-collapse: collapse; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: inherit;
  text-align: -webkit-match-parent; }

label {
  display: inline-block;
  margin-bottom: 0.5rem; }

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

[role="button"] {
  cursor: pointer; }

select {
  word-wrap: normal; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0; }

textarea {
  overflow: auto;
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal; }

progress {
  vertical-align: baseline; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

output {
  display: inline-block; }

summary {
  display: list-item;
  cursor: pointer; }

template {
  display: none; }

[hidden] {
  display: none !important; }

html {
  height: 100%;
  width: 100%; }

body {
  font-family: Rubik;
  color: #071C28;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background: #fff;
  outline: none;
  width: 100%;
  overflow-x: hidden;
  /* max-width: 360px;*/ }

.wrapper {
  /*  width:360px !important;
  min-width: 320px !important;*/ }

:focus,
:active {
  outline: none !important; }

h1 {
  font-family: Rubik;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  color: #071C28; }

h2 {
  font-family: Rubik;
  font-style: normal;
  font-weight: 500;
  color: #071C28; }

h3 {
  font-family: Rubik;
  font-style: normal;
  color: #071C28; }

h4,
h5,
h6 {
  font-family: Rubik;
  font-style: normal;
  font-weight: 500;
  color: #071C28; }

p {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  color: #071C28; }

hr {
  display: block;
  width: 100%;
  height: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #C3D4DC; }

a {
  color: #f58014; }

ul li {
  color: #071C28;
  list-style: none; }

ul li::before {
  content: "\2022";
  color: #f58014;
  font-weight: bold;
  display: inline-block; }

ol {
  padding-top: 1rem;
  counter-reset: myCounter; }

ol > li {
  padding-left: 37px;
  list-style: none;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #071C28;
  position: relative;
  max-width: 615px;
  margin-bottom: 14px; }

ol > li > ul {
  margin-top: 10px; }

ol > li > ul > li {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 10px; }

ol > li > ul > li:before {
  margin-left: 30px;
  margin-right: 7px; }

ol > li:before {
  position: absolute;
  left: 5px;
  top: 0px;
  counter-increment: myCounter;
  content: counter(myCounter) ".";
  color: #071C28;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: -0.02em;
  display: inline-block; }

.clear {
  clear: both; }

.center {
  display: block;
  text-align: center; }

.info {
  display: inline;
  font-family: Rubik;
  font-style: normal;
  font-weight: 300;
  color: #f58014;
  border-top: 0;
  border-left: 0;
  border-bottom: 1px solid transparent;
  border-right: 0;
  background: none;
  padding: 0; }
  .info_form {
    margin-left: 10px; }
  .info_small {
    font-size: 14px !important;
    line-height: 19px !important;
    letter-spacing: -0.02em !important; }

.info:hover {
  color: #0a75b2;
  text-decoration: none;
  border-bottom: 1px solid #0a75b2; }

.title-info {
  font-family: Rubik;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  color: #071C28; }

.key {
  display: inline-block;
  cursor: pointer;
  box-sizing: border-box;
  background: #f58014;
  box-shadow: 3px 4px 2px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border: none; }
  .key:hover {
    text-decoration: none;
    background: #fb6a00;
    color: #fff; }
  .key:active {
    text-decoration: none;
    background: #f45800;
    box-shadow: none;
    color: #fff; }
  .key_small {
    padding: 8px 47px !important; }
  .key_simple {
    box-shadow: none; }
  .key_disabled {
    background-color: #c3d4dc !important;
    color: #fff !important;
    box-shadow: none !important;
    cursor: not-allowed !important; }
  .key__text {
    font-family: Rubik;
    font-style: normal;
    font-weight: 500; }
  .key_center-modal {
    display: block; }
  .key_inline {
    background: transparent;
    text-align: left;
    box-shadow: none;
    color: #f58014;
    border-radius: 0;
    width: auto; }
    .key_inline:hover {
      text-decoration: underline;
      background: transparent;
      color: #f58014; }

.background-1 {
  background-color: #071C28; }

.background-2 {
  background-color: #edf2f5; }

.background-3 {
  background-color: #f4f5f5; }

.background-4 {
  background-color: #c3d4dc; }

.background-5 {
  background-color: #fff; }

.light-text {
  color: #f4f5f5; }

.accent-1 {
  background-color: #f58014; }

.accent-2 {
  background-color: #fb6a00; }

.accent-3 {
  background-color: #f45800; }

.accent-4 {
  background-color: #0a75b2; }

.accent-5 {
  background-color: #071c28; }

.accent-6 {
  background-color: #c70000; }

.accent-7 {
  background-color: #c3d4dc; }

.annotation {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #071C28; }

.muted-text {
  color: #828E95; }

.sq {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
  margin-right: 5px; }

.banner__header {
  font-family: Rubik;
  font-style: normal;
  font-weight: bold;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: -0.04em;
  color: #071C28; }

.close {
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/close.svg) no-repeat center;
  cursor: pointer;
  border: none; }
  .close:hover {
    background: url(../img/close-hover.svg) no-repeat center; }
  .close:hover .close__tooltip {
    display: block; }
  .close__tooltip {
    display: none;
    position: absolute;
    background: #fff;
    color: #071C28;
    z-index: 1;
    box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
    border-radius: 2px;
    padding: 18px 22px;
    right: calc(0px - 190px);
    top: -14px;
    font-size: 12px;
    line-height: 14px;
    width: 180px;
    text-align: center; }
  .close__tooltip:before {
    content: "";
    border: solid transparent;
    position: absolute;
    border-right-color: #fff;
    right: 100%;
    top: 50%;
    border-width: 9px;
    margin-top: -9px; }

.modal {
  display: block; }
  .modal_noover {
    overflow: initial !important; }
  .modal_noover .modal__item {
    overflow: initial !important; }
  .modal__ok {
    display: block; }
  .modal__tnanks {
    display: block;
    text-align: center;
    color: #071C28; }
  .modal__header_success {
    text-align: center;
    display: block; }
  .modal__header {
    display: inline-block;
    text-align: center;
    color: #071C28;
    position: relative; }
    .modal__header:before {
      position: absolute;
      display: block;
      content: '';
      background: url(../img/ellipse.svg) no-repeat center; }
    .modal__header_simple {
      padding-left: 0 !important; }
      .modal__header_simple:before {
        display: none; }
  .modal__gray {
    display: block;
    background-color: #f4f5f5; }
  .modal__gray:after {
    display: block;
    content: '';
    clear: both; }
  .modal__white {
    display: block;
    background-color: #fff; }
  .modal__white:after {
    display: block;
    content: '';
    clear: both; }
  .modal__item {
    display: block;
    background: #fff;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    overflow: hidden; }
  .modal__item:after {
    display: block;
    content: '';
    clear: both; }
  .modal__item_left {
    display: block;
    float: left;
    border-right: 1px solid #f58014; }
  .modal__item_right {
    display: block;
    float: left; }
  .modal__lwrapper {
    width: auto;
    float: left; }
  .modal__rwrapper {
    width: auto;
    float: right; }
    .modal__rwrapper .item__result-quantity {
      font-size: 26px;
      line-height: 30px;
      letter-spacing: -0.03em;
      font-family: Rubik;
      font-style: normal;
      color: #071C28;
      margin-top: -5px;
      font-weight: 500; }
    .modal__rwrapper .item__stars {
      position: inherit !important; }
    .modal__rwrapper .item__comments-col {
      margin-top: 0px !important; }
  .modal hr {
    margin: 0px 0px 17px 0px !important; }
  .modal__dotted-link {
    display: inline;
    border-bottom: 1px dashed #f58014;
    color: #f58014; }
  .modal__dotted-link:hover {
    color: #f58014 !important;
    border-bottom: 1px dashed transparent;
    text-decoration: none !important; }
  .modal__big-title {
    font-weight: bold; }

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

.modal .fancybox-close-small svg path {
  fill: #828E95; }

.modal .fancybox-close-small:hover svg path {
  fill: #f58014; }

.pagination {
  display: block;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  margin: 0 auto; }
  .pagination:after {
    content: '';
    display: block;
    clear: both; }
  .pagination__link {
    display: inline-block;
    color: #828E95; }
  .pagination__link:hover {
    display: inline-block;
    color: #f58014;
    text-decoration: none; }
  .pagination__current {
    display: inline-block;
    color: #fff;
    background-color: #f58014; }
  .pagination__separator {
    display: inline-block;
    color: #828E95; }

.items {
  display: block;
  width: 100%;
  margin: 20px 0px; }
  .items:after {
    content: '';
    display: block;
    clear: both; }

.section-dx {
  display: block;
  position: relative;
  float: left;
  background: #fff;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  color: #071C28; }
  .section-dx:hover {
    text-decoration: none;
    color: #071C28;
    overflow: hidden; }
  .section-dx__image {
    display: block; }

.sections {
  display: block; }
  .sections:after {
    display: block;
    content: '';
    clear: both; }
  .sections__slider {
    display: block; }

.item {
  display: block;
  position: relative;
  float: left;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #828E95;
  z-index: 0; }
  .item .no-photo {
    margin: 0 auto; }
  .item_hand {
    cursor: pointer; }
  .item h3 {
    position: relative; }
  .item:hover {
    position: relative;
    border: none; }
  .item__quick {
    display: block;
    position: relative;
    cursor: pointer; }
  .item__quick:after {
    display: block;
    content: '';
    position: absolute; }
  .item__quick__text {
    position: absolute;
    display: block;
    text-align: center;
    color: #fff;
    white-space: nowrap; }
  .item__quick:hover:after {
    background: #17577B; }
  .item__titlelink {
    color: #071C28 !important;
    text-decoration: none !important; }
  .item__marks {
    position: absolute;
    top: 19px;
    left: 0; }
  .item__mark {
    display: block;
    color: #fff;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    height: 19px;
    line-height: 19px;
    position: relative;
    text-transform: uppercase;
    width: max-content;
    padding: 0 22px 0 30px;
    margin-bottom: 5px;
    opacity: 0.6; }
    .item__mark::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      right: -8px;
      width: 9px;
      height: 0;
      border-style: solid;
      border-width: 19px 8px 0 0; }
    .item__mark_sale {
      background: #c70000; }
      .item__mark_sale::after {
        border-color: #c70000 transparent transparent transparent; }
    .item__mark_hit {
      background: #f58014; }
      .item__mark_hit::after {
        border-color: #f58014 transparent transparent transparent; }
    .item__mark_discount {
      background: #0a75b2; }
      .item__mark_discount::after {
        border-color: #0a75b2 transparent transparent transparent; }
    .item__mark_recommendation {
      background: #f45800; }
      .item__mark_recommendation::after {
        border-color: #f45800 transparent transparent transparent; }
    .item__mark_new {
      background: #071c28; }
      .item__mark_new::after {
        border-color: #071c28 transparent transparent transparent; }
  .item__image {
    display: block;
    max-width: 100%; }
  .item__star-full {
    display: block;
    float: left;
    background: url(../img/star_full.svg) no-repeat center; }
  .item__star-half {
    display: block;
    float: left;
    background: url(../img/star-halfsm_.svg) no-repeat center; }
  .item__star-empty {
    display: block;
    float: left;
    background: url(../img/star_empty.svg) no-repeat center; }
  .item__star-col {
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #828E95;
    display: block;
    float: left; }
  .item__comments {
    display: block; }
  .item__comments:after {
    content: "";
    display: block;
    clear: both; }
  .item__comments-col {
    display: block;
    float: left;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #828E95;
    cursor: pointer;
    border-bottom: 1px dotted #828E95; }
  .item__stars {
    display: block;
    float: left; }
  .item__stars:after {
    content: "";
    display: block;
    clear: both; }
  .item__key {
    display: block; }
  .item__price {
    position: relative;
    font-family: Rubik;
    font-style: normal;
    color: #071C28; }
  .item__old-price {
    position: absolute;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #828E95; }
  .item__col {
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #071C28;
    display: inline-block; }
  .item__favor-compare {
    display: block; }
  .item__favor-compare:after {
    content: '';
    display: block;
    clear: both; }
  .item__favor {
    position: relative;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #828E95;
    background: url(../img/item_favor.svg) no-repeat center left;
    float: left;
    cursor: pointer; }
    .item__favor.active {
      color: #071C28;
      background: url(../img/item_favor_added.svg) no-repeat center left; }
    .item__favor:hover {
      text-decoration: underline;
      background: url(../img/item_favor_added.svg) no-repeat center left;
      color: #f58014; }
  .item__favor-del {
    position: absolute;
    cursor: pointer;
    display: block; }
  .item__favor-del:hover {
    text-decoration: underline; }
  .item__favor_added {
    color: #071C28;
    background: url(../img/item_favor_added.svg) no-repeat center left; }
  .item__compare {
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #828E95;
    background: url(../img/item_compare.svg) no-repeat center left;
    float: left;
    cursor: pointer; }
    .item__compare.active {
      color: #071C28;
      background: url(../img/item_compare_added.svg) no-repeat center left; }
    .item__compare:hover {
      text-decoration: underline;
      background: url(../img/item_compare_added.svg) no-repeat center left;
      color: #f58014; }
    .item__compare_added {
      color: #071C28;
      background: url(../img/item_compare_added.svg) no-repeat center left; }
  .item__pq-wrapper {
    display: block; }
  .item__pq-wrapper:after {
    content: '';
    display: block;
    clear: both; }
  .item__pq-price {
    float: left; }
  .item__pq-quantity {
    float: left; }
  .item .close {
    position: absolute;
    right: 9px;
    top: 9px; }

.main-item-slider {
  z-index: 0; }

.question {
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-image: url(../img/q.svg);
  background-position: center;
  background-repeat: no-repeat; }
  .question:hover .question__tooltip {
    display: block;
    transition: all 0.2s ease; }
  .question__tooltip {
    box-sizing: border-box;
    cursor: default;
    position: absolute;
    display: none;
    background: #fff;
    font-weight: normal;
    border: 1px solid #c3d4dc; }
  .question__tooltip:before {
    position: absolute;
    content: "";
    border: solid transparent;
    border-top-width: medium;
    border-right-color: transparent;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    position: absolute;
    border-top-color: #fff;
    filter: drop-shadow(0px 1px 0px #c3d4dc); }

.quantity {
  display: block;
  box-sizing: border-box;
  border: 1px solid #17577B; }
  .quantity:after {
    content: '';
    display: block;
    clear: both; }
  .quantity__arrow-minus {
    box-sizing: border-box;
    padding: 5px 0px !important;
    background: #c3d4dc;
    display: block;
    border: none;
    width: 28%;
    float: left;
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #17577B; }
  .quantity__arrow-minus:hover {
    background: #17577B;
    color: #fff;
    transition: all 0.2s ease; }
  .quantity__arrow-plus {
    box-sizing: border-box;
    padding: 5px 0px !important;
    background: #c3d4dc;
    display: block;
    border: none;
    width: 28%;
    float: right;
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #17577B; }
  .quantity__arrow-plus:hover {
    background: #17577B;
    color: #fff;
    transition: all 0.2s ease; }
  .quantity__num::-webkit-inner-spin-button, .quantity__num::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; }
  .quantity__num {
    padding: 4px 0px 3px;
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #071C28;
    box-sizing: border-box;
    display: block;
    float: left;
    width: 44%;
    border: none;
    -moz-appearance: textfield;
    text-align: center; }

.link-all {
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  color: #f58014;
  border-bottom: 1px solid #f58014;
  position: relative; }
  .link-all_white {
    color: #fff;
    border-bottom: 1px solid #fff; }
  .link-all_white:after {
    content: '';
    background: url(../img/arrow_youtube.svg) no-repeat center !important; }
  .link-all_white:hover {
    color: #fff !important;
    border-bottom: 1px solid transparent !important; }
  .link-all:after {
    content: '';
    display: block;
    background: url(../img/all.svg) no-repeat center;
    position: absolute; }
  .link-all:hover {
    text-decoration: none;
    color: #0a75b2;
    border-bottom: 1px solid #0a75b2; }
  .link-all:hover:after {
    background-color: #0a75b2;
    background: url(../img/all-hover.svg) no-repeat center; }

.agree {
  display: inline-block;
  width: 100%;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  font-feature-settings: 'case' on;
  line-height: 15px;
  letter-spacing: -0.01em;
  color: #071C28; }
  .agree__checkbox {
    vertical-align: top;
    margin: -1px 10px 0 0;
    width: 20px;
    height: 20px; }
  .agree__checkbox + label {
    cursor: pointer;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none; }
  .agree__checkbox:not(checked) {
    position: absolute;
    opacity: 0; }
  .agree__checkbox:not(checked) + label {
    display: block;
    position: relative;
    padding: 10px 0 0 38px;
    max-width: 78%;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    font-feature-settings: 'case' on;
    line-height: 21px;
    letter-spacing: 0.58px; }
  .agree__checkbox:not(checked) + label:before {
    content: '';
    position: absolute;
    top: 11px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: url(../img/cb-agree.svg) no-repeat center center; }
  .agree__checkbox:checked + label:before {
    background: url(../img/cb-agree-checked.svg) no-repeat center center; }

.bind {
  display: block; }
  .bind:after {
    content: '';
    display: block;
    clear: both; }
  .bind__title {
    overflow: hidden;
    text-align: center;
    color: #828E95; }
  .bind__title span {
    display: inline-block;
    vertical-align: middle; }
  .bind__title:before, .bind__title:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-color: #828E95;
    position: relative; }
  .bind__social-wrapper {
    display: block; }
  .bind__social-wrapper:after {
    content: '';
    display: block;
    clear: both; }
  .bind__social {
    position: relative;
    display: block;
    color: #071C28;
    float: left;
    text-decoration: none;
    border: 1px solid #0a75b2;
    box-sizing: border-box; }
  .bind__social:hover {
    background-color: #0a75b2;
    color: #f4f5f5;
    text-decoration: none;
    transition: all 0.2s ease; }
  .bind__social-icon {
    position: absolute;
    display: block;
    text-align: center;
    background-color: #828E95;
    color: #fff; }
  .bind__social:hover .bind__social-icon {
    background-color: #fff;
    color: #0a75b2; }
  .bind__social-icon-transparent {
    background-color: transparent !important;
    color: #828E95; }
  .bind__social:hover .bind__social-icon-transparent {
    color: #fff; }

.rating {
  display: block;
  border: 1px solid #f58014; }
  .rating:hover {
    text-decoration: none; }
  .rating__stars {
    display: block;
    float: right; }
  .rating__stars:after {
    content: "";
    display: block;
    clear: both; }
  .rating__star {
    display: block;
    float: left;
    background-image: url(../img/star-full.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  .rating__star_empty {
    background-image: url(../img/star-empty.svg); }
  .rating__star_half {
    background-image: url(../img/star-half.svg); }
  .rating__startext {
    display: block;
    color: #071C28; }
  .rating__digits {
    display: block;
    position: relative;
    float: left; }
  .rating__digit1 {
    display: inline-block;
    color: #071C28; }
  .rating__digit2 {
    position: relative;
    display: inline-block;
    color: #071C28; }
  .rating__text {
    display: block;
    color: #071C28; }
  .rating__wrapper {
    display: block; }
  .rating__wrapper:after {
    display: block;
    content: '';
    clear: both; }

.filters__close {
  display: none; }

.filters .form__label {
  display: block !important;
  min-height: 27px;
  overflow: hidden; }

.filters .form__label:hover {
  color: #f58014;
  text-decoration: underline; }

.jq-selectbox {
  z-index: 2 !important; }

.form {
  display: inline-block;
  color: #071C28; }
  .form__change {
    border: none;
    background: transparent;
    color: #828E95; }
  .form__change:hover {
    text-decoration: underline; }
  .form img {
    display: block;
    max-width: 100%; }
  .form_navpanel {
    margin-top: 10px;
    margin-bottom: 38px; }
  .form_searchpanel {
    margin-top: 0px;
    margin-bottom: 17px; }
  .form__search_small {
    font-size: 15px !important;
    line-height: 16px !important;
    letter-spacing: -0.06em;
    margin-right: 14px !important; }
  .form_gray {
    background: #edf2f5; }
  .form__finded {
    display: none;
    position: absolute;
    background: #fff;
    color: #828E95;
    z-index: 1; }
  .form__finded:before {
    content: "";
    border: solid transparent;
    position: absolute;
    border-right-color: #fff; }
  .form__finded-link {
    color: #f58014;
    text-decoration: underline; }
  .form__finded-link:hover {
    color: #071c28; }
  .form__main-title {
    text-align: center;
    display: block; }
  .form__main-title-big {
    text-align: center;
    display: block; }
  .form__checkbox {
    vertical-align: top; }
  .form__checkbox + label {
    cursor: pointer;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none; }
  .form__checkbox:not(checked) {
    position: absolute; }
  .form__checkbox:disabled + label {
    color: #c3d4dc; }
  .form__checkbox:not(checked) + label {
    display: inline-block;
    position: relative; }
  .form__checkbox:not(checked) + label:before {
    content: '';
    position: absolute;
    background: url(../img/form-checkbox.svg) no-repeat center center; }
  .form__checkbox:checked + label:before {
    background: url(../img/form-checkbox-checked.svg) no-repeat center center; }
  .form__radio-wrapper {
    position: relative; }
  .form__radio {
    vertical-align: top; }
  .form__radio + label {
    text-align: left;
    cursor: pointer;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none; }
  .form__radio:not(checked) {
    position: absolute; }
  .form__radio:disabled + label {
    color: #c3d4dc; }
  .form__radio:not(checked) + label {
    display: block;
    position: relative; }
  .form__radio:not(checked) + label:before {
    content: '';
    position: absolute;
    background: url(../img/radio.svg) no-repeat center center; }
  .form__radio:checked + label:before {
    background: url(../img/radio-selected.svg) no-repeat center center; }
  .form__radio_v2:not(checked) + label:before {
    content: '';
    position: absolute;
    background: url(../img/radio_v2.svg) no-repeat center center; }
  .form__radio_v2:checked + label:before {
    background: url(../img/radio-selected_v2.svg) no-repeat center center; }
  .form__label-bold {
    color: #000; }
  .form__label-light {
    color: #828E95; }
  .form__addcargolink {
    display: inline-block;
    color: #f58014;
    position: relative;
    border-bottom: 1px solid #f58014; }
  .form__addcargolink:hover {
    text-decoration: none;
    border-bottom: 1px solid #0a75b2; }
  .form__addcargolink:before {
    content: '';
    position: absolute;
    display: block;
    background: url(../img/addcargo.svg) no-repeat center center; }
  .form__key {
    display: block; }
  .form_modal {
    text-align: left; }
  .form__errtext {
    display: block;
    position: absolute;
    font-weight: normal;
    color: #f45800;
    margin-top: 10px;
    white-space: nowrap; }
  .form__errtext_hidden {
    display: none; }
  .form__modal-input {
    display: block;
    border: none;
    font-weight: normal;
    color: #071C28; }
  .form__input {
    display: block;
    border: none;
    font-weight: normal;
    color: #071C28; }
  .form__modal-textarea {
    display: block;
    border: none;
    font-weight: normal;
    color: #071C28;
    resize: none; }
  .form__textarea {
    display: block;
    border: none;
    font-weight: normal;
    color: #071C28;
    resize: none; }
  .form__modal-textarea-gray {
    display: block;
    border: none;
    font-weight: normal;
    color: #071C28;
    resize: none;
    overflow: hidden; }
  .form__charact {
    display: block;
    position: relative; }
  .form__charact:before {
    position: absolute;
    content: '';
    display: block;
    background-position: center;
    background-repeat: no-repeat; }
  .form__charact_plus:before {
    background-image: url(../img/plus.svg); }
  .form__charact_minus:before {
    background-image: url(../img/minus.svg); }
  .form__input-v2 {
    display: block;
    position: relative;
    width: 100%;
    border: 1px solid #c3d4dc;
    box-sizing: border-box;
    border-radius: 2px;
    padding: 8px;
    font-size: 12px;
    line-height: 14px;
    color: #071C28; }
  .form__fromto {
    display: block;
    margin-top: 5px; }
  .form__fromto .form__ftwrapper:first-child {
    width: 48%;
    margin-right: 2%;
    float: left; }
  .form__fromto .form__ftwrapper:last-child {
    width: 48%;
    margin-left: 2%;
    float: right; }
  .form__fromto:after {
    display: block;
    content: '';
    clear: both; }
  .form__ftwrapper {
    display: block;
    position: relative; }
  .form__ftwrapper .form__input-v2 {
    padding-left: 25px; }
  .form__fttext {
    display: block;
    position: absolute;
    left: 8px;
    top: 9px;
    font-size: 12px;
    line-height: 14px;
    color: #828E95;
    z-index: 1; }
  .form__group:after {
    display: block;
    content: '';
    clear: both; }

.score {
  display: block; }
  .score:after {
    display: block;
    content: '';
    clear: both; }
  .score__title {
    float: left; }

.news__title {
  text-transform: none; }

.news__detailimg {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border: 1px solid #f58014; }

.news__orange {
  color: #f58014;
  text-transform: uppercase; }

.left-news {
  display: block;
  margin-bottom: 30px; }
  .left-news__title {
    display: block;
    font-style: normal;
    font-weight: bold;
    color: #071C28; }
  .left-news__item-title {
    display: block;
    font-style: normal;
    color: #071C28;
    text-decoration: none; }
  .left-news__item {
    display: block;
    font-style: normal;
    font-weight: normal;
    color: #071C28;
    text-decoration: none; }
  .left-news__item:hover {
    text-decoration: none;
    color: #0a75b2; }

.articles {
  display: block;
  /*&__sectionimg {
        display: block;
    }
  /*  &__all {
        display: inline-block;
        font-style: normal;
        color: $accent_color4;
        border-bottom: 1px solid $accent_color4;
        position: relative;
    }
    &__all:after {
        content: '';
        display: block;
        background: url('../img/articles_all_arrow.svg') no-repeat center;
        position: absolute;

    }
    &__all:hover {
        text-decoration: none;
        color: $accent_color4;
        border-bottom: 1px solid transparent;
        }*/ }
  .articles_half {
    float: left; }
  .articles__title {
    font-style: normal;
    font-weight: bold;
    color: #071C28; }
  .articles__article {
    display: block;
    color: #071C28; }
  .articles__article:after {
    display: block;
    content: '';
    clear: both; }
  .articles__article-date {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    text-transform: uppercase;
    color: #fff !important;
    background: #071C28; }
  .articles__article-title {
    display: block;
    font-style: normal; }
  .articles__article-text {
    display: block;
    font-style: normal;
    font-weight: normal; }
  .articles__article:hover {
    color: #0a75b2 !important;
    text-decoration: none;
    transition: all 0.2s ease; }
  .articles__article:hover .articles__article-date {
    background: #0a75b2;
    transition: all 0.2s ease; }
  .articles__article-image {
    display: block;
    margin: 0 auto; }
  .articles__article-left {
    display: block;
    float: left; }
  .articles__article-right {
    display: block;
    float: left; }
  .articles__sections {
    display: block; }
  .articles__sections:after {
    content: '';
    display: block;
    clear: both; }
  .articles__section {
    display: table;
    float: left;
    background-color: #fff;
    background-repeat: no-repeat;
    overflow: hidden; }
  .articles__section:after {
    content: '';
    display: block;
    clear: both; }
  .articles__section:hover {
    text-decoration: none; }
  .articles__section:hover .articles__section-title {
    color: #f58014;
    transition: all 0.2s ease; }
  .articles__txtwrapper {
    display: table-cell;
    vertical-align: middle;
    background-image: url(../img/sect-line.svg);
    background-repeat: no-repeat; }
  .articles__section-title {
    font-weight: 500;
    display: block;
    text-transform: uppercase;
    color: #071C28; }
  .articles__section-text {
    display: block;
    font-weight: 300;
    color: #071C28; }
  .articles__h2 {
    text-transform: uppercase; }
  .articles__mobile_text {
    display: none; }

.nicescroll-cursors {
  border-radius: 0 !important;
  width: 3px !important; }

.dxyoutube {
  display: block;
  float: left;
  background: #071C28;
  color: #f4f5f5;
  /*   &__all {
        display: inline-block;
        font-style: normal;
        color: $light_text;
        border-bottom: 1px solid $light_text;
        position: relative;
    }
    &__all:after {
        content: '';
        display: block;
        background: url('../img/arrow_youtube.svg') no-repeat center;
        position: absolute;

    }
    &__all:hover {
        text-decoration: none;
        color: $light_text;
        border-bottom: 1px solid transparent;
    }

    */ }
  .dxyoutube__title {
    font-style: normal;
    font-weight: bold; }
  .dxyoutube__text {
    font-style: normal;
    font-weight: normal; }
  .dxyoutube__scroll {
    position: relative;
    overflow: auto;
    border-right: 2px solid #fff; }
  .dxyoutube__scroll-shadow {
    position: relative; }
  .dxyoutube__scroll-shadow:after {
    content: '';
    position: absolute;
    margin: 0 auto;
    background-image: linear-gradient(to bottom, rgba(7, 28, 40, 0), #071C28 75%); }
  .dxyoutube__tube-img {
    display: inline-block;
    border: 1px solid transparent;
    vertical-align: middle; }
  .dxyoutube__tube-desc {
    display: inline-block;
    vertical-align: middle; }
  .dxyoutube__tube {
    display: block;
    font-style: normal;
    color: #f4f5f5; }
  .dxyoutube__tube:hover {
    color: #f58014;
    transition: all 0.2s ease; }
  .dxyoutube__tube:hover .dxyoutube__tube-img {
    border: 1px solid #f58014;
    transition: all 0.2s ease; }

.wrapper-artyot {
  display: block; }
  .wrapper-artyot:after {
    content: '';
    display: block;
    clear: both; }

.nopadding {
  padding: 0 !important;
  margin: 0 !important; }

.wrapper {
  min-height: 100%;
  /*    min-width: $min-width;*/
  width: 100%;
  height: 100%; }

.main {
  min-height: 100%;
  width: 100%; }

.header {
  background: #071C28;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10; }
  .header__mobile-search-block {
    display: none; }
    .header__mobile-search-block form {
      height: 100%; }
  .header__top {
    box-sizing: border-box; }
  .header__logo {
    background-image: url(../img/logo.png);
    background-size: cover;
    background-position: center;
    display: block;
    background-repeat: no-repeat; }
  .header__catalog {
    background: #fff;
    position: relative;
    display: block;
    background-image: url(../img/main_menu.svg);
    background-position: 20px center;
    background-repeat: no-repeat;
    color: #071C28;
    z-index: 3; }
  .header__catalog:hover {
    color: #071C28;
    text-decoration: none; }
  .header__catalog-sticky-wrapper .header__catalog-menu {
    visibility: hidden;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25); }
  .header__catalog-sticky-wrapper:hover .header__catalog-menu {
    visibility: visible;
    opacity: 1;
    z-index: 1; }
  .header__catalog-sticky-wrapper_active > .header__catalog-menu {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important; }
  .header__catalog-wrapper .header__catalog-menu {
    visibility: hidden;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25); }
  .header__catalog-sticky-wrapper_active:hover .header__catalog-menu {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transition: opacity 0.2s ease; }
  .header__catalog-wrapper_active > .header__catalog-menu {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important; }
  .header__catalog-menu-scroll {
    position: relative;
    width: 100%;
    height: 100%;
    /* border-right: 2px solid #fff;*/ }
  .header__catalog-menu_hide {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.5s ease; }
  .header__catalog-menu-item_hover .header__catalog-submenu {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease; }
  .header__catalog-submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 100%;
    top: 0px;
    width: calc(300% + 105px);
    height: 100%;
    background-color: #071C28;
    color: #fff;
    z-index: -1;
    padding: 19px 11px 19px 22px; }
  .header__catalog-submenu_ajax {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #071C28;
    color: #fff;
    z-index: -1;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25); }
  .header__catalog-submenu-ajax_active {
    z-index: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s ease; }
  .header__catalog-scroll {
    position: relative;
    width: 100%;
    height: 100%;
    border-right: 2px solid #fff; }
  .header__catalog-scroll-shadow {
    display: block;
    width: 100%;
    height: 100%;
    position: relative; }
  .header__catalog-scroll-shadow:after {
    display: block;
    margin: 0 auto;
    width: 13px;
    z-index: 2;
    height: 170px;
    content: '';
    position: absolute;
    margin: 0 auto;
    background-image: linear-gradient(to bottom, rgba(7, 28, 40, 0), #071C28 75%);
    right: 0px;
    bottom: 0px; }
  .header__catalog-menu {
    display: block;
    position: absolute;
    background-color: #fff;
    font-style: normal;
    font-weight: normal; }
  .header__catalog-menu_opened {
    display: block !important;
    opacity: 1 !important;
    z-index: 9 !important;
    margin-top: -3px !important; }
  .header__catalog-menu_active {
    z-index: 3;
    transition: opacity 0.3s ease; }
  .header__catalog-menu_visible {
    position: relative;
    transition: opacity 0.5s ease; }
  .header__catalog-menu-item {
    display: block;
    /*  position: relative;*/
    background-color: #edf2f5; }
  .header__catalog-menu-link {
    display: block;
    font-style: normal;
    font-weight: normal;
    color: #071c28;
    text-decoration: none; }
  .header__catalog-menu-outer {
    display: table; }
  .header__catalog-menu-inner {
    display: table-cell;
    vertical-align: middle; }
  .header__catalog-menu-item:hover .header__catalog-menu-link {
    text-decoration: none;
    color: #f4f5f5;
    background-color: #071c28;
    transition: all 0.2s ease; }
  .header__catalog-menu-link_childs-active {
    text-decoration: none;
    color: #f4f5f5 !important;
    background-color: #071c28;
    transition: all 0.2s ease; }
  .header__catalog-sticky-wrapper .nicescroll-rails-hr {
    display: none !important; }
  .header__catalog-wrapper .nicescroll-rails-hr {
    display: none !important; }
  .header__catalog-menu-item_active {
    text-decoration: none;
    color: #f4f5f5;
    background-color: #071c28;
    transition: all 0.2s ease; }
  .header__catalog-menu-item_childs:after {
    content: '';
    visibility: hidden;
    display: block;
    position: absolute;
    z-index: -1;
    background-color: transparent; }
  .header__catalog-menu-link_childs:hover:after {
    content: '';
    visibility: visible;
    background-color: #071c28;
    transition: all 0.1s ease;
    z-index: 3; }
  .header__catalog-menu-item_childs-active:after {
    content: '';
    visibility: visible;
    background-color: #071c28;
    transition: all 0.1s ease;
    z-index: 3; }
  .header__catalog-menu-link_childs {
    background-image: url(../img/arrow_right.svg);
    background-repeat: no-repeat; }
  .header__catalog-menu-item:hover .header__catalog-menu-link_childs {
    background-image: url(../img/arrow_right_w.svg); }
  .header__catalog-menu-link_childs-active {
    background-image: url(../img/arrow_right_w.svg); }
  .header__phone {
    color: #f4f5f5;
    display: block;
    text-align: right; }
  .header__phone:hover {
    color: #f58014;
    text-decoration: none; }
  .header__email {
    color: #f58014;
    display: block;
    text-align: right; }
  .header__email:hover {
    color: #0a75b2; }
  .header__register:before {
    content: '';
    display: inline-block;
    background-image: url(../img/icon_register.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  .header__register {
    color: #f4f5f5;
    display: block;
    text-align: right; }
  .header__register:hover {
    /*    color: $light_text;*/
    color: #f58014; }
  .header__login:before {
    content: '';
    display: inline-block;
    background-image: url(../img/icon_enter.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  .header__login:hover {
    /*    color: $light_text;*/
    color: #f58014; }
  .header__login {
    color: #f4f5f5;
    display: block;
    text-align: right; }
  .header__postponed-items {
    display: block;
    float: left; }
  .header__postponed-items:after {
    content: '';
    display: block;
    clear: both; }
  .header__postponed-items_link {
    color: #f4f5f5;
    box-sizing: border-box;
    display: block;
    float: left;
    background-position: left center;
    background-repeat: no-repeat; }
  .header__postponed-items_link:hover {
    /*    color: $light_text;*/
    color: #f58014; }
  .header__postponed-items_link_favourites {
    background-image: url(../img/heart.svg); }
  .header__postponed-items_link_compare {
    background-image: url(../img/compare.svg); }
  .header__postponed-items_link_seen {
    background-image: url(../img/seen.svg); }
  .header__postponed-items_link_digits {
    color: #828E95; }
  .header__basket {
    display: block;
    background-position: left 5px;
    background-repeat: no-repeat;
    background-image: url(../img/basket.svg);
    box-sizing: border-box;
    display: block;
    font-style: normal;
    color: #f4f5f5;
    position: relative;
    white-space: nowrap;
    min-width: 41px; }
    .header__basket:hover {
      text-decoration: none;
      color: #f58014; }
    .header__basket__price {
      float: right; }
    .header__basket_col {
      position: absolute;
      background-color: #f58014;
      font-style: normal;
      font-weight: normal;
      text-align: center;
      color: #f4f5f5; }
  .header__sticky-wrapper {
    display: none; }
  .header__newsticky-wrapper {
    display: block; }
  .header__newsticky-wrapper .header__logo,
  .header__newsticky-wrapper .top-menu,
  .header__newsticky-wrapper .header__phone,
  .header__newsticky-wrapper .header__email,
  .header__newsticky-wrapper .header__register,
  .header__newsticky-wrapper .header__login,
  .header__newsticky-wrapper .city-selector,
  .header__newsticky-wrapper .header__top,
  .header__newsticky-wrapper .header__personal {
    display: none !important; }
  .header__sticky {
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25); }
  .header__sticky-wrapper {
    background-color: #071C28;
    position: fixed; }
  .header__newsticky-wrapper {
    background-color: #071C28;
    position: fixed; }
  .header .header__sticky-indicator {
    background-color: #f58014;
    o-transition: width 0.3s cubic-bezier(0.16, 1.22, 0.15, 1.22);
    position: absolute;
    transition: width 0.3s cubic-bezier(0.16, 1.22, 0.15, 1.22);
    webkit-transition: width 0.3s cubic-bezier(0.16, 1.22, 0.15, 1.22); }
  .header__search-block {
    position: relative; }
  .header__search-block-results {
    background-color: #f4f5f5;
    -webkit-box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15), 2px 2px 4px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15), 2px 2px 4px rgba(0, 0, 0, 0.15);
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15), 2px 2px 4px rgba(0, 0, 0, 0.15);
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #828E95; }
  .header__search-block-result {
    display: block; }
  .header__search-block-result:after {
    content: '';
    display: block;
    clear: both; }
  .header__search-block-link {
    color: #071C28;
    float: left; }
  .header__search-block-link:hover {
    color: #0a75b2;
    text-decoration: none; }
  .header__search-block-desc {
    float: right;
    color: #828E95; }
  .header__search-block-itemresult {
    display: block;
    position: relative;
    color: #071C28;
    vertical-align: bottom;
    background: url(../img/dots.svg) 0 90% repeat-x; }
  .header__search-block-itemlink {
    background: #f4f5f5;
    color: #071C28;
    display: inline;
    text-decoration: none;
    vertical-align: bottom; }
  .header__search-block-ireswrapper {
    display: block; }
  .header__search-block-itemlink:hover {
    text-decoration: none;
    color: #0a75b2; }
  .header__search-block-itemlink:before {
    content: '';
    display: block;
    position: absolute;
    background: #f58014; }
  .header__search-block-itemlink_gray:before {
    content: '';
    background: #828E95 !important; }
  .header__search-block-itemlink_gray {
    color: #828E95 !important; }
  .header__search-block-itemdesc_gray {
    color: #828E95 !important; }
  .header__search-block-itemdesc {
    display: block;
    position: absolute;
    font-weight: bold;
    color: #071C28;
    background: #f4f5f5;
    white-space: nowrap;
    vertical-align: bottom; }
  .header__search-block-rub {
    font-weight: normal; }
  .header__search-block-line {
    display: block;
    background-color: #c3d4dc;
    border: none; }
  .header__search-block-tottallink {
    font-style: normal;
    font-weight: normal;
    color: #f58014;
    display: inline-block;
    border-bottom: 1px solid #f58014; }
  .header__search-block-tottallink:hover {
    color: #f58014;
    border-bottom: 1px solid transparent;
    text-decoration: none; }

.catalog-submenu__item {
  display: block;
  background: #f4f5f5;
  width: calc(33.3% - 20px);
  margin: 0px 20px 20px 0px;
  float: left; }

.catalog-submenu__slevel {
  display: table;
  width: 100%;
  height: 74px; }

.catalog-submenu__slevel-link {
  display: table-cell;
  vertical-align: middle;
  background: #fff;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: -0.02em;
  color: #071C28;
  text-decoration: none !important;
  padding: 5px 5px 5px 70px;
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 58px; }

.catalog-submenu__slevel-col {
  display: inline-block;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #828E95;
  margin-top: 2px; }

.catalog-submenu__tlevel {
  display: block;
  padding: 13px 13px 16px 13px; }

.catalog-submenu__tlevel-link {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: #071C28;
  text-decoration: none !important;
  margin: 7px 0px 7px; }

.catalog-submenu__flevel-link {
  display: block;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 13px;
  letter-spacing: -0.48px;
  text-decoration: none !important;
  color: #071C28; }

.catalog-submenu__tlevel-col {
  color: #828E95; }

.catalog-submenu__slevel-link:hover, .catalog-submenu__tlevel-link:hover, .catalog-submenu__flevel-link:hover {
  color: #f58014;
  text-decoration: underline !important; }

.top-menu {
  color: #f4f5f5;
  display: block; }
  .top-menu__link {
    display: block;
    float: left;
    color: #f4f5f5;
    text-decoration: none; }
  .top-menu__link:hover {
    /*    color: $light_text;*/
    color: #f58014; }
  .top-menu:after {
    content: '';
    display: block;
    clear: both; }

.city-selector__info {
  display: inline-block;
  color: #828E95; }

.city-selector__select {
  display: inline-block;
  color: #f4f5f5;
  cursor: pointer;
  position: relative; }

.city-selector__select:after {
  content: '';
  display: inline-block;
  background-image: url(../img/city_open.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; }

.city-selector__dropdown {
  display: none;
  z-index: 100;
  width: 460px;
  position: absolute;
  padding: 12px;
  border: 1px solid #edf2f5;
  background: #071C28;
  top: 25px;
  left: -30px; }
  .city-selector__dropdown .bx-sls .dropdown-block {
    height: 35px; }

.owl-nav {
  position: relative; }

.mod2 .owl-prev:hover,
.mod2 .owl-next:hover {
  background-color: #fff !important;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25); }

.mod2 .owl-prev {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  background-color: #fff !important; }

.mod2 .owl-next {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #fff !important;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25); }

.mod2 .owl-prev {
  background-image: url(../img/slider_left_mobile.svg) !important;
  border-radius: 50% !important;
  left: -11px;
  top: -184px;
  width: 28px;
  height: 28px; }

.mod2 .owl-next {
  background-image: url(../img/slider_right_mobile.svg) !important;
  border-radius: 50% !important;
  right: -11px;
  top: -184px;
  width: 28px;
  height: 28px; }

.mod3 {
  padding-bottom: 48px; }

.mod3 .owl-prev {
  background-image: url(../img/slider_left_mobile.svg) !important;
  border-radius: 50% !important;
  left: 4px;
  top: -197px;
  width: 28px;
  height: 28px; }

.mod3 .owl-nav {
  margin-top: -48px !important; }

.mod3.modal__slider .owl-nav {
  margin-top: -24px !important; }

.mod3 .owl-next {
  background-image: url(../img/slider_right_mobile.svg) !important;
  border-radius: 50% !important;
  right: 0px;
  top: -197px;
  width: 28px;
  height: 28px; }

.mod3 .owl-stage-outer {
  margin-top: -24px;
  padding-top: 24px;
  padding-bottom: 24px;
  margin-bottom: 20px; }

.modal .mod3 .owl-stage-outer {
  margin-top: 0px;
  padding-top: 24px;
  padding-bottom: 24px;
  margin-bottom: 0px; }

.mod3 .owl-nav {
  position: relative;
  /*  position: absolute;*/
  bottom: 0px;
  width: 100%;
  /* height: 100%;*/
  left: 0;
  z-index: 0;
  margin-top: 0px; }

.mod3 .owl-prev:hover,
.mod3 .owl-next:hover {
  background-color: #fff !important;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25); }

.mod3 .owl-prev {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  background-color: #fff !important; }

.mod3 .owl-next {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #fff !important;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25); }

.mod1 .owl-nav {
  position: relative; }

.mod1 .owl-prev:hover,
.mod1 .owl-next:hover {
  background-color: transparent !important; }

.mod1 .owl-prev {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important; }

.mod1 .owl-next {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important; }

.comments {
  display: block;
  background: #c3d4dc; }
  .comments__title {
    font-style: normal;
    font-weight: bold;
    color: #071C28; }
  .comments__slider {
    position: relative; }
  .comments__slider:after {
    content: '';
    display: block;
    clear: both; }
  .comments__comment-wrapper {
    display: block;
    float: left; }
  .comments__comment {
    display: block;
    background: #fff; }
  .comments__comment:hover {
    text-decoration: none; }
  .comments__comment-text {
    display: block;
    font-style: normal;
    font-weight: normal;
    color: #071C28; }
  .comments__comment-author {
    display: block;
    font-style: normal;
    color: #f58014; }

.map p {
  color: #f4f5f5;
  font-style: normal;
  font-weight: normal; }

.map {
  position: relative;
  display: block;
  background-color: #071C28;
  color: #f4f5f5; }
  .map__title {
    font-style: normal;
    font-weight: bold; }
  .map__addr {
    font-style: normal; }
  .map__container {
    position: absolute;
    box-sizing: content-box;
    overflow: hidden; }

.search {
  display: block;
  border: none;
  background: #fff;
  background-image: url(../img/search.svg);
  background-repeat: no-repeat;
  color: #071C28;
  outline: none; }

.search:active {
  border: none; }

.footer {
  position: relative;
  background: #071C28;
  /*  &__menu_link_first:hover {
    color: $muted_text;
    text-decoration: none;
  }*/ }
  .footer__menu {
    display: block; }
  .footer__menu-first {
    display: block; }
  .footer__menu-all {
    display: block; }
  .footer__menu_link_first {
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    color: #828E95; }
  .footer__menu_link {
    display: block;
    font-style: normal;
    font-weight: normal;
    color: #f4f5f5; }
  .footer__menu_link:hover {
    color: #f58014; }
  .footer__menu_link_first:hover {
    color: #f58014;
    text-decoration: underline !important; }
  .footer__copyright {
    font-style: normal;
    font-weight: normal;
    color: #f4f5f5; }
  .footer__phone {
    display: block;
    font-style: normal;
    color: #f4f5f5;
    text-align: left; }
  .footer__phone:hover {
    color: #f58014;
    text-decoration: none; }
  .footer__email {
    display: block;
    font-style: normal;
    color: #f4f5f5; }
  .footer__email:hover {
    color: #f58014; }
  .footer__addr {
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #f4f5f5; }

.social {
  overflow: hidden; }
  .social__link {
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  .social__link_vk {
    background-image: url(../img/vk.svg); }
  .social__link_in {
    background-image: url(../img/in.svg); }
  .social__link_yt {
    background-image: url(../img/yt.svg); }
  .social__link_fb {
    background-image: url(../img/fb.svg); }

.tega {
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/tega.png); }

.qb {
  display: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/bx.png); }

.breadcrumbs {
  display: block; 
  margin-top: 10px;  
  margin-bottom: 13px;
  }
  
  .breadcrumbs:after {
    content: '';
    display: block;
    clear: both; }
  .breadcrumbs__link {
    color: #828E95; }
  .breadcrumbs__link:hover {
    color: #828E95;
    text-decoration: underline; }
  .breadcrumbs__downcat_active {
    display: block !important; }
  .breadcrumbs__downcat {
    display: none;
    background: #fff;
    padding: 11px 19px 3px 19px;
    position: absolute;
    top: 43px;
    left: -135px;
    background: #fff;
    box-shadow: 0px 2px 6px rgba(0, 51, 79, 0.3);
    z-index: 2; }
  .breadcrumbs__downcat:before {
    content: '';
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    z-index: 2;
    border: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin-left: -10px;
    left: 24%;
    border-bottom: 10px solid #fff;
    top: -10px;
    filter: drop-shadow(0px -3px 2px #f2f4f5); }
  .breadcrumbs__downkey {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 14px;
    height: 100%;
    background: url(../img/bread-down.svg) no-repeat center;
    cursor: pointer; }
  .breadcrumbs__dc-link {
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #071C28;
    text-decoration: none;
    white-space: nowrap;
    margin-bottom: 8px; }
  .breadcrumbs__dc-link:hover {
    color: #f58014;
    text-decoration: none; }
  .breadcrumbs__dc-link_active {
    color: #f58014;
    text-decoration: none; }
  .breadcrumbs__item_contain {
    padding-right: 20px !important; }
  .breadcrumbs__item {
    display: block;
    margin-right: 21px;
    position: relative;
    float: left;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #828E95;
    cursor: pointer; }
  .breadcrumbs__item a:hover {
    color: #f58014 !important; }
  .breadcrumbs__item:hover {
    text-decoration: none;
    color: #828E95; }
  .breadcrumbs__item:after {
    content: '—';
    display: block;
    position: absolute;
    right: -21px;
    width: 21px;
    text-align: center;
    top: 14px; }
  .breadcrumbs__item:last-child {
    color: #f58014;
    cursor: default; }
  .breadcrumbs__item:last-child:hover {
    color: #f58014; }
  .breadcrumbs__item:last-child:after {
    display: none; }
  .breadcrumbs_popup {
    position: relative;
    z-index: 3; }
    .breadcrumbs_popup .breadcrumbs__item a {
      color: #828E95; }
    .breadcrumbs_popup .breadcrumbs__item_first, .breadcrumbs_popup .breadcrumbs__item_sub {
      line-height: 30px; }
    .breadcrumbs_popup .breadcrumbs__item_sub {
      display: block; }
      .breadcrumbs_popup .breadcrumbs__item_sub a {
        color: #071c28; }
    .breadcrumbs_popup > .breadcrumbs__cnt {
      position: relative;
      z-index: 1; }
    .breadcrumbs_popup .breadcrumbs__dropdown {
      position: relative;
      padding-right: 18px;
      cursor: pointer; }
      .breadcrumbs_popup .breadcrumbs__dropdown:after {
        position: absolute;
        margin-top: -4px;
        top: 50%;
        right: 1px;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 5px 0 5px;
        border-color: #ffffff transparent transparent transparent; }
      .breadcrumbs_popup .breadcrumbs__dropdown:before {
        position: absolute;
        margin-top: -2px;
        top: 50%;
        right: 0;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 6px 0 6px;
        border-color: #828e95 transparent transparent transparent; }
    .breadcrumbs_popup span.breadcrumbs__dropdown:before {
      border-color: #f58014 transparent transparent transparent; }
    .breadcrumbs_popup .breadcrumbs__popup-box {
      display: none;
      position: absolute;
      width: max-content;
      top: 47px;
      background: #ffffff;
      border: 1px solid #efefef;
      padding: 10px 20px;
      box-shadow: 0px 2px 6px rgba(0, 51, 79, 0.3);
      z-index: 1; }
      .breadcrumbs_popup .breadcrumbs__popup-box:before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 12px 12px 12px;
        border-color: transparent transparent #efefef transparent;
        position: absolute;
        top: -12px;
        left: 18px; }
      .breadcrumbs_popup .breadcrumbs__popup-box:after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent #ffffff transparent;
        position: absolute;
        top: -10px;
        left: 20px; }
      .breadcrumbs_popup .breadcrumbs__popup-box ul {
        display: block;
        margin: 0 !important; }
      .breadcrumbs_popup .breadcrumbs__popup-box a {
        display: block;
        white-space: nowrap; }
      .breadcrumbs_popup .breadcrumbs__popup-box > a {
        color: #f58014; }
      .breadcrumbs_popup .breadcrumbs__popup-box > span {
        display: block;
        white-space: nowrap;
        color: #828E95;
        cursor: default; }

.left-news_mobile {
  display: none; }

.breadcrumbs-mobile {
  display: none; }

.mobile-menu {
  display: none; }

.contacts {
  display: block; }
  .contacts:after {
    display: block;
    content: '';
    clear: both; }
  .contacts__col {
    display: block;
    float: left; }

.contacts .bx-yandex-view-layout {
  border: 1px solid #f58014; }

.contacts .bx-yandex-map {
  width: calc(100% - 1px) !important; }

.reviews {
  display: block; }
  .reviews:after {
    content: '';
    display: block;
    clear: both; }
  .reviews__bigstars {
    display: block;
    float: right;
    position: relative; }
  .reviews__bigstars_score {
    cursor: pointer; }
  .reviews__bigstars:after {
    display: block;
    content: '';
    clear: both; }
  .reviews__star {
    display: block;
    float: left;
    background-image: url(../img/star-full.svg);
    background-position: center;
    background-repeat: no-repeat; }
  .reviews__star_empty {
    background-image: url(../img/star-empty.svg); }
  .reviews__star_half {
    background-image: url(../img/star-half.svg); }
  .reviews__star_big {
    background-size: cover; }
  .reviews__startext {
    display: block;
    color: #071C28; }
  .reviews__digits {
    display: block;
    position: relative;
    float: left; }
  .reviews__digit1 {
    display: inline-block;
    color: #071C28;
    margin-top: -5px; }
  .reviews__digit2 {
    position: relative;
    display: inline-block;
    color: #071C28; }
  .reviews__title {
    display: block;
    letter-spacing: -0.02em; }
  .reviews__date {
    display: block; }
  .reviews__item {
    display: block; }
  .reviews__item:after {
    content: '';
    display: block;
    clear: both; }
  .reviews__item-left {
    display: block;
    float: left; }
  .reviews__item-right {
    display: block;
    float: left; }
  .reviews__rtitle {
    display: block;
    font-style: normal;
    color: #071C28; }
  .reviews__otitle {
    display: block;
    font-style: normal;
    color: #071C28; }
  .reviews__keywrap {
    display: block;
    text-align: right; }
  .reviews_tabs .reviews__star {
    background-size: contain; }
  .reviews__pluses {
    display: block;
    position: relative;
    font-style: normal;
    color: #071C28; }
  .reviews__pluses:before {
    content: '';
    display: block;
    position: absolute;
    background: url(../img/rev_plus.svg) no-repeat center; }
  .reviews__minuses {
    display: block;
    position: relative;
    font-style: normal;
    color: #071C28; }
  .reviews__minuses:before {
    content: '';
    display: block;
    position: absolute;
    background: url(../img/rev_minus.svg) no-repeat center; }
  .reviews__question {
    display: block;
    position: relative; }
  .reviews__question:before {
    content: '';
    display: block;
    position: absolute;
    background: url(../img/question.svg) no-repeat center; }
  .reviews__keywrap_t2 {
    text-align: right; }
  .reviews__shopanswer {
    display: block;
    border-left: 2px solid #f58014; }
  .reviews__shopanswer b {
    display: inline-block; }
  .reviews__intotext {
    font-style: normal;
    font-weight: normal;
    color: #071C28; }

.upper {
  text-transform: uppercase; }

.catsections {
  display: flex; }
  .catsections__section-link {
    display: block; }
  .catsections__section {
    position: relative;
    display: block;
    background-color: #fff;
    color: #071C28; }
  .catsections__section:hover {
    text-decoration: none; }
  .catsections__section:hover .sections__title {
    color: #f58014; }
  .catsections__section:hover .sections__col {
    color: #828E95; }
  .catsections__section:after {
    display: block;
    content: '';
    clear: both; }
  .catsections__image {
    display: block;
    float: left;
    overflow: hidden; }
  .catsections__info {
    float: left; }
  .catsections__title {
    display: block;
    font-weight: normal;
    overflow: hidden;
    color: #071C28; }
  .catsections__section:hover .catsections__title {
    color: #f58014; }
  .catsections__section.active .catsections__title {
    color: #f58014; }
  .catsections__col {
    display: block;
    color: #828E95; }
  .catsections__keydown {
    display: block;
    position: absolute;
    cursor: pointer;
    background: url(../img/sections_down.svg) no-repeat center left;
    cursor: pointer; }
  .catsections__keyup {
    background: url(../img/sections_up.svg) no-repeat center left; }
  .catsections__subsections {
    display: none;
    position: absolute;
    background: #fff;
    border-radius: 2px; }
  .catsections__subsection {
    display: block;
    color: #071C28; }
  .catsections__subsection:hover {
    text-decoration: none;
    color: #f58014; }
  .catsections__subsections-col {
    color: #828E95; }

.table-items {
  display: block;
  background: #fff;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3); }
  .table-items__cell-arrow {
    display: none; }
  .table-items__mobile {
    display: none; }
  .table-items__description {
    display: block; }
  .table-items__description h3 {
    text-transform: uppercase; }
    .table-items__description h3 a, .table-items__description h3 a:hover {
      color: #071c28;
      text-decoration: none; }
  .table-items__description hr {
    background-color: #c3d4dc;
    border: none;
    margin: 0 auto; }
  .table-items__description:after {
    display: block;
    content: '';
    clear: both; }
  .table-items__description-image {
    display: block;
    float: left; }
  .table-items__description__container {
    overflow: hidden; }
    .table-items__description__container h3 {
      margin-top: 0; }
  .table-items__table {
    display: table; }
  .table-items__row {
    display: table-row; }
    .table-items__row .detail-item_alternative {
      display: none;
      position: absolute;
      left: 70px;
      top: 55px;
      width: 550px;
      z-index: 2; }
    .table-items__row .detail-item_alternative-totop {
      bottom: 55px !important;
      top: auto !important; }
  .table-items__row:nth-child(2n) {
    background-color: #f4f5f5; }
  .table-items__head {
    display: table-cell;
    font-weight: normal;
    text-align: center; }
  .table-items__table_type2 .table-items__cell:nth-child(7) {
    text-align: right; }
  .table-items__cell {
    display: table-cell;
    font-weight: normal;
    text-align: center;
    position: relative;
    vertical-align: middle; }
    .table-items__cell_title {
      text-align: left;
      position: relative; }
      .table-items__cell_title a {
        color: #071C28; }
        .table-items__cell_title a:hover {
          text-decoration: none; }
    .table-items__cell__price {
      white-space: nowrap; }
  .table-items__icons {
    display: inline-block;
    vertical-align: middle;
    min-width: 125px;
    padding-left: 5px; }
  .table-items_compare {
    background-color: transparent;
    background-image: url(../img/compare-mini.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer; }
  .table-items_compare:hover {
    background-image: url(../img/compare-mini-hover.svg); }
  .table-items_compare-active {
    background-image: url(../img/compare-mini-hover.svg); }
  .table-items_favorites {
    background-color: transparent;
    background-image: url(../img/favorites-mini.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer; }
  .table-items_favorites:hover {
    background-image: url(../img/favorites-mini-hover.svg); }
  .table-items_favorites-active {
    background-image: url(../img/favorites-mini-hover.svg); }
  .table-items_cart {
    display: block;
    float: left;
    width: 33.4%;
    height: 41px;
    background-color: #f58014;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/basket-mini.svg);
    cursor: pointer;
    border-radius: 3px;
    border: none; }
  .table-items_cart:hover {
    transition: all 0.2s ease;
    background-color: #f45800; }
  .table-items .alt-property-sort {
    display: inline-block;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAARCAMAAADnhAzLAAAAPFBMVEUAAABKUFRKUFTeeCzeeCxKUFRKUFTeeCxKUFTeeCzeeCxKUFRKUFTeeCxKUFTeeCxKUFTeeCxKUFTeeCyWfwTaAAAAEnRSTlMAESIiRFVmZnd3iJmqqru73d2xozKYAAAAXElEQVQY07XMQRKAIAwDwCoKooht8v+/ekAUuJtLZ3aaiEjWTWpcOYqjymluoJ0s9lIkyaulxYw0i13RkWHY+oG8V2S/tpQA4PmrxQwg9VuzVvnm5zyN1CQEJ3IDRuAGlg4nJTkAAAAASUVORK5CYII=");
    width: 18px;
    height: 17px;
    margin: 0 0px -4px 1px; }

.table-items__cell_title .copy {
  display: inline-block; }

.table-items__cell_title a:hover {
  color: #f58014;
  text-decoration: underline !important; }

.copy {
  display: block;
  position: relative;
  background: url(../img/copy.png) no-repeat center;
  cursor: pointer; }
  .copy_table {
    position: absolute; }
  .copy_item {
    display: inline-block;
    background: url(../img/copy-item.svg) no-repeat center; }
  .copy:hover .copy__tooltip {
    display: block; }
  .copy__tooltip {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #c3d4dc;
    box-sizing: border-box;
    box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
    text-align: center;
    letter-spacing: -0.04em;
    z-index: 2;
    text-transform: none; }
  .copy__tooltip_left {
    right: auto !important;
    left: calc(0px - 149px) !important; }
  .copy__tooltip_left:before {
    right: auto !important;
    left: 99%;
    border-left-color: #fff !important;
    border-right-color: transparent !important;
    filter: drop-shadow(2px 2px 0px #c3d4dc) !important; }
  .copy__tooltip:before {
    position: absolute;
    content: "";
    border: solid transparent;
    border-top-width: 0;
    border-right-color: transparent;
    border-right-width: medium;
    border-bottom-width: 0;
    border-left-width: medium;
    position: absolute;
    border-right-color: #fff;
    filter: drop-shadow(-1px 0px 0px #c3d4dc); }

.owl-carousel .mini-item {
  width: auto !important;
  margin-bottom: 0px; }

.mini-items {
  display: block; }
  .mini-items:after {
    content: '';
    display: block;
    clear: both; }

.mini-item {
  display: block;
  position: relative;
  float: left;
  background: #fff;
  box-sizing: border-box;
  height: auto;
  border: 2px solid #0a75b2; }
  .mini-item__container_outer {
    display: table;
    margin: 0 auto; }
  .mini-item .item__mark {
    padding: 0 12px 0 20px; }
    .mini-item .item__mark_sale {
      background: #0a75b2; }
      .mini-item .item__mark_sale::after {
        border-color: #0a75b2 transparent transparent transparent; }
    .mini-item .item__mark_hit {
      background: #0a75b2; }
      .mini-item .item__mark_hit::after {
        border-color: #0a75b2 transparent transparent transparent; }
    .mini-item .item__mark_recommendation {
      background: #0a75b2; }
      .mini-item .item__mark_recommendation::after {
        border-color: #0a75b2 transparent transparent transparent; }
    .mini-item .item__mark_new {
      background: #0a75b2; }
      .mini-item .item__mark_new::after {
        border-color: #0a75b2 transparent transparent transparent; }
  .mini-item__link:hover {
    text-decoration: none !important; }
  .mini-item_t2 {
    border: none !important;
    overflow: visible; }
  .mini-item:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    position: relative;
    opacity: 1;
    transform: scale(1.045);
    transition: all 0.2s ease;
    z-index: 1; }
  .mini-item__imghref {
    display: block;
    max-height: 150px; }
  .mini-item__image {
    display: block; }
    .mini-item__image__wrapper {
      height: 150px;
      display: block; }
      .mini-item__image__wrapper_outer {
        display: table;
        width: 100%;
        height: 100%; }
      .mini-item__image__wrapper_inner {
        display: table-cell;
        vertical-align: middle; }
        .mini-item__image__wrapper_inner .no-photo {
          display: block;
          margin: 0 auto;
          max-height: 150px; }
        .mini-item__image__wrapper_inner img {
          display: block;
          margin: 0 auto;
          height: auto;
          max-height: 150px !important;
          width: auto !important;
          max-width: 100%; }
  .mini-item__title {
    position: relative;
    line-height: 18px;
    height: 36px;
    /*   overflow: hidden;*/ }
  .mini-item_t2 .mini-item__title {
    position: relative; }
  .mini-item_t2 .copy {
    position: absolute; }
  .mini-item__price {
    position: relative;
    font-style: normal;
    color: #071C28; }
  .mini-item__col {
    font-style: normal;
    font-weight: normal;
    color: #071C28;
    display: inline-block; }
  .mini-item__bottom {
    position: absolute; }
  .mini-item__bottom:after {
    content: '';
    display: block;
    clear: both; }
  .mini-item__cart {
    display: block;
    float: left;
    background-color: #f58014;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/basket-mini.svg);
    cursor: pointer; }
  .mini-item__cart:hover {
    transition: all 0.2s ease;
    background-color: #f45800; }
  .mini-item__compare {
    display: block;
    float: left;
    background-color: #f4f5f5;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/compare-mini.svg);
    cursor: pointer; }
    .mini-item__compare.active {
      transition: all 0.2s ease;
      background-image: url(../img/compare-mini-hover.svg); }
  .mini-item__compare:hover {
    transition: all 0.2s ease;
    background-image: url(../img/compare-mini-hover.svg); }
  .mini-item__favorites {
    display: block;
    float: right;
    background-color: #f4f5f5;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/favorites-mini.svg);
    cursor: pointer; }
    .mini-item__favorites.active {
      background-image: url(../img/favorites-mini-hover.svg); }
  .mini-item__favorites:hover {
    transition: all 0.2s ease;
    background-image: url(../img/favorites-mini-hover.svg); }

.detail-item .download a {
  display: flex;
  align-items: center;
  font-weight: normal;
  color: #f58014;
  padding-left: 60px;
  height: 42px;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 30px;
  max-width: 70%;
  background-repeat: no-repeat;
  background-position: 0 center;
  margin-top: 5px; }
  .detail-item .download a:hover {
    text-decoration: none; }
  .detail-item .download a.manual {
    background-position-x: 7px;
    background-image: url("data:image/png;base64,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"); }
  .detail-item .download a.firmware {
    background-position-x: 2px;
    background-image: url("data:image/png;base64,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"); }
  .detail-item .download a.software {
    background-image: url("data:image/png;base64,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"); }
  .detail-item .download a.model3d {
    background-image: url("data:image/png;base64,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"); }
  .detail-item .download a.zip {
    background-image: url("data:image/png;base64,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"); }
  .detail-item .download a.passport {
    background-position-x: 9px;
    background-image: url("data:image/png;base64,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"); }

.detail-item__picwrapper {
  display: block;
  position: relative; }
  .detail-item__picwrapper .no-photo {
    margin: 50px auto; }

.detail-item__picwrapper:after {
  content: '';
  display: block;
  clear: both; }

.detail-item__mainwrapper {
  display: block;
  position: relative; }

.detail-item__mainwrapper:after {
  content: '';
  display: block;
  clear: both; }

.detail-item__image {
  display: block;
  max-width: 100%;
  margin: 0 auto; }

.detail-item__preview {
  display: block; }

.detail-item__favor-compare {
  display: block; }

.detail-item__favor-compare:after {
  content: '';
  display: block;
  clear: both; }

.detail-item__favor {
  position: relative;
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  color: #828E95;
  background: url(../img/item_favor.svg) no-repeat center left;
  float: left;
  cursor: pointer;
  font-style: normal; }

.detail-item__favor_added, .detail-item__favor.active {
  color: #071C28;
  background: url(../img/item_favor_added.svg) no-repeat center left; }

.detail-item__favor:hover {
  /*   color: $dark-text;*/
  color: #f58014;
  text-decoration: underline !important;
  background: url(../img/item_favor_added.svg) no-repeat center left; }

.detail-item__compare {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  color: #828E95;
  background: url(../img/item_compare.svg) no-repeat center left;
  float: right;
  cursor: pointer; }

.detail-item__compare_added, .detail-item__compare.active {
  /* color: $dark-text;*/
  color: #f58014;
  background: url(../img/item_compare_added.svg) no-repeat center left; }

.detail-item__compare:hover {
  color: #f58014;
  text-decoration: underline !important;
  /*    color: $dark-text;*/
  background: url(../img/item_compare_added.svg) no-repeat center left; }

.detail-item__chars {
  display: block;
  background: #edf2f5; }

.detail-item__char {
  display: block;
  border-bottom: 1px solid #071C28; }

.detail-item__char:after {
  content: '';
  display: block;
  clear: both; }

.detail-item__char-title {
  display: block;
  float: left;
  font-style: normal; }

.detail-item__char-desc {
  display: block;
  float: right;
  font-style: normal;
  font-weight: normal; }

.detail-item__morechar {
  display: block;
  position: relative;
  cursor: pointer;
  font-style: normal;
  font-weight: normal;
  color: #f58014;
  border-bottom: 1px solid #f58014;
  white-space: nowrap; }

.detail-item__morechar:after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/more-chars.svg) no-repeat center; }

.detail-item_comments .item__comments-col {
  float: right; }

.detail-item__howwrap {
  display: block; }

.detail-item__howwrap:after {
  content: '';
  display: block;
  clear: both; }

.detail-item__how {
  position: relative;
  display: block;
  font-weight: normal;
  color: #071C28;
  text-decoration: none; }

.detail-item__how:hover {
  color: #071C28; }

.detail-item__how:before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/detail-bull.svg) no-repeat center; }

.detail-item__optwrap {
  display: block; }

.detail-item__optslide {
  display: none; }

.detail-item__opttitle {
  display: block;
  font-weight: normal;
  color: #071C28;
  text-align: center; }

.detail-item__optprice {
  display: block; }

.detail-item__optprice:after {
  content: '';
  display: block;
  clear: both; }

.detail-item__optdesk {
  display: block;
  float: left;
  background: #fff;
  font-weight: normal;
  color: #828E95; }

.detail-item__optcost {
  display: block;
  float: right;
  background: #fff;
  font-weight: normal;
  color: #071C28; }

.detail-item__picslider {
  display: block; }

.detail-item__picslide {
  box-sizing: border-box;
  /*    display: block;*/
  display: flex;
  cursor: pointer;
  position: relative;
  border: 2px solid #c3d4dc;
  overflow: hidden; }

.detail-item__picolay {
  display: block;
  opacity: 0.3;
  margin: auto;
  transition: all 0.3s; }
  .detail-item__picolay_video {
    background: url(../img/play-new.svg) no-repeat center;
    width: 100%;
    height: 100%; }

.detail-item__picolay:hover {
  opacity: 1; }

.detail-item__picslide_current .detail-item__picolay {
  display: block;
  opacity: 1; }

.detail-item__videolider {
  display: block; }

.detail-item__videoslide {
  display: table-cell;
  background: #edf2f5;
  vertical-align: middle; }

.detail-item__videopic {
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle; }

.detail-item__videopic:before {
  content: '';
  position: absolute;
  display: block;
  background: url(../img/play.svg) no-repeat center; }

.detail-item__videostxt {
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal; }

.detail-item__orangetxt {
  color: #f58014; }

.detail-item__mtitle {
  display: none; }

.detail-item .accord__data img {
  max-width: 100%; }

.detail-item .accord__data table {
  width: 100%; }
  .detail-item .accord__data table p {
    margin: 0; }
  .detail-item .accord__data table td, .detail-item .accord__data table th {
    padding: 7px 0px; }
  .detail-item .accord__data table tr {
    border-bottom: 2px solid #071C28; }
    .detail-item .accord__data table tr td:first-child, .detail-item .accord__data table tr th:first-child {
      padding-right: 10px; }

.detail-item_alternative-totop {
  z-index: 10 !important; }
  .detail-item_alternative-totop:before {
    top: auto !important;
    bottom: -19px  !important;
    border-width: 17px 17px 0 17px  !important;
    border-color: #c3d4dc transparent transparent transparent  !important; }
  .detail-item_alternative-totop:after {
    top: auto !important;
    bottom: -16px  !important;
    border-width: 16px 16px 0 16px  !important;
    border-color: #fff transparent transparent transparent  !important; }

.detail-item_alternative {
  background: #fff;
  border: 1px solid #c3d4dc;
  box-sizing: border-box;
  box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
  padding: 15px 35px 35px;
  position: relative; }
  .detail-item_alternative:before {
    content: "";
    display: block;
    position: absolute;
    top: -17px;
    left: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 17px 17px 17px;
    border-color: transparent transparent #c3d4dc transparent; }
  .detail-item_alternative:after {
    content: "";
    display: block;
    position: absolute;
    top: -16px;
    left: 16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 16px 16px 16px;
    border-color: transparent transparent #ffffff transparent; }
  .detail-item_alternative__title {
    font-size: 16px;
    line-height: 18px;
    font-family: Rubik;
    font-weight: bold;
    margin-bottom: 7px; }
  .detail-item_alternative__preview {
    font-size: 14px;
    margin-bottom: 7px; }
  .detail-item_alternative__availability {
    font-size: 16px; }
  .detail-item_alternative__properties {
    border-top: 1px solid #c3d4dc;
    padding-top: 15px;
    margin-top: 15px; }
    .detail-item_alternative__properties__title {
      font-size: 18px;
      line-height: 32px;
      font-family: Rubik;
      font-weight: bold;
      margin-bottom: 15px; }
    .detail-item_alternative__properties table {
      width: 100%;
      font-size: 14px;
      line-height: 18px; }
      .detail-item_alternative__properties table tr td {
        padding: 9px 0;
        border-bottom: 1px solid #071C28; }
        .detail-item_alternative__properties table tr td:nth-of-type(1) {
          font-weight: bold; }

.mod4 .owl-prev {
  background: none;
  color: inherit;
  border: none;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important; }

.mod4 .owl-next {
  background: none;
  color: inherit;
  border: none;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important; }

.mod4 .owl-nav [class*="owl-"]:hover {
  background-color: transparent !important; }

.mod4 .owl-prev {
  background-image: url(../img/detail-left.svg) !important; }

.mod4 .owl-next {
  background-image: url(../img/detail-right.svg) !important; }

.mod5 .owl-prev {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 15px;
  height: 25px; }

.mod5 .owl-next {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 15px;
  height: 25px; }

.mod5 .owl-nav [class*="owl-"]:hover {
  background-color: transparent !important; }

.mod5 .owl-prev {
  background-image: url(../img/detail-left.svg) !important;
  left: -30px;
  top: -64px;
  width: 15px;
  height: 25px; }

.mod5 .owl-next {
  background-image: url(../img/detail-right.svg) !important;
  right: -30px;
  top: -64px;
  width: 15px;
  height: 25px; }

.mod6 .owl-prev {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 15px;
  height: 25px; }

.mod6 .owl-next {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 15px;
  height: 25px; }

.mod6 .owl-nav [class*="owl-"]:hover {
  background-color: transparent !important; }

.mod6 .owl-prev {
  background-image: url(../img/mod6_l.svg) !important;
  left: -30px;
  top: -64px;
  width: 15px;
  height: 25px; }

.mod6 .owl-next {
  background-image: url(../img/mod6_r.svg) !important;
  right: -30px;
  top: -64px;
  width: 15px;
  height: 25px; }

.tabs__mobshow {
  display: none !important; }

.tabs:after {
  content: '';
  display: table;
  clear: both; }

.tabs input[type=radio] {
  display: none; }

.tabs__key {
  display: block;
  position: relative;
  float: left;
  cursor: pointer;
  text-decoration: none; }

.tabs__key:hover {
  text-decoration: none !important; }

.tabs__visible {
  display: block;
  position: relative;
  color: #fff;
  background: #071C28;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.1s;
  /* Safari 3.1 to 6.0 */
  transition: all 0.1s; }

.tabs__visible:hover {
  color: #071C28;
  background: #fff; }

.tabs__tab-content {
  display: none;
  float: left;
  box-sizing: border-box;
  background: #edf2f5; }

.tabs [id^="tab"]:checked + .tabs__key .tabs__visible {
  background: #edf2f5;
  color: #071C28; }

.tabs [id^="tab"]:checked + .tabs__key .tabs__visible:after {
  content: '';
  display: block;
  position: absolute;
  background: #edf2f5; }

.tabs__digits {
  font-weight: normal; }

#tab-1:checked ~ #tab-content-1,
#tab-2:checked ~ #tab-content-2,
#tab-3:checked ~ #tab-content-3,
#tab-4:checked ~ #tab-content-4,
#tab-5:checked ~ #tab-content-5,
#tab-6:checked ~ #tab-content-6 {
  display: block; }

.file {
  display: table;
  font-weight: normal;
  color: #071C28; }
  .file:hover {
    color: #071C28;
    text-decoration: none; }
  .file__cell {
    display: table-cell;
    vertical-align: middle; }
  .file_pdf {
    background: url(../img/pdf.svg) no-repeat center left; }
  .file_zip {
    background: url(../img/zip.svg) no-repeat center left; }
  .file_pob {
    background: url(../img/pob.svg) no-repeat center left; }

.description {
  display: block; }
  .description__title {
    display: block;
    font-style: normal;
    color: #071C28; }
  .description__title_blue {
    color: #0a75b2; }

.accord {
  display: block; }
  .accord:after {
    content: '';
    display: block;
    clear: both; }
  .accord__title {
    display: block;
    float: left;
    font-style: normal;
    font-weight: bold;
    color: #071C28; }
  .accord__title_blue {
    color: #0a75b2; }
  .accord__clop {
    display: block;
    position: relative;
    float: left;
    font-style: normal;
    font-weight: normal;
    color: #f58014;
    cursor: pointer;
    user-select: none; }
  .accord__clop:after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../img/clop_dn.svg);
    background-position: center;
    background-repeat: no-repeat;
    clear: both; }
  .accord__clop_open {
    display: block; }
  .accord__clop_open:after {
    background-image: url(../img/clop_up.svg); }
  .accord__data:before {
    content: '';
    display: block;
    clear: both; }
  .accord__data {
    display: none; }

.chars {
  display: block;
  background: rgba(195, 212, 220, 0.5); }
  .chars__title {
    font-style: normal;
    color: #071C28; }
  .chars__item {
    display: block;
    border-bottom: 2px solid #071C28; }
  .chars__item:after {
    content: '';
    display: block;
    clear: both; }
  .chars__name {
    float: left;
    font-style: normal;
    color: #071C28; }
  .chars__value {
    float: right;
    font-style: normal;
    font-weight: normal;
    text-align: right;
    color: #071C28; }

.image {
  display: block; }
  .image_yellow {
    border: 1px solid #f58014; }
  .image_center {
    margin: 0 auto; }

.compatible {
  display: block; }
  .compatible__nav {
    display: block; }
  .compatible__nav:after {
    content: '';
    display: block;
    clear: both; }
  .compatible__nav-item {
    display: block;
    float: left;
    background: #fff;
    color: #071C28;
    font-style: normal;
    font-weight: normal;
    text-decoration: none; }
  .compatible__nav-item:hover {
    background: #071C28;
    color: #fff;
    text-decoration: none;
    transition: all .5s; }
  .compatible__nav-item_active {
    background: #071C28;
    color: #fff;
    text-decoration: none; }
  .compatible__col {
    color: #828E95;
    font-style: normal;
    font-weight: normal; }

.main-slider {
  position: relative;
  margin-top: 21px;
  z-index: 0; }
  .main-slider .owl-nav {
    display: none; }
  .main-slider .owl-dots {
    display: block;
    position: absolute; }
  .main-slider .owl-dot.active span {
    background: #fff !important; }
  .main-slider .owl-dot span {
    background: transparent !important; }
  .main-slider__slide {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .main-slider__header {
    display: block;
    font-style: normal;
    font-weight: bold;
    color: #f4f5f5; }
  .main-slider__text {
    display: block;
    font-style: normal;
    font-weight: normal;
    color: #f4f5f5; }
  .main-slider__key {
    display: block;
    position: absolute;
    background-color: #f58014;
    font-style: normal;
    color: #fff !important;
    background-image: url(../img/banner-key.svg);
    background-repeat: no-repeat;
    z-index: 1; }
  .main-slider__key:hover {
    text-decoration: none;
    background-color: #fb6a00; }

.stickers {
  display: block; }
  .stickers:after {
    content: '';
    display: block;
    width: 100%;
    clear: both; }
  .stickers__sticker {
    position: relative;
    background-color: #edf2f5;
    background-repeat: no-repeat;
    background-position: center left;
    background-image: url(../img/sticker_light.svg);
    font-style: normal;
    font-weight: normal;
    text-transform: uppercase;
    display: block;
    float: left; }
  .stickers__sticker_dark {
    background-image: url(../img/sticker_dark.svg); }
  .stickers__ico {
    position: absolute; }

.compare__title {
  font-style: normal;
  font-weight: bold;
  color: #071C28; }

.compare__col .mini-item__title {
  overflow: hidden; }

.compare__paramslinks {
  display: block; }

.compare__paramslinks:after {
  content: '';
  display: block;
  clear: both; }

.compare__paramlink {
  display: block;
  font-style: normal;
  font-weight: normal;
  color: #f58014;
  border-bottom: 1px solid #f58014; }

.compare__paramlink:first-child {
  float: left; }

.compare__paramlink:last-child {
  float: right; }

.compare__paramlink:hover {
  color: #f58014;
  text-decoration: none;
  border-bottom: 1px solid transparent; }

.compare__table {
  display: block;
  border-right: 1px solid #071C28; }

.compare__thead {
  background: #c3d4dc;
  font-style: normal;
  color: #071C28; }

.compare__thitem {
  font-style: normal;
  color: #071C28;
  border-bottom: 1px solid #071C28;
  box-sizing: initial; }

.compare__area {
  position: relative;
  float: left; }

.compare__col {
  position: relative;
  font-weight: bold;
  float: left;
  flex-grow: 0;
  flex-shrink: 0; }

.compare__col:last-child .compare__tablecol {
  border-right: 1px solid transparent; }

.compare__window {
  display: flex;
  overflow-y: hidden;
  overflow-x: hidden;
  user-select: none; }

.compare_close {
  position: absolute; }

.compare__tablecol {
  display: block;
  border-right: 1px solid #c3d4dc; }

.compare__colhead {
  display: block;
  overflow: hidden; }

.compare__item {
  font-style: normal;
  font-weight: normal;
  color: #071C28;
  border-bottom: 1px solid #c3d4dc;
  box-sizing: initial; }

.compare_mini-item {
  margin: 0 auto !important;
  float: none; }

.compare__controlwrapper {
  display: table;
  float: right; }

.compare__control {
  display: table-cell;
  vertical-align: middle;
  user-select: none; }

.compare__btn {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer; }

.compare__btn_prev {
  background-image: url(../img/slider_left.svg); }

.compare__btn_next {
  background-image: url(../img/slider_right.svg); }

.compare__btn_prev:hover {
  background-image: url(../img/slider_left-hover.svg); }

.compare__btn_next:hover {
  background-image: url(../img/slider_right-hover.svg); }

.left-menu {
  display: block; }
  .left-menu__item {
    display: block;
    color: #071C28;
    text-decoration: none;
    text-align: center;
    border-bottom: 2px solid #fff;
    background: rgba(195, 212, 220, 0.3); }
  .left-menu__item:hover {
    color: #f58014;
    text-decoration: none; }
  .left-menu__item_active {
    color: #f58014;
    text-decoration: none; }

.personal h2 {
  text-transform: uppercase; }

.personal .form__input {
  float: left; }

.personal .form__change {
  float: left; }

.personal__reitem {
  display: block;
  background: rgba(195, 212, 220, 0.3); }

.personal__reitem:after {
  content: '';
  display: block;
  clear: both; }

.personal__reitem-left {
  float: left;
  display: block; }

.personal__reitem-right {
  position: relative;
  float: left;
  display: block; }

.personal__date {
  position: absolute;
  color: #071C28; }

.personal__bigstars {
  position: absolute;
  display: block; }

.personal__star {
  display: block;
  float: left;
  background-image: url(../img/star-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; }

.personal__bigstars:after {
  display: block;
  content: '';
  clear: both; }

.personal__star_empty {
  background-image: url(../img/star-empty.svg); }

.personal__togglewrapper {
  display: block; }

.personal__toggler {
  display: none; }

.personal__toggle-key {
  display: block;
  color: #f58014;
  text-align: center;
  cursor: pointer; }

.personal__toggle-key:after {
  content: '';
  display: inline-block;
  background: url(../img/tg_down.svg) no-repeat center; }

.personal__toggle-key_opened:after {
  background: url(../img/tg_up.svg) no-repeat center !important; }

.cargo {
  display: block; }
  .cargo__buttons {
    border-top: 1px solid #c3d4dc;
    padding-top: 25px;
    margin-top: 5px;
    margin-bottom: -10px; }
    .cargo__buttons .key {
      margin: 0 20px 10px 0; }
  .cargo h2 {
    margin: 0; }
  .cargo__add {
    position: relative;
    cursor: pointer;
    display: block;
    text-decoration: none !important; }
  .cargo__add_opened .cargo__title {
    color: #828E95; }
  .cargo__add_opened:after {
    background-image: url(../img/cargo_add_o.svg) !important; }
  .cargo__add:after {
    content: '';
    display: block;
    position: absolute;
    background: url(../img/cargo_add.svg) no-repeat center; }
  .cargo__hidden-container {
    display: none; }
  .cargo__toggle-key {
    background: #fff;
    border: 1px solid #c3d4dc;
    box-sizing: border-box;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    cursor: pointer; }
  .cargo__toggle-key .cargo__title {
    font-weight: 500; }
  .cargo__toggle-key:after {
    content: '';
    display: block;
    position: absolute;
    background: url(../img/cargo_down.svg) no-repeat center; }
  .cargo__toggle-key_opened:after {
    background-image: url(../img/cargo_up.svg) !important; }
  .cargo__title {
    color: #071C28; }
  .cargo__toggle-key_opened .cargo__title {
    font-weight: 400; }
  .cargo__toggler {
    display: none;
    background: #fff;
    border: 1px solid #c3d4dc;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3); }
    .cargo__toggler_visible {
      display: block; }
  .cargo__text {
    margin-bottom: 20px; }
    .cargo__text__title {
      font-weight: bold;
      margin-bottom: 10px; }

.quick {
  width: 750px;
  padding: 50px 0 !important; }
  .quick:after {
    display: block;
    content: '';
    clear: both; }
  .quick__left {
    display: block;
    float: left;
    width: 50%; }
  .quick__right {
    display: block;
    float: left;
    width: 50%;
    padding: 25px 40px 25px 15px; }
  .quick__img {
    display: block;
    max-width: 100%; }
  .quick__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 27px; }
  .quick__text {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 41px; }
  .quick__lwrapper {
    width: auto;
    float: left; }
  .quick__rwrapper {
    width: auto;
    float: right; }
  .quick .item__old-price {
    font-size: 16px;
    line-height: 19px; }
  .quick .item__price {
    margin: 0px;
    font-size: 30px;
    line-height: 72px; }
  .quick .item__col {
    font-size: 16px;
    line-height: 14px;
    margin-left: -3px; }
  .quick .item__stars {
    margin-top: 34px; }
  .quick hr {
    border-bottom: 1px solid #f58014;
    margin: 0px 0px 27px; }
  .quick .key {
    width: 82%;
    padding: 11px 47px; }

.basket {
  display: block; }
  .basket__head {
    display: block;
    border-bottom: 1px solid #c3d4dc; }
  .basket__head:after {
    display: block;
    content: '';
    clear: both; }
  .basket__hcol {
    display: block;
    float: left;
    font-weight: normal;
    text-align: center; }
  .basket__hcol:nth-child(1) {
    text-align: left; }
  .basket__body {
    display: block;
    border-bottom: 1px solid #c3d4dc; }
  .basket__checkbox {
    vertical-align: top; }
  .basket__checkbox + label {
    cursor: pointer;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none; }
  .basket__checkbox:not(checked) {
    position: absolute;
    opacity: 0; }
  .basket__checkbox:not(checked) + label {
    display: inline-block;
    position: relative;
    font-feature-settings: 'case' on;
    font-weight: normal;
    text-align: left;
    white-space: nowrap; }
  .basket__checkbox:not(checked) + label:before {
    content: '';
    position: absolute;
    background: url(../img/cb-agree.svg) no-repeat center center; }
  .basket__checkbox:checked + label:before {
    background: url(../img/cb-agree-checked.svg) no-repeat center center; }
  .basket__garbage {
    display: block;
    position: relative;
    cursor: pointer;
    background: url(../img/garbage.svg) no-repeat center; }
  .basket__garbage:hover .basket__tooltip {
    display: block; }
  .basket__tooltip::before {
    position: absolute;
    content: "";
    border: solid transparent;
    border-top-width: 0;
    border-right-color: transparent;
    border-right-width: medium;
    border-bottom-width: 0;
    border-left-width: medium;
    position: absolute;
    border-right-color: #fff;
    filter: drop-shadow(-1px 0px 0px #c3d4dc);
    border-left-color: transparent !important;
    border-right-color: #fff !important;
    filter: drop-shadow(0px px 0px #c3d4dc); }
  .basket__tooltip {
    font-weight: normal;
    font-size: 12px;
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #c3d4dc;
    box-sizing: border-box;
    box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
    text-align: center;
    text-transform: none; }
  .basket__item {
    background: #fff;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3); }
  .basket__item:after {
    display: block;
    content: '';
    clear: both; }
  .basket__col {
    display: block;
    float: left; }
  .basket__wrap {
    display: block;
    text-align: center; }
  .basket__wrap:after {
    display: block;
    content: '';
    clear: both; }
  .basket__wrap .close {
    position: relative; }
  .basket__wrap .close:hover .basket__tooltip {
    display: block; }
  .basket__img {
    display: block; }
  .basket__title {
    display: block; }
  .basket__favor-compare {
    display: block;
    float: left; }
  .basket__favor-compare:after {
    display: block;
    content: '';
    clear: both; }
  .basket__favor {
    font-style: normal;
    position: relative;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #828E95;
    background: url(../img/item_favor.svg) no-repeat center left;
    float: left;
    cursor: pointer; }
  .basket__favor_added {
    background: url(../img/item_favor_added.svg) no-repeat center left; }
  .basket__favor:hover {
    background: url(../img/item_favor_added.svg) no-repeat center left; }
  .basket__compare {
    font-style: normal;
    position: relative;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    color: #828E95;
    background: url(../img/item_compare.svg) no-repeat center left;
    float: left;
    cursor: pointer; }
  .basket__compare_added {
    background: url(../img/item_compare_added.svg) no-repeat center left; }
  .basket__compare:hover {
    background: url(../img/item_compare_added.svg) no-repeat center left; }
  .basket__col .item__star-full {
    background-size: contain; }
  .basket__col .item__star-empty {
    background-size: contain; }
  .basket__col .item__price {
    text-align: left;
    display: block;
    float: left; }
  .basket__col .item__old-price {
    display: block;
    text-align: right;
    position: inherit; }
  .basket__price {
    display: inline-block; }
  .basket__cost {
    text-align: center;
    display: block; }
  .basket__bottom {
    display: block;
    font-weight: normal; }
  .basket__bottom:after {
    display: block;
    content: '';
    clear: both; }
  .basket__text-cost {
    text-align: right; }
  .basket__text-discount {
    text-align: right;
    color: #f58014; }
  .basket__text-total {
    text-align: right; }
  .basket__key {
    float: right;
    display: block; }

.search-results hr:after {
  display: block;
  content: '';
  clear: both; }

.search-results__section {
  display: table; }

.search-results__sectpic {
  display: table-cell;
  vertical-align: middle; }

.search-results__text {
  display: table-cell;
  vertical-align: middle; }

.search-results__secimg {
  display: block;
  margin: 0 auto; }

.search-results__secttitle {
  display: inline-block;
  text-transform: uppercase;
  color: #071C28; }

.search-results__secttitle span {
  display: inline-block;
  border-bottom: 1px solid #071C28; }

.search-results__section:hover .search-results__secttitle span {
  border-bottom: 1px solid transparent; }

.search-results__sectnum {
  display: inline-block;
  color: #828E95; }

.search-results__table-items {
  float: left; }

.search-results__table-items:after {
  display: block;
  content: '';
  clear: both; }

.search-results__table-items .table-items__description {
  overflow: hidden; }

#hidden-modal,
#hidden-modal2 {
  display: none; }

#hidden-modal2 {
  max-width: 950px; }

/*
.container {

    background: #cecece;
}

.red {
    display: block;
    width: 100%;
    background-color: #ff0000;
}
*/
.jq-selectbox__dropdown ul li:before {
  content: '' !important;
  display: none; }

.jq-selectbox li.sel {
  background-color: transparent !important;
  color: #0a75b2 !important;
  font-weight: 600; }

.jq-selectbox li {
  font-size: 12px; }

.jq-selectbox__select {
  background-color: #fff;
  min-width: auto !important;
  line-height: 30px; }

.form__select_small .jq-selectbox__select {
  padding: 0 25px 0 5px; }

.form__select_small .jq-selectbox__trigger-arrow {
  right: 10px; }

.orange {
  color: #f58014; }

.header__desktop-wrapper .title-search-result {
  position: absolute;
  width: 100%;
  display: none; }

.section-seo {
  margin-bottom: 60px; }
  .section-seo_top {
    margin-bottom: 0px; }

.addReview_key {
  cursor: pointer; }

.frame404 {
  display: block;
  position: relative;
  margin-bottom: 25px; }

.img404 {
  display: block;
  max-width: 100%; }

.text404 {
  position: absolute;
  top: 32%;
  width: 50%;
  left: 6%;
  font-size: 17px;
  line-height: 21px;
  text-align: center; }

.text404 a {
  text-decoration: underline; }

.text404 span {
  display: block;
  margin-top: 20px; }

.form__suggestions {
  position: relative;
  margin: 0;
  padding: 0;
  vertical-align: top;
  -webkit-text-size-adjust: 100%; }
  .form__suggestions__wrapper {
    background: #fff;
    border: 1px solid #999;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: default;
    left: 0;
    top: 5px;
    min-width: 100%;
    position: absolute;
    z-index: 9999;
    -webkit-text-size-adjust: 100%; }
  .form__suggestions__item {
    padding: 5px 10px;
    margin: 5px;
    white-space: nowrap;
    cursor: pointer; }
    .form__suggestions__item.form__suggestions__item_selected, .form__suggestions__item:hover {
      background: #edf2f5; }

.form__error-message {
  color: red;
  font-size: 0.8em;
  margin-top: -10px; }

.form__warning {
  font-size: 0.8em;
  color: #888;
  margin-top: 10px;
  display: none;
  position: absolute;
  top: 95%;
  line-height: 13px;
  padding-right: 10px; }

.form__subtitle {
  margin-top: 25px;
  margin-bottom: -10px; }

.yandex-map {
  width: 100%;
  height: 400px; }
  .yandex-map__wrapper {
    position: relative;
    border: 1px solid #fd7e14; }
  .yandex-map__selected-point-message {
    font-weight: bold;
    display: none; }
  .yandex-map__selected-address {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    padding: 10px 15px;
    z-index: 2;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px); }

.order-form .order-form__properties {
  margin-top: -20px; }
  .order-form .order-form__properties .form__input {
    width: 100%; }

.order-form__price-table {
  margin-top: 30px;
  width: 100%; }
  .order-form__price-table td {
    vertical-align: top;
    padding-bottom: 30px;
    position: relative; }
  .order-form__price-table td:nth-child(2n) {
    padding-left: 30px;
    font-weight: bold;
    white-space: nowrap; }
  .order-form__price-table tr {
    font-size: 24px;
    line-height: 26px; }
    .order-form__price-table tr:nth-of-type(2) td {
      padding-bottom: 40px; }
    .order-form__price-table tr.total {
      font-size: 26px;
      line-height: 28px;
      color: #f58014;
      font-weight: bold; }
      .order-form__price-table tr.total td {
        padding-bottom: 0; }
  .order-form__price-table .tip {
    position: absolute;
    font-size: 12px;
    line-height: 14px;
    color: #FF3B10;
    top: -15px; }

.order-form .form__radio + label {
  width: fit-content; }

.order-form__error {
  padding: 10px 15px;
  color: #FF3B10;
  border: 1px solid #FF3B10;
  margin-bottom: 37px; }

.loader__overlay {
  position: fixed;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: 10000 !important;
  background-color: rgba(7, 28, 40, 0.75); }

.loader__icon {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px; }
  .loader__icon div {
    transform-origin: 40px 40px;
    animation: loader-spinner 1.2s linear infinite; }
    .loader__icon div:after {
      content: " ";
      display: block;
      position: absolute;
      top: 3px;
      left: 37px;
      width: 6px;
      height: 18px;
      border-radius: 20%;
      background: #c3d4dc; }
    .loader__icon div:nth-child(1) {
      transform: rotate(0deg);
      animation-delay: -1.1s; }
    .loader__icon div:nth-child(2) {
      transform: rotate(30deg);
      animation-delay: -1s; }
    .loader__icon div:nth-child(3) {
      transform: rotate(60deg);
      animation-delay: -0.9s; }
    .loader__icon div:nth-child(4) {
      transform: rotate(90deg);
      animation-delay: -0.8s; }
    .loader__icon div:nth-child(5) {
      transform: rotate(120deg);
      animation-delay: -0.7s; }
    .loader__icon div:nth-child(6) {
      transform: rotate(150deg);
      animation-delay: -0.6s; }
    .loader__icon div:nth-child(7) {
      transform: rotate(180deg);
      animation-delay: -0.5s; }
    .loader__icon div:nth-child(8) {
      transform: rotate(210deg);
      animation-delay: -0.4s; }
    .loader__icon div:nth-child(9) {
      transform: rotate(240deg);
      animation-delay: -0.3s; }
    .loader__icon div:nth-child(10) {
      transform: rotate(270deg);
      animation-delay: -0.2s; }
    .loader__icon div:nth-child(11) {
      transform: rotate(300deg);
      animation-delay: -0.1s; }
    .loader__icon div:nth-child(12) {
      transform: rotate(330deg);
      animation-delay: 0s; }

@keyframes loader-spinner {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.no-photo {
  background: url(../img/no_photo_120_120.png) no-repeat center;
  display: block;
  height: 120px;
  width: 120px; }

.section-seo img {
  max-width: 100%; }

.title-search-result {
  z-index: 4; }

.share-basket__products {
  position: relative;
  padding: 0 25px;
  border: 1px solid #f2f2f2; }
  .share-basket__products__info {
    position: relative;
    display: flex; }
  .share-basket__products__image {
    flex: 1;
    order: 1;
    display: block;
    margin-top: -15px; }
    .share-basket__products__image img {
      min-width: 48px;
      max-width: 95px; }
    .share-basket__products__image .no-photo {
      width: 95px;
      height: 95px; }
  .share-basket__products__name {
    flex: 3;
    order: 2;
    padding: 0 20px 0 0;
    color: #2f3435;
    word-break: break-word;
    display: block; }
  .share-basket__products__price {
    letter-spacing: -.33px;
    line-height: 24px;
    font-weight: 400;
    font-size: 20px;
    white-space: nowrap; }
    .share-basket__products__price_right {
      text-align: right; }
  .share-basket__products__for {
    padding-top: 1px;
    color: #a1a1a1;
    text-align: right;
    line-height: 14px;
    font-size: 12px; }
  .share-basket__products__quantity {
    white-space: nowrap;
    padding: 0 15px; }
    .share-basket__products__quantity__num {
      text-align: center;
      line-height: 27px;
      font-weight: bold;
      font-size: 18px; }
    .share-basket__products__quantity__measure {
      color: #a1a1a1;
      text-align: center;
      line-height: 14px;
      font-style: italic;
      font-size: 12px; }
  .share-basket__products table {
    width: 100%;
    border-collapse: collapse; }
    .share-basket__products table td {
      padding: 25px 15px 10px; }
    .share-basket__products table tr {
      border-top: 1px solid #f2f2f2;
      vertical-align: top; }
    .share-basket__products table tbody tr:nth-of-type(1) {
      border-top: 0; }
    .share-basket__products table tfoot td {
      padding: 10px 15px; }

.share-basket__buttons {
  margin: 15px 25px;
  display: flex;
  justify-content: flex-end;
  align-content: space-between; }
  .share-basket__buttons .key {
    margin-left: 15px; }

font.notetext {
  color: inherit !important; }

.bx-composite-btn {
  /*  display: none;*/ }

#bx-composite-banner {
  margin-top: 20px; }

.form__label_outer {
  display: block;
  font-family: Rubik;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #071C28;
  margin-bottom: -20px;
  margin-top: 22px; }

.filters .bx-ui-slider-track-container {
  padding-top: 35px;
  padding-bottom: 25px; }

.filters .bx-ui-slider-track {
  position: relative;
  height: 7px;
  z-index: 1; }

.filters .bx-ui-slider-part {
  position: absolute;
  top: -6px;
  width: 1px;
  height: 19px;
  background: #a0b4be;
  z-index: 80; }
  .filters .bx-ui-slider-part span {
    font-size: 11px;
    position: absolute;
    top: -16px;
    display: block;
    width: 70px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  .filters .bx-ui-slider-part_left {
    left: 0; }
    .filters .bx-ui-slider-part_left span {
      left: 0;
      text-align: left; }
  .filters .bx-ui-slider-part_right {
    right: 0; }
    .filters .bx-ui-slider-part_right span {
      right: 0;
      text-align: right; }

.filters .bx-ui-slider-range,
.filters .bx-ui-slider-pricebar,
.filters .bx-ui-slider-pricebar-vd,
.filters .bx-ui-slider-pricebar-vn,
.filters .bx-ui-slider-pricebar-v {
  position: absolute;
  top: 0;
  bottom: 0; }

.filters .bx-ui-slider-range {
  z-index: 50; }

.filters .bx-ui-slider-pricebar {
  z-index: 100; }

.filters .bx-ui-slider-pricebar-vd {
  z-index: 60; }

.filters .bx-ui-slider-pricebar-vn {
  z-index: 70; }

.filters .bx-ui-slider-pricebar-v {
  z-index: 80; }

.filters .bx-ui-slider-handle {
  position: absolute;
  top: 100%;
  width: 10px;
  height: 15px;
  border-bottom: none;
  margin-top: -3px; }

.filters .bx-ui-slider-handle:hover {
  -webkit-cursor: grab;
  -ms-cursor: grab;
  -o-cursor: grab;
  cursor: grab; }

.filters .bx-ui-slider-handle:active {
  -webkit-cursor: grabbing;
  -ms-cursor: grabbing;
  -o-cursor: grabbing;
  cursor: grabbing; }

.filters .bx-ui-slider-handle.left {
  left: 0;
  margin-right: -1px; }

.filters .bx-ui-slider-handle.right {
  right: 0;
  margin-left: -1px; }

.filters .bx-ui-slider-track {
  background: #e7e7e7;
  margin-top: 30px;
  margin-bottom: 10px; }

.filters .bx-ui-slider-pricebar-vd {
  background: #849da4; }

.filters .bx-ui-slider-pricebar-vn {
  background: #c3d4dc; }

.filters .bx-ui-slider-pricebar-v {
  background: #A0B4BE; }

.filters .bx-ui-slider-handle.left {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 0 10px;
  border-color: transparent transparent transparent #a0b4be; }

.filters .bx-ui-slider-handle.right {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 10px;
  border-color: transparent transparent #a0b4be transparent; }

.filters .bx-filter-container-modef .bx-filter-popup-result {
  position: absolute;
  font-size: 12px;
  font-family: Rubik;
  right: -200px;
  color: #828E95;
  background: #FFFFFF;
  border: 1px solid #C3D4DC;
  box-sizing: border-box;
  box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
  border-radius: 2px;
  width: 200px;
  z-index: 3;
  top: 2px;
  text-align: center;
  padding: 6px 0; }
  .filters .bx-filter-container-modef .bx-filter-popup-result a {
    color: #071C28;
    border-bottom: 1px dashed #071C28;
    text-decoration: none; }
  .filters .bx-filter-container-modef .bx-filter-popup-result:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent #C3D4DC transparent transparent;
    left: -8px;
    top: 50%;
    margin-top: -8px; }
  .filters .bx-filter-container-modef .bx-filter-popup-result:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 7px 0;
    border-color: transparent #ffffff transparent transparent;
    left: -7px;
    top: 50%;
    margin-top: -7px; }

.filters .form_gray {
  position: relative; }

.filters .bx-filter-toggler {
  color: #0A75B2;
  font-size: 12px;
  margin-left: 25px;
  margin-top: 10px; }
  .filters .bx-filter-toggler span {
    cursor: pointer;
    border-bottom: 1px dashed; }
  .filters .bx-filter-toggler span:hover {
    color: #f58014;
    border-bottom: 1px dashed #f58014; }
  .filters .bx-filter-toggler .bx-filter-toggler__hide {
    display: none; }
  .filters .bx-filter-toggler.open .bx-filter-toggler__hide {
    display: inline; }
  .filters .bx-filter-toggler.open .bx-filter-toggler__show {
    display: none; }

.articles__section_active .articles__section-title {
  color: #f58014;
  transition: all 0.2s ease; }

.articles__section.articles__section_no-photo {
  background-image: url(../img/no_photo_70_79.png); }

.bx-ss-icon {
  position: absolute;
  display: block;
  text-align: center;
  background-color: #828E95;
  color: #fff;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  top: 8px;
  left: 37px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  padding: 3px 1px 3px 0px; }

.facebook:before {
  content: "\f09a"; }

.vkontakte:before {
  content: "\f189"; }

.odnoklassniki:before {
  content: "\f263"; }

.openid-mail-ru:before {
  content: "\f1fa"; }

.mymailru:before {
  content: "\f1fa"; }

.twitter:before {
  content: "\f099"; }

.openid:before {
  content: "\f19b"; }

.google:before {
  content: "\f1a0"; }

.google-plus:before {
  content: "\f0d5"; }

.dropbox:before {
  content: "\f16b"; }

.yandex:before {
  content: "\f111"; }

.livejournal:before {
  content: "\f111"; }

.liveinternet:before {
  content: "\f111"; }

.blogger:before {
  content: "\f111"; }

.rambler:before {
  content: "\f111"; }

.liveid:before {
  content: "\f111"; }

.bitrix24:before {
  content: "\f111"; }

.box:before {
  content: "\f111"; }

.office365:before {
  content: "\f111"; }

.mailru2:before {
  content: "\f111"; }

.apple:before {
  content: "\f111"; }

.zoom:before {
  content: "\f111"; }

.bx-ss-button {
  display: inline-block;
  background-image: url(../img/icons_v5.png) !important;
  width: 87px !important;
  height: 21px !important;
  background-repeat: no-repeat;
  vertical-align: middle !important; }

.liveid-button {
  background-position: 0 -334px !important; }

.facebook-button {
  background-position: 0 -224px !important; }

.twitter-button {
  background-position: 0 -290px !important; }

.vkontakte-button {
  background-position: 0 -268px !important; }

.mymailru-button {
  background-position: 0 -246px !important; }

.google-button {
  background-position: 0 -312px !important; }

.odnoklassniki-button {
  background-position: 0 -356px !important; }

.bitrix24net-button {
  background-position: 0 -416px !important; }

.bitrix24net-button-ru,
.bitrix24net-button-kz {
  background-position: 0 -394px !important; }

.bitrix24net-button-ua {
  background-position: 0 -438px !important; }

.dropbox-button {
  background-position: 0 -482px !important; }

.box-button {
  background-position: 0 -537px !important; }

.yandex-button {
  background-position: 0 -460px !important; }

.office365-button {
  background-position: 0 -576px !important; }

td.to_twitter {
  text-align: center !important; }

div.bx-auth {
  margin-top: 12px;
  margin-bottom: 10px; }

div.bx-auth form {
  padding: 0;
  margin: 0; }

div.bx-auth-line {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 30px; }

div.bx-auth-title {
  font-size: 140%;
  border-bottom: solid 2px #E3E3E3;
  padding-bottom: 12px; }

div.bx-auth-note {
  margin: 18px 0px 6px 0px; }

div.bx-auth-services {
  padding: 0;
  margin: 0;
  overflow: hidden;
  zoom: 1; }

div.bx-auth-services div {
  /*display:block; float:left; margin:4px 6px 0px 0px; width:170px;*/ }

div.bx-auth-services > div {
  display: block;
  position: relative;
  margin-right: 45px;
  float: left;
  width: calc(33.3% - 30px); }

div.bx-auth-services > div:after {
  display: block;
  content: '';
  clear: both; }

div.bx-auth-services > div:last-child {
  margin-right: 0px; }

div.bx-auth-services a {
  /*display:inline-block; margin:1px; padding:4px 4px 4px 4px; text-decoration:none; color:#646464; outline:none;*/
  position: relative;
  display: block;
  color: #071C28;
  float: left;
  text-decoration: none;
  border: 1px solid #0a75b2;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 18px;
  line-height: 15px;
  letter-spacing: -0.01em;
  /*	margin-right: 45px;*/
  border-radius: 2px;
  /*	min-width: 252px;*/
  width: 100%;
  padding: 13px 0px 12px 85px;
  overflow: hidden;
  text-overflow: ellipsis; }

div.bx-auth-services a > b {
  white-space: nowrap;
  font-weight: 300;
  font-size: 18px;
  line-height: 15px;
  color: #071C28; }

div.bx-auth-services a:hover .bx-ss-icon, div.bx-auth-services a.bx-ss-selected .bx-ss-icon {
  background-color: #fff;
  color: #0a75b2; }

div.bx-auth-services a:hover > b, div.bx-auth-services a.bx-ss-selected > b {
  color: #f4f5f5; }

div.bx-auth-services a:hover, div.bx-auth-services a.bx-ss-selected {
  transition: all 0.2s ease;
  background-color: #0a75b2;
  color: #f4f5f5;
  text-decoration: none; }

div.bx-auth-service-form {
  color: black;
  background-color: #EEEEEE;
  border-bottom: solid 1px #D6D6D6;
  margin-top: 1px;
  padding: 8px;
  vertical-align: middle;
  font-size: 12px; }

div.bx-auth-service-form span, div.bx-auth-service-form input {
  vertical-align: middle; }

div.bx-auth-service-form input.button {
  position: relative;
  left: 1px; }

div.bx-auth-service-form span.bx-ss-icon {
  display: inline-block;
  margin-right: 6px; }

span.bx-spacer {
  display: inline-block;
  width: 8px; }

span.bx-spacer-vert {
  display: inline-block;
  height: 10px; }

span.bx-spacer-vert25 {
  display: inline-block;
  height: 25px; }

div.bx-auth-serv-icons a {
  display: inline-block;
  margin: 1px;
  text-decoration: none;
  color: #646464;
  outline: none; }

div.bx-auth-serv-icons a:hover {
  margin: 0;
  border: 1px solid #D9D9D9; }

div.bx-auth-serv-icons i {
  margin: 3px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer; }

div.bx-auth-lbl {
  margin-top: 8px;
  margin-bottom: 4px; }

div.bx-auth-float {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 100%; }

div.bx-sonet-profile-field-socserv {
  line-height: 15px !important; }

div.bx-auth-form {
  width: 510px !important; }

textarea.ss-text-for-message-default {
  width: 300px;
  height: 130px;
  color: grey;
  font-weight: lighter; }

textarea.ss-text-for-message {
  margin-top: 5px; }

td.bx-ss-soc-serv {
  /*font: bold 12px/15px "Helvetica Neue",Helvetica,Arial,sans-serif;*/ }

td.bx-ss-soc-serv i {
  vertical-align: -25%; }

div.bx-taimen-socserv-div {
  padding-bottom: 9px;
  padding-left: 50px; }

a.ss-socserv-setup-link {
  padding-left: 10px;
  color: grey !important;
  text-decoration: underline; }

.ss-text-without-border {
  padding-left: 5px;
  border: none;
  background: #F8FAFB;
  color: #6286bb;
  font-style: italic; }

.bx-ss-timeman-header-div {
  padding-bottom: 10px; }

td.bx-ss-soc-serv-setup {
  white-space: pre-line;
  width: 300px;
  font-size: 75%; }

a.bx-ss-soc-serv-setup-link {
  text-decoration: underline !important; }

.bx-auth-service-form .bx-ss-icon.openid-mail-ru {
  position: inherit; }

.bx-auth-service-form .openid-mail-ru:before {
  content: '' !important; }

.bx-auth-service-form .openid-mail-ru {
  background-position: 0 -48px; }

.bx-auth-service-form .bx-ss-icon {
  background-image: url(../img/icons_v5.png);
  background-color: transparent;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat; }

.forgot-message p {
  line-height: 21px; }

.breadcrumbs__item::after {
  content: '\2013'; }

.doppic {
  display: none;
  max-width: 100%;
  margin: 0 auto; }

.nobottomline .bx-auth-line {
  border-bottom: none !important; }

#location-city-area, #working-hours-area {
  color: #f58014; }

#location-city-area:hover {
  text-decoration: underline; }

.owl-carousel .mini-item__title {
  overflow: hidden; }

.h_price {
  display: none !important; }

.fancybox img {
  max-width: 100%; }

.header__catalog-menu_visible.header__catalog-menu_visible_hide {
  opacity: 0 !important;
  z-index: -1 !important; }

.warning {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #fb6a00;
  background-color: #f4f5f5;
  border-radius: 5px;
  text-align: center; }

.item.item_slider {
  cursor: pointer; }

.iNotify {
  position: relative;
  background-color: #f38e09;
  background-image: url("/assets/img/infobg.png");
  background-repeat: no-repeat;
  background-position: center center;
  padding: 15px 0px;
  color: #ffffff;
  height: 59px;
  box-sizing: border-box;
  font-family: Rubik;
  font-style: normal; }

.iNotify b, .iNotify strong {
  font-weight: bold !important; }

.iNotifyClose {
  display: block;
  position: absolute;
  width: 21px;
  height: 21px;
  background: url("/assets/img/iclose.png") center center no-repeat;
  cursor: pointer;
  right: 25px;
  top: 20px; }

.iNotifyWrapper {
  max-width: 1170px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-right: 40px;
  padding-left: 80px;
  font-size: 13px;
  height: 35px;
  overflow: hidden;
  line-height: 17px; }

.iNotifyWrapper a {
  color: #fff; }

.iNotifyItem {
  display: none; }

@media (max-width: 1280px) {
  .iNotify {
    background-position: -250px center; }
  .iNotifyWrapper {
    padding-right: 75px; } }

@media (max-width: 750px) {
  .iNotifyClose {
    width: 13px;
    height: 13px;
    right: 16px;
    top: 23px; }
  .iNotifyWrapper {
    padding-left: 15px;
    padding-right: 25px; } }

@media (max-width: 360px) {
  .iNotify {
    padding: 5px 0px; }
  .iNotifyWrapper {
    height: 50px; }
  .iNotifyItem {
    height: 50px; } }

@media all and (max-width: 944px) {
  body {
    font-size: 13px;
    line-height: 13px; }
  h1 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.03em;
    margin-bottom: 29px;
    margin-top: 33px; }
  .h1 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.03em;
    margin-bottom: 29px;
    margin-top: 33px; }
  h2 {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 27px;
    margin-top: 10px; }
  .h2 {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 27px;
    margin-top: 10px; }
  h3 {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 14px;
    margin-top: 10px; }
  .h3 {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 14px;
    margin-top: 10px; }
  h4,
  h5,
  h6 {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    margin-top: 7px; }
  .h4,
  .h5,
  .h6 {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    margin-top: 7px; }
  p {
    /*    font-size: 12px;
    line-height: 13px;*/
    font-size: 15px;
    line-height: 18px;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem; }
  ul {
    padding-left: 0px; }
  ul li {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: -0.01em;
    padding-bottom: 1px; }
  ul li::before {
    width: 9px;
    margin-left: 1px; }
  ol {
    padding-top: 0px;
    padding-left: 0px; }
  ol > li {
    padding-left: 30px;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.01em;
    color: #071C28;
    max-width: 615px;
    margin-bottom: 10px; }
  ol > li::before {
    font-size: 16px; }
  ol > li > ul > li::before {
    margin-left: 21px; }
  ol > li > ul > li {
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.01em;
    margin-bottom: 10px; }
  hr {
    margin-top: 36px;
    margin-bottom: 34px; }
  .mobilebg {
    background-color: #f4f5f5; }
  .mobilewhitebg {
    background-color: #fff !important; }
  .mobilefilters {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #0a75b2;
    border: 2px solid #0a75b2;
    box-sizing: border-box;
    border-radius: 2px;
    margin-top: 40px;
    margin-bottom: 40px;
    cursor: pointer; }
    .mobilefilters__image {
      margin-right: 7px; }
    .mobilefilters_nomartop {
      margin-top: 0px !important; }
    .mobilefilters__icon {
      background-image: url(../img/filters.svg);
      width: 17px;
      height: 14px;
      display: inline-block;
      top: 3px;
      position: relative;
      margin-right: 5px; }
  .title-info {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -0.02em;
    margin-bottom: 24px; }
  .info {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.03em;
    padding-bottom: 0px;
    margin-bottom: 4px; }
    .info_xs {
      display: block;
      width: 118px;
      margin: 20px auto;
      font-size: 16px;
      line-height: 18px; }
  .news__title {
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: -0.02em; }
  .left-news {
    display: none;
    /*   &__all {
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        margin-right: 20px;
        margin-top: 12px;
    }
    &__all:after {
        width: 7px;
        height: 10px;
        right: -18px;
        top: 7px;

        }*/ }
    .left-news_mobile {
      display: block !important; }
    .left-news__title {
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      margin-top: 25px;
      margin-bottom: 24px; }
    .left-news__item-title {
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 7px; }
    .left-news__item {
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 24px; }
  .link-all {
    font-size: 14px;
    line-height: 22px;
    margin-right: 20px;
    margin-top: 12px; }
    .link-all:after {
      width: 7px;
      height: 10px;
      right: -18px;
      top: 7px; }
  .breadcrumbs {
    display: none;
    margin-top: 8px;    
    margin-top: 10px;
     }
  .breadcrumbs-mobile {
    display: block;
    width: 100%;
    background: #f4f5f5;
    color: #828E95;
    font-size: 13px;
    line-height: 18px;
    padding: 0px 19px; }
    .breadcrumbs-mobile__item {
      display: block;
      float: left;
      background: url(../img/arrow-mbread.svg) no-repeat center left;
      color: #828E95;
      padding: 9px 22px; }
    .breadcrumbs-mobile__item:hover {
      color: #828E95 !important;
      text-decoration: none !important; }
    .breadcrumbs-mobile__bottom {
      display: none;
      float: right;
      cursor: pointer;
      background: url(../img/arrow-bbread.svg) no-repeat center;
      padding: 19px 8px; }
    .breadcrumbs-mobile:after {
      content: '';
      display: block;
      clear: both; }
  .mobile-menu {
    display: block;
    position: absolute;
    top: 66px;
    left: -253px;
    width: 253px;
    background-color: #071C28;
    /* height: calc(100vh - 66px);*/
    z-index: 999;
    box-shadow: 0px 2px 6px rgba(0, 51, 79, 0.3);
    padding-bottom: 40px;
    transition: left ease 0.3s; }
    .mobile-menu_show {
      left: 0px; }
    .mobile-menu__controls {
      display: block;
      background-color: #edf2f5;
      /*margin-top: 13px;*/
      padding: 19px 10px 20px 10px; }
    .mobile-menu__register:before {
      content: '';
      display: inline-block;
      background-image: url(../img/icon_registergr.svg);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      width: 16px;
      height: 16px;
      margin-right: 18px;
      margin-bottom: -4px; }
    .mobile-menu__register {
      color: #071C28;
      display: block;
      text-align: right;
      width: 50%;
      float: left;
      font-size: 12px;
      line-height: 14px; }
    .mobile-menu__register:hover {
      color: #071C28;
      text-decoration: none; }
    .mobile-menu__login:before {
      content: '';
      display: inline-block;
      background-image: url(../img/icon_entergr.svg);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      width: 15px;
      height: 15px;
      margin-right: 8px;
      margin-bottom: -3px; }
    .mobile-menu__login:hover {
      color: #071C28;
      text-decoration: none; }
    .mobile-menu__login {
      color: #071C28;
      display: block;
      text-align: left;
      width: 29%;
      float: right;
      font-size: 12px;
      line-height: 14px; }
    .mobile-menu__postponed-items {
      display: block;
      margin-top: 18px;
      margin-left: 6px; }
    .mobile-menu__postponed-items:after {
      content: '';
      display: block;
      clear: both; }
    .mobile-menu__postponed-items_link {
      color: #828E95;
      box-sizing: border-box;
      display: block;
      float: left;
      width: 33.3%;
      background-position: 9px center;
      background-repeat: no-repeat;
      font-size: 12px;
      line-height: 14px;
      padding: 5px 5px 5px 24px;
      text-align: center;
      /*margin-right: 26px;
        margin-left: 8px;        */ }
    .mobile-menu__postponed-items_link:last-child {
      margin-right: 0px; }
    .mobile-menu__postponed-items_link_favourites {
      background-image: url(../img/heartgr.svg);
      padding-left: 24px; }
    .mobile-menu__postponed-items_link_compare {
      background-image: url(../img/comparegr.svg);
      padding-left: 20px; }
    .mobile-menu__postponed-items_link_seen {
      background-image: url(../img/seengr.svg);
      padding-left: 30px; }
    .mobile-menu__menu {
      display: block;
      /*   background-color: $secondary_bg;*/ }
    .mobile-menu__menu:after {
      content: '';
      display: block;
      clear: both; }
    .mobile-menu__menu-catalog {
      display: block;
      background-color: #f4f5f5;
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      color: #071C28;
      border-top: 2px solid #fff;
      box-shadow: 0px 2px 6px rgba(0, 51, 79, 0.2);
      border-bottom: 2px solid #edf2f5;
      padding: 15px 19px 17px 19px; }
    .mobile-menu__menu-catalog:hover {
      color: #071C28;
      text-decoration: none; }
    .mobile-menu__menu-catalog-item {
      display: block;
      font-size: 13px;
      line-height: 15px;
      letter-spacing: -0.02em;
      color: #071C28;
      padding: 13px 19px 13px 19px;
      border-bottom: 2px solid #edf2f5;
      background-color: #fff; }
    .mobile-menu__menu-catalog-item_active {
      color: #fff;
      background-color: #071C28;
      text-decoration: none; }
    .mobile-menu__menu-catalog-item:hover {
      color: #fff;
      background-color: #071C28;
      text-decoration: none; }
    .mobile-menu__menu-nav-item {
      display: block;
      background-color: #071C28;
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      color: #fff;
      padding: 9px 17px 10px 18px; }
    .mobile-menu__menu-nav-item:hover {
      color: #fff;
      text-decoration: none; }
    .mobile-menu__spacer {
      display: block;
      background-color: #071C28;
      height: 11px; }
    .mobile-menu__phonespacer {
      background-color: #071C28;
      height: 22px; }
    .mobile-menu__phone {
      color: #f4f5f5;
      background-color: #071C28;
      display: block;
      text-align: left;
      font-weight: 500;
      font-size: 20px;
      line-height: 27px;
      letter-spacing: -0.35px;
      padding: 2px 17px; }
    .mobile-menu__phone:hover {
      color: #f4f5f5;
      text-decoration: none; }
  .msearch {
    display: block;
    float: right;
    width: 18px;
    height: 20px;
    cursor: pointer;
    background: url(../img/msearch.svg) center no-repeat;
    background-size: contain;
    margin-top: 24px;
    margin-right: 14px; }
  .mm-wrapper {
    float: right;
    margin-top: 24px;
    margin-right: 5px; }
  .menu-lines {
    width: 23px;
    height: 20px;
    position: relative;
    border-bottom: 2px solid #fff;
    box-sizing: border-box;
    transition: all .5s;
    cursor: pointer;
    overflow: hidden; }
    .menu-lines:before {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      content: "";
      display: block;
      height: 2px;
      background: #fff;
      transition: all .5s; }
    .menu-lines:after {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      content: "";
      display: block;
      height: 2px;
      background: #fff;
      transition: transform .5s, width 2s; }
    .menu-lines_close {
      border: 0; }
      .menu-lines_close:before {
        content: "";
        display: block;
        width: 100%;
        transform: rotate(45deg);
        background: #fff;
        top: 100%;
        margin-top: -55%;
        left: 0;
        margin-left: -0%; }
      .menu-lines_close:after {
        content: "";
        display: block;
        width: 100%;
        transform: rotate(-45deg);
        background: #fff;
        top: 100%;
        margin-top: -55%;
        left: 0;
        margin-left: 0%; }
  .wrapper {
    min-width: 290px;
    /*    max-width:360px;*/ }
  .header {
    height: 66px; }
    .header__mobile-search-block {
      position: absolute;
      background: #071C28;
      padding: 16px 45px 16px 20px;
      left: 0px;
      top: 0px;
      display: block;
      visibility: hidden;
      width: 100%;
      height: 66px;
      z-index: -1; }
    .header__mobile-search-block .close {
      position: absolute;
      right: 14px;
      top: 24px; }
    .header__mobile-search-block_visible {
      z-index: 10;
      visibility: visible; }
    .header__mobile-search-block .search {
      width: 100%;
      height: 100%;
      padding-left: 36px;
      background-position: 20px center; }
    .header__search-block-results {
      left: 0;
      top: 66px;
      padding: 21px 10px;
      width: 100%;
      font-size: 12px;
      line-height: 14px; }
    .header__search-block-title {
      margin-top: 3px;
      margin-bottom: 6px; }
    .header__search-block-result {
      width: 100%;
      line-height: 14px;
      margin-top: 4px;
      padding-left: 11px;
      margin-bottom: 4px;
      padding-right: 7px; }
    .header__search-block-link {
      font-size: 13px;
      letter-spacing: 0.3px;
      max-width: 70%; }
    .header__search-block-desc {
      font-size: 12px;
      max-width: 30%; }
    .header__search-block-itemresult {
      width: 100%;
      font-size: 12px;
      line-height: 14px;
      padding-top: 6px;
      padding-bottom: 0px;
      padding-right: 60px;
      margin-bottom: 0px; }
    .header__search-block-itemlink {
      padding: 0 .1em 0 0;
      margin: 0;
      letter-spacing: -0.21px;
      line-height: 13px; }
    .header__search-block-ireswrapper {
      width: 100%;
      padding-right: 8px;
      padding-left: 14px;
      padding-top: 2px; }
    .header__search-block-itemlink:before {
      content: '';
      left: -13px;
      top: 11px;
      width: 6px;
      height: 6px; }
    .header__search-block-itemdesc {
      right: 0;
      bottom: 0;
      font-size: 11px;
      padding: 0 0 0 .2em;
      margin: 0; }
    .header__search-block-rub {
      padding-left: 2px; }
    .header__search-block-line {
      height: 1px;
      width: 100%;
      margin-top: 17px;
      margin-bottom: 15px; }
    .header__search-block-tottallink {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em;
      margin-left: 11px;
      padding-bottom: 2px;
      margin-bottom: 10px; }
    .header__spacer {
      display: block;
      height: 21px; }
    .header__top {
      height: 66px; }
    .header__bottom {
      height: 0px; }
    .header__right {
      padding-top: 18px; }
    .header__logo {
      width: 120px;
      height: 66px;
      margin: 0 5px;
      background-size: contain; }
    .header__catalog {
      height: 0px;
      font-size: 19px;
      line-height: 21px;
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      background-position: 21px center;
      padding: 12px 0px 12px 50px;
      letter-spacing: 0.6px; }
    .header__phone {
      font-weight: 500;
      font-size: 14px;
      line-height: 22px;
      letter-spacing: 0.2px; }
    .header__email {
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      padding-top: 0px;
      padding-left: 36px;
      letter-spacing: 0.4px; }
    .header__contacts {
      margin-top: 13px; }
    .header__personal {
      margin-top: -12px; }
    .header__register:before {
      content: '';
      width: 11px;
      height: 11px;
      margin-right: 7px; }
    .header__register {
      font-size: 12px;
      line-height: 14px;
      margin-top: 4px;
      white-space: nowrap; }
    .header__login:before {
      content: '';
      width: 12px;
      height: 12px;
      margin-right: 3px; }
    .header__login {
      font-size: 12px;
      line-height: 14px;
      margin-top: 4px;
      white-space: nowrap; }
    .header__search-block {
      margin-left: 0px;
      margin-top: 1px;
      padding-right: 15px; }
    .header__postponed-items {
      font-size: 11px;
      line-height: 17px;
      margin-left: -9px;
      width: 100%; }
    .header__postponed-items_link {
      padding: 7px 10px 7px 16px;
      letter-spacing: 0.5px; }
    .header__postponed-items_link:last-child {
      padding-right: 0px; }
    .header__basket {
      background-position: left 5px;
      padding: 11px 15px 11px 38px;
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      min-height: 35px;
      margin-top: 18px;
      background-size: 26px; }
    .header__basket_col {
      left: 12px;
      top: -2px;
      line-height: 18px;
      min-width: 18px;
      padding: 0 2px;
      height: 18px;
      white-space: nowrap;
      border-radius: 9px; }
    .header__sticky {
      display: none; }
  .footer {
    overflow: hidden;
    margin-top: 0px; }
    .footer__menu {
      border-bottom: 2px solid #c3d4dc;
      margin: 0 auto;
      width: 98%; }
    .footer__menu-first {
      text-align: center; }
    .footer__menu_link_first {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      vertical-align: middle;
      color: #f4f5f5;
      margin-left: 3px;
      padding: 23px 0px; }
    .footer__menu_link {
      font-size: 14px;
      line-height: 24px;
      padding: 0px 0px 5px; }
    .footer__menu-all {
      text-align: center;
      display: none;
      width: 100%;
      margin-bottom: 20px;
      /*  visibility: hidden;
      height: 0px;*/ }
    .footer__menu-all-active {
      display: block; }
    .footer__menu-active {
      color: #fb6a00; }
    .footer__menu-arrow-active {
      background: url(../img/arrow_up.svg) center 17px no-repeat !important; }
    .footer__menu-arrow {
      display: inline-block;
      width: 18px;
      background: url(../img/arrow_dn.svg) center 19px no-repeat;
      height: 15px;
      vertical-align: middle;
      cursor: pointer;
      margin-left: 9px;
      padding: 23px 0px; }
    .footer__wrappermnu {
      margin-top: 90px;
      border-top: 2px solid #c3d4dc; }
    .footer__phone {
      text-align: center;
      font-weight: 500;
      font-size: 19px;
      line-height: 29px;
      letter-spacing: 0.4px;
      margin-bottom: 4px; }
    .footer__email {
      text-align: center;
      font-weight: 500;
      font-size: 14px;
      line-height: 33px;
      letter-spacing: 0.4px;
      margin-top: 10px; }
    .footer__addr {
      text-align: center;
      font-size: 12px;
      line-height: 14px;
      margin-top: 15px; }
    .footer__addr br {
      display: none; }
    .footer__sm {
      margin-top: 77px;
      border-top: 2px solid #c3d4dc;
      padding-top: 20px;
      padding-bottom: 26px; }
    .footer__copyright {
      font-size: 12px;
      line-height: 17px; }
  .social_footer {
    display: block;
    margin-top: 37px;
    margin-bottom: 30px;
    text-align: center; }
  .social__link {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 0 14px; }
  .tega {
    margin-top: 21px;
    width: 101px;
    height: 45px;
    float: right;
    margin-right: 8px; }
  .qb {
    margin: 6px 0 9px;
    width: 125px;
    height: 24px; }
  .articles {
    padding-bottom: 0px;
    /*   &__all {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        border-bottom: 1px solid $accent_color4;
        margin-right: 20px;
        margin-top: 8px;
    }
    &__all:after {
        width: 7px;
        height: 10px;
        right: -18px;
        top: 7px;

    }
    &__all:hover {
    }
    */ }
    .articles_fullw {
      margin: 0px -15px; }
    .articles_half {
      width: 100%;
      padding: 42px 0px 42px; }
    .articles__title {
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      margin-bottom: 34px;
      margin-top: 20px; }
    .articles__article {
      margin-bottom: 36px;
      padding-left: 2px; }
    .articles__article-date {
      font-size: 10px;
      line-height: 12px;
      letter-spacing: 0.03em;
      padding: 4px 40px 1px 8px;
      min-width: 142px; }
    .articles__article-title {
      font-weight: 500;
      font-size: 14px;
      line-height: 19px;
      letter-spacing: 0em;
      margin-top: 20px; }
    .articles__article-text {
      font-size: 11px;
      line-height: 16px;
      letter-spacing: 0em;
      margin-top: 15px; }
    .articles__article-left {
      display: none; }
    .articles__article-right {
      width: 100%;
      margin-top: 2px; }
    .articles__hr {
      margin-top: 23px;
      width: 96%; }
    .articles__sections {
      display: block;
      padding: 0px 15px 15px; }
    .articles__sections:after {
      content: '';
      display: block;
      clear: both; }
    .articles__section {
      background-position: 4% center;
      margin-right: 26px;
      width: 100%;
      margin-bottom: 2px;
      background-size: 42px 46px; }
    .articles__txtwrapper {
      background: none;
      width: 100%;
      padding-left: 28%;
      padding-right: 3%;
      padding-top: 30px;
      padding-bottom: 30px; }
    .articles__section-title {
      font-weight: 500;
      font-size: 10px;
      line-height: 12px; }
    .articles__section-text {
      display: none; }
    .articles__section-hr {
      display: none; }
    .articles__h2 {
      font-size: 20px;
      line-height: 32px;
      letter-spacing: -0.02em;
      margin-bottom: 27px;
      padding-top: 28px; }
    .articles__white-wrapper {
      display: block;
      padding: 0px 30px 36px;
      background: #fff; }
    .articles__white-wrapper:after {
      content: '';
      display: block;
      clear: both; }
    .articles__mobile_text {
      display: block;
      line-height: 12px;
      padding-bottom: 21px; }
  .nicescroll-cursors {
    width: 3px !important; }
  .dxyoutube {
    padding: 28px 20px 38px 18px;
    margin: 0px -15px;
    width: calc(100% + 30px);
    /*  &__all {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        margin-right: 20px;
        margin-top: 0px;
    }
    &__all:after {
        width: 7px;
        height: 10px;
        right: -18px;
        top: 7px;

    }
    &__all:hover {
    }

    */ }
    .dxyoutube__title {
      font-size: 24px;
      line-height: 38px;
      letter-spacing: -0.02em; }
    .dxyoutube__text {
      display: none;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em;
      margin-top: 16px; }
    .dxyoutube__scroll {
      margin-top: 34px;
      margin-bottom: 5px;
      max-height: 248px;
      border-right: 2px solid #fff; }
    .dxyoutube__scroll-shadow:after {
      margin: 0 auto;
      width: 100%;
      z-index: 100;
      bottom: 0;
      height: 70px; }
    .dxyoutube__tube-img {
      border: 1px solid transparent;
      width: 28%;
      max-width: 140px;
      /*  max-height: 46px;*/ }
    .dxyoutube__tube-desc {
      padding-left: 21px;
      width: 72%; }
    .dxyoutube__tube {
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.02em;
      margin-bottom: 32px; }
  .link-all {
    font-size: 16px;
    line-height: 22px;
    margin-right: 20px;
    margin-top: 0px; }
    .link-all:after {
      width: 7px;
      height: 10px;
      right: -18px;
      top: 7px; }
  .mod1 .owl-nav {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    margin-top: 0px; }
  .mod1 .owl-prev {
    background-image: url(../img/slider_left_m.svg) !important;
    left: -30px;
    top: calc(50% - 12px);
    margin: 0 !important;
    width: 17px;
    height: 24px; }
  .mod1 .owl-next {
    background-image: url(../img/slider_right_m.svg) !important;
    right: -30px;
    top: calc(50% - 12px);
    margin: 0 !important;
    width: 17px;
    height: 24px; }
  .comments {
    padding-top: 38px;
    padding-bottom: 28px; }
    .comments__title {
      margin-left: 27px;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.03em; }
    .comments__slider {
      position: relative;
      width: 83%;
      margin: 20px auto 32px; }
    .comments__comment-wrapper {
      width: 100%; }
    .comments__comment {
      padding: 30px;
      height: 272px; }
    .comments__comment-text {
      font-size: 13px;
      line-height: 17px;
      letter-spacing: -0.02em;
      display: -webkit-box;
      -webkit-line-clamp: 9;
      -webkit-box-orient: vertical;
      overflow: hidden;
      letter-spacing: -0.02em;
      max-height: 160px; }
    .comments__comment-author {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      margin-top: 30px;
      margin-bottom: 10px; }
  .key {
    padding: 10px 15px; }
    .key__text {
      font-size: 14px;
      line-height: 14px; }
    .key_center-modal {
      width: 100%;
      margin: 54px auto 23px;
      max-width: 300px; }
    .key_form {
      display: block;
      width: 100%;
      max-width: 350px;
      padding: 10px 10px;
      margin: 30px auto 0px; }
  .map p {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.02em; }
  .map {
    width: 100%;
    background-color: #071C28;
    padding: 28px 7px 0px; }
    .map__title {
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      margin-bottom: 22px;
      margin-top: 12px; }
    .map__addr {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px; }
    .map__container {
      position: relative;
      width: 100%;
      height: 302px;
      margin-top: 57px; }
  .pagination {
    font-size: 18px;
    line-height: 21px;
    padding-bottom: 15px; }
    .pagination__link {
      padding: 4px 7px;
      margin: 0px 4px; }
    .pagination__current {
      padding: 4px 7px;
      margin: 0px 3px 0px 6px; }
    .pagination__separator {
      padding: 4px 7px;
      margin: 0px 2px; }
    .pagination_whitebg {
      margin: 0px -15px;
      background-color: #fff; }
  .contacts {
    margin-bottom: 17px; }
    .contacts__col {
      width: 100%; }
    .contacts p {
      margin-bottom: 1.9rem; }
    .contacts img {
      max-width: 100%; }
    .contacts__info {
      font-size: 13px !important;
      line-height: 19px !important;
      letter-spacing: -0.01em !important;
      padding-bottom: 0px !important; }
    .contacts__hr {
      margin-top: 23px;
      margin-bottom: 35px; }
  .rating {
    padding: 6px;
    margin-bottom: 40px; }
    .rating:after {
      display: block;
      content: '';
      clear: both; }
    .rating__wrapper {
      float: left;
      text-align: center; }
    .rating__wrapper:after {
      display: block;
      content: ''; }
    .rating__stars {
      float: none !important;
      margin-top: 8px; }
    .rating__img {
      max-width: 114px; }
    .rating__star {
      width: 20px;
      height: 20px;
      margin: 0px 1px 0px 1px; }
    .rating__startext {
      float: right;
      font-size: 12px;
      line-height: 15px;
      letter-spacing: 0.05em; }
    .rating__digits {
      display: inline-block;
      margin: 0 auto;
      float: none !important; }
    .rating__digit1 {
      font-weight: 500;
      font-size: 24px;
      line-height: 26px;
      letter-spacing: -0.03em;
      margin-top: 3px; }
    .rating__digit2 {
      font-weight: 500;
      font-size: 15px;
      line-height: 20px;
      top: 10px; }
    .rating__text {
      float: right;
      font-weight: 300;
      font-size: 14px;
      line-height: 15px;
      letter-spacing: -0.01em;
      margin-top: 16px;
      margin-left: 0px;
      margin-bottom: 9px; }
  .modal {
    padding: 43px 20px; }
    .modal__ok {
      width: 48px;
      margin: 24px auto 13px; }
    .modal__tnanks {
      width: 100%;
      font-weight: 500;
      font-size: 20px;
      line-height: 27px;
      letter-spacing: -0.02em;
      padding: 5px 18px 38px; }
  .modal .fancybox-close-small {
    right: 16px;
    top: 16px;
    padding: 3px; }
  .modal {
    padding: 20px 20px; }
    .modal__ok {
      width: 48px;
      margin: 24px auto 13px; }
    .modal__title {
      width: 100%;
      font-weight: 500;
      font-size: 20px;
      line-height: 27px;
      letter-spacing: -0.02em;
      padding: 15px 0px 39px; }
    .modal_favor {
      width: 100%;
      max-width: 320px;
      padding: 47px 0px 0px 0px !important;
      margin-bottom: 5px;
      margin-top: 5px; }
    .modal__header_success {
      margin-bottom: 28px; }
    .modal__header {
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      padding-top: 54px; }
    .modal__header:before {
      left: calc(50% - 25px);
      top: -8px;
      width: 50px;
      height: 50px; }
    .modal__gray {
      width: 100%;
      padding: 41px 57px; }
    .modal__white {
      width: 100%;
      padding: 29px 18px; }
    .modal__item {
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
      padding-bottom: 38px; }
    .modal__item_left {
      width: 100%;
      padding: 14px 58px 9px;
      margin: 0px 0px;
      border-right: none !important; }
    .modal__item_right {
      margin-top: 0px;
      width: 100%;
      padding: 0px 30px; }
    .modal__item-title {
      padding: 0px 15px;
      font-weight: normal;
      font-size: 13px;
      line-height: 18px;
      letter-spacing: -0.02em;
      margin-bottom: 2px; }
    .modal__item-text {
      display: none; }
    .modal__lwrapper {
      width: 100%;
      padding: 0px 15px; }
    .modal__lwrapper .item__price {
      margin-top: 0px;
      margin-bottom: 14px; }
    .modal__rwrapper {
      display: none; }
    .modal hr {
      display: none; }
    .modal__dotted-link {
      border-bottom: 1px dashed #f58014;
      font-weight: 500;
      font-size: 13px;
      line-height: 25px; }
    .modal__dotted-link_small {
      font-weight: 500;
      font-size: 14px;
      line-height: 31px;
      margin-left: 0px; }
    .modal__big-title {
      text-align: center;
      font-size: 28px;
      line-height: 26px;
      letter-spacing: -0.02em;
      margin-left: 0px;
      margin-bottom: 25px; }
    .modal__key {
      padding: 9px 6px !important;
      width: 100%;
      margin-top: 10px;
      margin-bottom: 10px; }
    .modal__slider {
      margin-top: 8px; }
    .modal__header_add {
      padding-left: 20px;
      padding-right: 20px; }
    .modal__item_right-add .item__price {
      margin-top: 16px;
      font-size: 22px; }
    .modal__item_right-add .item__old-price {
      left: 0px !important;
      top: -12px !important;
      font-size: 13px; }
    .modal__item_right-add .item__col {
      margin-left: 0px;
      padding-top: 6px; }
    .modal__rwrapper_add {
      display: block !important; }
    .modal__rwrapper .quantity {
      width: 49px;
      margin-right: 5px;
      float: left; }
    .modal__rwrapper .jq-selectbox__select {
      height: 26px;
      width: 92px;
      line-height: 23px;
      font-size: 9px; }
    .modal__rwrapper .jq-selectbox__select-text {
      width: 95%; }
    .modal__rwrapper .form__select_small {
      margin-left: 0px; }
    .modal__rwrapper .jq-selectbox__trigger-arrow {
      top: 5px; }
    .modal_add .modal__key {
      padding: 9px 8px !important;
      width: 100%;
      margin-top: 16px;
      margin-bottom: 10px;
      font-size: 14px;
      line-height: 14px;
      font-weight: 500; }
    .modal_add .modal__dotted-link {
      border-bottom: 1px solid #f58014;
      font-weight: 500;
      font-size: 13px;
      line-height: 42px; }
    .modal_add .modal__item {
      padding-bottom: 21px; }
  .form {
    width: 100%; }
    .form__suggestions {
      position: absolute;
      bottom: 0px;
      width: 80%; }
    .form p {
      font-weight: 300;
      font-size: 12px;
      line-height: 15px;
      letter-spacing: -0.01em;
      margin-top: 12px;
      margin-bottom: 3px; }
    .form__finded {
      box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
      border-radius: 2px;
      padding: 18px 22px;
      right: calc(0px - 170px);
      top: -9px;
      font-size: 12px;
      line-height: 14px; }
    .form__finded:before {
      right: 100%;
      top: 50%;
      border-width: 9px;
      margin-top: -9px; }
    .form__main-title {
      padding: 16px 0px;
      font-weight: 500;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em;
      /*border-top: 2px solid $white;
    border-bottom: 2px solid $white;*/ }
    .form__main-title-big {
      background-color: #fff;
      font-weight: bold;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      padding: 24px 85px 24px 19px;
      position: relative;
      text-align: left; }
    .form__title {
      font-weight: 400;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .form__title_small {
      font-size: 12px;
      line-height: 16px; }
    .form__checkbox {
      margin: -1px 10px 0 0;
      width: 16px;
      height: 16px; }
    .form__checkbox:not(checked) {
      opacity: 0; }
    .form__checkbox:checked + label {
      font-weight: 500; }
    .form__checkbox:not(checked) + label {
      padding: 12px 0 0 26px;
      font-weight: 300;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 3px; }
    .form__checkbox:not(checked) + label:before {
      top: 11px;
      left: 2px;
      width: 16px;
      height: 16px; }
    .form__radio-wrapper {
      padding: 0px 9px; }
    .form__radio {
      margin: -1px 10px 0 0;
      width: 16px;
      height: 16px; }
    .form__radio:not(checked) {
      opacity: 0; }
    .form__radio:checked + label {
      font-weight: 500; }
    .form__radio:not(checked) + label {
      padding: 10px 0 0 26px;
      font-weight: 300;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 3px; }
    .form__radio:not(checked) + label:before {
      top: 8px;
      left: 2px;
      width: 16px;
      height: 16px; }
    .form__key {
      padding: 11px 52px !important;
      margin: 20px auto 24px; }
    .form_modal {
      width: 100%;
      min-width: 280px;
      padding: 0px; }
    .form__errtext {
      top: 0%;
      left: 20px;
      font-size: 12px;
      line-height: 14px;
      white-space: normal; }
    .form__modal-input {
      width: 100%;
      font-size: 16px;
      line-height: 19px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid transparent;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
      padding: 14px 8px 14px 8px;
      margin-top: 54px;
      margin-bottom: 0px; }
    .form__modal-textarea {
      width: 100%;
      font-size: 16px;
      line-height: 19px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid #071C28;
      border-left: 1px solid #071C28;
      border-right: 1px solid #071C28;
      padding: 22px 10px 22px 10px;
      margin-top: 54px;
      margin-bottom: 20px;
      height: 145px; }
    .form__input {
      width: 100%;
      font-size: 12px;
      line-height: 19px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid transparent;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
      padding: 19px 8px 18px 8px;
      margin-top: 39px;
      margin-bottom: 0px; }
    .form__textarea {
      width: 100%;
      font-size: 16px;
      line-height: 19px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid #071C28;
      border-left: 1px solid #071C28;
      border-right: 1px solid #071C28;
      padding: 22px 10px 22px 10px;
      margin-top: 54px;
      margin-bottom: 20px;
      height: 145px; }
    .form__error {
      border: 1px solid #f45800;
      border-radius: 2px; }
    .form__modal-textarea-gray {
      width: 100%;
      font-size: 16px;
      line-height: 22px;
      border-radius: 3px;
      border-bottom: 1px solid #c3d4dc;
      border-top: 1px solid #c3d4dc;
      border-left: 1px solid #c3d4dc;
      border-right: 1px solid #c3d4dc;
      padding: 15px 22px 15px 22px;
      margin-top: 9px;
      margin-bottom: 33px;
      height: 85px; }
    .form__charact {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      padding-left: 25px;
      margin-top: 13px; }
    .form__charact:before {
      background-size: contain;
      left: 2px;
      top: 3px;
      width: 14px;
      height: 14px; }
    .form__radio-wrapper_v2 {
      position: relative;
      padding: 22px 0px 0px !important; }
    .form__radio_mh .form__radio_v2 + label {
      min-height: 27px;
      padding-top: 8px !important; }
    .form__radio_v2 + label {
      font-size: 13px !important;
      line-height: 15px !important;
      letter-spacing: 0.36px; }
    .form__radio_v2:not(checked) + label {
      padding: 9px 0 0 38px !important;
      margin-bottom: 8px !important; }
    .form__radio_v2:not(checked) + label:before {
      content: '';
      top: 8px !important;
      left: 0px !important;
      width: 20px !important;
      height: 20px !important; }
    .form__label-bold {
      font-weight: 500;
      font-size: 13px;
      line-height: 18px;
      letter-spacing: -0.01em;
      color: #000; }
    .form__label-light {
      font-weight: 300;
      font-size: 13px;
      line-height: 18px;
      letter-spacing: -0.01em;
      color: #828E95; }
    .form__addcargolink {
      font-size: 13px;
      line-height: 15px;
      padding: 0px 0px 3px 0px;
      margin-top: 8px;
      margin-left: 39px; }
    .form__addcargolink:before {
      top: 1px;
      left: -39px;
      width: 20px;
      height: 20px; }
    .form__input_v2 {
      padding: 12px 9px 12px 0px !important;
      margin-top: 18px !important;
      margin-bottom: 4px !important;
      font-size: 13px !important;
      line-height: 15px !important; }
    .form_hr {
      margin-top: 34px; }
    .form_h2 {
      text-transform: uppercase;
      margin-bottom: 39px !important; }
    .form_p {
      font-weight: 300;
      font-size: 14px;
      line-height: 17px;
      margin-bottom: 0px; }
    .form__btext {
      font-weight: 500;
      font-size: 13px;
      line-height: 15px;
      letter-spacing: 0.09px; }
    .form__btext_margins {
      margin-top: 14px;
      margin-bottom: 36px; }
    .form__btext_margin-top {
      margin-top: 14px; }
    .form__radio_mh {
      padding-bottom: 4px !important; }
  .score__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 10px 0px 0px; }
  .reviews {
    padding-top: 8px;
    margin-bottom: 30px; }
    .reviews__bigstars {
      margin-top: -3px; }
    .reviews__bigstars .form__errtext {
      top: 27px !important; }
    .reviews__bigstars_score {
      margin-top: 8px; }
    .reviews__star {
      width: 39px;
      height: 39px;
      margin: 0px 2px 5px; }
    .reviews__star_big {
      width: 21px;
      height: 21px;
      margin: 0px 4px 4px; }
    .reviews__startext {
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0.05em; }
    .reviews__digits {
      margin-left: 22px; }
    .reviews__digit1 {
      font-weight: 500;
      font-size: 50px;
      line-height: 59px;
      letter-spacing: -0.03em;
      margin-top: -5px; }
    .reviews__digit2 {
      font-weight: 500;
      font-size: 24px;
      line-height: 28px;
      top: 10px; }
    .reviews__title {
      font-weight: 500;
      font-size: 14px;
      line-height: 12px;
      margin-bottom: 8px; }
    .reviews__date {
      font-weight: 300;
      font-size: 13px;
      line-height: 14px;
      margin-bottom: 30px;
      float: left; }
    .reviews .item__stars {
      float: right;
      margin-top: -23px; }
    .reviews__item {
      margin-top: 30px; }
    .reviews__item-left {
      width: 34%; }
    .reviews__item-right {
      width: 66%;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em; }
    .reviews__hr {
      margin-top: 32px;
      margin-bottom: 34px;
      width: 77%; }
    .reviews__intotext {
      display: none; }
    .reviews__rtitle {
      font-weight: 500;
      font-size: 20px;
      line-height: 25px;
      letter-spacing: -0.02em;
      margin-top: 0px;
      margin-bottom: 27px; }
    .reviews__otitle {
      margin-top: 0px;
      font-size: 20px !important;
      line-height: 29px !important; }
    .reviews_tabs .reviews__bigstars {
      margin-top: 1px;
      margin-right: -3px; }
    .reviews_tabs .reviews__digits {
      margin-left: 33px;
      margin-top: 11px; }
    .reviews_tabs .reviews__digit2 {
      top: 3px; }
    .reviews_tabs .reviews__star {
      width: 29px;
      height: 29px;
      margin: 6px 6px 12px 0px; }
    .reviews_tabs .reviews__startext {
      font-size: 11px;
      line-height: 12px;
      letter-spacing: 0.01em; }
    .reviews_tabs .reviews__item {
      margin-top: 0px;
      margin-bottom: 47px; }
    .reviews_tabs .reviews__item-left {
      width: 100%; }
    .reviews_tabs .reviews__item-right {
      width: 100%;
      font-size: 13px;
      line-height: 19px;
      letter-spacing: -0.02em; }
    .reviews_tabs .reviews__item-left_questions {
      width: 100%; }
    .reviews_tabs .reviews__item-right_questions {
      width: 100%; }
    .reviews__pluses {
      font-weight: 500;
      font-size: 16px;
      line-height: 20px;
      margin-top: 30px;
      margin-bottom: 9px;
      margin-left: 30px; }
    .reviews__pluses:before {
      left: -38px;
      top: -4px;
      width: 30px;
      height: 30px; }
    .reviews__minuses {
      font-weight: 500;
      font-size: 16px;
      line-height: 20px;
      margin-top: 30px;
      margin-bottom: 9px;
      margin-left: 30px; }
    .reviews__minuses:before {
      left: -38px;
      top: -4px;
      width: 30px;
      height: 30px; }
    .reviews__question:before {
      /*  left: -38px;
        top: -4px;
        width: 30px;
        height: 30px;*/
      display: none; }
    .reviews__keywrap_t2 .key {
      display: block;
      min-width: 215px;
      padding: 12px 47px 10px;
      font-size: 14px;
      line-height: 22px;
      margin-bottom: 40px; }
    .reviews__item-left .key {
      padding: 10px 33px 9px; }
    .reviews__shopanswer {
      width: 95%;
      border-left: 2px solid #f58014;
      margin-top: 33px;
      margin-left: 10px;
      padding-left: 20px; }
    .reviews__shopanswer b {
      margin-bottom: 5px; }
    .reviews__intotext {
      font-size: 13px !important;
      line-height: 16px !important;
      letter-spacing: 0.035em !important;
      margin-bottom: 17px !important; }
  .addReview {
    display: block;
    margin-top: 33px;
    font-size: 15px;
    margin-bottom: 35px; }
  .fancybox-slide--html {
    padding: 0px !important; }
  .login {
    margin-top: -26px; }
  .bind {
    width: 85%; }
    .bind_full {
      width: 100%;
      margin-top: 30px;
      margin-bottom: 24px;
      margin-left: auto;
      margin-right: auto; }
    .bind_full .bind__social-wrapper {
      width: 80%;
      margin-top: 14px;
      margin-left: auto;
      margin-right: auto; }
    .bind_full .bind__social {
      width: 30.8%;
      margin-right: 3%;
      margin-top: 12px;
      padding: 0;
      color: transparent;
      border-color: transparent;
      min-width: auto; }
    .bind_full .bind__social:hover {
      background-color: transparent; }
    .bind_full .bind__social:hover .bind__social-icon {
      background-color: #f58014;
      color: #fff; }
    .bind_full .bind__social-icon {
      background-color: #f58014; }
    .bind__title {
      margin: 0 auto;
      font-size: 14px;
      margin-bottom: 30px; }
    .bind p {
      font-size: 12px;
      line-height: 15px;
      letter-spacing: -0.02em; }
    .bind__title:before, .bind__title:after {
      width: 100%;
      height: 1px; }
    .bind__title:before {
      margin-left: -100%;
      left: -11px; }
    .bind__title:after {
      margin-right: -100%;
      right: -11px; }
    .bind__social-wrapper {
      margin-top: 25px; }
    .bind__social {
      padding: 13px 40px 12px 76px;
      font-weight: 300;
      font-size: 18px;
      line-height: 15px;
      letter-spacing: -0.01em;
      margin-right: 45px;
      border-radius: 2px;
      min-width: 205px; }
    .bind__social:hover {
      transition: all 0.2s ease; }
    .bind__social-icon {
      top: 9px;
      left: 37px;
      width: 24px;
      height: 24px;
      border-radius: 4px;
      padding: 3px 1px 3px 0px; }
    .bind__social-icon-transparent {
      font-size: 24px;
      padding: 0px;
      margin-top: -2px; }
    .bind__social:last-child {
      margin-right: 0px; }
  .catsections {
    margin-bottom: 40px; }
    .catsections__section {
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
      margin-bottom: 2px;
      margin-top: 0px;
      padding: 5px 30px 5px 10px;
      height: 70px;
      min-height: 70px;
      border-radius: 2px;
      box-sizing: border-box;
      transition: all 0.3s ease; }
    .catsections__image {
      max-width: 26%;
      max-height: 60px; }
    .catsections__info {
      max-width: 74%;
      padding-top: 8px;
      padding-left: 8px; }
    .catsections__title {
      font-size: 14px;
      line-height: 15px;
      letter-spacing: -0.02em;
      margin-top: 4px;
      padding-right: 0px;
      max-height: 30px; }
    .catsections__col {
      font-size: 12px;
      line-height: 18px; }
    .catsections__keydown {
      top: 0px;
      right: 2px;
      z-index: 1;
      width: 22px;
      height: 100%; }
    .catsections__subsections {
      width: 100%;
      padding: 14px 7px 20px;
      top: 72px;
      left: 0;
      border-radius: 2px;
      box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
      font-size: 14px;
      line-height: 18px;
      z-index: 3; }
    .catsections__subsection {
      font-size: 14px;
      line-height: 18px;
      z-index: 2; }
    .catsections__subsections-col {
      margin-left: 4px; }
  .main-item-slider .owl-nav {
    display: none; }
  .main-item-slider .owl-dots {
    position: relative;
    width: 100%;
    margin-top: 8px; }
  .main-item-slider .owl-nav {
    margin-top: 7px; }
  .main-item-slider .owl-dot.active span {
    background: #071C28 !important;
    border: 2px solid #071C28; }
  .main-item-slider .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    margin: 4px 11px !important;
    border: 2px solid #071C28;
    border-radius: 50%;
    background-color: #edf2f5 !important; }
  .item {
    display: block;
    position: relative;
    float: left;
    background: #fff;
    box-sizing: border-box;
    width: 100%;
    height: 277px;
    padding: 42px 15px 41px 15px;
    margin-right: 30px;
    margin-bottom: 30px;
    border-radius: 3px;
    overflow: hidden;
    border: 2px solid #0a75b2; }
    .item:hover {
      border: 2px solid #0a75b2;
      position: relative;
      opacity: 1;
      transform: none;
      transition: all 0.2s ease;
      z-index: 2; }
    .item__image__wrapper {
      height: 100px; }
    .item__titlelink {
      height: 100%;
      padding-right: 12px; }
    .item_slider {
      border: none;
      padding: 42px 19px 41px 19px;
      height: 319px; }
    .item_slider:hover {
      border: none; }
    .item_slider .item__marks {
      top: 15px; }
    .item_slider .item__image {
      /*        float:right;
        margin-top: 7px;
        margin-right: 1px;*/
      margin: 7px auto;
      min-width: 113px; }
    .item__image-wrapper {
      width: 60%;
      float: right; }
    .item_slider h3 {
      font-style: normal;
      font-weight: 500 !important;
      font-size: 14px !important;
      line-height: 18px !important;
      letter-spacing: -0.02em;
      margin-top: 7px; }
    .item_slider .item__stars {
      margin-top: 10px; }
    .item_slider .item__star-full {
      width: 9px;
      height: 9px;
      margin-right: 1px;
      background-size: contain; }
    .item_slider .item__star-empty {
      width: 9px;
      height: 9px;
      margin-right: 1px;
      background-size: contain; }
    .item_slider .item__star-col {
      line-height: 8px;
      margin-top: 0px; }
    .item_slider .item__comments-col {
      font-size: 12px;
      line-height: 14px;
      margin-top: 9px;
      margin-left: 13px; }
    .item_slider .item__comments {
      height: 35px; }
    .item_slider .item__price {
      font-weight: 500;
      font-size: 26px;
      line-height: 31px;
      letter-spacing: -0.03em; }
    .item_slider .item__col {
      margin-left: -4px; }
    .item_slider-txt {
      font-style: normal;
      font-weight: normal;
      font-size: 14px !important;
      line-height: 19px !important;
      letter-spacing: -0.02em !important;
      margin-top: 3px;
      max-width: 90%; }
    .item_slider .item__key {
      width: 44.9% !important;
      background-image: none !important;
      padding: 10px 5px 10px 18px; }
    .item_slider .item__favor-compare {
      width: 55.1% !important; }
    .item_slider .key_text {
      display: inherit !important;
      font-weight: 500;
      font-size: 14px;
      line-height: 22px; }
    .item_slider .key_text img {
      width: 28px;
      display: inline !important; }
    .item__quick {
      position: inherit; }
    .item__quick:after {
      content: ''; }
    .item__comments {
      display: none; }
    .item h3 {
      font-weight: normal;
      font-size: 13px;
      line-height: 18px;
      letter-spacing: -0.02em;
      margin-bottom: 0px;
      max-height: 38px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; }
    .item p {
      display: none; }
    .item__mark {
      padding: 0 12px 0 20px; }
      .item__mark_sale {
        background: #0a75b2; }
        .item__mark_sale::after {
          border-color: #0a75b2 transparent transparent transparent; }
      .item__mark_hit {
        background: #0a75b2; }
        .item__mark_hit::after {
          border-color: #0a75b2 transparent transparent transparent; }
      .item__mark_recommendation {
        background: #0a75b2; }
        .item__mark_recommendation::after {
          border-color: #0a75b2 transparent transparent transparent; }
      .item__mark_new {
        background: #0a75b2; }
        .item__mark_new::after {
          border-color: #0a75b2 transparent transparent transparent; }
    .item__image {
      display: block;
      margin: 0 auto;
      max-width: 100px;
      max-height: 100px; }
    .item__title {
      padding-top: 15px; }
    .item__pq-quantity {
      display: none; }
    .item__old-price {
      display: none; }
    .item__price {
      position: relative;
      font-style: normal;
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      letter-spacing: -0.03em;
      color: #071C28;
      margin-top: 0px;
      margin-bottom: 17px; }
    .item__col {
      font-style: normal;
      font-weight: normal;
      font-size: 12px;
      line-height: 14px;
      color: #071C28;
      margin-left: 10px;
      padding-top: 13px;
      display: inline-block; }
    .item__bottom {
      position: absolute;
      bottom: 0px;
      left: 0px;
      width: 100%; }
    .item__bottom:after {
      content: '';
      display: block;
      clear: both; }
    .item__cart {
      display: block;
      float: left;
      width: 33.4%;
      height: 41px;
      background-color: #f58014;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url(../img/basket-mini.svg);
      cursor: pointer; }
    .item__cart:hover {
      transition: all 0.2s ease;
      background-color: #f45800; }
    .item__compare {
      display: block;
      float: left;
      width: 33.3%;
      height: 41px;
      background-color: #f4f5f5;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url(../img/compare-mini.svg);
      cursor: pointer; }
    .item__compare:hover {
      transition: all 0.2s ease;
      background-image: url(../img/compare-mini-hover.svg); }
    .item__favorites {
      display: block;
      float: right;
      width: 33.3%;
      height: 41px;
      background-color: #f4f5f5;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url(../img/favorites-mini.svg);
      cursor: pointer; }
    .item__favorites:hover {
      transition: all 0.2s ease;
      background-image: url(../img/favorites-mini-hover.svg); }
    .item__mobile-bottom {
      position: absolute;
      bottom: 0px;
      left: 0px;
      width: 100%; }
    .item__mobile-bottom {
      content: '';
      display: block;
      clear: both; }
    .item__mobile-bottom .item__key {
      display: block;
      float: left;
      width: 33.4%;
      height: 41px;
      background-color: #f58014;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url(../img/basket-mini.svg);
      cursor: pointer;
      border-radius: 0px; }
    .item__mobile-bottom .item__key:hover {
      transition: all 0.2s ease;
      background-color: #f45800; }
    .item__mobile-bottom .key_text {
      display: none; }
    .item__mobile-bottom .item__favor-compare {
      float: right;
      width: 66.6%; }
    .item__mobile-bottom .item__favor {
      display: block;
      text-indent: -9999px;
      float: right;
      width: 50%;
      height: 41px;
      background-color: #f4f5f5;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url(../img/favorites-mini.svg);
      cursor: pointer; }
    .item__mobile-bottom .item__favor:hover {
      transition: all 0.2s ease;
      background-image: url(../img/favorites-mini-hover.svg); }
    .item__mobile-bottom .item__compare {
      display: block;
      text-indent: -9999px;
      float: left;
      width: 50%;
      height: 41px;
      background-color: #f4f5f5;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url(../img/compare-mini.svg);
      cursor: pointer; }
    .item__mobile-bottom .item__compare:hover {
      transition: all 0.2s ease;
      background-image: url(../img/compare-mini-hover.svg); }
    .item__stars {
      margin-left: 0px; }
    .item__star-full {
      width: 16px;
      height: 16px; }
    .item__star-half {
      width: 16px;
      height: 16px; }
    .item__star-empty {
      width: 16px;
      height: 16px; }
    .item__star-col {
      font-size: 12px;
      line-height: 14px;
      margin-top: 3px;
      margin-left: 3px; }
  .sections__slider.mod2 .owl-stage-outer {
    margin-top: -24px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 20px; }
  .section-dx {
    border: 2px solid #0a75b2;
    border-radius: 2px;
    width: 92%;
    margin-left: 4%;
    padding: 28px 20px 45px 20px;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.02em;
    height: 228px; }
    .section-dx:hover {
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
      position: relative;
      opacity: 1;
      transform: scale(1.045);
      transition: all 0.2s ease;
      z-index: 1; }
    .section-dx:last-child {
      margin-right: 0px; }
    .section-dx__title {
      width: 100%;
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.02em;
      text-align: center; }
    .section-dx__image {
      display: block;
      margin: 0px auto 20px;
      width: 82px !important; }
    .section-dx .no-photo {
      width: 82px !important;
      height: 82px !important; }
  .bottom-slider {
    margin-bottom: 32px;
    margin-top: 3px;
    margin-left: 0px;
    letter-spacing: 0px;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0em;
    font-weight: bold; }
  .table-items {
    width: 100%;
    margin-top: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 28px;
    padding: 10px 0px 0px; }
    .table-items__cell_fixed .table-items__icons {
      width: 150px !important;
      padding-left: 15px;
      float: right; }
    .table-items__description h3 {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      margin-bottom: 30px;
      margin-top: 23px;
      letter-spacing: 0.02px;
      text-transform: none;
      padding-left: 13px; }
    .table-items__description p {
      font-size: 13px;
      line-height: 18px;
      letter-spacing: -0.02em;
      max-width: 97%;
      margin-bottom: 2.4em;
      padding-left: 13px; }
    .table-items__description hr {
      display: none; }
    .table-items__description-image {
      float: right;
      margin-left: 15px;
      margin-right: 15px;
      width: 66px;
      margin-top: -13px; }
    .table-items__description__container {
      overflow: initial; }
    .table-items__table {
      display: none;
      width: 100%; }
    .table-items__mobile {
      display: block;
      width: 100%; }
    .table-items__mobile-info {
      display: none;
      padding: 27px 15px; }
    .table-items__mobile-info:after {
      display: block;
      content: '';
      clear: both; }
    .table-items__mobile-info_active {
      display: block; }
    .table-items__mobile-title_active {
      box-shadow: 0px 2px 3px rgba(0, 51, 79, 0.3);
      color: #0a75b2; }
    .table-items__mobile-title {
      display: block;
      position: relative;
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.02em;
      padding-left: 5px;
      text-align: left;
      background-color: #fff;
      padding: 19px 35px 17px 15px;
      border-top: 2px solid #f4f5f5;
      cursor: pointer; }
    .table-items__mobile-item {
      display: block;
      font-weight: normal;
      font-size: 13px;
      line-height: 18px;
      letter-spacing: -0.02em;
      color: #828E95;
      padding: 4px 0px; }
    .table-items__mobile-halfitem {
      display: block;
      width: 50%;
      float: left;
      font-size: 13px;
      line-height: 13px;
      text-align: center;
      letter-spacing: -0.05em;
      text-align: left;
      font-weight: normal;
      margin-top: 28px; }
    .table-items__mobile-item-dark {
      color: #071C28;
      padding-left: 3px; }
    .table-items__cell-arrow {
      position: absolute;
      display: block;
      right: 0px;
      top: 0px;
      width: 35px;
      height: 100%;
      cursor: pointer;
      background-image: url(../img/arrow_dn_tbl.svg);
      background-repeat: no-repeat;
      background-position: center; }
    .table-items__cell-arrow_up {
      background-image: url(../img/arrow_up_tbl.svg); }
    .table-items__icons {
      width: 83%; }
    .table-items_cart {
      width: 100%;
      margin-top: 29px;
      margin-bottom: 10px;
      background-image: none;
      padding: 13px 17px; }
    .table-items_compare {
      width: 38px;
      height: 38px;
      background-color: #f4f5f5;
      margin-top: -6px;
      float: right;
      margin-right: 44px; }
    .table-items_favorites {
      width: 38px;
      height: 38px;
      background-color: #f4f5f5;
      margin-top: -6px; }
    .table-items__price {
      font-weight: 500;
      font-size: 22px;
      line-height: 26px; }
  .copy {
    display: none; }
  .filters {
    display: none;
    position: fixed;
    width: 100%;
    height: calc(100% - 80px);
    left: 0px;
    top: 0px;
    background-color: #edf2f5;
    z-index: 100;
    min-width: 350px; }
    .filters__spacer {
      display: block;
      height: 40px; }
    .filters__scroll {
      display: block;
      overflow-y: auto;
      padding-top: 40px;
      height: calc(100% - 80px); }
    .filters__mobile-bottom {
      position: absolute;
      bottom: -80px;
      left: 0px;
      background: #fff;
      width: 100%;
      height: 80px; }
    .filters_show {
      display: block; }
    .filters__close {
      display: block;
      position: absolute;
      right: 30px;
      top: 30px;
      z-index: 2; }
  .filters .form__main-title-big {
    margin-bottom: 0px; }
  .filters .form_gray {
    padding-top: 0px; }
  .filters .form__radio-wrapper {
    padding: 0px 19px; }
  .filters .form__group {
    margin: 0px 0px 20px 0px;
    max-width: 73%; }
  .filters .form__title {
    font-size: 14px;
    padding-right: 22px; }
  .filters .jq-selectbox {
    width: 73%; }
  .filters .form__checkbox:not(checked) + label {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 9px; }
  .filters .form__main-title {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    padding: 16px 20px; }
  .filters .form__key {
    float: left;
    margin: 22px 22px;
    padding: 7px 58px !important;
    font-size: 14px;
    line-height: 22px; }
  .filters .info_small {
    display: block;
    float: right;
    font-weight: normal;
    font-size: 12px !important;
    line-height: 19px !important;
    overflow: hidden;
    width: 55px;
    white-space: nowrap;
    margin-right: 16px;
    margin-top: 35px; }
  .detail-item {
    padding-top: 0px; }
    .detail-item_comments-mobile {
      display: block;
      margin-top: 20px;
      margin-top: 21px;
      margin-left: 5px; }
    .detail-item_comments-mobile .item__star-col {
      font-size: 12px;
      line-height: 14px;
      margin-left: 2px; }
    .detail-item_comments-mobile .item__comments-col {
      font-size: 13px;
      line-height: 15px;
      float: right; }
    .detail-item_comments-mobile .item__star-full {
      background-size: contain;
      width: 10px;
      height: 10px;
      margin-top: 1px; }
    .detail-item_comments-mobile .item__star-half {
      background-size: contain;
      width: 10px;
      height: 10px;
      margin-top: 1px; }
    .detail-item_comments-mobile .item__star-empty {
      background-size: contain;
      width: 10px;
      height: 10px;
      margin-top: 1px; }
    .detail-item__picwrapper {
      max-width: 335px;
      margin: 32px auto 0 auto; }
    .detail-item__mainwrapper {
      margin-left: 0px; }
    .detail-item h1 {
      display: none; }
    .detail-item__cpwrapper {
      /*margin-left: -30px;*/
      margin-right: 0px; }
    .detail-item__preview {
      display: none; }
    .detail-item__favor-compare {
      margin-top: 6px; }
    .detail-item__favor {
      text-indent: -99999px;
      padding-left: 0px;
      margin-right: 0px;
      background-size: 20px;
      background-position: center;
      width: 38px;
      height: 38px;
      background-color: #f4f5f5;
      margin-right: 8px;
      float: right; }
    .detail-item__favor:hover {
      background-size: 18px;
      background-position: center;
      background-color: #f4f5f5;
      cursor: pointer; }
    .detail-item__compare {
      text-indent: -99999px;
      padding-left: 0px;
      background-size: 18px;
      background-position: center;
      width: 38px;
      height: 38px;
      background-color: #f4f5f5;
      float: left;
      margin-left: 8px; }
    .detail-item__compare:hover {
      background-size: 18px;
      background-position: center;
      background-color: #f4f5f5;
      cursor: pointer; }
    .detail-item__chars {
      display: none; }
    .detail-item__char {
      border-bottom: 1px solid #071C28;
      margin-bottom: 7px; }
    .detail-item__char-title {
      font-weight: 300;
      font-size: 12px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .detail-item__char-desc {
      font-size: 12px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .detail-item__morechar {
      font-size: 13px;
      line-height: 19px;
      letter-spacing: -0.02em;
      border-bottom: 1px solid #f58014;
      margin: 17px auto 0px;
      width: 123px; }
    .detail-item__morechar:after {
      display: none; }
    .detail-item_comments {
      margin-top: 0px !important; }
    .detail-item_price {
      /*   font-size: 40px !important;*/
      line-height: 55px;
      margin-top: 12px;
      margin-bottom: 7px;
      letter-spacing: 0em; }
    .detail-item_price .item__col {
      /*   font-size: 36px;*/
      font-size: 60%;
      line-height: 43px;
      margin-left: -3px;
      padding-bottom: 0px; }
    .detail-item_key {
      width: 100%;
      padding: 8px !important;
      font-weight: 500;
      font-size: 16px;
      line-height: 25px;
      letter-spacing: 0em; }
    .detail-item_key img {
      display: inline-block;
      width: 23px; }
    .detail-item__howwrap {
      margin-top: 13px; }
    .detail-item__how {
      padding: 2px 0px 2px 18px;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .detail-item__how:before {
      width: 12px;
      height: 12px;
      left: 0px;
      top: 5px;
      background-size: 12px; }
    .detail-item__optslide {
      display: block;
      margin: 14px auto;
      border-bottom: 1px solid #f58014;
      padding-bottom: 3px;
      position: relative;
      font-style: normal;
      font-weight: normal;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.02em;
      color: #f58014;
      cursor: pointer;
      width: 95px; }
    .detail-item__optslide:after {
      position: absolute;
      right: -14px;
      top: 8px;
      content: '';
      display: block;
      width: 10px;
      height: 6px;
      background: url(../img/opt_d.svg) no-repeat center; }
    .detail-item__optslide_open:after {
      background: url(../img/opt_u.svg) no-repeat center; }
    .detail-item__optwrap {
      display: none;
      margin-top: 0px;
      margin-bottom: 13px;
      user-select: none; }
    .detail-item__optwrap_mobileshow {
      display: block !important; }
    .detail-item__opttitle {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: 0.02em;
      margin-bottom: 12px; }
    .detail-item__optprice {
      border-bottom: 2px dotted #828E95;
      height: 14px;
      margin-bottom: 6px; }
    .detail-item__optdesk {
      font-size: 11px;
      line-height: 20px;
      letter-spacing: -0.02em;
      padding-right: 8px; }
    .detail-item__optcost {
      font-size: 12px;
      line-height: 20px;
      letter-spacing: -0.02em;
      padding-left: 8px; }
    .detail-item__picslider {
      max-width: 300px;
      max-height: 58px;
      margin: 15px auto 0px auto; }
    .detail-item__picslider .owl-stage-outer {
      max-height: 58px;
      height: 58px; }
    .detail-item__picslide {
      box-sizing: border-box;
      width: 58px;
      height: 58px;
      border: none; }
    .detail-item__picolay {
      opacity: 0.3; }
    .detail-item__videolider {
      display: none !important; }
    .detail-item__videoslide {
      width: 100%;
      height: 67px; }
    .detail-item__videopic {
      margin-right: 5px;
      max-width: 83px; }
    .detail-item__videopic:before {
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px; }
    .detail-item__videostxt {
      font-size: 12px;
      line-height: 14px;
      width: calc(100% - 100px); }
    .detail-item__mtitle {
      display: block;
      font-weight: 500;
      font-size: 22px;
      line-height: 32px;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      margin-top: 33px; }
  .tabs {
    padding: 0;
    margin: 28px auto;
    margin-right: -15px;
    margin-left: -15px; }
    .tabs_fake {
      /*   margin: -30px -15px 0px !important;*/
      margin: 0px auto 28px auto; }
    .tabs_fakewrapper {
      background-color: #edf2f5;
      padding-bottom: 33px; }
    .tabs_fakewrapper:before {
      content: '';
      display: block;
      clear: both; }
    .tabs_fakewrapper .personal .catalog-personal .item__mobile-bottom .item__compare {
      width: 50% !important; }
    .tabs_main {
      margin-bottom: 0px; }
    .tabs_main .tabs__key {
      width: 100%; }
    .tabs__mobhidden {
      display: none !important; }
    .tabs__mobshow {
      display: block !important; }
    .tabs__key {
      width: 100%;
      /* padding: 0px 15px;*/
      margin-bottom: 0px; }
    .tabs__over {
      display: block;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      text-align: left; }
    .tabs__visible {
      transition-property: none;
      font-weight: bold;
      font-size: 24px;
      line-height: 32px;
      padding: 21px 60px 21px 21px;
      border-bottom: 2px solid #fff;
      background-image: url(../img/detail-mobile-down.svg);
      background-repeat: no-repeat;
      background-position: calc(100% - 28px) calc(50% + 4px); }
    .tabs__visible:hover {
      background-image: url(../img/detail-mobile-down-dark.svg);
      background-repeat: no-repeat;
      background-position: calc(100% - 28px) calc(50% + 4px);
      font-weight: bold;
      /*  border-top: 2px solid #818e95;
        border-left: 2px solid #818e95;
        border-right: 2px solid #818e95;
        border-bottom: 2px solid #818e95;    */ }
    .tabs__tab-content {
      width: 100%;
      padding: 25px 21px;
      /* padding: 18px 80px;
       border: 2px solid #818e95;*/ }
    .tabs [id^="tab"]:checked + .tabs__key .tabs__visible {
      font-weight: bold;
      transition-property: none;
      padding: 21px 60px 21px 21px;
      background-image: url(../img/detail-mobile-up.svg);
      background-repeat: no-repeat;
      background-position: calc(100% - 28px) calc(50% + 4px);
      border-bottom: 2px solid #fff; }
    .tabs__active .tabs__visible {
      font-weight: bold;
      transition-property: none;
      padding: 21px 60px 21px 21px;
      background-image: url(../img/detail-mobile-up.svg);
      background-repeat: no-repeat;
      background-position: calc(100% - 28px) calc(50% + 4px);
      border-bottom: 2px solid #fff;
      background-color: #f4f5f5;
      color: #071C28; }
    .tabs__active .tabs__visible:after {
      width: 100%;
      height: 4px;
      bottom: -4px;
      left: 0px;
      display: none; }
    .tabs [id^="tab"]:checked + .tabs__key .tabs__visible:after {
      width: 100%;
      height: 4px;
      bottom: -4px;
      left: 0px;
      display: none; }
    .tabs h2 {
      font-size: 16px;
      line-height: 19px;
      margin-bottom: 29px;
      letter-spacing: 0; }
    .tabs p {
      font-size: 15px;
      line-height: 19px;
      letter-spacing: -0.02em;
      margin-bottom: 17px; }
  .file {
    padding-left: 52px;
    height: 42px;
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 30px;
    margin-top: 5px;
    max-width: 80%; }
  .accord {
    margin-top: 0px;
    margin-bottom: 32px; }
    .accord__title {
      font-size: 16px;
      line-height: 19px;
      letter-spacing: -0.02em;
      margin: 0px; }
    .accord__clop {
      text-indent: -99999px;
      font-size: 12px;
      line-height: 14px;
      padding-right: 35px;
      margin-top: 5px;
      margin-left: 0px; }
    .accord__clop:after {
      width: 16px;
      height: 10px;
      right: 0px;
      top: 2px; }
    .accord__data {
      margin-top: 3px; }
    .accord .chars {
      background: rgba(195, 212, 220, 0.5);
      padding: 1px 30px;
      margin-right: -30px;
      margin-left: -30px; }
  .chars {
    background: rgba(195, 212, 220, 0.5);
    padding: 5px 66px 40px; }
    .chars__title {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      letter-spacing: -0.01em;
      margin-top: 26px;
      margin-bottom: 17px; }
    .chars__item {
      border-bottom: 2px solid #071C28;
      padding: 11px 0px 2px; }
    .chars__name {
      width: 100%;
      float: none;
      padding: 0 12px;
      font-size: 14px;
      line-height: 19px;
      letter-spacing: -0.02em; }
    .chars__value {
      width: 100%;
      float: none;
      font-weight: 300;
      padding: 0 12px;
      text-align: left;
      font-size: 14px;
      line-height: 19px;
      letter-spacing: -0.02em; }
  .image {
    max-width: 100%; }
  .description iframe {
    width: 100% !important; }
  .compatible__nav {
    margin-bottom: 15px;
    margin-top: 0px; }
  .compatible__nav-item:hover {
    background-color: transparent; }
  .compatible__nav-item {
    background-color: transparent;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: -0.05em;
    border-radius: 2px;
    margin-top: 8px;
    margin-bottom: 3px;
    width: 100%;
    padding-left: 12px; }
  .compatible__col {
    color: #0a75b2;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.02em;
    margin-left: 10px; }
  .compatible__nav-item_active {
    font-weight: 500;
    font-size: 16px !important;
    line-height: 18px !important;
    letter-spacing: -0.02em;
    color: #0a75b2;
    background-color: transparent;
    padding-left: 0px; }
  .mod4 .owl-nav {
    margin-top: 0px; }
  .mod4 .owl-prev {
    padding: 0 !important;
    width: 15px;
    height: 25px;
    left: -18px;
    top: -49px;
    width: 15px;
    height: 25px; }
  .mod4 .owl-next {
    padding: 0 !important;
    width: 15px;
    height: 25px;
    right: -18px;
    top: -49px;
    width: 15px;
    height: 25px; }
  .mini-items {
    text-align: center;
    margin-left: -30px;
    margin-right: -30px; }
  .owl-carousel .mini-item {
    min-width: 188px; }
  .mini-item {
    float: none;
    display: inline-block;
    width: 224px;
    padding: 20px 10px 41px 10px;
    margin-right: 30px;
    margin-bottom: 30px;
    border-radius: 3px;
    border: 2px solid #0a75b2;
    /*    &__image {
      &__wrapper {
        height: 100px;

        &_outer {
          height: 100px;
        }

        &_inner {
          img, .no-photo {
            max-height: 100px;
          }
        }
      }
    }*/ }
    .mini-item_t2 {
      width: 144px;
      margin: 15px; }
    .mini-item_t3 {
      padding: 3px 0px 3px 0px;
      width: 100%;
      margin: 1px;
      border: none; }
    .mini-item_t3 .mini-item__bottom {
      right: 0px;
      left: auto;
      width: 46%; }
    .mini-item_t3 .mini-item__link {
      display: block; }
    .mini-item_t3 .mini-item__link:after {
      content: '';
      display: block;
      clear: both; }
    .mini-item_t3 .item__marks {
      display: none; }
    .mini-item_t3 .mini-item__image {
      float: left;
      max-width: 22%;
      margin: 0px; }
    .mini-item_t3 .mini-item__title {
      padding: 4px 18px;
      font-weight: 500;
      font-size: 20px;
      line-height: 18px;
      letter-spacing: -0.02em;
      float: right;
      width: 78%; }
    .mini-item_t3 .mini-item__price {
      margin-bottom: 2px;
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      padding-left: 13px;
      padding-top: 3px; }
    .mini-item_t3 .mini-item__cart {
      width: 40.4%;
      height: 31px; }
    .mini-item_t3 .mini-item__compare {
      width: 20%;
      float: right;
      height: 31px; }
    .mini-item_t3 .mini-item__favorites {
      width: 20%;
      float: right;
      margin-right: 2px;
      height: 31px; }
    .mini-item_t3 .mini-item__bottom {
      background: #f4f5f5; }
    .mini-item__imghref {
      max-height: 100px; }
    .mini-item__image__wrapper {
      height: 100px; }
      .mini-item__image__wrapper_outer {
        display: table;
        width: 100%;
        height: 100%; }
      .mini-item__image__wrapper_inner .no-photo {
        display: block;
        margin: 0 auto;
        max-height: 100px; }
      .mini-item__image__wrapper_inner img {
        max-height: 100px !important;
        width: auto !important;
        max-width: 100%; }
    .mini-item_t2 .mini-item__image {
      max-width: 75%;
      margin: 27px auto 0px; }
    .mini-item__title {
      margin-top: 9px;
      margin-bottom: 0px; }
    .mini-item_t2 .mini-item__title {
      margin: 7px 0px 0px 7px;
      max-width: 100%;
      text-align: left;
      font-weight: normal; }
    .mini-item_t2 .copy {
      right: -5px;
      top: 0px; }
    .mini-item__price {
      text-align: left;
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      letter-spacing: -0.03em;
      margin-top: 0px;
      margin-bottom: 17px; }
    .mini-item_t2 .mini-item__price {
      font-size: 17px;
      line-height: 31px;
      margin-left: 7px;
      margin-bottom: 18px;
      text-align: left; }
    .mini-item__col {
      font-size: 12px;
      line-height: 14px;
      margin-left: -3px;
      padding-top: 14px; }
    .mini-item_t2 .mini-item__col {
      margin-left: 5px; }
    .mini-item__bottom {
      bottom: 0px;
      left: 0px;
      width: 100%; }
    .mini-item__cart {
      width: 33.4%;
      height: 41px; }
    .mini-item__cart:hover {
      transition: all 0.2s ease; }
    .mini-item__compare {
      width: 33.3%;
      height: 41px; }
    .mini-item__favorites {
      width: 33.3%;
      height: 41px; }
  .compare {
    background: rgba(195, 212, 220, 0.3); }
    .compare__mobtitle {
      margin-bottom: 0px;
      margin-top: 13px;
      font-weight: 500;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .compare__title {
      display: none; }
    .compare__paramslinks {
      /*      margin-top: 69px;*/
      margin-top: 106px;
      max-width: 110px; }
    .compare__paramlink {
      display: block;
      float: left !important;
      font-size: 11px;
      line-height: 19px;
      letter-spacing: -0.02em;
      margin-top: 12px; }
    .compare__table {
      margin-right: -15px;
      margin-top: 5px; }
    .compare__thead {
      font-weight: 500;
      font-size: 13px;
      line-height: 15px;
      letter-spacing: -0.02em;
      padding: 4px 1px;
      margin-bottom: 4px;
      margin-top: 38px;
      -moz-hyphens: auto;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      word-break: break-all; }
    .compare__thitem {
      font-weight: 500;
      font-size: 11px;
      line-height: 22px;
      letter-spacing: -0.03em;
      border-bottom: 1px solid #071C28;
      margin-right: 13px;
      padding: 10px 10px 11px 0px; }
    .compare__area {
      width: calc(100% + 30px);
      margin-right: -15px;
      margin-left: -15px; }
    .compare__control {
      display: none; }
    .compare__col {
      width: 100%;
      padding-top: 15px;
      /*      max-width: 112px;*/
      max-width: 31vw;
      margin-bottom: 23px;
      margin-right: 3px;
      margin-left: 3px; }
    .compare__col:last-child {
      margin-right: 0px; }
    .compare_close {
      display: none; }
    .compare__tablecol {
      margin-top: -77px; }
    .compare__colhead {
      height: 46px;
      margin-bottom: 4px;
      margin-top: 48px; }
    .compare__item {
      font-size: 11px;
      line-height: 16px;
      letter-spacing: -0.02em;
      border-bottom: 1px solid #c3d4dc;
      /*      padding: 10px 10px 11px 0px;
            margin-right: 15px;*/
      padding: 10px 0px 11px 5px;
      overflow: hidden; }
    .compare_mini-item {
      margin: 0 auto !important;
      width: 100% !important;
      padding: 20px 4px 36px 4px;
      display: block;
      border: none; }
    .compare_mini-item .item__image {
      margin-top: 0px;
      max-width: 56%; }
    .compare_mini-item .mini-item__title {
      padding: 0px;
      font-size: 12px;
      line-height: 14px; }
    .compare_mini-item .mini-item__price {
      font-size: 14px;
      margin-top: 1px;
      margin-left: 3px;
      margin-bottom: 0px; }
    .compare_mini-item .mini-item__col {
      padding-top: 4px; }
    .compare_mini-item .mini-item__cart {
      height: 27px;
      background-size: 16px; }
    .compare_mini-item .mini-item__compare {
      height: 27px;
      background-size: 16px; }
    .compare_mini-item .mini-item__favorites {
      height: 27px;
      background-size: 16px; }
    .compare__btn {
      width: 27px;
      height: 43px; }
    .compare__btn_prev {
      margin-right: 4px; }
    .compare__btn_next {
      margin-left: 4px; }
  .main-slider {
    max-width: 97%;
    margin: 0 auto; }
    .main-slider__mobile-mask {
      display: block;
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      background: #17577B;
      opacity: 0.6;
      z-index: 1; }
    .main-slider .owl-dots {
      position: relative;
      width: 100%;
      margin-top: 16px; }
    .main-slider .owl-dot.active span {
      background: #071C28 !important;
      border: 2px solid #071C28; }
    .main-slider .owl-dot span {
      width: 12px !important;
      height: 12px !important;
      margin: 4px 16px !important;
      border: 2px solid #071C28;
      border-radius: 50%; }
    .main-slider__header {
      position: relative;
      width: 100%;
      font-style: normal;
      font-weight: bold;
      font-size: 24px;
      line-height: 32px;
      text-align: center;
      letter-spacing: -0.02em;
      z-index: 2; }
    .main-slider__text {
      display: none; }
    .main-slider__key {
      position: relative;
      margin: 23px auto 10px;
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      border-radius: 2px;
      font-weight: 500;
      font-size: 14px;
      line-height: 15px;
      padding: 5px 45px 6px 24px;
      background-position: 92% center;
      max-width: 48%;
      z-index: 2; }
  .stickers {
    display: none; }
  .personal {
    padding-bottom: 27px;
    padding-top: 42px; }
    .personal h2 {
      letter-spacing: -0.03em;
      margin-top: -3px;
      margin-bottom: 0px; }
    .personal hr {
      margin-top: 36px;
      margin-bottom: 37px; }
    .personal .form__input {
      width: 72%;
      background-color: #edf2f5;
      margin-top: 15px;
      margin-bottom: 6px;
      padding: 16px 8px 16px 8px; }
    .personal .form__change {
      margin-top: 35px;
      font-size: 12px;
      line-height: 14px;
      padding-left: 27px; }
    .personal__reitem {
      background-color: #edf2f5;
      margin-top: 31px;
      width: 100%; }
    .personal__reitem-left {
      width: 100%;
      padding: 10px 20px; }
    .personal__reitem-right {
      width: 100%;
      padding: 84px 22px 22px; }
    .personal__date {
      left: 20px;
      top: 32px;
      font-weight: 500;
      font-size: 16px;
      line-height: 19px; }
    .personal__bigstars {
      right: 19px;
      top: 27px; }
    .personal__star {
      width: 27px;
      height: 27px;
      margin: 0px 1px 5px; }
    .personal__text {
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .personal_key {
      padding: 14px 99px !important;
      width: 100%;
      font-size: 14px;
      max-width: 315px;
      margin: 39px auto 0px;
      display: block; }
    .personal__toggle-key {
      font-size: 18px;
      line-height: 21px;
      padding: 30px 0px 0px; }
    .personal__toggle-key:after {
      width: 11px;
      height: 8px;
      margin-left: 25px; }
    .personal__add-goods {
      margin: -5px 0px 38px;
      width: 240px;
      padding: 7px 45px !important;
      font-weight: 500;
      font-size: 14px;
      line-height: 15px; }
    .personal .item {
      width: 100%;
      margin-bottom: 30px; }
    .personal .item__pq-wrapper {
      padding: 0px 0px; }
    .personal .item p {
      font-size: 14px;
      line-height: 19px;
      letter-spacing: -0.02em;
      margin-bottom: 25px; }
    .personal .item__compare {
      float: left; }
    .personal .close {
      display: none; }
    .personal .catalog-personal .item__mobile-bottom .item__compare {
      width: 100%; }
  .mobilecontainer {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto; }
  .cargo {
    width: 89%;
    margin: 22px auto; }
    .cargo h2 {
      font-size: 23px;
      line-height: 26px; }
    .cargo hr {
      margin-top: 26px !important;
      margin-bottom: 0px !important; }
    .cargo .form__input {
      width: 85%;
      background-color: #fff;
      margin-top: 34px;
      margin-bottom: 2px; }
    .cargo__add {
      background: #fff;
      border: 1px solid #c3d4dc;
      box-sizing: border-box;
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
      margin-top: 0px;
      padding: 24px 10px 24px 61px; }
    .cargo__add:after {
      left: 21px;
      top: 22px;
      width: 18px;
      height: 18px;
      background-size: contain !important; }
    .cargo__hidden-container {
      margin-top: 0px; }
    .cargo__item {
      margin: 0px 0px 19px; }
    .cargo__toggle-key {
      padding: 24px 60px 24px 20px; }
    .cargo__toggle-key .cargo__title {
      font-weight: 500; }
    .cargo__toggle-key:after {
      right: 20px;
      top: 19px;
      width: 22px;
      height: 22px; }
    .cargo__title, .cargo__text {
      font-size: 13px;
      line-height: 15px; }
    .cargo__text__title_alt {
      font-weight: normal;
      margin-bottom: 0px;
      margin-top: 65px; }
    .cargo__toggle-key_opened .cargo__title {
      font-weight: 400; }
    .cargo__toggler {
      margin-top: 0px;
      padding: 25px 5px;
      position: relative; }
  .basket {
    margin-bottom: 25px; }
    .basket__head {
      padding-bottom: 0px;
      border-bottom: none; }
    .basket__hcol {
      font-size: 12px;
      line-height: 114%;
      letter-spacing: -0.055em; }
    .basket__hcol:nth-child(1) {
      width: 50%; }
    .basket__hcol:nth-child(2) {
      width: 50%; }
    .basket__hcol:nth-child(3) {
      display: none; }
    .basket__hcol:nth-child(4) {
      display: none; }
    .basket__hcol:nth-child(5) {
      display: none; }
    .basket__hcol:nth-child(6) {
      display: none; }
    .basket__checkbox {
      margin: -1px 10px 0 0;
      width: 20px;
      height: 20px; }
    .basket__checkbox:not(checked) + label {
      padding: 0px 0 0 34px;
      font-size: 12px;
      line-height: 114%;
      letter-spacing: -0.055em;
      margin-left: 0px;
      min-height: 20px; }
    .basket__checkbox:not(checked) + label:before {
      top: -3px;
      left: 2px;
      width: 20px;
      height: 20px; }
    .basket__garbage {
      width: 20px;
      height: 20px;
      margin-left: 8px; }
    .basket__tooltip::before {
      right: 100%;
      top: 50%;
      border-width: 7px;
      margin-top: -7px; }
    .basket__tooltip {
      display: none !important; }
    .basket__item {
      position: relative;
      padding: 5px 35px 0px 55px;
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
      margin: 10px 0px 20px; }
    .basket__col:nth-child(1) {
      width: 35px;
      float: none !important;
      position: absolute;
      right: 9px;
      top: 0px;
      bottom: 0px; }
    .basket__col:nth-child(2) {
      width: 58px;
      float: none !important;
      padding: 12px 0px 0px 0px;
      position: absolute;
      left: 0px;
      top: 0px; }
    .basket__col:nth-child(3) {
      width: 100%;
      padding-left: 25px; }
    .basket__col:nth-child(4) {
      display: none; }
    .basket__col:nth-child(5) {
      width: 100%; }
    .basket__col:nth-child(6) {
      width: 100%; }
    .basket__wrap {
      position: absolute; }
    .basket__wrap:first-child {
      bottom: 0px;
      right: -6px;
      width: 100%; }
    .basket__wrap:last-child {
      top: 0px;
      right: 0px; }
    .basket__wrap:after {
      display: block;
      content: '';
      clear: both; }
    .basket__wrap label {
      margin-left: 0px !important;
      margin-top: 13px;
      padding: 0px 10px !important; }
    .basket__wrap .close {
      margin: 10px auto 0px; }
    .basket__img {
      max-width: 100%; }
    .basket__title {
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 0px;
      margin-top: 9px;
      margin-left: 8px; }
    .basket__favor-compare {
      position: absolute;
      left: 5px;
      bottom: 11px;
      margin-top: 0px;
      margin-left: 0px; }
    .basket__favor {
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding: 9px;
      margin-right: 17px; }
    .basket__compare {
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding: 9px;
      margin-right: 18px; }
    .basket__col .item__stars {
      display: none; }
    .basket__col .item__price {
      font-size: 16px;
      margin-top: 0px;
      margin-bottom: 0px;
      line-height: 29px;
      margin-left: 4px; }
    .basket__col .item__old-price {
      margin-top: 25px;
      left: 0px;
      top: 0px; }
    .basket__col .modal__rwrapper {
      margin-top: 11px;
      padding-left: 33px;
      float: left; }
    .basket__col .modal__rwrapper .quantity {
      margin-right: 8px;
      float: left; }
    .basket__col .modal__rwrapper .jq-selectbox {
      float: right; }
    .basket__cost {
      font-weight: 500;
      font-size: 20px;
      line-height: 38px;
      letter-spacing: -0.03em;
      text-align: left;
      padding-left: 33px; }
    .basket__bottom {
      font-size: 15px;
      line-height: 26px;
      letter-spacing: -0.03em; }
    .basket__text-cost {
      margin-top: 30px; }
    .basket__text-discount {
      margin-top: 2px; }
    .basket__text-total {
      font-weight: 500;
      font-size: 21px;
      line-height: 28px;
      letter-spacing: -0.03em;
      margin-top: 2px; }
    .basket__key {
      padding: 11px 53px !important;
      margin-top: 33px !important;
      font-size: 17px;
      line-height: 22px; }
    .basket__body {
      padding-bottom: 20px; }
  .mobilemb20 {
    margin-bottom: 20px; }
  .search-results hr {
    margin-top: 34px;
    margin-bottom: 28px; }
  .search-results__section {
    width: 100%;
    margin: 0px 0px 29px; }
  .search-results__sectpic {
    width: 15%; }
  .search-results__text {
    width: 85%; }
  .search-results__secimg {
    margin: 0 auto;
    max-width: 100%; }
  .search-results__secttitle {
    width: 60%;
    margin-left: 14%;
    font-weight: 500;
    font-size: 10px;
    line-height: 21px;
    vertical-align: middle; }
  .search-results__secttitle span {
    line-height: 13px;
    display: inline;
    padding-bottom: 2px; }
  .search-results__sectnum {
    width: 26%;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    vertical-align: middle; }
  .mod3 .owl-prev {
    top: -163px; }
  .mod3 .owl-next {
    top: -163px; }
  div.bx-auth-services a {
    color: transparent !important;
    border-color: transparent !important;
    text-overflow: auto; }
  div.bx-auth-services a:hover, div.bx-auth-services a.bx-ss-selected {
    color: transparent !important;
    border-color: transparent !important;
    background-color: transparent !important; }
  div.bx-auth-services a:hover .bx-ss-icon, div.bx-auth-services a.bx-ss-selected .bx-ss-icon {
    color: #fff !important; }
  div.bx-auth-services a > b {
    color: transparent !important;
    border-color: transparent !important;
    min-width: auto; }
  .bx-ss-icon {
    background-color: #f58014 !important; }
  .filters .bx-filter-container-modef {
    display: none; }
  .agree__checkbox:not(checked) + label {
    font-size: 12px; } }

@media (max-width: 944.98px) {
  .share-basket__products__info {
    flex-direction: column;
    align-items: center;
    text-align: center; }
  .share-basket__products__name {
    padding: 0; }
  .share-basket__products__extra {
    display: none; }
  .share-basket__products table td {
    padding: 10px 15px; }
  .share-basket__products table tr {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .modal__rwrapper .item__result-quantity {
    display: none; }
  .order-form__price-table td {
    padding-bottom: 20px; }
  .order-form__price-table td:nth-child(2n) {
    text-align: right; }
  .order-form__price-table tr {
    font-size: 18px;
    line-height: 20px; }
    .order-form__price-table tr:nth-of-type(1) td {
      padding-bottom: 30px; }
    .order-form__price-table tr.total {
      font-size: 20px;
      line-height: 22px; }
  .order-form__price-table .tip {
    top: -12px;
    font-size: 10px;
    line-height: 12px; }
  .wrapper-artyot_main .articles {
    padding: 12px 0px 42px; }
  .tabs_fakewrapper.favormob .personal .catalog-personal .item__mobile-bottom .item__compare {
    width: 100% !important; }
  .frame404 {
    margin-bottom: 0px;
    padding-top: 10vh;
    padding-bottom: 30vh; }
  .img404 {
    display: none; }
  .text404 {
    position: inherit;
    font-size: 17px;
    line-height: 21px;
    width: 100%;
    left: 0px;
    top: 0px; }
  .text-content-area img {
    max-width: 100%;
    height: auto !important; }
  .text-content-area p {
    font-size: 15px;
    line-height: 18px; }
  .text-content-area iframe {
    max-width: 100%;
    height: auto; } }

@media all and (min-width: 320px) and (max-width: 359px) {
  .msearch {
    margin-right: 4px; }
  .mm-wrapper {
    margin-right: 0px; } }

@media all and (min-width: 310px) and (max-width: 319px) {
  .msearch {
    margin-right: 2px; }
  .mm-wrapper {
    margin-right: 0px; } }

@media all and (min-width: 290px) and (max-width: 309px) {
  .msearch {
    margin-right: 1px; }
  .mm-wrapper {
    margin-right: 0px; } }

@media all and (min-width: 0px) and (max-width: 289px) {
  .msearch {
    display: none; }
  .mm-wrapper {
    margin-right: 0px; } }

@media all and (min-width: 945px) and (max-width: 1189px) {
  body {
    font-size: 13px;
    line-height: 19px; }
  h1 {
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -0.02em;
    margin-bottom: 31px;
    margin-top: 10px; }
  .h1 {
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -0.02em;
    margin-bottom: 31px;
    margin-top: 10px; }
  h2 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 27px;
    margin-top: 10px; }
  .h2 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 27px;
    margin-top: 10px; }
  h3 {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 14px;
    margin-top: 10px; }
  .h3 {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 14px;
    margin-top: 10px; }
  h4,
  h5,
  h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    margin-top: 7px; }
  .h4,
  .h5,
  .h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    margin-top: 7px; }
  p {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem; }
  ul {
    padding-left: 0px; }
  ul li {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: -0.01em;
    padding-bottom: 6px; }
  ul li::before {
    width: 12px;
    margin-left: 4px; }
  hr {
    margin-top: 36px;
    margin-bottom: 34px; }
  .title-info {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -0.02em;
    margin-bottom: 24px; }
  .info {
    font-size: 17px;
    line-height: 31px;
    letter-spacing: -0.01em;
    padding-bottom: 2px;
    /*  margin-bottom: 19px;*/ }
    .info_form {
      font-size: 16px;
      line-height: 20px; }
  .header {
    height: 141px;
    /*    &__catalog-submenu-ajax_active {
      width: calc(300% + 90px);
     }*/ }
    .header__top {
      height: 95px; }
    .header__bottom {
      height: 46px; }
    .header__right {
      padding-top: 18px; }
    .header__logo {
      width: 168px;
      height: 57px;
      margin-top: 16px; }
    .header__catalog {
      height: 46px;
      font-size: 19px;
      line-height: 21px;
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      z-index: 3;
      background-position: 21px center;
      padding: 12px 0px 12px 50px;
      letter-spacing: 0.6px; }
    .header__catalog-menu_visible {
      display: block !important;
      top: -1px;
      opacity: 1 !important;
      margin-top: 0px;
      z-index: 1; }
    .header__catalog-menu {
      /*  display: none;*/
      opacity: 0;
      top: 44px;
      left: 0;
      font-size: 13px;
      line-height: 16px;
      letter-spacing: -0.02em;
      width: 100%;
      margin-top: 3px; }
    .header__catalog-menu_active {
      z-index: 3;
      opacity: 1; }
    .header__catalog-menu_visible {
      opacity: 1;
      top: -2px;
      margin-top: 0px; }
    .header__catalog-menu-item {
      width: 100%;
      margin-top: 2px; }
    .header__catalog-menu-link {
      padding: 16px 40px 16px 12px;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: -0.02em;
      width: 100%; }
    .header__catalog-menu-outer {
      height: 100%; }
    .header__catalog-menu-inner {
      /* height: 32px;*/ }
    .header__catalog-menu-item_childs:after {
      /*   opacity: 0;
         right: -35px;
         top: 0px;
         width: 35px;
         height: 100%;*/ }
    .header__catalog-menu-link_childs:hover:after {
      opacity: 1;
      z-index: 3; }
    .header__catalog-menu-item_childs-active:after {
      opacity: 1;
      transition: all 0.1s ease;
      z-index: 3; }
    .header__catalog-menu-link_childs {
      background-position: calc(100% - 17px) center; }
    .header__phone {
      font-weight: 500;
      font-size: 14px;
      line-height: 22px;
      letter-spacing: 0.2px; }
    .header__email {
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      padding-top: 0px;
      padding-left: 0px;
      letter-spacing: 0.4px; }
    .header__contacts {
      margin-top: 13px; }
    .header__personal {
      margin-top: -12px; }
    .header__register:before {
      content: '';
      width: 11px;
      height: 11px;
      margin-right: 7px; }
    .header__register {
      font-size: 12px;
      line-height: 14px;
      margin-top: 4px;
      white-space: nowrap; }
    .header__login:before {
      content: '';
      width: 12px;
      height: 12px;
      margin-right: 3px; }
    .header__login {
      font-size: 12px;
      line-height: 14px;
      margin-top: 4px;
      white-space: nowrap; }
    .header__search-block {
      margin-left: 0px;
      margin-top: 1px; }
    .header__postponed-items {
      font-size: 11px;
      line-height: 17px;
      width: 100%;
      /* margin-left: -9px;*/ }
    .header__postponed-items:first-child {
      /*  margin-left:8px;*/ }
    .header__postponed-items_link {
      padding: 7px 9px 7px 18px;
      letter-spacing: 0.5px;
      width: 33.3%; }
    .header__sticky-wrapper .header__postponed-items_link {
      /*   margin-right: 45px;*/ }
    .header__postponed-items_link:last-child {
      padding-right: 0px;
      margin-right: 0px; }
    .header__basket {
      background-position: left 5px;
      padding: 11px 15px 11px 38px;
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      min-height: 35px;
      /* margin-right: -12px;*/
      margin-left: 5px; }
    .header__basket_col {
      font-size: 14px;
      line-height: 18px;
      min-width: 18px;
      padding: 0 2px;
      height: 18px;
      white-space: nowrap;
      left: 15px;
      top: -3px;
      border-radius: 9px; }
    .header__sticky {
      margin-top: 24px; }
    .header__sticky-wrapper {
      left: 0;
      top: 0;
      width: 100%;
      height: 70px;
      z-index: 11; }
    .header__newsticky-wrapper {
      left: 0;
      top: -80px;
      width: 100%;
      height: 70px;
      z-index: 11; }
    .header__sticky-indicator {
      top: 0;
      height: 3px;
      left: 0;
      width: 0;
      z-index: 2; }
    .header__search-block-results {
      left: 0;
      top: 33px;
      padding: 20px 17px;
      width: 100%;
      font-size: 12px;
      line-height: 14px; }
    .header__search-block-title {
      margin-top: 3px;
      margin-bottom: 6px; }
    .header__search-block-result {
      width: 100%;
      line-height: 14px;
      margin-top: 4px;
      padding-left: 11px;
      margin-bottom: 4px;
      padding-right: 7px; }
    .header__search-block-link {
      font-size: 13px;
      letter-spacing: 0.3px;
      max-width: 70%; }
    .header__search-block-desc {
      font-size: 12px;
      max-width: 30%; }
    .header__search-block-itemresult {
      width: 100%;
      font-size: 12px;
      line-height: 14px;
      padding-top: 6px;
      padding-bottom: 0px;
      padding-right: 60px;
      margin-bottom: 0px; }
    .header__search-block-itemlink {
      padding: 0 .1em 0 0;
      margin: 0;
      letter-spacing: -0.21px;
      line-height: 13px; }
    .header__search-block-ireswrapper {
      width: 100%;
      padding-right: 8px;
      padding-left: 14px;
      padding-top: 2px; }
    .header__search-block-itemlink:before {
      content: '';
      left: -13px;
      top: 11px;
      width: 6px;
      height: 6px; }
    .header__search-block-itemdesc {
      right: 0;
      bottom: 0;
      font-size: 11px;
      padding: 0 0 0 .2em;
      margin: 0; }
    .header__search-block-rub {
      padding-left: 2px; }
    .header__search-block-line {
      height: 1px;
      width: 100%;
      margin-top: 17px;
      margin-bottom: 15px; }
    .header__search-block-tottallink {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em;
      margin-left: 11px;
      padding-bottom: 2px;
      margin-bottom: 10px; }
    .header__catalog-submenu_ajax {
      left: 100%;
      top: 0px;
      width: calc(300% + 90px);
      height: 100%;
      z-index: -1;
      padding: 19px 11px 19px 22px;
      box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25); }
    .header__catalog-sticky-wrapper .header__catalog-menu {
      visibility: hidden;
      top: 42px;
      left: 15px;
      width: calc(100% - 30px);
      height: calc(100vh - 70px);
      box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25); }
    .header__catalog-static-wrapper .header__catalog-menu {
      visibility: hidden;
      top: 42px;
      left: 15px;
      width: calc(100% - 30px);
      height: calc(100vh - 138px);
      box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25); }
  .top-menu {
    color: #f4f5f5;
    font-size: 13px;
    line-height: 20px; }
    .top-menu__link {
      margin: 10px 2.7%;
      padding-bottom: 5px;
      letter-spacing: -0.09px;
      max-width: 115px;
      white-space: nowrap; }
    .top-menu__link:first-child {
      margin-left: 0px; }
    .top-menu__link:last-child {
      margin-right: 0px; }
  .city-selector__info {
    font-size: 14px;
    line-height: 30px;
    margin-left: 0px;
    margin-top: 0px; }
  .city-selector__select {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-left: 4px;
    margin-right: 4px; }
  .city-selector__select:after {
    content: '';
    width: 12px;
    height: 9px;
    margin-left: 5px; }
  .search {
    width: 100%;
    padding: 10px 10px 9px 30px;
    font-size: 12px;
    line-height: 14px;
    background-position: 12px center; }
  .hFooter {
    height: 362px; }
  .footer {
    width: 100%;
    margin: -362px auto 0px;
    height: 362px; }
    .footer__wrappermnu {
      padding-top: 24px;
      min-height: 276px; }
    .footer__menu_link_first {
      font-size: 15.5px;
      line-height: 34px;
      margin-bottom: 10px; }
    .footer__menu_link {
      font-size: 13.5px;
      line-height: 29px;
      letter-spacing: 0.1px; }
    .footer__menu-all {
      display: block !important; }
    .footer__copyright {
      font-size: 13.5px;
      line-height: 20px;
      margin-top: 23px; }
    .footer__phone {
      font-weight: 500;
      font-size: 16px;
      line-height: 29px;
      letter-spacing: 0.4px; }
    .footer__email {
      font-weight: 500;
      font-size: 12px;
      line-height: 33px;
      letter-spacing: 0.4px; }
    .footer__addr {
      font-size: 12px;
      line-height: 14px;
      margin-top: 9px; }
    .footer__phwrapper {
      margin-left: 18px; }
  .social_footer {
    margin-left: 3px;
    margin-top: 19px;
    margin-left: 57px; }
  .social__link {
    float: left;
    width: 24px;
    height: 24px;
    margin-right: 26px; }
  .social__link:last-child {
    margin-right: 0px; }
  .tega {
    float: left;
    width: 101px;
    height: 45px; }
  .qb {
    margin: 22px auto 0px;
    width: 125px;
    height: 24px; }
  .wrapper-artyot {
    margin-top: 14px;
    margin-bottom: 60px; }
  .articles {
    padding-bottom: 25px;
    /*
    &__all {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        border-bottom: 1px solid $accent_color4;
        margin-right: 20px;
        margin-top: 9px;
    }
    &__all:after {
        width: 7px;
        height: 10px;
        right: -18px;
        top: 7px;

    }
    &__all:hover {
    }
    */ }
    .articles_half {
      width: 100%;
      padding: 0px 0px 42px; }
    .articles__title {
      font-size: 28px;
      line-height: 34px;
      letter-spacing: -0.02em;
      margin-bottom: 32px; }
    .articles__article {
      margin-bottom: 30px;
      max-width: 100%;
      padding-left: 2px; }
    .articles__article-date {
      font-size: 10px;
      line-height: 10px;
      letter-spacing: 0.03em;
      padding: 5px 33px 3px 8px;
      min-width: 137px; }
    .articles__article-title {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      margin-top: 13px;
      letter-spacing: 0em; }
    .articles__article-text {
      font-size: 14px;
      line-height: 19px;
      letter-spacing: -0.02em;
      margin-top: 10px; }
    .articles__article-left {
      width: 23%;
      padding-right: 29px; }
    .articles__article-right {
      width: 70%;
      margin-top: 2px; }
    .articles__hr {
      margin-top: 23px;
      width: 77%; }
    .articles__sections {
      display: block;
      padding-top: 3px; }
    .articles__sections:after {
      content: '';
      display: block;
      clear: both; }
    .articles__section {
      background-position: 2% center;
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
      margin-right: 26px;
      width: calc(50% - 13px);
      height: 82px;
      margin-right: 26px;
      margin-bottom: 20px;
      background-size: 45px auto; }
    .articles__section:nth-child(2n) {
      margin-right: 0px; }
    .articles__txtwrapper {
      background-position: 16% center;
      height: 82px;
      width: 100%;
      padding-left: 21%;
      padding-right: 3%; }
    .articles__section-title {
      font-weight: 500;
      font-size: 11px;
      line-height: 13px;
      margin-top: 0px;
      margin-bottom: 10px; }
    .articles__section-text {
      font-weight: 300;
      font-size: 7px;
      line-height: 8px;
      letter-spacing: -0.02em; }
    .articles__section-hr {
      margin-top: 19px;
      margin-bottom: 17px; }
    .articles__h2 {
      letter-spacing: 0em;
      margin-bottom: 45px; }
  .nicescroll-cursors {
    width: 3px !important; }
  .dxyoutube {
    width: 100%;
    padding: 48px 45px 64px 81px;
    /*   &__all {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        margin-right: 20px;
        margin-top: 0px;
    }
    &__all:after {
        width: 7px;
        height: 10px;
        right: -18px;
        top: 7px;

    }
    &__all:hover {
    }
    */ }
    .dxyoutube__title {
      font-size: 32px;
      line-height: 38px;
      letter-spacing: -0.02em; }
    .dxyoutube__text {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em;
      margin-top: 16px; }
    .dxyoutube__scroll {
      margin-top: 58px;
      max-height: 430px;
      border-right: 2px solid #fff; }
    .dxyoutube__scroll-shadow:after {
      margin: 0 auto;
      width: 100%;
      z-index: 100;
      bottom: 0;
      height: 70px; }
    .dxyoutube__tube-img {
      border: 1px solid transparent;
      width: 23.5%;
      /*max-height: 81px;*/ }
    .dxyoutube__tube-desc {
      padding-left: 25px;
      padding-bottom: 18px;
      width: 61.5%; }
    .dxyoutube__tube {
      font-weight: 500;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em;
      margin-bottom: 23px; }
  .news__title {
    font-weight: 500;
    font-size: 40px;
    line-height: 38px;
    letter-spacing: -0.02em; }
  .left-news {
    /*   &__all {
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        margin-right: 20px;
    }
    &__all:after {
        width: 7px;
        height: 10px;
        right: -18px;
        top: 7px;

    }
    &__all:hover {
        }*/ }
    .left-news__title {
      font-size: 28px;
      line-height: 34px;
      letter-spacing: -0.02em;
      margin-top: 27px;
      margin-bottom: 27px; }
    .left-news__item-title {
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.02em;
      margin-bottom: 4px; }
    .left-news__item {
      font-size: 12px;
      line-height: 14px;
      /*        letter-spacing: -0.025em;*/
      margin-bottom: 30px; }
  .mod1 .owl-nav {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    margin-top: 0px; }
  .mod1 .owl-prev {
    background-image: url(../img/slider_left.svg) !important;
    left: -43px;
    top: calc(50% - 22px);
    margin: 0 !important;
    width: 27px;
    height: 43px; }
  .mod1 .owl-next {
    background-image: url(../img/slider_right.svg) !important;
    right: -43px;
    top: calc(50% - 22px);
    margin: 0 !important;
    width: 27px;
    height: 43px; }
  .comments {
    padding-top: 53px;
    padding-bottom: 55px; }
    .comments__title {
      margin-left: 35px;
      font-size: 32px;
      line-height: 40px;
      letter-spacing: -0.03em; }
    .comments__slider {
      position: relative;
      width: calc(100% - 70px);
      margin: 53px 35px 0px; }
    .comments__comment-wrapper {
      width: 100%; }
    .comments__comment {
      padding: 41px 30px 45px 35px; }
    .comments__comment-text {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 13px;
      line-height: 22px;
      letter-spacing: -0.02em;
      max-height: 70px;
      overflow: hidden; }
    .comments__comment-author {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      margin-top: 28px;
      margin-bottom: 12px; }
  .map p {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.02em; }
  .map {
    width: 100%;
    background-color: #071C28;
    padding: 28px 0px 115px; }
    .map__title {
      font-size: 28px;
      line-height: 34px;
      letter-spacing: -0.02em;
      margin-bottom: 22px;
      margin-top: 12px; }
    .map__addr {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px; }
    .map__container {
      width: 52%;
      padding-left: 10px;
      height: 100%;
      right: 0px;
      top: 0px; }
  .key {
    padding: 13px 27px; }
    .key_comments {
      padding: 13px 23px;
      margin-top: -2px;
      margin-right: 36px;
      float: right; }
    .key__text {
      font-size: 16px;
      line-height: 22px; }
    .key_center-modal {
      width: 300px;
      margin: 38px auto 23px; }
    .key_form {
      width: 222px;
      padding: 6px 10px;
      margin-top: 58px;
      margin-bottom: 10px; }
  .breadcrumbs {
    margin-top: 10px;
    margin-bottom: 12px; }
    .breadcrumbs__item {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em;
      padding: 9px 2px 0px 2px; }
    .breadcrumbs__item::after {
      top: 9px; }
  .pagination {
    font-size: 18px;
    line-height: 21px;
    padding-bottom: 25px; }
    .pagination__link {
      padding: 4px 7px;
      margin: 0px 4px; }
    .pagination__current {
      padding: 4px 7px;
      margin: 0px 3px 0px 6px; }
    .pagination__separator {
      padding: 4px 7px;
      margin: 0px 2px; }
  .contacts {
    margin-bottom: 17px; }
    .contacts__col {
      width: 50%; }
    .contacts p {
      margin-bottom: 1.9rem; }
    .contacts img {
      max-width: 100%; }
    .contacts__info {
      font-size: 13px !important;
      line-height: 19px !important;
      letter-spacing: -0.01em !important;
      padding-bottom: 0px !important; }
    .contacts__hr {
      margin-top: 23px;
      margin-bottom: 35px; }
  .rating {
    padding: 6px; }
    .rating__stars {
      margin-top: 8px; }
    .rating__img {
      max-width: 114px; }
    .rating__star {
      width: 20px;
      height: 20px;
      margin: 0px 1px 0px 1px; }
    .rating__startext {
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0.05em; }
    .rating__digit1 {
      font-weight: 500;
      font-size: 24px;
      line-height: 26px;
      letter-spacing: -0.03em;
      margin-top: 3px; }
    .rating__digit2 {
      font-weight: 500;
      font-size: 15px;
      line-height: 20px;
      top: 10px; }
    .rating__text {
      font-weight: 300;
      font-size: 14px;
      line-height: 15px;
      letter-spacing: -0.01em;
      margin-top: 21px;
      margin-left: 0px; }
  .modal {
    padding: 43px 52px; }
    .modal__ok {
      width: 48px;
      margin: 24px auto 13px; }
    .modal__tnanks {
      width: 100%;
      font-weight: 500;
      font-size: 20px;
      line-height: 27px;
      letter-spacing: -0.02em;
      padding: 15px 46px 38px; }
    .modal__title {
      width: 100%;
      font-weight: 500;
      font-size: 20px;
      line-height: 32px;
      letter-spacing: -0.02em;
      padding: 17px 40px 40px; }
    .modal_favor {
      width: 795px;
      padding: 47px 0px 0px 0px !important;
      margin-bottom: 5px; }
    .modal__header_success {
      margin-bottom: 50px; }
    .modal__header {
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      padding-left: 55px; }
    .modal__header:before {
      left: -15px;
      top: -8px;
      width: 50px;
      height: 50px; }
    .modal__gray {
      width: 100%;
      padding: 50px 82px; }
    .modal__white {
      width: 100%;
      padding: 47px 18px; }
    .modal__item {
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3); }
    .modal__item_left {
      width: 28%;
      padding: 35px 30px;
      margin: 35px 0px; }
    .modal__item_right {
      margin-top: 30px;
      width: 69%;
      padding: 5px 19px; }
    .modal__item-title {
      font-weight: 500;
      font-size: 16px;
      line-height: 21px;
      margin-bottom: 8px; }
    .modal__item-text {
      font-size: 14px;
      line-height: 22px;
      letter-spacing: -0.02em;
      margin-bottom: 0px; }
    .modal__lwrapper .item__price {
      margin-top: 25px;
      margin-bottom: 14px; }
    .modal__rwrapper {
      margin-top: 38px;
      padding-right: 13px; }
    .modal hr {
      margin: 0px 0px 17px 0px !important; }
    .modal__dotted-link {
      border-bottom: 1px dashed #f58014;
      font-weight: 500;
      font-size: 14px;
      line-height: 43px; }
    .modal__dotted-link_small {
      font-weight: 500;
      font-size: 14px;
      line-height: 31px;
      margin-left: 25px; }
    .modal__big-title {
      font-size: 28px;
      line-height: 34px;
      letter-spacing: -0.02em;
      margin-left: 21px; }
    .modal__key {
      padding: 13px 6px !important;
      margin-left: -15px;
      margin-right: -15px;
      width: calc(100% + 15px);
      margin-bottom: 35px; }
    .modal__slider {
      margin-top: 8px; }
    .modal__rwrapper_add {
      margin-top: 29px;
      padding-right: 0px; }
    .modal__item_left-add {
      border-right: none !important;
      width: 23% !important;
      padding: 8px 8px !important; }
    .modal__item_right-add {
      width: 67% !important;
      position: relative; }
    .modal__item_right-add .modal__item-title {
      padding-right: 90px !important;
      margin-bottom: 7px !important; }
    .modal__item_right-add .modal__item-text {
      padding-right: 0px !important;
      line-height: 22px !important; }
    .modal__item_right-add .item__price {
      margin-top: 27px;
      font-size: 26px; }
    .modal__item_right-add .item__old-price {
      left: 0px !important;
      top: -12px !important;
      font-size: 13px; }
    .modal__item_right-add .item__stars {
      position: absolute;
      right: 17px;
      top: 8px; }
    .modal__item_right-add .item__star-full {
      width: 10px;
      height: 10px;
      background-size: contain; }
    .modal__item_right-add .item__star-empty {
      width: 10px;
      height: 10px;
      background-size: contain; }
    .modal__item_right-add .item__star-col {
      font-size: 9px;
      line-height: 12px;
      margin-top: 0px;
      margin-left: 3px; }
    .modal__item_right-add hr {
      border-color: #f58014; }
    .modal__item_right-add .modal__dotted-link {
      border-bottom: 1px solid #f58014;
      font-weight: 500;
      font-size: 12px;
      line-height: 42px; }
    .modal__item_right-add .key {
      margin-bottom: 0px; }
    .modal__item_right-add .item__favor-compare {
      margin-top: 34px;
      margin-bottom: 30px;
      width: 215px; }
    .modal__rwrapper .quantity {
      width: 58px;
      margin-right: 12px;
      float: left; }
    .modal__rwrapper .jq-selectbox__select {
      height: 26px; }
    .modal__rwrapper .jq-selectbox__select {
      line-height: 24px; }
    .modal__rwrapper .form__select_small {
      margin-left: 0px; }
    .modal__rwrapper .jq-selectbox__trigger-arrow {
      top: 5px; }
  .modal .fancybox-close-small {
    right: 16px;
    top: 16px;
    padding: 3px; }
  .form {
    width: 100%; }
    .form__change {
      font-size: 12px;
      line-height: 38px;
      letter-spacing: -0.02em; }
    .form__suggestions {
      position: absolute;
      bottom: 0px;
      width: 100%; }
    .form p {
      font-weight: 300;
      font-size: 16px;
      line-height: 15px;
      letter-spacing: -0.01em;
      margin-top: 12px;
      margin-bottom: 3px; }
    .form_minus-spacer {
      margin-top: -15px; }
    .form_spacer {
      margin-top: 25px; }
    .form__select_small {
      margin-left: 30px;
      width: 63%; }
    .form__group {
      padding-top: 15px; }
    .form__finded {
      box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
      border-radius: 2px;
      padding: 18px 22px;
      right: calc(0px - 126px);
      top: -22px;
      font-size: 12px;
      line-height: 14px; }
    .form__finded:before {
      right: 100%;
      top: 50%;
      border-width: 9px;
      margin-top: -9px; }
    .form__main-title {
      padding: 16px 0px;
      font-weight: 500;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em;
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff; }
    .form__main-title-big {
      padding: 16px 0px;
      font-weight: 500;
      font-size: 18px;
      line-height: 18px;
      letter-spacing: -0.02em;
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff; }
    .form__title {
      font-weight: 400;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .form__title_bold {
      font-weight: 500 !important; }
    .form__main-title-big {
      padding: 16px 0px;
      font-weight: 500;
      font-size: 18px;
      line-height: 18px;
      letter-spacing: -0.02em;
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff; }
    .form__title_small {
      font-size: 14px;
      line-height: 16px;
      margin-right: 20px; }
    .form__checkbox {
      margin: -1px 10px 0 0;
      width: 16px;
      height: 16px; }
    .form__label_big {
      font-weight: 500 !important;
      font-size: 16px !important;
      line-height: 18px !important;
      letter-spacing: -0.02em;
      margin-top: 8px;
      padding: 12px 0 0 24px; }
    .form__checkbox_big:not(checked) + label::before {
      top: 14px !important;
      left: 0px !important; }
    .form__checkbox:not(checked) {
      opacity: 0; }
    .form__checkbox:checked + label {
      font-weight: 500; }
    .form__checkbox:not(checked) + label {
      padding: 12px 0 0 26px;
      font-weight: 300;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 3px; }
    .form__checkbox:not(checked) + label:before {
      top: 11px;
      left: 2px;
      width: 16px;
      height: 16px; }
    .form__radio-wrapper {
      padding: 0px 9px; }
    .form__radio {
      margin: -1px 10px 0 0;
      width: 16px;
      height: 16px; }
    .form__radio:not(checked) {
      opacity: 0; }
    .form__radio:checked + label {
      font-weight: 500; }
    .form__radio:not(checked) + label {
      padding: 10px 0 0 26px;
      font-weight: 300;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 3px; }
    .form__radio:not(checked) + label:before {
      top: 8px;
      left: 2px;
      width: 16px;
      height: 16px; }
    .form__key {
      padding: 11px 52px !important;
      margin: 20px auto 24px; }
    .form_modal {
      width: 607px;
      padding: 0px 70px; }
    .form__errtext {
      top: 12px;
      left: 19px;
      font-size: 12px;
      line-height: 14px; }
    .form__modal-input {
      width: 100%;
      font-size: 18px;
      line-height: 21px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid transparent;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
      padding: 10px 14px 10px 14px;
      margin-top: 63px;
      margin-bottom: 20px; }
    .form__modal-textarea {
      width: 100%;
      font-size: 18px;
      line-height: 21px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid #071C28;
      border-left: 1px solid #071C28;
      border-right: 1px solid #071C28;
      padding: 10px 14px 10px 14px;
      margin-top: 63px;
      margin-bottom: 20px;
      height: 100px; }
    .form__input {
      width: 100%;
      font-size: 16px;
      line-height: 21px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid transparent;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
      padding: 20px 14px 14px 0px;
      margin-top: 40px;
      margin-bottom: 0px; }
    .form__input.form__error {
      padding-left: 14px; }
    .form__textarea {
      width: 100%;
      font-size: 18px;
      line-height: 21px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid #071C28;
      border-left: 1px solid #071C28;
      border-right: 1px solid #071C28;
      padding: 10px 14px 10px 14px;
      margin-top: 63px;
      margin-bottom: 20px;
      height: 100px; }
    .form__error {
      border: 1px solid #f45800;
      border-radius: 2px; }
    .form__modal-textarea-gray {
      width: 100%;
      font-size: 16px;
      line-height: 22px;
      border-radius: 3px;
      border-bottom: 1px solid #c3d4dc;
      border-top: 1px solid #c3d4dc;
      border-left: 1px solid #c3d4dc;
      border-right: 1px solid #c3d4dc;
      padding: 15px 22px 15px 22px;
      margin-top: 4px;
      margin-bottom: 16px;
      height: 60px; }
    .form__charact {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      padding-left: 20px;
      margin-top: 13px; }
    .form__charact:before {
      background-size: contain;
      left: 2px;
      top: 5px;
      width: 10px;
      height: 10px; }
    .form_gray {
      margin-bottom: 14px;
      padding-bottom: 16px; }
    .form__radio-wrapper_v2 {
      position: relative;
      padding: 22px 0px 0px !important; }
    .form__radio_mh .form__radio_v2 + label {
      min-height: 27px;
      padding-top: 8px !important; }
    .form__radio_v2 + label {
      font-size: 13px !important;
      line-height: 15px !important;
      letter-spacing: 0.36px; }
    .form__radio_v2:not(checked) + label {
      padding: 9px 0 0 38px !important;
      margin-bottom: 8px !important; }
    .form__radio_v2:not(checked) + label:before {
      content: '';
      top: 8px !important;
      left: 0px !important;
      width: 20px !important;
      height: 20px !important; }
    .form__label-bold {
      font-weight: 500;
      font-size: 13px;
      line-height: 18px;
      letter-spacing: -0.01em;
      color: #000; }
    .form__label-light {
      font-weight: 300;
      font-size: 13px;
      line-height: 18px;
      letter-spacing: -0.01em;
      color: #828E95; }
    .form__addcargolink {
      font-size: 13px;
      line-height: 15px;
      padding: 0px 0px 3px 0px;
      margin-top: 8px;
      margin-left: 39px; }
    .form__addcargolink:before {
      top: 1px;
      left: -39px;
      width: 20px;
      height: 20px; }
    .form__input_v2 {
      padding: 12px 9px 12px 0px !important;
      margin-top: 18px !important;
      margin-bottom: 4px !important;
      font-size: 13px !important;
      line-height: 15px !important; }
    .form_hr {
      margin-top: 34px; }
    .form_h2 {
      text-transform: uppercase;
      margin-bottom: 39px !important; }
    .form_p {
      font-weight: 300;
      font-size: 14px;
      line-height: 17px;
      margin-bottom: 0px; }
    .form__btext {
      font-weight: 500;
      font-size: 13px;
      line-height: 15px;
      letter-spacing: 0.09px; }
    .form__btext_margins {
      margin-top: 14px;
      margin-bottom: 36px; }
    .form__btext_margin-top {
      margin-top: 14px; }
    .form__radio_mh {
      padding-bottom: 4px !important; }
  .score__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 10px 0px 38px; }
  .reviews {
    padding-top: 8px;
    margin-bottom: 30px; }
    .reviews__bigstars {
      margin-top: -3px; }
    .reviews__bigstars .form__errtext {
      top: 27px !important; }
    .reviews__bigstars_score {
      margin-top: 1px; }
    .reviews__star {
      width: 39px;
      height: 39px;
      margin: 0px 2px 5px; }
    .reviews__star_big {
      width: 36px;
      height: 36px;
      margin: 0px 4px 4px; }
    .reviews__startext {
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0.05em; }
    .reviews__digits {
      margin-left: 22px; }
    .reviews__digit1 {
      font-weight: 500;
      font-size: 50px;
      line-height: 59px;
      letter-spacing: -0.03em;
      margin-top: -5px; }
    .reviews__digit2 {
      font-weight: 500;
      font-size: 24px;
      line-height: 28px;
      top: 10px; }
    .reviews__title {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      margin-bottom: 6px; }
    .reviews__date {
      font-weight: 300;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 30px; }
    .reviews__item {
      margin-top: 30px; }
    .reviews__item-left {
      width: 34%; }
    .reviews__item-right {
      width: 66%;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em; }
    .reviews__hr {
      margin-top: 32px;
      margin-bottom: 34px;
      width: 77%; }
    .reviews__rtitle {
      font-weight: 500;
      font-size: 32px;
      line-height: 38px;
      letter-spacing: -0.02em;
      margin-top: 36px;
      margin-bottom: 27px; }
    .reviews__otitle {
      font-weight: 700;
      font-size: 28px;
      line-height: 48px !important;
      letter-spacing: -0.02em;
      margin-top: 0px;
      margin-bottom: 0px !important; }
    .reviews__keywrap {
      padding-top: 39px; }
    .reviews_tabs .reviews__bigstars {
      margin-top: 1px;
      margin-right: -3px; }
    .reviews_tabs .reviews__digits {
      margin-left: 16px;
      margin-top: -3px; }
    .reviews_tabs .reviews__star {
      width: 38px;
      height: 38px;
      margin: 0px 3px 21px; }
    .reviews_tabs .reviews__startext {
      font-size: 13px;
      line-height: 12px;
      letter-spacing: 0.01em; }
    .reviews_tabs .reviews__item {
      margin-top: 20px;
      margin-bottom: 28px; }
    .reviews_tabs .reviews__item-left {
      width: 31%; }
    .reviews_tabs .reviews__item-right {
      width: 69%;
      font-size: 13px;
      line-height: 22px;
      letter-spacing: -0.02em; }
    .reviews_tabs .reviews__item-left_questions {
      width: 31%; }
    .reviews_tabs .reviews__item-right_questions {
      width: 69%; }
    .reviews__pluses {
      font-weight: 500;
      font-size: 17px;
      line-height: 20px;
      margin-top: 27px;
      margin-bottom: 9px; }
    .reviews__pluses:before {
      left: -38px;
      top: -4px;
      width: 30px;
      height: 30px; }
    .reviews__minuses {
      font-weight: 500;
      font-size: 17px;
      line-height: 20px;
      margin-top: 27px;
      margin-bottom: 9px; }
    .reviews__minuses:before {
      left: -38px;
      top: -4px;
      width: 30px;
      height: 30px; }
    .reviews__question:before {
      left: -38px;
      top: -4px;
      width: 30px;
      height: 30px; }
    .reviews__keywrap_t2 .key {
      min-width: 215px;
      padding: 12px 47px 10px;
      font-size: 14px;
      line-height: 22px; }
    .reviews__item-left .key {
      padding: 10px 33px 9px; }
    .reviews__shopanswer {
      width: 95%;
      border-left: 2px solid #f58014;
      margin-top: 28px;
      margin-left: 10px;
      padding-left: 20px; }
    .reviews__shopanswer b {
      margin-bottom: 5px; }
    .reviews__intotext {
      font-size: 13px !important;
      line-height: 16px !important;
      letter-spacing: 0.035em !important;
      margin-bottom: 17px !important; }
  .login {
    font-size: 16px;
    line-height: 15px; }
  .bind {
    width: 85%; }
    .bind_full {
      width: 100%;
      margin-top: 50px;
      margin-bottom: 24px; }
    .bind_full .bind__social {
      width: 30.8%;
      margin-right: 3%;
      margin-top: 12px;
      padding: 13px 40px 12px 90px; }
    .bind_full .bind__social-icon {
      left: 39px; }
    .bind__title {
      margin: 0 auto;
      font-size: 18px;
      margin-bottom: 24px; }
    .bind p {
      font-size: 18px;
      line-height: 15px;
      letter-spacing: -0.02em; }
    .bind__title:before, .bind__title:after {
      width: 100%;
      height: 1px; }
    .bind__title:before {
      margin-left: -100%;
      left: -11px; }
    .bind__title:after {
      margin-right: -100%;
      right: -11px; }
    .bind__social-wrapper {
      margin-top: 25px; }
    .bind__social {
      padding: 13px 40px 12px 76px;
      font-weight: 300;
      font-size: 18px;
      line-height: 15px;
      letter-spacing: -0.01em;
      margin-right: 45px;
      border-radius: 2px;
      min-width: 205px; }
    .bind__social:hover {
      transition: all 0.2s ease; }
    .bind__social-icon {
      top: 8px;
      left: 37px;
      width: 24px;
      height: 24px;
      border-radius: 4px;
      padding: 3px 1px 3px 0px; }
    .bind__social-icon-transparent {
      font-size: 24px;
      padding: 0px;
      margin-top: -2px; }
    .bind__social:last-child {
      margin-right: 0px; }
  .catsections__section {
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
    margin-bottom: 12px;
    margin-top: 8px;
    padding: 8px 30px 8px 10px;
    height: 74px;
    border-radius: 2px; }
  .catsections__image {
    max-width: 30%;
    max-height: 58px; }
  .catsections__info {
    max-width: 70%;
    padding-left: 8px; }
  .catsections__title {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: -0.02em;
    margin-top: 4px;
    padding-right: 0px;
    max-height: 30px; }
  .catsections__col {
    font-size: 12px;
    line-height: 18px;
    padding-top: 2px; }
  .catsections__keydown {
    top: 0px;
    right: 5px;
    z-index: 1;
    width: 22px;
    height: 100%; }
  .catsections__subsections {
    width: 100%;
    padding: 14px 7px 20px;
    top: 77px;
    left: 0;
    border-radius: 2px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    line-height: 18px;
    z-index: 3; }
  .catsections__subsection {
    font-size: 14px;
    line-height: 18px;
    z-index: 2; }
  .catsections__subsections-col {
    margin-left: 4px; }
  .item {
    border-radius: 2px;
    width: calc(100% - 20px);
    height: 592px;
    padding: 30px 36px;
    margin-right: 20px;
    margin-bottom: 40px; }
    .item:hover {
      opacity: 1;
      transform: scale(1.075);
      transition: all 0.2s ease;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
      z-index: 2; }
    .item__image__wrapper {
      height: 185px; }
    .item__titlelink {
      height: 100%;
      padding-right: 12px; }
    .item_slider {
      border: none;
      margin-right: 2px;
      padding: 30px 26px;
      width: 300px; }
    .item_slider:hover {
      transform: none;
      box-shadow: none; }
    .item_slider .item__key img {
      display: initial;
      width: auto; }
    .item_slider .item__favor {
      margin-right: 28px; }
    .item_slider .item__key {
      padding: 10px 47px; }
    .item_slider .item__image {
      width: auto !important; }
    .item_slider h3 {
      max-height: 43px;
      overflow: hidden; }
    .item_slider .item__pq-wrapper {
      width: calc(100% - 52px); }
    .item_slider .item__mobile-bottom {
      width: calc(100% - 52px); }
    .item__key {
      padding: 8px 27px;
      font-size: 14px;
      line-height: 22px; }
    .item h3 {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      overflow: hidden;
      max-height: 38px;
      text-overflow: ellipsis;
      /*	white-space: nowrap;*/
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; }
    .item p {
      font-weight: normal;
      font-size: 14px;
      line-height: 19px;
      letter-spacing: -0.02em;
      max-height: 95px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical; }
    .item__stars {
      margin-left: 0px; }
    .item__quick {
      z-index: 0;
      max-width: 185px;
      margin: 0 auto; }
      .item__quick:hover .item__quick__text {
        transition: all 0.2s ease;
        opacity: 1; }
    .item__quick:after {
      opacity: 0;
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px; }
    .item__quick__text {
      left: 0;
      width: 100%;
      top: 45%;
      opacity: 0;
      z-index: 1;
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .item__quick:hover:after {
      transition: all 0.2s ease;
      background: #17577B;
      opacity: 0.7; }
    .item__image {
      margin: 0 auto;
      max-width: 185px;
      max-height: 185px; }
    .item__star-full {
      width: 16px;
      height: 16px; }
    .item__star-half {
      width: 16px;
      height: 16px; }
    .item__star-empty {
      width: 16px;
      height: 16px; }
    .item__star-col {
      font-size: 12px;
      line-height: 14px;
      margin-top: 3px;
      margin-left: 8px; }
    .item__comments {
      margin-top: 19px;
      margin-bottom: 15px; }
    .item__comments-col {
      font-size: 12px;
      line-height: 14px;
      margin-top: 3px;
      margin-left: 25px;
      border-bottom: 1px dotted #828E95; }
    .item__price {
      font-weight: 500;
      font-size: 26px;
      line-height: 31px;
      letter-spacing: -0.03em;
      margin-top: 5px;
      margin-bottom: 27px; }
    .item__old-price {
      top: -11px;
      left: 4px;
      font-size: 12px;
      line-height: 14px; }
    .item__col {
      font-size: 12px;
      line-height: 14px;
      margin-left: 10px;
      padding-top: 18px; }
    .item__favor-compare {
      margin-top: 25px; }
    .item__favor {
      font-style: normal;
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding-left: 22px;
      float: left;
      /*margin-right: 35px;*/ }
    .item__favor-del {
      top: 12px;
      left: 21px;
      z-index: 1; }
    .item__compare {
      font-size: 12px;
      line-height: 14px;
      padding-left: 20px;
      float: right; }
    .item__mobile-bottom {
      position: absolute;
      width: calc(100% - 72px);
      bottom: 30px; }
    .item__pq-wrapper {
      position: absolute;
      width: calc(100% - 72px);
      bottom: 107px; }
    .item__pq-price {
      width: 77%; }
    .item__pq-quantity {
      margin-top: 12px;
      margin-bottom: 17px;
      width: 23%; }
  .question {
    width: 17px;
    height: 17px; }
    .question:hover .question__tooltip {
      opacity: 1;
      z-index: 1;
      transition: all 0.2s ease; }
    .question__tooltip {
      z-index: -1;
      opacity: 0;
      padding: 18px 10px 18px 18px;
      font-size: 12px;
      line-height: 13px;
      letter-spacing: -0.04em;
      box-shadow: 3px 2px 6px rgba(0, 51, 79, 0.3);
      border-radius: 2px;
      border: 1px solid #c3d4dc;
      width: 270px;
      bottom: 29px;
      left: -118px; }
    .question__tooltip:before {
      right: 50%;
      bottom: -18px;
      border-width: 9px;
      margin-top: -9px;
      filter: drop-shadow(0px 1px 0px #c3d4dc); }
  .sections__slider.mod2 .owl-stage-outer {
    margin-top: -24px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 20px; }
  .section-dx {
    border: 2px solid #0a75b2;
    border-radius: 2px;
    max-width: 210px;
    width: 100%;
    height: 296px;
    padding: 30px 25px;
    margin-right: 30px;
    margin-left: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.02em; }
    .section-dx:hover {
      padding: 30px 25px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
      position: relative;
      opacity: 1;
      transform: scale(1.045);
      transition: all 0.2s ease;
      z-index: 1; }
    .section-dx:last-child {
      margin-right: 0px; }
    .section-dx__image {
      max-width: 100%;
      width: auto !important;
      margin: 0px auto 35px; }
    .section-dx .no-photo {
      width: 150px;
      height: 150px; }
  .bottom-slider {
    margin-bottom: 0px;
    margin-top: 3px;
    margin-left: 20px;
    letter-spacing: 0px; }
  .sections__slider {
    padding: 15px; }
  .mod2 .owl-prev {
    background-image: url(../img/slider_left-mod2.svg) !important;
    border-radius: 50% !important;
    left: -15px;
    top: -230px;
    width: 64px;
    height: 64px; }
  .mod2 .owl-next {
    background-image: url(../img/slider_right-mod2.svg) !important;
    border-radius: 50% !important;
    right: -15px;
    top: -230px;
    width: 64px;
    height: 64px; }
  .mod3 .owl-prev {
    background-image: url(../img/slider_left-mod2.svg) !important;
    border-radius: 50% !important;
    left: -15px;
    top: -220px !important;
    /*  bottom: calc(190px - 30px);*/
    width: 64px;
    height: 64px; }
  .mod3 .owl-next {
    background-image: url(../img/slider_right-mod2.svg) !important;
    border-radius: 50% !important;
    right: -15px;
    top: -220px !important;
    /*  bottom: calc(190px - 30px);*/
    width: 64px;
    height: 64px; }
  .mod1 .owl-nav {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    margin-top: 0px; }
  .mod1 .owl-prev {
    background-image: url(../img/slider_left.svg) !important;
    left: -40px;
    top: calc(50% - 22px);
    margin: 0 !important;
    width: 27px;
    height: 43px; }
  .mod1 .owl-prev:hover {
    background-image: url(../img/slider_left-hover.svg) !important; }
  .mod1 .owl-next {
    background-image: url(../img/slider_right.svg) !important;
    right: -40px;
    top: calc(50% - 22px);
    margin: 0 !important;
    width: 27px;
    height: 43px; }
  .mod1 .owl-next:hover {
    background-image: url(../img/slider_right-hover.svg) !important; }
  .mod6 .owl-prev {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod6 .owl-next {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod6 .owl-prev {
    left: -45px;
    top: -382px;
    width: 17px;
    height: 29px; }
  .mod6 .owl-next {
    right: -45px;
    top: -382px;
    width: 17px;
    height: 29px; }
  .table-items {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    padding: 27px 0px 47px;
    /*
        &__head:nth-child(1) {
          width: 26%;
        }

        &__head:nth-child(2) {
          width: 12%;
        }

        &__head:nth-child(3) {
          width: 12%;
        }

        &__head:nth-child(4) {
          width: 12%;
        }

        &__head:nth-child(5) {
          display: none;
        }

        &__head:nth-child(6) {
          display: none;
        }

        &__head:nth-child(7) {
          width: 15%;
        }

        &__head:nth-child(8) {
          width: 23%;
        }

        &__cell:nth-child(6) {
          display: none;
        }

        &__cell:nth-child(5) {
          display: none;
        }
     */ }
    .table-items__cell_fixed .table-items__icons {
      width: 150px !important;
      padding-left: 15px;
      float: right; }
    .table-items__description .table-items__no-photo {
      margin-left: 100px;
      margin-right: 30px; }
    .table-items__description h3 {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      margin-bottom: 13px;
      margin-top: 23px;
      letter-spacing: 0.02px; }
    .table-items__description p {
      letter-spacing: -0.03em;
      max-width: 92%;
      margin-bottom: 1.9em; }
    .table-items__description hr {
      width: 75%;
      height: 1px;
      margin: 0 auto; }
    .table-items__description-image {
      margin-left: 25px;
      margin-right: 70px;
      width: 151px;
      margin-top: -12px; }
    .table-items__table {
      width: 100%;
      margin-top: 18px; }
    .table-items__head {
      font-size: 12px;
      line-height: 14px;
      padding: 7px 0px; }
    .table-items__table_type2 .table-items__head:nth-child(1) {
      width: 18%; }
    .table-items__table_type2 .table-items__head:nth-child(2) {
      width: 11%; }
    .table-items__table_type2 .table-items__head:nth-child(3) {
      width: 11%; }
    .table-items__table_type2 .table-items__head:nth-child(4) {
      width: 12%; }
    .table-items__table_type2 .table-items__head:nth-child(5) {
      width: 15%; }
    .table-items__table_type2 .table-items__head:nth-child(6) {
      width: 15%;
      display: table-cell; }
    .table-items__table_type2 .table-items__cell:nth-child(6) {
      display: table-cell; }
    .table-items__table_type2 .table-items__head:nth-child(7) {
      width: 18%; }
    .table-items__cell {
      font-size: 13px;
      letter-spacing: -0.02em;
      padding: 10px 0px;
      line-height: 17px; }
    .table-items__cell_title {
      font-weight: 500;
      font-size: 13px;
      line-height: 17px;
      letter-spacing: -0.02em;
      padding-left: 5px;
      text-align: center; }
    .table-items__icons {
      width: 83%; }
    .table-items_cart {
      width: 40%;
      height: 34px;
      float: left; }
    .table-items_compare {
      width: 30%;
      height: 34px;
      float: left; }
    .table-items_favorites {
      width: 30%;
      height: 34px;
      float: left; }
    .table-items__price {
      font-weight: 500; }
  .detail-item {
    padding-top: 0px; }
    .detail-item__mainwrapper {
      margin-left: 0px; }
    .detail-item h1 {
      font-size: 40px;
      line-height: 50px;
      margin-top: 20px;
      margin-bottom: 33px; }
    .detail-item__cpwrapper {
      /*margin-left: -30px;*/
      margin-right: 0px; }
    .detail-item__preview {
      font-weight: 300;
      font-size: 14px;
      line-height: 17px;
      letter-spacing: 0.02em;
      min-height: 83px; }
    .detail-item__favor {
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding-left: 16px;
      margin-right: 35px;
      background-size: 12px !important; }
    .detail-item__compare {
      font-size: 12px;
      line-height: 14px;
      padding-left: 14px;
      background-size: 11px; }
    .detail-item__compare:hover {
      background-size: 12px; }
    .detail-item__compare.active {
      background-size: 12px; }
    .detail-item__chars {
      margin-top: 34px;
      padding: 12px 26px 19px; }
    .detail-item__char {
      border-bottom: 1px solid #071C28;
      margin-bottom: 7px; }
    .detail-item__char-title {
      font-weight: 300;
      font-size: 12px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .detail-item__char-desc {
      font-size: 12px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .detail-item__morechar {
      font-size: 13px;
      line-height: 19px;
      letter-spacing: -0.02em;
      border-bottom: 1px solid #f58014;
      margin: 17px auto 0px;
      width: 123px; }
    .detail-item__morechar:after {
      display: none; }
    .detail-item_comments {
      margin-top: 0px !important; }
    .detail-item_price {
      /*    font-size: 32px !important;*/
      margin-top: 20px;
      margin-bottom: 10px;
      letter-spacing: -0.02em; }
    .detail-item_price .item__col {
      /*      font-size: 21px;*/
      font-size: 40%;
      line-height: 12px;
      margin-left: 0px;
      padding-bottom: 0px; }
    .detail-item_key {
      width: 100%;
      padding: 5px !important;
      font-weight: 500;
      font-size: 16px;
      line-height: 25px;
      letter-spacing: -0.02em; }
    .detail-item_key img {
      display: inline-block;
      width: 23px; }
    .detail-item__howwrap {
      margin-top: 13px; }
    .detail-item__how {
      padding-left: 13px;
      font-size: 12px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .detail-item__how:before {
      width: 10px;
      height: 10px;
      left: 0px;
      top: 5px; }
    .detail-item__optwrap {
      margin-top: 27px; }
    .detail-item__opttitle {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: 0.02em;
      margin-bottom: 12px; }
    .detail-item__optprice {
      border-bottom: 2px dotted #828E95;
      height: 14px;
      margin-bottom: 6px; }
    .detail-item__optdesk {
      font-size: 11px;
      line-height: 20px;
      letter-spacing: -0.02em;
      padding-right: 8px; }
    .detail-item__optcost {
      font-size: 12px;
      line-height: 20px;
      letter-spacing: -0.02em;
      padding-left: 8px; }
    .detail-item__picslider {
      min-height: 88px;
      margin-top: 14px;
      max-width: 300px; }
    .detail-item__picslide {
      box-sizing: border-box;
      width: 92px;
      height: 83px;
      border: 2px solid #c3d4dc; }
    .detail-item__picolay {
      opacity: 0.3; }
    .detail-item__videolider {
      max-width: 300px;
      margin-top: 6px; }
    .detail-item__videoslide {
      width: 100%;
      height: 67px; }
    .detail-item__videopic {
      margin-right: 5px;
      max-width: 83px; }
    .detail-item__videopic:before {
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px; }
    .detail-item__videostxt {
      font-size: 12px;
      line-height: 14px;
      width: calc(100% - 100px); }
  .copy {
    position: relative;
    width: 14px;
    height: 17px; }
    .copy_table {
      margin-bottom: 6px;
      margin-left: 6px;
      /*  right: -4px;
      top: 2px;
	top: calc(50% - 22px);*/ }
    .copy_item {
      width: 16px;
      height: 15px;
      margin-bottom: 20px;
      margin-left: 6px;
      margin-top: 10px; }
    .copy__tooltip {
      border-radius: 2px;
      padding: 7px 7px;
      right: calc(0px - 149px);
      top: -12px;
      font-size: 10px;
      line-height: 11px;
      letter-spacing: -0.04em;
      width: 139px;
      z-index: 2; }
    .copy__tooltip:before {
      right: 99%;
      top: 50%;
      border-width: 9px;
      margin-top: -9px; }
  .tabs {
    padding: 0;
    margin: 28px auto;
    margin-right: -15px;
    margin-left: -15px; }
    .tabs_fake {
      margin: 0px !important; }
    .tabs_main {
      margin-top: 22px; }
    .tabs_main .tabs__key {
      width: 33.33%;
      height: 59px; }
    .tabs_main .tabs__visible {
      padding: 9px 0px; }
    .tabs_main [id^="tab"]:checked + .tabs__key .tabs__visible {
      padding: 9px 0px 15px !important; }
    .tabs_main .tabs__tab-content {
      padding: 19px 52px; }
    .tabs__key {
      width: 25%;
      padding: 0px 15px;
      margin-bottom: 0px;
      height: 69px; }
    .tabs__over {
      display: block;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
    .tabs__visible {
      font-weight: 500;
      font-size: 20px;
      line-height: 32px;
      letter-spacing: -0.02em;
      border-top: 2px solid #fff;
      border-left: 2px solid #fff;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      padding: 12px 0px; }
    .tabs__visible:hover {
      border-top: 2px solid #071C28;
      border-left: 2px solid #071C28;
      border-right: 2px solid #071C28;
      border-bottom: 2px solid #071C28; }
    .tabs__tab-content {
      width: calc(100% - 30px);
      margin-left: 15px;
      padding: 18px 80px;
      border: 2px solid #818e95; }
    .tabs [id^="tab"]:checked + .tabs__key .tabs__visible {
      border-top: 2px solid #818e95;
      border-left: 2px solid #818e95;
      border-right: 2px solid #818e95;
      border-bottom: 2px solid #818e95;
      padding: 17px 0px; }
    .tabs [id^="tab"]:checked + .tabs__key .tabs__visible:after {
      width: 100%;
      height: 4px;
      bottom: -4px;
      left: 0px; }
    .tabs__digits {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .tabs h2 {
      line-height: 35px;
      margin-bottom: 24px; }
    .tabs p {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em;
      margin-bottom: 17px; }
  .file {
    padding-left: 57px;
    height: 42px;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 30px;
    margin-left: 25px;
    margin-top: 5px; }
  .accord {
    margin-top: 24px; }
    .accord__title {
      font-size: 28px;
      line-height: 40px;
      letter-spacing: -0.02em;
      margin: 0px; }
    .accord__clop {
      font-size: 12px;
      line-height: 14px;
      padding-right: 35px;
      margin-top: 15px;
      margin-left: 15px; }
    .accord__clop:after {
      width: 16px;
      height: 10px;
      right: 0px;
      top: 2px; }
    .accord__data {
      margin-top: 29px; }
    .accord .chars {
      background: rgba(195, 212, 220, 0.5);
      padding: 1px 30px;
      margin-right: -30px;
      margin-left: -30px; }
  .chars {
    background: rgba(195, 212, 220, 0.5);
    padding: 5px 66px 40px; }
    .chars__title {
      font-weight: 500;
      font-size: 20px;
      line-height: 32px;
      letter-spacing: -0.01em;
      margin-top: 26px;
      margin-bottom: 17px; }
    .chars__item {
      border-bottom: 2px solid #071C28;
      padding: 7px 0px 6px; }
    .chars__name {
      font-weight: 300;
      font-size: 15px;
      line-height: 22px;
      letter-spacing: -0.02em; }
    .chars__value {
      font-size: 14px;
      line-height: 22px;
      letter-spacing: -0.02em; }
  .image_yellow {
    border: 1px solid #f58014; }
  .image_center {
    margin: 0 auto; }
  .compatible__nav {
    margin-bottom: 30px;
    margin-top: 21px; }
  .compatible__nav-item {
    padding: 14px 36px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.05em;
    border-radius: 2px;
    margin-right: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 44px; }
  .compatible__col {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.02em;
    margin-left: 10px; }
  .description__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.025em;
    margin-top: 18px;
    margin-bottom: 26px; }
  .description p {
    font-size: 15px;
    letter-spacing: 0.015em; }
  .description ul > li {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    max-width: 615px; }
  .description ul > li:before {
    margin-left: 25px;
    margin-right: 7px; }
  .description ol {
    padding-left: 18px;
    padding-top: 9px;
    max-width: 68%; }
  .description ol > li {
    padding-left: 33px;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
    letter-spacing: -0.02em; }
  .description iframe {
    max-width: 100%; }
  .mini-items {
    text-align: center; }
  .mini-item {
    float: none;
    display: inline-block;
    width: 224px;
    padding: 20px 10px 41px 10px;
    margin-right: 30px;
    margin-bottom: 30px;
    border-radius: 3px;
    border: 2px solid #0a75b2;
    /*    &__image {
      margin: 27px auto 0px;
      max-width: 75%;
    }*/ }
    .mini-item .copy_table {
      right: -4px;
      top: 2px; }
    .mini-item__container {
      width: 200px; }
    .mini-item_t3 {
      padding: 20px 17px 41px 17px;
      width: 100%;
      margin: 1px;
      border: none;
      display: block; }
    .mini-item_t3 .mini-item__image {
      max-width: 86%;
      margin: 11px auto 0px; }
    .mini-item_t3 .mini-item__title {
      margin: 28px 0px 0px;
      font-weight: 400;
      font-size: 11px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .mini-item_t3 .mini-item__price {
      margin-bottom: 21px; }
    .mini-item_t3 .mini-item__cart {
      width: 37%; }
    .mini-item_t3 .mini-item__compare {
      width: 23%;
      float: right; }
    .mini-item_t3 .mini-item__favorites {
      width: 23%;
      float: right;
      margin-right: 0px; }
    .mini-item_t3 .mini-item__bottom {
      background: #f4f5f5; }
    .mini-item_t2 {
      width: 215px;
      margin-right: 43px;
      margin-bottom: 40px; }
    .mini-item_t2:nth-child(3n) {
      margin-right: 0px; }
    .mini-item__imghref {
      max-height: 150px; }
    .mini-item__image {
      margin: 27px auto 0px;
      max-width: 75%; }
      .mini-item__image__wrapper {
        height: 120px; }
        .mini-item__image__wrapper_outer {
          display: table;
          width: 100%;
          height: 100%; }
        .mini-item__image__wrapper_inner .no-photo {
          display: block;
          margin: 0 auto;
          max-height: 120px; }
        .mini-item__image__wrapper_inner img {
          max-height: 120px !important;
          width: auto !important;
          max-width: 100%; }
    .mini-item_t2 .mini-item__image {
      max-width: 100%;
      margin: 2px auto 0px; }
    .mini-item__title {
      margin-top: 9px;
      margin-bottom: 0px; }
    .mini-item_t2 .mini-item__title {
      margin: 7px 9px 10px;
      max-width: 75%;
      text-align: left; }
    .mini-item_t2 .copy {
      right: -5px;
      top: 0px; }
    .mini-item__price {
      text-align: left;
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      letter-spacing: -0.03em;
      margin-top: 0px;
      margin-bottom: 17px; }
    .mini-item_t2 .mini-item__price {
      font-size: 22px;
      line-height: 31px;
      margin-left: 12px;
      margin-bottom: 30px;
      text-align: left; }
    .mini-item__col {
      font-size: 12px;
      line-height: 14px;
      margin-left: -3px;
      padding-top: 14px; }
    .mini-item_t2 .mini-item__col {
      margin-left: 5px; }
    .mini-item__bottom {
      bottom: 0px;
      left: 0px;
      width: 100%; }
    .mini-item__cart {
      width: 33.4%;
      height: 41px; }
    .mini-item__cart:hover {
      transition: all 0.2s ease; }
    .mini-item__compare {
      width: 33.3%;
      height: 41px; }
    .mini-item__favorites {
      width: 33.3%;
      height: 41px; }
  .mod4 .owl-prev {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod4 .owl-next {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod4 .owl-prev {
    left: -21px;
    top: -69px;
    width: 15px;
    height: 25px; }
  .mod4 .owl-next {
    right: -21px;
    top: -69px;
    width: 15px;
    height: 25px; }
  .mod5 .owl-prev {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod5 .owl-next {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod5 .owl-prev {
    left: -21px;
    top: -64px;
    width: 15px;
    height: 25px; }
  .mod5 .owl-next {
    right: -21px;
    top: -64px;
    width: 15px;
    height: 25px; }
  .compare__title {
    font-size: 26px;
    line-height: 38px;
    letter-spacing: -0.02em;
    margin-top: 67px; }
  .compare__paramslinks {
    /*  margin-top: 50px;*/
    margin-top: 190px;
    width: 60%; }
  .compare__paramlink {
    display: block;
    float: left !important;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: -0.02em;
    margin-top: 12px; }
  .compare__table {
    margin-top: 5px; }
  .compare__thead {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -0.02em;
    padding: 7px 1px;
    margin-bottom: 19px;
    margin-top: 37px; }
  .compare__thitem {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.03em;
    border-bottom: 1px solid #071C28;
    margin-right: 13px;
    padding: 7px 0px 7px; }
  .compare__area {
    width: 89%; }
  .compare__col {
    width: 100%;
    padding-top: 27px;
    max-width: 290px;
    margin-bottom: 23px;
    margin-right: 13px; }
  .compare__col:last-child {
    margin-right: 0px; }
  .compare_close {
    top: 2px;
    left: 38%;
    margin-left: 105px; }
  .compare__tablecol {
    margin-top: -76px; }
  .compare__colhead {
    height: 46px;
    margin-bottom: 19px;
    margin-top: 37px; }
  .compare__item {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.02em;
    border-bottom: 1px solid #c3d4dc;
    padding: 7px 0px 7px 10px;
    margin-right: 15px; }
  .compare_mini-item {
    margin: 0 auto !important;
    width: 172px !important;
    display: block; }
  .compare_mini-item .item__image {
    margin-top: 5px;
    max-width: 129px; }
  .compare_mini-item .mini-item__title {
    padding: 0px 6px; }
  .compare_mini-item .mini-item__price {
    font-size: 23px;
    margin-top: 1px;
    margin-left: 3px;
    margin-bottom: 15px; }
  .compare__btn {
    width: 27px;
    height: 43px; }
  .compare__btn_prev {
    margin-right: 4px; }
  .compare__btn_next {
    margin-left: 4px; }
  .main-slider .owl-dots {
    width: 14px;
    margin-left: 8px;
    left: 17px;
    top: 50%;
    transform: translateY(-50%); }
  .main-slider .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    margin: 2px 3px !important;
    border: 2px solid #fff;
    border-radius: 50%; }
  .main-slider__slide {
    width: 100%; }
  .main-slider__header {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -0.04em;
    max-width: 280px;
    margin-bottom: 19px; }
  .main-slider__text {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.02em;
    max-width: 260px; }
  .main-slider__key {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    padding: 9px 45px 9px 18px;
    background-position: 94% center;
    right: 83px;
    top: 50%;
    margin-top: -22px;
    z-index: 1; }
  .stickers {
    margin: 20px -10px; }
    .stickers__sticker {
      font-size: 10px;
      line-height: 12px;
      letter-spacing: -0.02em;
      width: calc(33.33% - 20px);
      margin: 0px 10px;
      padding: 14px 10px 14px 13%;
      background-size: 37%; }
    .stickers__ico {
      height: 100%;
      left: 7px;
      top: 0px; }
  .main-item-slider .owl-dots {
    display: none; }
  .left-menu__item {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: -0.02em; }
  .personal {
    margin-bottom: 27px; }
    .personal h2 {
      /*   letter-spacing: -0.03em;
        margin-top: -3px;
        margin-bottom: 0px;*/ }
    .personal hr {
      margin-top: 36px;
      margin-bottom: 37px; }
    .personal .form__input {
      width: 75%; }
    .personal .form__change {
      margin-top: 57px;
      padding-left: 27px; }
    .personal__reitem {
      margin-top: 31px;
      width: 100%; }
    .personal__reitem-left {
      width: 19%; }
    .personal__reitem-right {
      width: 81%;
      padding: 73px 75px 0px 31px; }
    .personal__date {
      left: 30px;
      top: 22px;
      font-weight: 500;
      font-size: 18px;
      line-height: 21px; }
    .personal__bigstars {
      right: 81px;
      top: 17px; }
    .personal__star {
      width: 25px;
      height: 25px;
      margin: 0px 1px 5px; }
    .personal__text {
      font-size: 14px;
      line-height: 22px;
      letter-spacing: -0.02em; }
    .personal_key {
      float: right;
      padding: 6px 78px !important;
      margin-top: 34px;
      font-weight: 500;
      font-size: 16px;
      line-height: 22px; }
    .personal__toggle-key {
      font-size: 18px;
      line-height: 21px;
      padding: 30px 0px 0px; }
    .personal__toggle-key:after {
      width: 11px;
      height: 8px;
      margin-left: 25px; }
    .personal__add-goods {
      margin: 0px 0px 38px;
      width: 216px;
      padding: 7px 33px !important;
      font-weight: 500;
      font-size: 14px;
      line-height: 15px; }
    .personal .item {
      width: 100%;
      padding: 30px 39px;
      margin-bottom: 30px; }
    .personal .item .item__pq-wrapper {
      width: calc(100% - 78px); }
    .personal .item__mobile-bottom {
      width: calc(100% - 78px); }
    .personal .item__pq-wrapper {
      padding: 0px 0px; }
    .personal .item p {
      font-size: 14px;
      line-height: 19px;
      letter-spacing: -0.02em;
      margin-bottom: 25px; }
    .personal .item__compare {
      /*   float: left;*/ }
  .cargo {
    width: 98%; }
    .cargo hr {
      margin-top: 26px !important;
      margin-bottom: 0px !important; }
    .cargo__add {
      margin-top: 0px;
      padding: 32px 39px 7px; }
    .cargo__add:after {
      left: 0px;
      top: 30px;
      width: 18px;
      height: 18px;
      background-size: contain !important; }
    .cargo__hidden-container {
      margin-top: 15px; }
    .cargo__item {
      margin: 0px 0px 19px; }
    .cargo__toggle-key {
      padding: 23px 60px 23px 20px; }
    .cargo__toggle-key .cargo__title {
      font-weight: 500; }
    .cargo__toggle-key:after {
      right: 20px;
      top: 19px;
      width: 22px;
      height: 22px; }
    .cargo__title, .cargo__text {
      font-size: 13px;
      line-height: 15px; }
    .cargo__text__title_alt {
      font-weight: normal;
      margin-bottom: 0px;
      margin-top: 65px; }
    .cargo__toggle-key_opened .cargo__title {
      font-weight: 400; }
    .cargo__toggler {
      margin-top: 29px;
      padding: 44px 5px; }
  .basket {
    margin-bottom: 25px; }
    .basket__head {
      padding-bottom: 22px; }
    .basket__hcol {
      font-size: 12px;
      line-height: 114%;
      letter-spacing: -0.055em; }
    .basket__hcol:nth-child(1) {
      width: 17%; }
    .basket__hcol:nth-child(2) {
      width: 3%; }
    .basket__hcol:nth-child(3) {
      width: 31%; }
    .basket__hcol:nth-child(4) {
      width: 15%; }
    .basket__hcol:nth-child(5) {
      width: 19%; }
    .basket__hcol:nth-child(6) {
      width: 15%; }
    .basket__checkbox {
      margin: -1px 10px 0 0;
      width: 20px;
      height: 20px; }
    .basket__checkbox:not(checked) + label {
      padding: 0px 0 0 39px;
      font-size: 12px;
      line-height: 114%;
      letter-spacing: -0.055em;
      margin-left: 22px;
      min-height: 20px; }
    .basket__checkbox:not(checked) + label:before {
      top: -3px;
      left: 2px;
      width: 20px;
      height: 20px; }
    .basket__garbage {
      width: 20px;
      height: 20px;
      margin-left: 3px; }
    .basket__tooltip::before {
      right: 100%;
      top: 50%;
      border-width: 7px;
      margin-top: -7px; }
    .basket__tooltip {
      border-radius: 2px;
      padding: 17px 7px;
      right: calc(0px - 149px);
      top: -20px;
      left: 28px;
      font-size: 12px;
      line-height: 14px;
      width: 139px;
      z-index: 2;
      box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
      letter-spacing: -0.04em;
      z-index: 2; }
    .basket__item {
      padding: 5px 5px 10px 5px;
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
      margin: 40px 0px; }
    .basket__col:nth-child(1) {
      width: 16%; }
    .basket__col:nth-child(2) {
      width: 14%;
      padding: 0px 11px 0px 37px; }
    .basket__col:nth-child(3) {
      width: 26%; }
    .basket__col:nth-child(4) {
      width: 13%; }
    .basket__col:nth-child(5) {
      width: 18%; }
    .basket__col:nth-child(6) {
      width: 13%; }
    .basket__wrap label {
      margin-left: 0px !important;
      margin-top: 13px;
      padding: 0px 10px !important; }
    .basket__wrap .close {
      margin: 20px auto 0px; }
    .basket__img {
      max-width: 100%; }
    .basket__title {
      font-weight: 500;
      font-size: 14px;
      line-height: 17px;
      margin-bottom: 0px;
      margin-top: 21px;
      margin-left: 4px; }
    .basket__favor-compare {
      margin-top: 8px;
      margin-left: 10px; }
    .basket__favor {
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding: 9px;
      margin-right: 14px; }
    .basket__compare {
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding: 9px;
      margin-right: 18px; }
    .basket__col .item__stars {
      margin-top: 14px; }
    .basket__col .item__star-full {
      width: 9px;
      height: 9px;
      margin-right: 1px; }
    .basket__col .item__star-empty {
      width: 9px;
      height: 9px;
      margin-right: 1px; }
    .basket__col .item__star-col {
      margin-top: -2px;
      margin-left: 1px; }
    .basket__col .item__price {
      font-size: 16px;
      margin-top: 0px;
      margin-bottom: 0px;
      line-height: 29px;
      margin-left: 4px; }
    .basket__col .item__old-price {
      margin-top: 25px;
      left: 0px;
      top: 0px; }
    .basket__col .modal__rwrapper {
      margin-top: 32px; }
    .basket__col .modal__rwrapper .quantity {
      margin-right: 0px;
      float: left; }
    .basket__col .modal__rwrapper .jq-selectbox {
      float: right; }
    .basket__cost {
      font-weight: 500;
      font-size: 24px;
      line-height: 38px;
      letter-spacing: -0.03em;
      margin-top: 24px;
      margin-bottom: 17px; }
    .basket__bottom {
      font-size: 22px;
      line-height: 26px;
      letter-spacing: -0.03em; }
    .basket__text-cost {
      margin-top: 30px; }
    .basket__text-discount {
      margin-top: 26px; }
    .basket__text-total {
      font-weight: 500;
      font-size: 24px;
      line-height: 28px;
      letter-spacing: -0.03em;
      margin-top: 29px; }
    .basket__key {
      padding: 11px 47px !important;
      margin-top: 36px !important;
      font-size: 17px;
      line-height: 22px; }
  .search-results hr {
    margin-top: 34px;
    margin-bottom: 28px; }
  .search-results__section {
    width: 100%;
    margin: 0px 0px 18px; }
  .search-results__sectpic {
    width: 15%; }
  .search-results__text {
    width: 85%; }
  .search-results__secimg {
    margin: 0 auto;
    max-width: 100%; }
  .search-results__secttitle {
    width: 60%;
    margin-left: 13%;
    font-weight: 500;
    font-size: 11px;
    line-height: 22px;
    vertical-align: middle; }
  .search-results__secttitle span {
    line-height: 13px;
    display: inline;
    padding-bottom: 2px; }
  .search-results__sectnum {
    width: 27%;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    vertical-align: middle; }
  .search-results__table-items {
    padding: 0px 0px 16px !important;
    margin-top: 12px;
    margin-bottom: 30px !important; }
  .search-results__table-items .table-items__description-image {
    margin-left: 0px;
    margin-right: 30px;
    width: 53px;
    margin-top: 20px; }
  .search-results__table-items .table-items__description h3 {
    margin-top: 35px; }
  .search-results__table-items .table-items__table {
    margin-top: 2px; }
  .search-results__table-items .table-items__head {
    padding: 16px 0px 7px; }
  .search-results__table-items .table-items__head:nth-child(1) {
    width: 18%;
    text-align: left;
    padding-left: 35px; }
  .search-results__table-items .table-items__head:nth-child(2) {
    width: 8%; }
  .search-results__table-items .table-items__head:nth-child(3) {
    width: 12%; }
  .search-results__table-items .table-items__head:nth-child(4) {
    width: 7%; }
  .search-results__table-items .table-items__head:nth-child(5) {
    display: table-cell;
    width: 13%; }
  .search-results__table-items .table-items__head:nth-child(6) {
    display: table-cell;
    width: 10%; }
  .search-results__table-items .table-items__head:nth-child(7) {
    width: 13%; }
  .search-results__table-items .table-items__head:nth-child(8) {
    width: 19%; }
  .search-results__table-items .table-items__cell {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 11px; }
  .search-results__table-items .table-items__cell:nth-child(5) {
    display: table-cell; }
  .search-results__table-items .table-items__cell:nth-child(6) {
    display: table-cell; }
  .search-results__table-items .table-items__cell_title {
    padding-left: 0px;
    text-align: left;
    letter-spacing: -0.05em;
    font-size: 11px; }
  .search-results__table-items .table-items__icons {
    width: 90%; }
  div.bx-auth-services a {
    padding: 13px 0px 12px 55px; }
  .bx-ss-icon {
    left: 15px; }
  .agree__checkbox:not(checked) + label {
    font-size: 16px; }
  .header__desktop-wrapper.header__newsticky-wrapper .title-search-result {
    overflow: hidden;
    height: calc(100vh - 57px); }
  .modal__rwrapper .item__result-quantity {
    margin-top: 0; }
  .bottom-slider.wmargin {
    margin-bottom: 30px; }
  .spacer404 {
    height: 25px; }
  .err404 h1 {
    display: none; }
  .spacer_big {
    height: 50px; } }

@media all and (min-width: 1190px) {
  body {
    font-size: 16px;
    line-height: 19px; }
  h1 {
    font-size: 48px;
    line-height: 55px;
    letter-spacing: -0.02em;
    /* margin-bottom: 37px;*/
    margin-bottom: 33px;
    margin-top: 10px; }
  .h1 {
    font-size: 48px;
    line-height: 55px;
    letter-spacing: -0.02em;
    /* margin-bottom: 37px;*/
    margin-bottom: 33px;
    margin-top: 10px; }
  h2 {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 23px;
    margin-top: 10px; }
  .h2 {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 23px;
    margin-top: 10px; }
  h3 {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 14px;
    margin-top: 10px; }
  .h3 {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 14px;
    margin-top: 10px; }
  h4,
  h5,
  h6 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    margin-top: 7px; }
  .h4,
  .h5,
  .h6 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    margin-top: 7px; }
  p {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.023em;
    margin-bottom: 1.2rem; }
  ul {
    padding-left: 0px; }
  ul li {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.01em;
    padding-bottom: 2px; }
  ul li::before {
    width: 12px;
    margin-left: 4px; }
  hr {
    margin-top: 56px;
    margin-bottom: 34px; }
  .info {
    display: inline;
    font-size: 19px;
    line-height: 30px;
    letter-spacing: -0.03em;
    padding-bottom: 0px;
    margin-bottom: 10px; }
  .header {
    height: 154px; }
    .header__top {
      height: 110px; }
    .header__bottom {
      height: 44px; }
    .header__right {
      padding-top: 18px; }
    .header__logo {
      width: 167px;
      height: 57px;
      margin-top: 16px; }
    .header__catalog-wrapper {
      width: 100%;
      position: relative; }
    .header__catalog {
      height: 44px;
      font-size: 19px;
      line-height: 21px;
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      background-position: 21px center;
      padding: 11px 0px 12px 52px;
      letter-spacing: 0.06px; }
    .header__catalog_opened {
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
      z-index: 10; }
    .header__catalog_sticky {
      height: 45px;
      padding: 11px 0px 11px 51px;
      z-index: 2; }
    .header__catalog-menu {
      opacity: 0;
      top: 44px;
      left: 0;
      font-size: 13px;
      line-height: 16px;
      letter-spacing: -0.02em;
      z-index: -1;
      width: 100%;
      margin-top: 3px; }
    .header__catalog-wrapper .header__catalog-menu {
      margin-top: 0px; }
    .header__catalog-menu_active {
      z-index: 3;
      opacity: 1; }
    .header__catalog-menu_visible {
      opacity: 1 !important;
      top: -2px;
      margin-top: 0px;
      z-index: 1; }
    .header__catalog-menu-item {
      width: 100%;
      margin-top: 2px; }
    .header__catalog-menu-link {
      padding: 16px 85px 16px 20px;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: -0.02em;
      width: 100%; }
    .header__catalog-menu-outer {
      height: 100%; }
    .header__catalog-menu-inner {
      /* height: 32px;*/ }
    .header__catalog-menu-link:hover {
      transition: all 0.2s ease; }
    .header__catalog-menu-item_childs:after {
      /*      content: '';
      opacity: 0;
      right: -35px;
      top: 0px;
      width: 35px;
      height: 100%;
      z-index: -1;*/ }
    .header__catalog-menu-link_childs:hover:after {
      opacity: 1;
      z-index: 3; }
    .header__catalog-menu-item_childs-active:after {
      transition: all 0.1s ease;
      z-index: 3; }
    .header__catalog-menu-link_childs {
      background-position: calc(100% - 19px) center; }
    .header__catalog-menu-sub {
      display: block;
      display: none;
      /*  opacity: 0;
       visibility: hidden;*/
      z-index: 1;
      position: absolute;
      left: calc(100% + 30px);
      top: 52px;
      width: 945px;
      background-color: #071c28;
      padding: 35px 0px 15px 30px; }
    .header__sub-item {
      display: block;
      float: left;
      /*min-width:280px;*/
      background-color: #f4f5f5;
      width: 30.7%;
      margin-right: 2.3%;
      padding-bottom: 15px;
      margin-bottom: 2.3%; }
    .header__sub-root {
      display: block;
      background-color: #fff;
      font-weight: normal;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: -0.02em;
      margin-bottom: 5px;
      padding: 8px 2px; }
    .header__sub-root-title {
      display: inline-block;
      margin-left: 15px;
      padding-top: 12px;
      color: #071C28; }
    .header__sub-root-text {
      font-size: 12px;
      line-height: 18px;
      letter-spacing: 0.02px;
      color: #828E95;
      display: inline-block; }
    .header__sub-items-list {
      display: block;
      padding: 12px 0px 12px 15px; }
    .header__sub-item-link {
      display: block;
      color: #071C28;
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      padding: 4px 0px 3px; }
    .header__sub-item-link:hover {
      color: #071C28; }
    .header__sub-root-image {
      vertical-align: top; }
    .header__sub-item-text {
      margin-left: 4px;
      color: #828E95; }
    .header__sub-items-sublist {
      display: block;
      max-width: 85%;
      padding: 4px 0px; }
    .header__sub-item-sublink {
      display: block;
      font-weight: 300;
      font-size: 10px;
      line-height: 12px;
      color: #071C28;
      padding: 0px;
      letter-spacing: -0.02px; }
    .header__sub-item-sublink:hover {
      color: #071C28; }
    .header__sub-item-subtext {
      color: #828E95;
      margin-left: 2px; }
    .header__catalog-menu-sub_active {
      opacity: 1;
      visibility: visible;
      transition: all 0.2s ease;
      z-index: 3; }
    .header__phone {
      font-weight: 500;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: 0.02px;
      margin-right: -1px; }
    .header__email {
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      padding-top: 4px;
      padding-left: 36px;
      letter-spacing: 0.04px; }
    .header__contacts {
      margin-top: 16px; }
    .header__personal {
      margin-top: 17px; }
    .header__register:before {
      content: '';
      width: 11px;
      height: 12px;
      margin-right: 7px;
      background-position: 0px 2px; }
    .header__register {
      font-size: 12px;
      line-height: 14px;
      margin-top: 4px; }
    .header__login:before {
      content: '';
      width: 12px;
      height: 13px;
      margin-right: 3px;
      background-position: 3px 0px; }
    .header__login {
      font-size: 12px;
      line-height: 14px;
      margin-top: 13px; }
    .header__search-block {
      margin-left: 0px;
      margin-top: 1px; }
    .header__postponed-items {
      font-size: 11px;
      line-height: 17px;
      margin-right: -15px; }
    .header__postponed-items_index {
      margin-left: 22px; }
    .header__postponed-items_index .header__postponed-items_link {
      padding: 9px 69px 9px 15px; }
    .header__postponed-items_link {
      padding: 11px 13px 9px 18px;
      letter-spacing: 0.5px;
      background-position: 1px center; }
    .header__postponed-items_link:last-child {
      padding-right: 0px; }
    .header__basket {
      background-position: 12px 1px;
      padding: 29px 0px 0px 0px;
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      margin-top: -16px;
      margin-right: -2px;
      float: right; }
    .header__basket_sticky {
      margin-top: -17px; }
    .header__basket_col {
      left: 29px;
      top: -6px;
      line-height: 18px;
      min-width: 18px;
      padding: 0 2px;
      height: 18px;
      white-space: nowrap;
      border-radius: 9px; }
    .header__sticky {
      margin-top: 35px; }
    .header__sticky-wrapper {
      left: 0;
      top: 0;
      width: 100%;
      height: 80px;
      z-index: 11; }
    .header__newsticky-wrapper {
      left: 0;
      top: -80px;
      width: 100%;
      height: 80px;
      z-index: 11; }
    .header__sticky-indicator {
      top: 0;
      height: 3px;
      left: 0;
      width: 0;
      z-index: 2; }
    .header__search-block-results {
      left: 0;
      top: 33px;
      padding: 20px 17px;
      width: 100%;
      font-size: 12px;
      line-height: 14px; }
    .header__search-block-title {
      margin-top: 3px;
      margin-bottom: 6px; }
    .header__search-block-result {
      width: 100%;
      line-height: 14px;
      margin-top: 4px;
      padding-left: 11px;
      margin-bottom: 4px;
      padding-right: 7px; }
    .header__search-block-link {
      font-size: 13px;
      letter-spacing: 0.3px;
      max-width: 70%; }
    .header__search-block-desc {
      font-size: 12px;
      max-width: 30%; }
    .header__search-block-itemresult {
      width: 100%;
      font-size: 12px;
      line-height: 14px;
      padding-top: 6px;
      padding-bottom: 0px;
      padding-right: 60px;
      margin-bottom: 0px; }
    .header__search-block-itemlink {
      padding: 0 .1em 0 0;
      margin: 0;
      letter-spacing: -0.21px;
      line-height: 13px; }
    .header__search-block-ireswrapper {
      width: 100%;
      padding-right: 8px;
      padding-left: 14px;
      padding-top: 2px; }
    .header__search-block-itemlink:before {
      content: '';
      left: -13px;
      top: 11px;
      width: 6px;
      height: 6px; }
    .header__search-block-itemdesc {
      right: 0;
      bottom: 0;
      font-size: 11px;
      padding: 0 0 0 .2em;
      margin: 0; }
    .header__search-block-rub {
      padding-left: 2px; }
    .header__search-block-line {
      height: 1px;
      width: 100%;
      margin-top: 17px;
      margin-bottom: 15px; }
    .header__search-block-tottallink {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em;
      margin-left: 11px;
      padding-bottom: 2px;
      margin-bottom: 10px; }
    .header__catalog-submenu_ajax {
      left: 100%;
      top: 0px;
      width: calc(300% + 105px);
      height: 100%;
      z-index: -1;
      padding: 19px 11px 19px 22px;
      box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25); }
    .header__catalog-sticky-wrapper .header__catalog-menu {
      visibility: hidden;
      top: 42px;
      left: 15px;
      width: calc(100% - 30px);
      height: calc(100vh - 80px);
      /*   overflow:hidden;*/
      box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25); }
    .header__catalog-static-wrapper .header__catalog-menu {
      visibility: hidden;
      top: 42px;
      left: 0px;
      width: 100%;
      height: calc(100vh - 152px);
      /*   overflow:hidden;*/
      box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25); }
  /*
ul.leaders li { clear: both; }

ul.leaders li span:first-child {
  float: left;
  padding: 0 .4em 0 0;
  margin: 0;
}
ul.leaders li span + span {
  float: right;
  padding: 0 0 0 .4em;
  margin: 0;
}

ul.leaders li:after {
  content: "";
  display: block;
  overflow: hidden;
  height: 1em;
  border-bottom: 1px dotted;
}
*/
  .openmenuspacer {
    display: block;
    width: 100%; }
  .top-menu {
    margin-right: -15px;
    color: #f4f5f5;
    font-size: 14px;
    line-height: 20px; }
    .top-menu__link {
      margin: 10px 17px 10px 16px;
      padding-top: 7px;
      padding-bottom: 10px;
      letter-spacing: -0.02em; }
    .top-menu__link:first-child {
      margin-left: 0px; }
    .top-menu__link:last-child {
      margin-right: 0px; }
  .city-selector__info {
    font-size: 14px;
    line-height: 30px;
    margin-left: 0px; }
  .city-selector__select {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-left: 7px;
    margin-right: 7px;
    letter-spacing: -0.02em; }
  .city-selector__select:after {
    content: '';
    width: 12px;
    height: 9px;
    margin-left: 5px; }
  .search {
    width: 100%;
    padding: 11px 10px 9px 38px;
    font-size: 12px;
    font-weight: normal;
    line-height: 14px;
    background-position: 21px center; }
  .hFooter {
    height: 382px; }
  .footer {
    width: 100%;
    margin: -382px auto 0px;
    height: 382px; }
    .footer__wrappermnu {
      padding-top: 35px;
      min-height: 295px; }
    .footer__menu_link_first {
      font-size: 15.5px;
      line-height: 34px;
      margin-bottom: 10px; }
    .footer__menu_link {
      font-size: 13.5px;
      line-height: 28px;
      letter-spacing: 0.1px; }
    .footer__menu-all {
      display: block !important; }
    .footer__copyright {
      font-size: 14px;
      line-height: 20px;
      margin-top: 23px; }
    .footer__phone {
      font-weight: 500;
      font-size: 16px;
      line-height: 29px;
      letter-spacing: 0.4px; }
    .footer__email {
      font-weight: 500;
      font-size: 12px;
      line-height: 33px;
      letter-spacing: 0.4px; }
  .social_footer {
    margin-left: 3px;
    margin-top: 10px; }
  .social__link {
    display: block;
    width: 24px;
    height: 24px;
    margin-bottom: 20px; }
  .tega {
    float: right;
    width: 101px;
    height: 45px; }
  .qb {
    margin: 22px auto 0px;
    width: 158px;
    height: 24px; }
  .wrapper-artyot {
    margin-top: 30px;
    margin-bottom: 55px; }
  .articles {
    padding-bottom: 25px;
    /*   &__all {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        border-bottom: 1px solid $accent_color4;
        margin-right: 20px;
        margin-top: 32px;
    }
    &__all:after {
        width: 7px;
        height: 10px;
        right: -18px;
        top: 7px;

    }
    &__all:hover {
    }
    */ }
    .articles_half {
      width: 46%;
      padding: 49px 3px; }
    .articles__title {
      font-size: 32px;
      line-height: 38px;
      letter-spacing: -0.02em;
      margin-bottom: 35px; }
    .articles__article {
      padding-right: 20px;
      margin-bottom: 6px; }
    .articles__article-date {
      font-size: 10px;
      line-height: 102%;
      letter-spacing: 0.03em;
      padding: 5px 63px 3px 8px;
      min-width: 165px; }
    .articles__article-title {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      margin-top: 13px; }
    .articles__article-text {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em;
      margin-top: 10px; }
    .articles__article-left {
      width: 23.5%;
      padding-right: 29px; }
    .articles__article-right {
      width: 70%;
      margin-top: 2px; }
    .articles__hr {
      margin-top: 23px;
      width: 77%; }
    .articles__sections {
      display: block;
      padding-top: 10px; }
    .articles__sections:after {
      content: '';
      display: block;
      clear: both; }
    .articles__section {
      background-position: 1% center;
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
      margin-right: 26px;
      width: calc(50% - 13px);
      height: 172px;
      margin-right: 26px;
      margin-bottom: 20px; }
    .articles__section:nth-child(2n) {
      margin-right: 0px; }
    .articles__txtwrapper {
      background-position: 18% center;
      height: 172px;
      width: 100%;
      padding-left: 21%;
      padding-right: 3%; }
    .articles__section-title {
      font-weight: 500;
      font-size: 14px;
      line-height: 17px;
      margin-top: 0px;
      margin-bottom: 10px; }
    .articles__section-text {
      font-weight: 300;
      font-size: 11px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .articles__section-hr {
      margin-top: 19px;
      margin-bottom: 17px; }
    .articles__h2 {
      letter-spacing: 0em;
      margin-bottom: 45px; }
  .nicescroll-cursors {
    width: 3px !important; }
  .dxyoutube {
    width: 54%;
    padding: 49px 32px 70px 35px;
    /*  &__all {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        margin-right: 20px;
        margin-top: 0px;
    }
    &__all:after {
        width: 7px;
        height: 10px;
        right: -18px;
        top: 7px;

    }
    &__all:hover {
    }
    */ }
    .dxyoutube_full {
      width: 100% !important;
      padding: 37px 63px 71px 85px !important; }
    .dxyoutube_full .dxyoutube__tube-img {
      width: 20%; }
    .dxyoutube_full .dxyoutube__tube-desc {
      width: 80%; }
    .dxyoutube_full .dxyoutube__tube {
      margin-bottom: 18px; }
    .dxyoutube__title {
      font-size: 32px;
      line-height: 38px;
      letter-spacing: -0.02em; }
    .dxyoutube__text {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em;
      margin-top: 20px; }
    .dxyoutube__scroll {
      margin-top: 40px;
      max-height: 430px;
      border-right: 2px solid #fff; }
    .dxyoutube__scroll-shadow:after {
      margin: 0 auto;
      width: 100%;
      z-index: 1;
      bottom: 0;
      height: 70px; }
    .dxyoutube__tube-img {
      border: 1px solid transparent;
      width: 36%; }
    .dxyoutube__tube-desc {
      padding-left: 20px;
      width: 64%; }
    .dxyoutube__tube {
      font-weight: 500;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em;
      margin-bottom: 28px; }
  .news__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 42px;
    letter-spacing: -0.02em; }
  .left-news {
    /*   &__all {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        margin-right: 20px;
    }
    &__all:after {
        width: 7px;
        height: 10px;
        right: -15px;
        top: 7px;

    }
    &__all:hover {
        }*/ }
    .left-news__title {
      font-size: 32px;
      line-height: 38px;
      letter-spacing: -0.02em;
      margin-top: 27px;
      margin-bottom: 24px; }
    .left-news__item-title {
      font-weight: 500;
      font-size: 16px;
      line-height: 20px;
      letter-spacing: -0.02em;
      margin-bottom: 10px; }
    .left-news__item {
      font-size: 12px;
      line-height: 14px;
      letter-spacing: -0.025em;
      margin-bottom: 27px; }
  .link-all {
    font-size: 16px;
    line-height: 22px;
    margin-right: 20px; }
    .link-all:after {
      width: 7px;
      height: 10px;
      right: -18px;
      top: 7px; }
  .mod2 .owl-prev {
    background-image: url(../img/slider_left-mod2.svg) !important;
    border-radius: 50% !important;
    left: -23px;
    top: -230px;
    width: 64px;
    height: 64px; }
  .mod2 .owl-next {
    background-image: url(../img/slider_right-mod2.svg) !important;
    border-radius: 50% !important;
    right: -23px;
    top: -230px;
    width: 64px;
    height: 64px; }
  .mod3 .owl-prev {
    background-image: url(../img/slider_left-mod2.svg) !important;
    border-radius: 50% !important;
    left: -23px;
    top: -222px;
    width: 64px;
    height: 64px; }
  .mod3 .owl-next {
    background-image: url(../img/slider_right-mod2.svg) !important;
    border-radius: 50% !important;
    right: -23px;
    top: -220px;
    width: 64px;
    height: 64px; }
  .mod1 .owl-nav {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    margin-top: 0px; }
  .mod1 .owl-prev {
    background-image: url(../img/slider_left.svg) !important;
    left: -52px;
    top: calc(50% - 22px);
    width: 27px;
    height: 43px;
    margin: 0 !important; }
  .mod1 .owl-prev:hover {
    background-image: url(../img/slider_left-hover.svg) !important; }
  .mod1 .owl-next {
    background-image: url(../img/slider_right.svg) !important;
    right: -52px;
    top: calc(50% - 22px);
    width: 27px;
    height: 43px;
    margin: 0 !important; }
  .mod1 .owl-next:hover {
    background-image: url(../img/slider_right-hover.svg) !important; }
  .comments {
    padding-top: 75px;
    padding-bottom: 55px; }
    .comments__title {
      margin-left: 45px;
      font-size: 36px;
      line-height: 43px;
      letter-spacing: -0.02em; }
    .comments__slider {
      /*margin-top:46px;*/
      width: calc(100% - 90px);
      margin: 46px 45px 0px; }
    .comments__comment-wrapper {
      width: 100%; }
    .comments__comment {
      padding: 42px 53px 42px 62px; }
    .comments__comment-text {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em;
      max-height: 88px;
      overflow: hidden; }
    .comments__comment-author {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      margin-top: 28px;
      margin-bottom: 12px; }
  .map p {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em; }
  .map {
    width: 100%;
    background-color: #071C28;
    padding: 30px 0px 90px; }
    .map__title {
      font-size: 32px;
      line-height: 38px;
      letter-spacing: -0.02em;
      margin-bottom: 26px;
      margin-top: 20px; }
    .map__addr {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px; }
    .map__container {
      width: 50%;
      padding-left: 10px;
      height: 100%;
      right: 0px;
      top: 0px; }
  .key {
    padding: 15px 47px; }
    .key_comments {
      padding: 14px 47px;
      margin-top: 3px;
      margin-right: 46px;
      float: right; }
    .key__text {
      font-size: 16px;
      line-height: 22px; }
    .key_center-modal {
      width: 360px;
      margin: 60px auto 30px; }
    .key_form {
      width: 263px;
      padding: 10px 10px;
      margin-top: 38px;
      margin-bottom: 13px; }
  .breadcrumbs {
    margin-top: 10px;
    margin-bottom: 12px; }
    .breadcrumbs__item {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em;
      padding: 9px 2px 0px 2px; }
    .breadcrumbs__item:after {
      top: 9px; }
  .title-info {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.02em; }
  .pagination {
    font-size: 18px;
    line-height: 21px;
    padding-bottom: 17px; }
    .pagination__link {
      padding: 4px 7px;
      margin: 0px 4px; }
    .pagination__current {
      padding: 4px 7px;
      margin: 0px 3px 0px 6px; }
    .pagination__separator {
      padding: 4px 7px;
      margin: 0px 2px; }
  .contacts {
    margin-bottom: 17px; }
    .contacts__col {
      width: 40%;
      margin-right: 50px; }
    .contacts__info {
      font-size: 16px !important;
      line-height: 19px !important;
      letter-spacing: -0.01em !important;
      padding-bottom: 0px !important; }
    .contacts__hr {
      margin-top: 20px; }
  .rating {
    padding: 6px; }
    .rating__stars {
      margin-top: 8px; }
    .rating__star {
      width: 23px;
      height: 23px;
      margin: 0px 2px 0px 2px; }
    .rating__startext {
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0.05em; }
    .rating__digits {
      margin-left: 15px; }
    .rating__digit1 {
      font-weight: 500;
      font-size: 24px;
      line-height: 26px;
      letter-spacing: -0.03em;
      margin-top: 3px; }
    .rating__digit2 {
      font-weight: 500;
      font-size: 15px;
      line-height: 20px;
      top: 10px; }
    .rating__text {
      font-weight: 300;
      font-size: 18px;
      line-height: 15px;
      letter-spacing: -0.01em;
      margin-top: 21px;
      margin-left: 15px; }
  .modal {
    padding: 44px 60px; }
    .modal__ok {
      width: 48px;
      margin: 24px auto 13px; }
    .modal__title {
      width: 100%;
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      padding: 15px 0px 38px; }
    .modal_favor {
      width: 945px;
      padding: 47px 0px 0px 0px !important; }
    .modal__header_success {
      margin-bottom: 50px; }
    .modal__header {
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      padding-left: 55px; }
    .modal__header:before {
      left: -15px;
      top: -8px;
      width: 50px;
      height: 50px; }
    .modal__gray {
      width: 100%;
      padding: 50px 95px; }
    .modal__white {
      width: 100%;
      padding: 50px 95px; }
    .modal__item {
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3); }
    .modal__item_left {
      width: 28%;
      padding: 5px 25px;
      margin: 50px 0px; }
    .modal__item_right {
      margin-top: 30px;
      width: 69%;
      padding: 5px 25px; }
    .modal__item-title {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      margin-bottom: 12px; }
    .modal__item-text {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em;
      margin-bottom: 0px; }
    .modal__lwrapper .item__price {
      margin-bottom: 8px; }
    .modal__rwrapper {
      margin-top: 40px; }
    .modal hr {
      margin: 0px 0px 17px 0px !important; }
    .modal__dotted-link {
      border-bottom: 1px dashed #f58014;
      font-weight: 500;
      font-size: 16px;
      line-height: 43px; }
    .modal__dotted-link_small {
      font-weight: 500;
      font-size: 14px;
      line-height: 31px;
      margin-left: 25px; }
    .modal__big-title {
      font-size: 28px;
      line-height: 34px;
      letter-spacing: -0.02em;
      margin-left: 21px; }
    .modal__key {
      padding: 13px 6px !important;
      margin-left: -15px;
      margin-right: -15px;
      width: calc(100% + 15px);
      margin-bottom: 35px; }
    .modal__slider {
      margin-top: 8px; }
    .modal__item_left-add {
      border-right: none !important;
      width: 23% !important;
      padding: 8px 8px !important; }
    .modal__item_right-add {
      width: 67% !important;
      position: relative; }
    .modal__item_right-add .modal__item-title {
      padding-right: 90px !important; }
    .modal__item_right-add .modal__item-text {
      padding-right: 55px !important;
      line-height: 25px !important; }
    .modal__item_right-add .item__price {
      margin-top: 33px;
      font-size: 30px; }
    .modal__item_right-add .item__old-price {
      left: 0px !important;
      top: -17px !important;
      font-size: 13px; }
    .modal__item_right-add .item__stars {
      position: absolute;
      right: 26px;
      top: 14px; }
    .modal__item_right-add .item__star-full {
      width: 12px;
      height: 12px;
      background-size: contain; }
    .modal__item_right-add .item__star-empty {
      width: 12px;
      height: 12px;
      background-size: contain; }
    .modal__item_right-add .item__star-col {
      font-size: 10px;
      line-height: 14px;
      margin-top: 0px;
      margin-left: 3px; }
    .modal__item_right-add hr {
      border-color: #f58014; }
    .modal__item_right-add .modal__dotted-link {
      border-bottom: 1px solid #f58014;
      font-weight: 500;
      font-size: 14px;
      line-height: 48px; }
    .modal__item_right-add .key {
      margin-bottom: 0px; }
    .modal__item_right-add .item__favor-compare {
      margin-top: 30px;
      margin-bottom: 30px; }
    .modal__rwrapper .quantity {
      width: 58px;
      margin-right: 12px;
      float: left; }
    .modal__rwrapper .jq-selectbox__select {
      height: 26px; }
    .modal__rwrapper .jq-selectbox__select {
      line-height: 24px; }
    .modal__rwrapper .form__select_small {
      margin-left: 0px; }
    .modal__rwrapper .jq-selectbox__trigger-arrow {
      top: 5px; }
  .score__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    padding: 10px 0px 38px; }
  .modal .fancybox-close-small {
    right: 19px;
    top: 27px;
    padding: 3px; }
  .form {
    width: 100%; }
    .form__change {
      font-size: 14px;
      line-height: 38px;
      letter-spacing: -0.02em; }
    .form__suggestions {
      position: absolute;
      bottom: 0px;
      width: 100%; }
    .form p {
      font-weight: 300;
      font-size: 18px;
      line-height: 15px;
      letter-spacing: -0.01em;
      margin-top: 12px;
      margin-bottom: 3px; }
    .form_minus-spacer {
      margin-top: -11px; }
    .form_spacer {
      margin-top: 25px; }
    .form__select_small {
      margin-left: 4px; }
    .form__group {
      padding-top: 15px; }
    .form__finded {
      box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
      border-radius: 2px;
      padding: 18px 22px;
      right: calc(0px - 170px);
      top: -9px;
      font-size: 12px;
      line-height: 14px; }
    .form__title_nopadd {
      padding: 0px !important;
      margin: 0px !important; }
    .form__finded:before {
      right: 100%;
      top: 50%;
      border-width: 9px;
      margin-top: -9px; }
    .form__main-title {
      padding: 16px 0px;
      font-weight: 500;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em;
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff; }
    .form__title_bold {
      font-weight: 500 !important; }
    .form__main-title-big {
      padding: 16px 0px;
      font-weight: 500;
      font-size: 18px;
      line-height: 18px;
      letter-spacing: -0.02em;
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff; }
    .form__title {
      font-weight: 400;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em;
      margin-right: 24px; }
    .form__title_small {
      font-size: 12px;
      line-height: 16px; }
    .form__checkbox {
      margin: -1px 10px 0 0;
      width: 16px;
      height: 16px; }
    .form__label_big {
      font-weight: 500 !important;
      font-size: 16px !important;
      line-height: 18px !important;
      letter-spacing: -0.02em;
      margin-bottom: -6px !important; }
    .form__checkbox_big:not(checked) + label::before {
      top: 22px !important; }
    .form__checkbox:not(checked) {
      opacity: 0; }
    .form__checkbox:checked + label {
      font-weight: 500; }
    .form__checkbox:not(checked) + label {
      padding: 12px 0 0 26px;
      font-weight: 300;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 3px; }
    .form__checkbox:not(checked) + label:before {
      top: 10px;
      left: 2px;
      width: 17px;
      height: 17px; }
    .form__radio-wrapper {
      padding: 0px 6px; }
    .form__radio {
      margin: -1px 10px 0 0;
      width: 16px;
      height: 16px; }
    .form__radio:not(checked) {
      opacity: 0; }
    .form__radio:checked + label {
      font-weight: 500; }
    .form__radio:not(checked) + label {
      padding: 10px 0 0 26px;
      font-weight: 300;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 3px; }
    .form__radio:not(checked) + label:before {
      top: 8px;
      left: 2px;
      width: 16px;
      height: 16px; }
    .form__key {
      padding: 11px 30px !important;
      /*padding:11px 52px !important;*/
      margin: 20px auto 15px; }
    .form_modal {
      width: 825px;
      padding: 0px 36px; }
    .form__errtext {
      top: 11px;
      left: 18px;
      font-size: 12px;
      line-height: 14px; }
    .form__modal-input {
      width: 100%;
      font-size: 18px;
      line-height: 21px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid transparent;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
      padding: 10px 10px 10px 10px;
      margin-top: 51px;
      margin-bottom: 20px; }
    .form__modal-textarea {
      width: 100%;
      font-size: 18px;
      line-height: 21px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid #071C28;
      border-left: 1px solid #071C28;
      border-right: 1px solid #071C28;
      padding: 23px 10px 10px 10px;
      margin-top: 51px;
      margin-bottom: 20px;
      height: 145px; }
    .form__input {
      width: 88%;
      font-size: 18px;
      line-height: 21px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid transparent;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
      padding: 21px 14px 12px 0px;
      margin-top: 40px;
      margin-bottom: 0px; }
    .form__input.form__error {
      padding-left: 14px; }
    .form__textarea {
      width: 100%;
      font-size: 18px;
      line-height: 21px;
      border-bottom: 1px solid #071C28;
      border-top: 1px solid #071C28;
      border-left: 1px solid #071C28;
      border-right: 1px solid #071C28;
      padding: 23px 10px 10px 10px;
      margin-top: 12px;
      margin-bottom: 20px;
      height: 145px; }
    .form__error {
      border: 1px solid #f45800;
      border-radius: 2px; }
    .form__modal-textarea-gray {
      width: 100%;
      font-size: 16px;
      line-height: 22px;
      border-radius: 3px;
      border-bottom: 1px solid #c3d4dc;
      border-top: 1px solid #c3d4dc;
      border-left: 1px solid #c3d4dc;
      border-right: 1px solid #c3d4dc;
      padding: 15px 22px 15px 22px;
      margin-top: 12px;
      margin-bottom: 38px;
      height: 80px; }
    .form__charact {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      padding-left: 24px;
      margin-top: 20px; }
    .form__charact:before {
      left: 0px;
      top: 5px;
      width: 14px;
      height: 14px; }
    .form_gray {
      margin-bottom: 14px;
      padding-bottom: 16px; }
    .form__radio-wrapper_v2 {
      position: relative;
      padding: 22px 0px 0px !important; }
    .form__radio_mh .form__radio_v2 + label {
      min-height: 43px; }
    .form__radio_v2 + label {
      font-size: 18px !important;
      line-height: 20px !important;
      letter-spacing: 0.36px; }
    .form__radio_v2:not(checked) + label {
      padding: 9px 0 0 38px !important;
      margin-bottom: 0px !important; }
    .form__radio_v2:not(checked) + label:before {
      content: '';
      top: 8px !important;
      left: 0px !important;
      width: 20px !important;
      height: 20px !important; }
    .form__label-bold {
      font-weight: 500;
      font-size: 18px;
      line-height: 18px;
      letter-spacing: -0.01em;
      color: #000; }
    .form__label-light {
      font-weight: 300;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.01em;
      color: #828E95; }
    .form__addcargolink {
      font-size: 18px;
      line-height: 21px;
      padding: 0px 0px 3px 0px;
      margin-top: 8px;
      margin-left: 39px; }
    .form__addcargolink:before {
      top: 1px;
      left: -39px;
      width: 20px;
      height: 20px; }
    .form__input_v2 {
      padding: 10px 9px 10px 0px !important;
      margin-top: 18px !important;
      margin-bottom: 5px !important; }
    .form_hr {
      margin-top: 34px; }
    .form_h2 {
      text-transform: uppercase;
      margin-bottom: 29px !important; }
    .form_p {
      font-weight: 300;
      font-size: 14px;
      line-height: 17px;
      margin-bottom: 0px; }
    .form__btext {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      letter-spacing: 0.09px; }
    .form__btext_margins {
      margin-top: 14px;
      margin-bottom: 36px; }
    .form__btext_margin-top {
      margin-top: 14px; }
  .reviews {
    padding-top: 8px;
    margin-bottom: 30px; }
    .reviews__bigstars {
      margin-top: -3px; }
    .reviews__bigstars .form__errtext {
      top: 27px !important; }
    .reviews__bigstars_score {
      margin-top: -5px; }
    .reviews__star {
      width: 39px;
      height: 39px;
      margin: 0px 2px 5px; }
    .reviews__star_big {
      width: 46px;
      height: 46px;
      margin: 0px 4px 4px; }
    .reviews__startext {
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0.05em; }
    .reviews__digits {
      margin-left: 22px; }
    .reviews__digit1 {
      font-weight: 500;
      font-size: 50px;
      line-height: 59px;
      letter-spacing: -0.03em;
      margin-top: -5px; }
    .reviews__digit2 {
      font-weight: 500;
      font-size: 24px;
      line-height: 28px;
      top: 10px; }
    .reviews__title {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      margin-bottom: 6px; }
    .reviews__date {
      font-weight: 300;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 30px; }
    .reviews__item {
      margin-top: 30px; }
    .reviews__item-left {
      width: 34%; }
    .reviews__item-right {
      width: 66%;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em; }
    .reviews__hr {
      margin-top: 32px;
      margin-bottom: 34px;
      width: 77%; }
    .reviews__rtitle {
      font-weight: 500;
      font-size: 32px;
      line-height: 38px;
      letter-spacing: -0.02em;
      margin-top: 15px;
      margin-bottom: 27px; }
    .reviews__otitle {
      font-weight: 700;
      font-size: 32px;
      line-height: 47px !important;
      letter-spacing: -0.02em;
      margin-top: 0px;
      margin-bottom: 0px; }
    .reviews__keywrap {
      padding-top: 30px; }
    .reviews_tabs .reviews__bigstars {
      margin-top: 9px;
      margin-right: -3px; }
    .reviews_tabs .reviews__digits {
      margin-left: 32px;
      margin-top: -10px; }
    .reviews_tabs .reviews__star {
      width: 28px;
      height: 28px;
      margin: 0px 3px 11px; }
    .reviews_tabs .reviews__startext {
      font-size: 10px;
      line-height: 12px;
      letter-spacing: 0.01em; }
    .reviews_tabs .reviews__item {
      margin-top: 20px;
      margin-bottom: 28px; }
    .reviews_tabs .reviews__item-left {
      width: 24%; }
    .reviews_tabs .reviews__item-left_questions {
      width: 32%; }
    .reviews_tabs .reviews__item-right_questions {
      width: 62%; }
    .reviews__pluses {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      margin-top: 27px;
      margin-bottom: 9px; }
    .reviews__pluses:before {
      left: -38px;
      top: -4px;
      width: 30px;
      height: 30px; }
    .reviews__minuses {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      margin-top: 27px;
      margin-bottom: 9px; }
    .reviews__minuses:before {
      left: -38px;
      top: -4px;
      width: 30px;
      height: 30px; }
    .reviews__question:before {
      left: -38px;
      top: -4px;
      width: 30px;
      height: 30px; }
    .reviews__keywrap_t2 .key {
      min-width: 260px;
      padding: 12px 47px 10px;
      font-size: 14px;
      line-height: 22px; }
    .reviews__item-left .key {
      padding: 10px 47px 9px; }
    .reviews__shopanswer {
      width: 95%;
      border-left: 2px solid #f58014;
      margin-top: 28px;
      margin-left: 10px;
      padding-left: 20px; }
    .reviews__shopanswer b {
      margin-bottom: 5px; }
    .reviews__intotext {
      font-size: 13px;
      line-height: 17px;
      letter-spacing: 0.04em; }
  .bind {
    width: 85%; }
    .bind_full {
      width: 100%;
      margin-top: 14px;
      margin-bottom: 24px; }
    .bind_full .bind__social {
      min-width: 252px;
      padding: 13px 40px 12px 100px; }
    .bind_full .bind__social-icon {
      left: 67px; }
    .bind__title {
      margin: 0 auto;
      font-size: 18px;
      margin-bottom: 24px; }
    .bind p {
      font-size: 18px;
      line-height: 15px;
      letter-spacing: -0.02em; }
    .bind__title:before, .bind__title:after {
      width: 100%;
      height: 1px; }
    .bind__title:before {
      margin-left: -100%;
      left: -11px; }
    .bind__title:after {
      margin-right: -100%;
      right: -11px; }
    .bind__social-wrapper {
      margin-top: 42px; }
    .bind__social {
      padding: 13px 40px 12px 76px;
      font-weight: 300;
      font-size: 18px;
      line-height: 15px;
      letter-spacing: -0.01em;
      margin-right: 45px;
      border-radius: 2px;
      min-width: 205px; }
    .bind__social:hover {
      transition: all 0.2s ease; }
    .bind__social-icon {
      top: 8px;
      left: 37px;
      width: 24px;
      height: 24px;
      border-radius: 4px;
      padding: 3px 1px 3px 0px; }
    .bind__social-icon-transparent {
      font-size: 24px;
      padding: 0px;
      margin-top: -2px; }
    .bind__social:last-child {
      margin-right: 0px; }
  .spacer {
    display: block;
    height: 20px; }
    .spacer_big {
      height: 50px; }
  .catsections__section {
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
    margin-bottom: 12px;
    margin-top: 8px;
    padding: 8px 22px 8px 8px;
    height: 74px;
    border-radius: 2px; }
  .catsections__image {
    max-width: 30%;
    max-height: 58px; }
  .catsections__info {
    max-width: 70%;
    padding-left: 8px; }
  .catsections__title {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: -0.02em;
    margin-top: 4px;
    padding-right: 10px;
    max-height: 30px; }
  .catsections__col {
    font-size: 12px;
    line-height: 18px;
    padding-top: 2px; }
  .catsections__keydown {
    top: 0px;
    right: 0px;
    z-index: 1;
    width: 22px;
    height: 100%; }
  .catsections__subsections {
    width: 100%;
    padding: 14px 7px 20px;
    top: 77px;
    left: 0;
    border-radius: 2px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    line-height: 18px;
    z-index: 3; }
  .catsections__subsection {
    font-size: 14px;
    line-height: 18px;
    z-index: 2; }
  .catsections__subsections-col {
    margin-left: 4px; }
  .item {
    border-radius: 2px;
    width: 302px;
    height: 661px;
    padding: 30px 25px;
    margin-right: 20px;
    margin-bottom: 20px; }
    .item__image__wrapper {
      height: 188px; }
    .item:hover {
      opacity: 1;
      transform: scale(1.075);
      transition: all 0.2s ease;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
      z-index: 1; }
    .item__titlelink {
      height: 100%;
      padding-right: 12px; }
    .item_slider {
      border: none;
      margin-right: 2px;
      padding: 30px 13px;
      width: 262px; }
    .item_slider:hover {
      transform: none;
      box-shadow: none; }
    .item_slider .item__key img {
      display: initial;
      width: auto; }
    .item_slider .item__favor {
      margin-right: 28px; }
    .item_slider .item__key {
      padding: 10px 47px; }
    .item_slider .item__image {
      width: auto !important; }
    .item_slider h3 {
      max-height: 43px;
      overflow: hidden; }
    .item_slider .item__pq-wrapper {
      width: calc(100% - 26px); }
    .item_slider .item__mobile-bottom {
      width: calc(100% - 26px); }
    .item__quick {
      z-index: 0; }
    .item__quick:after {
      opacity: 0;
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px; }
    .item__quick__text {
      left: 0;
      width: 100%;
      top: 48%;
      opacity: 0;
      z-index: 1;
      font-weight: 500;
      font-size: 16px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .item__quick:hover .item__quick__text {
      transition: all 0.2s ease;
      opacity: 1; }
    .item__quick:hover:after {
      transition: all 0.2s ease;
      background: #17577B;
      opacity: 0.7; }
    .item__image {
      margin: 0 auto;
      max-height: 188px; }
    .item__star-full {
      width: 16px;
      height: 16px; }
    .item__star-half {
      width: 16px;
      height: 16px; }
    .item__star-empty {
      width: 16px;
      height: 16px; }
    .item__star-col {
      font-size: 12px;
      line-height: 14px;
      margin-top: 3px;
      margin-left: 3px; }
    .item__comments {
      margin-top: 19px;
      margin-bottom: 22px; }
    .item__comments-col {
      font-size: 12px;
      line-height: 14px;
      margin-top: 3px;
      margin-left: 25px;
      border-bottom: 1px dotted #828E95; }
    .item__price {
      font-weight: 500;
      font-size: 26px;
      line-height: 30px;
      letter-spacing: -0.03em;
      margin-top: 24px;
      margin-bottom: 17px; }
    .item__old-price {
      top: -11px;
      left: 4px;
      font-size: 12px;
      line-height: 14px; }
    .item__col {
      font-size: 12px;
      line-height: 14px;
      margin-left: 3px;
      padding-top: 18px; }
    .item__favor-compare {
      margin-top: 25px; }
    .item__favor {
      font-style: normal;
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding-left: 22px;
      margin-right: 35px; }
    .item__favor-del {
      top: 12px;
      left: 21px;
      z-index: 1; }
    .item__compare {
      font-size: 12px;
      line-height: 14px;
      padding-left: 20px; }
    .item__mobile-bottom {
      position: absolute;
      width: calc(100% - 50px);
      bottom: 30px; }
    .item__pq-wrapper {
      position: absolute;
      width: calc(100% - 50px);
      bottom: 118px; }
    .item__pq-price {
      width: 77%; }
    .item__pq-quantity {
      margin-top: 31px;
      margin-bottom: 17px;
      width: 23%; }
    .item p {
      max-height: 140px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 7;
      -webkit-box-orient: vertical; }
    .item h3 {
      overflow: hidden;
      max-height: 62px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      /*	text-overflow: ellipsis;
	white-space: nowrap;*/ }
  .question {
    width: 17px;
    height: 17px; }
    .question:hover .question__tooltip {
      opacity: 1;
      z-index: 1;
      transition: all 0.2s ease; }
    .question__tooltip {
      z-index: -1;
      opacity: 0;
      padding: 18px 10px 18px 18px;
      font-size: 12px;
      line-height: 13px;
      letter-spacing: -0.04em;
      box-shadow: 3px 2px 6px rgba(0, 51, 79, 0.3);
      border-radius: 2px;
      border: 1px solid #c3d4dc;
      width: 270px;
      bottom: 29px;
      left: -118px; }
    .question__tooltip:before {
      right: 50%;
      bottom: -18px;
      border-width: 9px;
      margin-top: -9px;
      filter: drop-shadow(0px 1px 0px #c3d4dc); }
  .sections__slider.mod2 .owl-stage-outer {
    margin-top: -24px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 20px; }
  .section-dx {
    border: 2px solid #0a75b2;
    border-radius: 2px;
    /*    width: 262px;*/
    width: 224px;
    height: 296px;
    padding: 30px 25px;
    margin-right: 30px;
    margin-left: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.02em; }
    .section-dx:hover {
      padding: 30px 25px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
      position: relative;
      opacity: 1;
      transform: scale(1.045);
      transition: all 0.2s ease;
      z-index: 1; }
    .section-dx:last-child {
      margin-right: 0px; }
    .section-dx__image {
      width: auto !important;
      max-width: 100%;
      margin: 0px auto 35px; }
    .section-dx .no-photo {
      width: 150px;
      height: 150px; }
  .table-items {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    padding: 35px 0px 47px;
    /*
    &__head:nth-child(1) {
      width: 19%;
    }

    &__head:nth-child(2) {
      width: 10%;
    }

    &__head:nth-child(3) {
      width: 6%;
    }

    &__head:nth-child(4) {
      width: 11%;
    }

    &__head:nth-child(5) {
      width: 9%;
    }

    &__head:nth-child(6) {
      width: 15%;
    }

    &__head:nth-child(7) {
      width: 9%;
    }

    &__head:nth-child(8) {
      width: 21%;

    }

    &__table_type2 .table-items__head:nth-child(1) {
      width: 19%;
    }

    &__table_type2 .table-items__head:nth-child(2) {
      width: 14%;
    }

    &__table_type2 .table-items__head:nth-child(3) {
      width: 14%;
    }

    &__table_type2 .table-items__head:nth-child(4) {
      width: 13%;
    }

    &__table_type2 .table-items__head:nth-child(5) {
      width: 7%;
    }

    &__table_type2 .table-items__head:nth-child(6) {
      width: 10%;
    }

    &__table_type2 .table-items__head:nth-child(7) {
      width: 21%;
    }
*/ }
    .table-items__description .table-items__no-photo {
      margin-left: 100px;
      margin-right: 30px; }
    .table-items__description h3 {
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      margin-bottom: 13px;
      margin-top: 23px;
      letter-spacing: 0.02px; }
    .table-items__description p {
      letter-spacing: -0.03em;
      max-width: 92%;
      margin-bottom: 1.4em; }
    .table-items__description hr {
      width: 750px;
      height: 1px;
      margin: 0 auto; }
    .table-items__description-image {
      margin-left: 12px;
      margin-right: 42px;
      width: 143px;
      margin-top: 0; }
    .table-items__table {
      width: 100%;
      margin-top: 15px; }
    .table-items__head {
      font-size: 12px;
      line-height: 14px;
      padding: 7px 0px; }
    .table-items__cell {
      font-size: 14px;
      letter-spacing: -0.02em;
      padding: 10px 0px;
      line-height: 23px; }
    .table-items__cell_fixed .table-items__icons {
      width: 150px !important;
      padding-left: 15px;
      float: right; }
    .table-items__cell_title {
      font-weight: 500;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em;
      padding-left: 5px; }
    .table-items__icons {
      width: 83%; }
    .table-items_cart {
      width: 40%;
      height: 34px;
      float: left; }
    .table-items_compare {
      width: 30%;
      height: 34px;
      float: left; }
    .table-items_favorites {
      width: 30%;
      height: 34px;
      float: left; }
    .table-items__price {
      font-weight: 500; }
  .detail-item {
    padding-top: 25px; }
    .detail-item__mainwrapper {
      margin-left: -15px; }
    .detail-item h1 {
      line-height: 60px;
      margin-top: 0px;
      margin-bottom: 15px; }
    .detail-item__cpwrapper {
      margin-left: -30px;
      margin-right: 0px; }
    .detail-item__preview {
      font-weight: 300;
      font-size: 14px;
      line-height: 21px;
      letter-spacing: 0.025em;
      min-height: 98px; }
    .detail-item__favor {
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding-left: 22px;
      margin-right: 35px; }
    .detail-item__compare {
      font-size: 12px;
      line-height: 14px;
      padding-left: 20px; }
    .detail-item__chars {
      margin-top: 38px;
      padding: 18px 9px; }
    .detail-item__char {
      border-bottom: 1px solid #071C28;
      margin-bottom: 7px; }
    .detail-item__char-title {
      font-weight: 300;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .detail-item__char-desc {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .detail-item__morechar {
      font-size: 16px;
      line-height: 25px;
      letter-spacing: -0.02em;
      border-bottom: 1px solid #f58014;
      margin: 17px auto 0px;
      width: 153px; }
    .detail-item__morechar:after {
      right: -19px;
      top: 8px;
      width: 10px;
      height: 10px; }
    .detail-item_comments {
      margin-top: 0px !important; }
    .detail-item_price {
      /*      font-size: 40px !important;*/
      margin-top: 23px; }
    .detail-item_price .item__col {
      /*      font-size: 23px;*/
      font-size: 60%;
      line-height: 14px;
      margin-left: -5px;
      padding-bottom: 0px; }
    .detail-item_key {
      width: 100%;
      padding: 10px !important;
      font-weight: 500;
      font-size: 16px;
      line-height: 22px; }
    .detail-item__howwrap {
      margin-top: 13px; }
    .detail-item__how {
      padding-left: 13px;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .detail-item__how:before {
      width: 10px;
      height: 10px;
      left: 0px;
      top: 5px; }
    .detail-item__optwrap {
      margin-top: 41px; }
    .detail-item__opttitle {
      font-size: 18px;
      line-height: 20px;
      letter-spacing: 0.02em;
      margin-bottom: 12px; }
    .detail-item__optprice {
      border-bottom: 2px dotted #828E95;
      height: 14px;
      margin-bottom: 6px; }
    .detail-item__optdesk {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em;
      padding-right: 8px; }
    .detail-item__optcost {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em;
      padding-left: 8px; }
    .detail-item__picslider {
      min-height: 88px;
      margin-top: 25px;
      width: 358px; }
    .detail-item__picslide {
      width: 100px;
      height: 88px;
      border: 2px solid #c3d4dc; }
    .detail-item__picolay {
      opacity: 0.3; }
    .detail-item__videolider {
      max-width: 358px; }
    .detail-item__videoslide {
      width: 100%;
      height: 67px; }
    .detail-item__videopic {
      margin-right: 5px;
      max-width: 83px; }
    .detail-item__videopic:before {
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px; }
    .detail-item__videostxt {
      font-size: 12px;
      line-height: 14px;
      width: calc(100% - 100px); }
  .copy {
    width: 14px;
    height: 17px; }
    .copy_table {
      margin-left: 6px;
      /*     right: 4px;
      top: 4px; */
      top: calc(50% - 22px); }
    .copy_item {
      width: 16px;
      height: 20px;
      margin-bottom: 26px;
      margin-left: 6px; }
    .copy__tooltip {
      border-radius: 2px;
      padding: 7px 7px;
      right: calc(0px - 149px);
      top: -12px;
      font-size: 10px;
      line-height: 11px;
      letter-spacing: -0.04em;
      width: 139px;
      z-index: 2; }
    .copy__tooltip:before {
      right: 99%;
      top: 50%;
      border-width: 9px;
      margin-top: -9px; }
  .tabs {
    padding: 0;
    margin: 28px auto;
    margin-right: -15px;
    margin-left: -15px; }
    .tabs_fake {
      margin: 0px !important; }
    .tabs_main {
      margin-top: 23px; }
    .tabs_main .tabs__key {
      width: 33.33%;
      height: 59px; }
    .tabs_main .tabs__visible {
      padding: 9px 0px; }
    .tabs_main [id^="tab"]:checked + .tabs__key .tabs__visible {
      padding: 12px 0px !important; }
    .tabs_main .tabs__tab-content {
      padding: 20px 25px; }
    .tabs__key {
      width: 25%;
      padding: 0px 15px;
      margin-bottom: 0px;
      height: 76px; }
    .tabs__visible-small {
      font-size: 20px !important; }
    .tabs__visible {
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      border-top: 2px solid #fff;
      border-left: 2px solid #fff;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      padding: 15px 0px; }
    .tabs__visible:hover {
      border-top: 2px solid #071C28;
      border-left: 2px solid #071C28;
      border-right: 2px solid #071C28;
      border-bottom: 2px solid #071C28; }
    .tabs__tab-content {
      width: calc(100% - 30px);
      margin-left: 15px;
      padding: 37px 95px;
      border: 2px solid #818e95; }
    .tabs [id^="tab"]:checked + .tabs__key .tabs__visible {
      border-top: 2px solid #818e95;
      border-left: 2px solid #818e95;
      border-right: 2px solid #818e95;
      border-bottom: 2px solid #818e95;
      padding: 20px 0px; }
    .tabs [id^="tab"]:checked + .tabs__key .tabs__visible:after {
      width: 100%;
      height: 4px;
      bottom: -4px;
      left: 0px; }
    .tabs__digits {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .tabs h2 {
      line-height: 36px; }
  .file {
    padding-left: 60px;
    height: 42px;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 30px;
    max-width: 70%; }
  .accord {
    margin-top: 24px; }
    .accord__title {
      font-size: 32px;
      line-height: 38px;
      letter-spacing: -0.025em;
      margin: 0px; }
    .accord__clop {
      font-size: 12px;
      line-height: 14px;
      padding-right: 38px;
      margin-top: 15px;
      margin-left: 15px; }
    .accord__clop:after {
      width: 16px;
      height: 10px;
      right: 0px;
      top: 2px; }
    .accord__data {
      margin-top: 32px; }
    .accord .chars {
      background: rgba(195, 212, 220, 0.5);
      padding: 30px 65px; }
  .chars {
    background: rgba(195, 212, 220, 0.5);
    padding: 5px 66px 40px; }
    .chars__title {
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.02em;
      margin-top: 26px;
      margin-bottom: 17px; }
    .chars__item {
      border-bottom: 2px solid #071C28;
      padding: 8px 0px; }
    .chars__name {
      font-weight: 300;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em; }
    .chars__value {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em; }
  .image_yellow {
    border: 1px solid #f58014; }
  .image_center {
    margin: 0 auto; }
  .compatible__nav {
    margin-bottom: 30px; }
  .compatible__nav-item {
    padding: 14px 28px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.05em;
    border-radius: 2px;
    margin-right: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 44px; }
  .compatible__col {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.02em;
    margin-left: 10px; }
  .description__title {
    font-size: 37px;
    line-height: 41px;
    letter-spacing: -0.025em;
    margin-top: 20px;
    margin-bottom: 32px; }
  .description p {
    font-size: 18px;
    letter-spacing: 0em; }
  .description ul > li {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    max-width: 615px; }
  .description ul > li:before {
    margin-left: 30px;
    margin-right: 7px; }
  .owl-carousel .mini-item {
    width: auto !important;
    margin-bottom: 0px; }
  .mini-item {
    width: 224px;
    padding: 20px 10px 41px 10px;
    margin-right: 30px;
    margin-bottom: 30px;
    border-radius: 3px;
    border: 2px solid #0a75b2;
    /*    &__image {
      margin: 27px auto 0px;
      max-width: 75%;
    }*/ }
    .mini-item__container {
      width: 200px; }
    .mini-item .copy_table {
      right: -4px;
      top: 2px; }
    .mini-item_t3 {
      padding: 20px 17px 41px 17px;
      width: 100%;
      margin: 1px;
      border: none; }
    .mini-item_t3 .mini-item__image {
      max-width: 73%;
      margin: 7px auto 0px; }
    .mini-item_t3 .mini-item__title {
      margin: 27px 0px 0px;
      font-weight: 400;
      font-size: 13px;
      line-height: 18px;
      letter-spacing: -0.02em; }
    .mini-item_t3 .mini-item__price {
      margin-bottom: 21px; }
    .mini-item_t3 .mini-item__compare {
      width: 20%;
      float: right; }
    .mini-item_t3 .mini-item__favorites {
      width: 20%;
      float: right;
      margin-right: 7px; }
    .mini-item_t3 .mini-item__bottom {
      background: #f4f5f5; }
    .mini-item_t2 {
      margin-right: 16px;
      margin-bottom: 40px; }
    .mini-item_t2:nth-child(4n) {
      margin-right: 0px; }
    .mini-item__imghref {
      max-height: 150px; }
    .mini-item__image {
      margin: 27px auto 0px;
      max-width: 75%; }
      .mini-item__image__wrapper {
        height: 150px; }
        .mini-item__image__wrapper_outer {
          display: table;
          width: 100%;
          height: 100%; }
        .mini-item__image__wrapper_inner .no-photo {
          display: block;
          margin: 0 auto;
          max-height: 150px; }
        .mini-item__image__wrapper_inner img {
          max-height: 150px !important;
          width: auto !important;
          max-width: 100%; }
    .mini-item_t2 .mini-item__image {
      max-width: 100%;
      margin: 2px auto 0px; }
    .mini-item__title {
      margin-top: 9px;
      margin-bottom: 0px; }
    .mini-item_t2 .mini-item__title {
      margin: 24px 12px 13px;
      max-width: 75%; }
    .mini-item_t2 .copy {
      right: -5px;
      top: 0px; }
    .mini-item__price {
      font-weight: 500;
      font-size: 16px;
      line-height: 19px;
      letter-spacing: -0.03em;
      margin-top: 0px;
      margin-bottom: 17px; }
    .mini-item_t2 .mini-item__price {
      font-size: 26px;
      line-height: 31px;
      margin-left: 12px;
      margin-bottom: 30px; }
    .mini-item__col {
      font-size: 12px;
      line-height: 14px;
      margin-left: -3px;
      padding-top: 14px; }
    .mini-item__bottom {
      bottom: 0px;
      left: 0px;
      width: 100%; }
    .mini-item__cart {
      width: 33.4%;
      height: 41px; }
    .mini-item__cart:hover {
      transition: all 0.2s ease; }
    .mini-item__compare {
      width: 33.3%;
      height: 41px; }
    .mini-item__favorites {
      width: 33.3%;
      height: 41px; }
  .mod4 .owl-prev {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod4 .owl-next {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod4 .owl-prev {
    left: -30px;
    top: -71px;
    width: 15px;
    height: 25px; }
  .mod4 .owl-next {
    right: -30px;
    top: -71px;
    width: 15px;
    height: 25px; }
  .mod5 .owl-prev {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod5 .owl-next {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod5 .owl-prev {
    left: -30px;
    top: -64px;
    width: 15px;
    height: 25px; }
  .mod5 .owl-next {
    right: -30px;
    top: -64px;
    width: 15px;
    height: 25px; }
  .mod6 .owl-prev {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod6 .owl-next {
    padding: 0 !important;
    width: 15px;
    height: 25px; }
  .mod6 .owl-prev {
    left: -28px;
    top: -382px;
    width: 17px;
    height: 29px; }
  .mod6 .owl-next {
    right: -28px;
    top: -382px;
    width: 17px;
    height: 29px; }
  .compare__title {
    font-size: 32px;
    line-height: 43px;
    letter-spacing: -0.02em;
    margin-top: 82px; }
  .compare__paramslinks {
    /*      margin-top: 111px;*/
    margin-top: 232px; }
  .compare__paramlink {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.02em; }
  .compare__table {
    margin-right: -15px;
    /*    margin-top: 41px;*/
    margin-top: 63px; }
  .compare__thead {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    padding: 9px 1px;
    margin-bottom: 24px;
    margin-top: 38px; }
  .compare__thitem {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.03em;
    border-bottom: 1px solid #071C28;
    margin-right: 13px;
    padding: 8px 0px 9px; }
  .compare__area {
    width: 89%; }
  .compare__col {
    width: 100%;
    padding-top: 27px;
    max-width: 377px;
    margin-bottom: 23px;
    margin-right: 13px; }
  .compare__col:last-child {
    margin-right: 0px; }
  .compare_close {
    top: 0px;
    left: 49%;
    margin-left: 105px; }
  .compare__tablecol {
    margin-top: -71px; }
  .compare__colhead {
    height: 50px;
    margin-bottom: 24px;
    margin-top: 38px; }
  .compare__item {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    border-bottom: 1px solid #c3d4dc;
    padding: 8px 0px 9px 22px;
    margin-right: 15px; }
  .compare_mini-item {
    margin: 0 auto !important;
    width: 236px !important; }
  .compare_mini-item .item__image {
    margin-top: 8px; }
  .compare_mini-item .mini-item__title {
    padding: 0px 6px; }
  .compare_mini-item .mini-item__price {
    font-size: 26px;
    margin-top: 10px;
    margin-left: 6px;
    margin-bottom: 23px; }
  .compare__btn {
    width: 27px;
    height: 43px; }
  .compare__btn_prev {
    margin-right: 4px; }
  .compare__btn_next {
    margin-left: 4px; }
  .main-slider .owl-dots {
    width: 14px;
    margin-left: 8px;
    left: 17px;
    top: 50%;
    transform: translateY(-50%); }
  .main-slider .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    margin: 2px 3px !important;
    border: 2px solid #fff;
    border-radius: 50%; }
  .main-slider__slide {
    width: 100%; }
  .main-slider__header {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -0.04em;
    max-width: 300px;
    margin-bottom: 24px; }
  .main-slider__text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    max-width: 285px; }
  .main-slider__key {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 55px 10px 35px;
    background-position: 87% center;
    right: 96px;
    top: 50%;
    margin-top: -22px;
    z-index: 1; }
  .stickers {
    margin: 22px -11px; }
    .stickers__sticker {
      font-size: 14px;
      line-height: 22px;
      letter-spacing: -0.02em;
      width: calc(33.33% - 22px);
      margin: 0px 11px;
      padding: 14px 5px 14px 111px; }
    .stickers__ico {
      left: 0px;
      top: 0px; }
  .main-item-slider .owl-dots {
    display: none; }
  .left-menu__item {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.02em; }
  .personal {
    margin-bottom: 27px; }
    .personal h2 {
      /*    letter-spacing: -0.03em;
        margin-top: -3px;
        margin-bottom: 0px;*/ }
    .personal hr {
      margin-top: 36px;
      margin-bottom: 37px; }
    .personal .form__input {
      width: 75%; }
    .personal .form__change {
      margin-top: 57px;
      padding-left: 27px; }
    .personal__reitem {
      margin-top: 31px;
      width: 100%; }
    .personal__reitem-left {
      width: 19%; }
    .personal__reitem-right {
      width: 81%;
      padding: 94px 96px 0px 52px; }
    .personal__date {
      left: 33px;
      top: 13px;
      font-weight: 500;
      font-size: 18px;
      line-height: 21px; }
    .personal__bigstars {
      right: 96px;
      top: 10px; }
    .personal__star {
      width: 31px;
      height: 31px;
      margin: 0px 1px 5px; }
    .personal__text {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: -0.02em; }
    .personal_key {
      float: right;
      padding: 11px 98px !important;
      margin-top: 22px;
      font-weight: 500;
      font-size: 16px;
      line-height: 22px; }
    .personal__toggle-key {
      font-size: 18px;
      line-height: 21px;
      padding: 30px 0px 0px; }
    .personal__toggle-key:after {
      width: 11px;
      height: 8px;
      margin-left: 25px; }
    .personal__add-goods {
      margin: 0px 0px 38px;
      width: 262px;
      padding: 8px 45px !important;
      font-weight: 500;
      font-size: 16px;
      line-height: 15px; }
    .personal .item {
      width: 100%;
      padding: 30px 4px; }
    .personal .item .item__pq-wrapper {
      width: calc(100% - 8px); }
    .personal .item__mobile-bottom {
      width: calc(100% - 8px); }
    .personal .item__pq-wrapper {
      padding: 0px 15px; }
  .filters__spacer {
    display: block;
    height: 18px; }
  .cargo {
    max-width: 77%; }
    .cargo hr {
      margin-top: 26px !important;
      margin-bottom: 0px !important; }
    .cargo__add {
      margin-top: 0px;
      padding: 13px 31px; }
    .cargo__add:after {
      left: 0px;
      top: 12px;
      width: 19px;
      height: 21px; }
    .cargo__hidden-container {
      margin-top: 15px; }
    .cargo__item {
      margin: 11px 0px 25px; }
    .cargo__toggle-key {
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
      padding: 20px 60px 20px 17px; }
    .cargo__toggle-key .cargo__title {
      font-weight: 500; }
    .cargo__toggle-key:after {
      right: 20px;
      top: 19px;
      width: 22px;
      height: 22px; }
    .cargo__title, .cargo__text {
      font-size: 18px;
      line-height: 21px; }
    .cargo__text__title_alt {
      font-weight: normal;
      margin-bottom: 0px;
      margin-top: 65px; }
    .cargo__toggle-key_opened .cargo__title {
      font-weight: 400; }
    .cargo__toggler {
      margin-top: 3px;
      padding: 30px 5px; }
  .basket {
    margin-bottom: 20px; }
    .basket__head {
      padding-bottom: 8px; }
    .basket__hcol {
      font-size: 12px;
      line-height: 114%;
      letter-spacing: -0.055em; }
    .basket__hcol:nth-child(1) {
      width: 17%; }
    .basket__hcol:nth-child(2) {
      width: 3%; }
    .basket__hcol:nth-child(3) {
      width: 31%; }
    .basket__hcol:nth-child(4) {
      width: 15%; }
    .basket__hcol:nth-child(5) {
      width: 19%; }
    .basket__hcol:nth-child(6) {
      width: 15%; }
    .basket__checkbox {
      margin: -1px 10px 0 0;
      width: 20px;
      height: 20px; }
    .basket__checkbox:not(checked) + label {
      padding: 0px 0 0 39px;
      font-size: 12px;
      line-height: 114%;
      letter-spacing: -0.055em;
      margin-left: 22px;
      min-height: 20px; }
    .basket__checkbox:not(checked) + label:before {
      top: -3px;
      left: 2px;
      width: 20px;
      height: 20px; }
    .basket__garbage {
      width: 20px;
      height: 20px;
      margin-left: 3px; }
    .basket__tooltip::before {
      right: 100%;
      top: 50%;
      border-width: 7px;
      margin-top: -7px; }
    .basket__tooltip {
      border-radius: 2px;
      padding: 17px 7px;
      right: calc(0px - 149px);
      top: -20px;
      left: 28px;
      font-size: 12px;
      line-height: 14px;
      width: 139px;
      z-index: 2;
      box-shadow: 3px 4px 2px rgba(0, 51, 79, 0.3);
      letter-spacing: -0.04em;
      z-index: 2; }
    .basket__item {
      padding: 5px 5px 10px 5px;
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
      margin: 40px 0px; }
    .basket__col:nth-child(1) {
      width: 14%; }
    .basket__col:nth-child(2) {
      width: 12%;
      padding: 0px 27px; }
    .basket__col:nth-child(3) {
      width: 30%; }
    .basket__col:nth-child(4) {
      width: 12%; }
    .basket__col:nth-child(5) {
      width: 18%; }
    .basket__col:nth-child(6) {
      width: 14%; }
    .basket__wrap label {
      margin-left: 0px !important;
      margin-top: 13px;
      padding: 0px 10px !important; }
    .basket__wrap .close {
      margin: 20px auto 0px; }
    .basket__img {
      max-width: 100%; }
    .basket__title {
      font-weight: 500;
      font-size: 14px;
      line-height: 21px;
      margin-bottom: 0px;
      margin-top: 21px;
      margin-left: 4px; }
    .basket__favor-compare {
      margin-top: 4px;
      margin-left: 3px; }
    .basket__favor {
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding: 9px;
      margin-right: 14px; }
    .basket__compare {
      letter-spacing: -0.02em;
      font-size: 12px;
      line-height: 14px;
      padding: 9px;
      margin-right: 18px; }
    .basket__col .item__stars {
      margin-top: 10px; }
    .basket__col .item__star-full {
      width: 9px;
      height: 9px;
      margin-right: 1px; }
    .basket__col .item__star-empty {
      width: 9px;
      height: 9px;
      margin-right: 1px; }
    .basket__col .item__star-col {
      margin-top: -2px; }
    .basket__col .item__price {
      font-size: 16px;
      margin-top: 0px;
      margin-bottom: 0px;
      line-height: 29px; }
    .basket__col .item__old-price {
      margin-top: 25px;
      left: 0px;
      top: 0px; }
    .basket__col .modal__rwrapper {
      margin-top: 30px; }
    .basket__cost {
      font-weight: 500;
      font-size: 28px;
      line-height: 38px;
      letter-spacing: -0.03em;
      margin-top: 24px;
      margin-bottom: 17px; }
    .basket__bottom {
      font-size: 24px;
      line-height: 28px;
      letter-spacing: -0.03em; }
    .basket__text-cost {
      margin-top: 30px; }
    .basket__text-discount {
      margin-top: 26px; }
    .basket__text-total {
      font-weight: 500;
      font-size: 26px;
      line-height: 31px;
      letter-spacing: -0.03em;
      margin-top: 26px; }
    .basket__key {
      padding: 11px 67px !important;
      margin-top: 33px !important;
      margin-top: 30px;
      font-size: 18px;
      line-height: 22px; }
  .search-results {
    /*
    &__table-items .table-items__head:nth-child(1) {
      width: 22%;
    }

    &__table-items .table-items__head:nth-child(2) {
      width: 7%;
    }

    &__table-items .table-items__head:nth-child(3) {
      width: 10%;
    }

    &__table-items .table-items__head:nth-child(4) {
      width: 7%;
    }

    &__table-items .table-items__head:nth-child(5) {
      width: 12%;
    }

    &__table-items .table-items__head:nth-child(6) {
      width: 12%;
    }

    &__table-items .table-items__head:nth-child(7) {
      width: 11%;
    }

    &__table-items .table-items__head:nth-child(8) {
      width: 19%;
    }
*/ }
    .search-results hr {
      margin-top: 34px;
      margin-bottom: 28px; }
    .search-results__section {
      width: 100%;
      margin: 0px 0px 15px; }
    .search-results__sectpic {
      width: 15%; }
    .search-results__text {
      width: 85%; }
    .search-results__secimg {
      margin: 0 auto;
      max-width: 100%; }
    .search-results__secttitle {
      width: 76%;
      margin-left: 6%;
      font-weight: 500;
      font-size: 12px;
      line-height: 20px;
      letter-spacing: -0.02em; }
    .search-results__secttitle span {
      line-height: 20px; }
    .search-results__sectnum {
      width: 18%;
      font-weight: 500;
      font-size: 10px;
      line-height: 12px; }
    .search-results__table-items {
      padding: 0px 0px 16px !important;
      margin-top: 12px;
      margin-bottom: 30px !important; }
    .search-results__table-items .table-items__description-image {
      margin-left: 0px;
      margin-right: 30px;
      width: 68px;
      margin-top: 0px; }
    .search-results__table-items .table-items__table {
      margin-top: 2px; }
    .search-results__table-items .table-items__cell {
      padding-top: 7px;
      padding-bottom: 7px; }
    .search-results__table-items .table-items__cell_title {
      padding-left: 25px; }
    .search-results__table-items .table-items__icons {
      width: 90%; }
  .header__desktop-wrapper.header__newsticky-wrapper .title-search-result {
    overflow: hidden;
    height: calc(100vh - 70px); }
  .header__catalog-sticky-wrapper.header__catalog-onecolumn .header__catalog-menu {
    top: 41px !important; }
  .spacer404 {
    height: 25px; }
  .err404 h1 {
    display: none; } }


/*# sourceMappingURL=style.css.map*/