@charset "utf-8";


/* Переменные, примеси, шрифты */  /* фон страницы */        /* текст */      /* активные элементы */ /* контрастирующий с активным */ /* активный элемент при наведении */ /* активный элемент при нажатии */        /* ссылки */   /* ссылки при наведении */       /* ошибка */       /* фон шапки */   /* фон второго ряда и активного поиска */   /* текст в шапке */       /* фон подвала */   /* текст в подвале */
@font-face {
	font-family: 'Inter';
	src:
		url("/assets_service_om/fonts/Inter-Regular.woff2") format('woff2'),
		url("/assets_service_om/fonts/Inter-Regular.woff") format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src:
		url("/assets_service_om/fonts/Inter-Bold.woff2") format('woff2'),
		url("/assets_service_om/fonts/Inter-Bold.woff") format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}


/* Общие стили */
/*!

	BASE
		BASE - ROOT
		BASE - HTML5
		BASE - EMBEDDED
		BASE - FORMS
		BASE - TABLES
		BASE - LINKS
		BASE - LISTS
		BASE - TYPOGRAPHY
 
 */



/* BASE
---------------------------------------------------------------------*/

/* BASE - ROOT
---------------------------------------------------------------------*/

html {
	font-size: 62.5%;
	font-family: sans-serif;
	overflow-y: scroll; /* убираем скачок из-за появляющейся полосы прокрутки */
	-webkit-font-smoothing: antialiased; /* лучшее сглаживание шрифта в макоси */
	-webkit-text-size-adjust: none;
	    -ms-text-size-adjust: none;
	        text-size-adjust: none;
}

body {
	line-height: 1.5;
	margin: 0; /* Убираем внутренний отступ */
}

/* Текстовые выделения: убирается тень и добавляются цвета по умолчанию */
::-moz-selection {
	background-color: #b3d3fd;
	color: #000;
	text-shadow: none;
}
::selection {
	background-color: #b3d3fd;
	color: #000;
	text-shadow: none;
}

[hidden], template { /* отсутствует в ИЕ, Сафари и ФФлт22 */
	display: none;
}



/* BASE - HTML5
---------------------------------------------------------------------*/

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block; /* исправляется отображение в ИЕ891011 и ФФ */
}

audio, canvas, progress, video {
	display: inline-block; /* исправляется отображение в ИЕ89 */
	vertical-align: baseline; /* выравнивание в Хроме, ФФ и Опере */
}

audio:not([controls]) {
	display: none; /* не отображать без элементов управления */
	height: 0; /* убирается ненужная высота в аёс 5 */
}



/* BASE - EMBEDDED
---------------------------------------------------------------------*/

img {
	border: 0; /* убирается граница, если изображение внутри ссылки в ИЕ89 */
	vertical-align: middle;
}

/* убирается отступ снизу */

.ielte7 img {
	-ms-interpolation-mode: bicubic;


	/* улучшение отображения при изменении размера */
}

svg:not(:root) {
	overflow: hidden; /* отображение в ИЕ91011 */
}

figure {
	margin: 0; /* ИЕ 789, Сафари 5, Опера 11 */
}



/* BASE - FORMS
---------------------------------------------------------------------*/

.ielte7 form {
	margin: 0;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
	
	/* http://stackoverflow.com/questions/17408815/fieldset-resizes-wrong-appears-to-have-unremovable-min-width-min-content/17863685#17863685 */
	min-width: 0;
}

@-moz-document url-prefix() {
	fieldset {
		display: table-cell;
		vertical-align: middle;
	}
}

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

.ielte7 legend {
	margin-left: -7px;
}

label, input[type="checkbox"], input[type="radio"], button, select {
	cursor: pointer;
}
html input[disabled], button[disabled], select[disabled] {
	cursor: default;
}

button, input, optgroup, select, textarea {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	color: inherit;
	font: inherit;
	margin: 0;
	vertical-align: baseline;
}

.ielte7 button, .ielte7 input, .ielte7 optgroup, .ielte7 select, .ielte7 textarea {
	vertical-align: middle;
}

button, input {
	line-height: normal;
}

button, select {
	text-transform: none;
}

button {
	overflow: visible; /* изначально значение `hidden` в ИЕ */
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button; /* отображение в аёс и андроид */
	cursor: pointer;
}

.ielte7 button, .ielte7 html input[type="button"], .ielte7 input[type="reset"], .ielte7 input[type="submit"] {
	overflow: visible;


	/* внутренний отступ */
}

button[disabled], html input[disabled] {
	cursor: default;
}

input[type="checkbox"], input[type="radio"] {
	-moz-box-sizing: border-box;
	     box-sizing: border-box; /* правильные размеры для ИЕ */
	padding: 0;
	
	/* правильное выравнивание по вертикали */
	margin-top: -.17em;
	vertical-align: middle;
}

.ielte7 input[type="checkbox"], .ielte7 input[type="radio"] {
	height: 13px;
	width: 13px;
}

/* исправление проблемы с отображением в Хроме */
input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	     box-sizing: content-box;
}

/* проблемы с отображением в Хроме и Сафари */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
	height: auto; /* теперь должен отображаться верный курсор */
}

/* внутренний отступ в ФФ */
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* выделение элементов при фокусе в Хроме */
select:focus, button:focus, textarea:focus, input:focus, [tabindex]:focus {
	outline: 0;
}

/* вертикальная полоса прокрутки в ИЕ */
textarea {
	min-height: 5em;
	overflow: auto;
	resize: vertical;
	vertical-align: top;
}

legend {
	border: 0; /* правильный цвет не наследовался в ИЕ */
	padding: 0;
}

optgroup {
	font-weight: 700; /* жирность должна не наследоваться */
}



/* BASE - TABLES
---------------------------------------------------------------------*/

/* устранение отступов между ячейками */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

td, th {
	padding: 0;
}



/* BASE - LINKS
---------------------------------------------------------------------*/

a:focus {
	outline: thin dotted; /* одинаковое выделение выбранных ссылок */
}

a:active, a:hover {
	outline: 0; /* убираем выделение в других состояниях */
}



/* BASE - LISTS
---------------------------------------------------------------------*/

li ul, li ol {
	margin: 0.5em 0 1em;
}
ul, ol, dl {
	margin: 0 0 1.5em;
}
ul, ol {
	padding: 0 0 0 1.5em;
}
li, dt, dd {
	margin-top: 0.5em;
	padding-left: 0;
	position: relative;
}
li:first-child, dt:first-child, dd:first-child {
	margin-top: 0;
}
dt {
	font-weight: bold;
}
dd {
	margin-left: 3em;
}



/* BASE - TYPOGRAPHY
---------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

h1 {
	font-size: 2em;
	line-height: 1em;
	margin: 0.75em 0 0.375em;
}

h2 {
	font-size: 1.5em;
	line-height: 1em;
	margin: 1em 0 0.5em;
}

h3 {
	font-size: 1.17em;
	line-height: 1.28205em;
	margin: 1.28205em 0 0.64103em;
}

h4 {
	font-size: 1em;
	line-height: 1.5em;
	margin: 1.5em 0 0.75em;
}

h5 {
	font-size: .83em;
	line-height: 1.80723em;
	margin: 1.80723em 0 0.90361em;
}

h6 {
	font-size: .67em;
	line-height: 2.23881em;
	margin: 2.23881em 0 1.1194em;
}

p, pre, blockquote {
	font-size: 1em;
	line-height: 1.5em;
	margin: 0 0 1.5em;
}

p + ul, p + ol, p + dl {
	margin-top: -0.75em;
}


abbr[title] {
	border-bottom: 1px dotted; /* стиль отсутствует в ИЕ 89, Сафари 5 и в Хроме */
	cursor: help;
}

b, strong {
	font-weight: 700;
}

i, em {
	font-style: italic;
}

dfn {
	font-style: italic; /* стиль отсутствует в Сафари 5 и Хроме */
}

/* в ФФ теперь не отличается */
hr {
	-moz-box-sizing: content-box;
	     box-sizing: content-box;
	height: 0;
}

/* стиль отсутствует в ИЕ 789 */
mark {
	background: #ff0;
	color: #000;
}

/* стиль отсутствует в Сафари 5 и Хроме */
code, kbd, pre, samp {
	font-family: monospace, sans-serif;
	font-size: 1em;
}

pre {
	overflow: auto; /* правильное поведение при переполнении */
	white-space: pre-wrap; /* улучшает читаемость во всех браузерах */
}

/* кавычки для русского и английского языков */
q:lang(en), .q.en {
	quotes: "\201C" "\201D" "\2018" "\2019";
}
q:lang(ru), .q.ru {
	quotes: '\00AB' '\00BB' '\201E' '\201C';
}

big {
	font-size: 120%;
}
small {
	font-size: 80%;
}

/* чтобы не влияли на высоту строки */
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -.5em;
}
sub {
	bottom: -.25em;
}

wbr {
	display: inline-block;
}
html, body {
	height: 100%;
	min-width: 980px;
}

a {
	color: #0b86df;
	text-decoration: none;
}

a:hover, a:focus, a:active {
	outline: none;
}

a:hover, a:focus {
	text-decoration: underline;
	color: #0094ff;
}

ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

li {
	margin-top: 0;
}

h1, h2 {
	font-size: 22px;
	font-weight: normal;
	font-family: 'Inter','Arial',serif;
}

p {
	margin: 0 0 20px;
	line-height: 1.8;
}

p:last-child {
	margin-bottom: 0;
}

::-moz-selection {
	background: #e82111;
	color: #fff;
}

::selection {
	background: #e82111;
	color: #fff;
}

.HeaderSection {
	margin: 0 0 27px;
}

.HeaderSection h1, .HeaderSection h2 {
	margin: 0;
}

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

.HeaderSection--hasRight {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.HeaderSection--hasRight h1:not(:last-child), .HeaderSection--hasRight h2:not(:last-child) {
	margin-right: 20px;
}

.Box__img {
	display: block;
	margin: 0 auto;
}

.Box--text {
	width: 60%;
}

.Box--img {
	width: 40%;
}

.Group {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.Group .Box {
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
}

@-webkit-keyframes StmSpinner {
	0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}

@-moz-keyframes StmSpinner {
	0% {-moz-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);transform: rotate(360deg);}
}

@-o-keyframes StmSpinner {
	0% {-o-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-o-transform: rotate(360deg);transform: rotate(360deg);}
}

@keyframes StmSpinner {
	0% {-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);-moz-transform: rotate(360deg);-o-transform: rotate(360deg);transform: rotate(360deg);}
}
#fancybox-loading {
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
}
#fancybox-loading div {
	display: none;
}
#fancybox-loading:before {
	display: inline-block;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border: 5px solid transparent;
	border-top-color: #e82111;
	border-left-color: #e82111;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	-webkit-animation: StmSpinner 1s linear infinite;
	   -moz-animation: StmSpinner 1s linear infinite;
	     -o-animation: StmSpinner 1s linear infinite;
	        animation: StmSpinner 1s linear infinite;
	content: '';
}

#fancybox-left, #fancybox-right {
	top: 0;
	width: 15%;
	height: 100%;
	margin-top: 0;
}

#fancybox-left:before, #fancybox-right:before {
	content: '';
	position: absolute;
	top: -moz-calc(50% - 16px);
	top: calc(50% - 16px);
	border-radius: 50%;
	box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
	width: 32px;
	height: 32px;
	background-color: #fff;
	background-position-y: 50%;
	background-repeat: no-repeat;
	opacity: .8;
}

#fancybox-left:hover:before, #fancybox-right:hover:before {
	opacity: 1;
}

#fancybox-left {
	left: 0;
}

#fancybox-left:before {
	left: 10px;
	background-position-x: 45%;
}

#fancybox-right {
	right: 0;
}

#fancybox-right:before {
	right: 10px;
	background-position-x: 55%;
}

#fancybox-left-ico, #fancybox-right-ico {
	display: none;
}

#fancybox-close {
	top: 0;
	right: 0;
	border-bottom-width: 0;
	width: 30px;
	height: 30px;
	background-color: #fff;
	opacity: .8;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	-o-transition: opacity .3s;
	-moz-transition: opacity .3s;
	transition: opacity .3s;
	margin-bottom: -30px;
}

#fancybox-close:before {
	content: none;
}

#fancybox-close:hover {
	opacity: 1;
}

.FancyModal {
	padding-top: 20px;
	padding-bottom: 20px;
	width: 670px;
	font-size: 16px;
}

.FancyModal__header, .FancyModal__content, .FancyModal__control {
	padding-left: 25px;
	padding-right: 25px;
}

.FancyModal__header {
	font-size: 26px;
	font-weight: normal;
	margin-top: 0;
	padding-bottom: 12px;
}
.FancyModal--personalData {
	padding: 0;
	font-size: inherit;
}


/* Простые блоки */
.Page {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	font-family: 'Inter','Arial',serif;
	font-size: 15px;
	line-height: 1.3;
	color: #242322;
	background-color: #fff;
}
.Page__wrapper {
	min-width: 1000px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
}
.Page__wrapper--grow {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-flex-grow: 1;
	   -moz-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.Page__main {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-flex-grow: 1;
	   -moz-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	padding-bottom: 80px;
	background-color: #fff;
}

.Page--main .Page__main {
	padding-top: 40px;
}

.Page--error .Page__main {
	padding-bottom: 0;
}
.PersonalData__header {
	margin: 0 0 27px;
}
.PersonalData__accent {
	font-size: 12px;
	line-height: 1.5;
	color: #858585;
}
.Brands__header {
	margin: 0 0 27px;
	text-align: center;
}
.Brands__main {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}
.Brands__item {
	width: 32%;
	margin: 20px 0 0 2%;
}
.Brands__item:nth-child(-n + 3) {
	margin-top: 0;
}
.Brands__item:nth-child(3n + 1) {
	margin-left: 0;
}
.Brands__item--hidden {
	display: none;
}
.Brands__imgContainer {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	height: 92px;
	border: 1px solid #d5d4dc;
	border-radius: 10px;
}
.Brands__img {
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}
.Brands__foot {
	margin-top: 20px;
	text-align: center;
}
.Category__photo {
	width: 100%;
}
.Category__title, .Category__text {
	margin-top: 12px;
}
.Category__title {
	font-weight: 700;
}
.Logo {
	display: block;
	width: 159px;
	height: 65px;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: 120%;
	white-space: nowrap;
	overflow: hidden;
}
.Page--main .Logo {
	pointer-events: none;
	cursor: default;
}
.Button {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	padding: 10px 25px 10px;
	border: 1px solid #e82111;
	border-radius: 4px;
	font: inherit;
	background-color: #e82111;
	color: #fff;
	cursor: pointer;
	outline: none;
}
.Button:hover, .Button:focus {
	color: #fff;
	background-color: #ff2413;
	border-color: #ff2413;
	text-decoration: none;
}
.Button:active {
	color: #fff;
	background-color: #bf2d21;
	border-color: #bf2d21;
	text-decoration: none;
}
.Form {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	max-width: 850px;
	padding: 20px 25px;
	background-color: #f9f9f9;
}
.Form__container {
	margin-left: 160px;
}
.Form__controls {
	margin: 1.5em 0;
}
.Form__field {
	position: relative;
}
.Form__field + .Form__field {
	margin-top: 1.5em;
}
.Form__label {
	display: inline-block;
	width: 0;
	margin-left: -160px;
	margin-right: 160px;
	padding-top: 11px;
	vertical-align: top;
	white-space: nowrap;
	cursor: pointer;
}
.Form__input {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	width: 100%;
	height: 40px;
	padding: 4px 8px 2px;
	border: 1px solid #d1d1d1;
	border-radius: 2px;
	color: #242322;
	outline: none;
}
textarea.Form__input {
	height: 150px;
	padding-top: 10px;
	padding-bottom: 9px;
}
.Form__input:hover, .Form__input:focus {
	border-color: #9e9e9e;
}
select.Form__input {
	padding-right: 25px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-position: right 8px center;
	background-repeat: no-repeat;
	color: #242322 !important;
	cursor: pointer;


	/* уничтожаем аутлайн тега select в FF */
	color: #000;
	color: rgba(0,0,0,0);
	text-shadow: 0 0 0 #000;
}
select.Form__input option{
	color: #000;
}
.Form input[type="checkbox"] {
	vertical-align: middle;
	margin-top: -.1em;
	margin-right: .5em;
}
.Form__error {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	font-size: 12px;
	line-height: 1.3;
	color: #e81c30;
}
.Form .Form__field--checkbox {
	padding-left: 1.3em;
	position: relative;
	line-height: 180%;
}
.Form .Form__field--checkbox input[type="checkbox"] {
	position: absolute;
	top: 8px;
	left: 0;
}
.Form .Form__field--checkbox .Form__error {
	position: static;
	margin-top: 2px;
}
.Link {
	padding: 0;
	border: 0;
	font: inherit;
	line-height: 180%;
	text-decoration: none;
	color: #0b86df;
	background: transparent;
	cursor: pointer;
}
.Link:hover, .Link:focus, .Link:active {
	outline: none;
}
.Link:hover, .Link:focus {
	text-decoration: underline;
	color: #0094ff;
}
.Link--dashed .Link__text {
	border-bottom: 1px dashed;
}
.Link--dashed:hover, .Link--dashed:focus {
	text-decoration: none;
}
.Link--arrowRight {
	position: relative;
	padding-right: 15px;
}
.Link--arrowRight:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 5px;
	margin-top: -2px;
	-o-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
}
.Link--arrowRight.active:after {
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	     -o-transform: rotate(180deg);
	        transform: rotate(180deg);
}
.List:not(:last-child) {
	margin-bottom: 20px;
}
.List__header {
	margin-bottom: .6em;
	font-weight: bold;
}
.List__items {
	padding-left: 0;
	list-style-type: none;
	line-height: 180%;
}
.List__item + .List__item {
	margin-top: .25em;
}
.List__item:before {
	content: '\2014';
	margin-right: .5em;
}
.MainBanner {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #f9f9f9;
}
.MainBanner__imgContainer {
	position: relative;
	-webkit-flex: auto;
	   -moz-box-flex: 1;
	    -ms-flex: auto;
	        flex: auto;
	overflow: hidden;
}
.MainBanner__img {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
}
.MainBanner__content {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	width: 51%;
	min-height: 300px;
	padding: 24px;
	border: 1px solid #d1d1d1;
	border-left-width: 0;
}
.MainBanner__title {
	max-width: 90%;
	margin: 0 0 20px;
	font-size: 30px;
	line-height: 1.3;
}
.MainBanner__title:last-child {
	margin-bottom: 0;
}
.MainBanner__description {
	font-size: 17px;
	line-height: 1.8;
}
.MainBanner__description:not(:last-child) {
	margin-bottom: 20px;
}
.Breadcrumbs {
	margin: 25px 0 30px;
	padding: 0;
	font-size: 13px;
	list-style-type: none;
}
.Breadcrumbs__item {
	display: inline-block;
}
.Breadcrumbs__item + .Breadcrumbs__item:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 3px;
	height: 7px;
	margin: 0 7px;
}
.Message {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	max-width: 850px;
	padding: 35px 25px;
	background-color: #f9f9f9;
}
.Message__icon {
	background-repeat: no-repeat;
}
.Message__icon + .Message__body {
	margin-left: 15px;
}
.Message__header {
	margin: 0;
	margin-bottom: .3em;
	font-size: 16px;
	line-height: 1;
}
.Message--success .Message__icon {
	width: 58px;
	height: 56px;
	background-image: url('/assets_service_om/img/dest/success.png');
}
.Message--fail .Message__icon {
	width: 56px;
	height: 56px;
	background-image: url('/assets_service_om/img/dest/fail.png');
}
.Section:not(:last-child) {
	margin-bottom: 40px;
}
.Section__box:not(:last-child) {
	margin-bottom: 20px;
}


/* Составные блоки */
.Header {
	background-color: #e82111;
	color: #fff;
}
.Header .Page__wrapper {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}
.Header a {
	color: #fff;
}
.Header__box--menu {
	margin-left: 25px;
}
.Footer {
	font-size: 13px;
	color: #fff;
	background-color: #474645;
}
.Footer__box:not(:first-child) {
	margin-left: 50px;
}
.Footer .Page__wrapper {
	position: relative;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: flex-end;
	   -moz-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	padding-top: 45px;
	padding-bottom: 45px;
}
.Footer__credits {
	margin-top: .8em;
}
.Footer .Logo {
	height: 35px;
}
.Footer a {
	color: inherit;
}
.Menu {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin:0;
	padding: 0;
}
.Menu > li {
	position: relative;
	display: block;
	list-style-type: none;
}
.Menu > li:hover {
	background-color: #ff2413;
}
.Menu > li.active {
	background-color: #ff2413;
}
.Menu a {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: inline-block;
	height: 100%;
	padding: 2px 18px 0;
	text-decoration: none;
}
.Menu a:before {
	content: '';
	height: 100%;
	display: inline-block;
	vertical-align: middle;
}
.Menu--footer {
	height: auto;
}
.Menu--footer > li:hover {
	background: none;
}
.Menu--footer > li a:hover, .Menu--footer > li a:active, .Menu--footer > li a:focus {
	text-decoration: underline;
}
.Menu--footer > li + li {
	margin-left: 10px;
}
.Menu--footer a {
	height: auto;
	padding: 0;
}
.Menu--footer a:before {
	content: none;
}
.Error {
	position: relative;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	min-height: 560px;
	margin: auto 0;
	padding-left: 338px;
}
.Error__header {
	max-width: 400px;
	margin: .67em 0;
}
.Error__picture {
	position: absolute;
	top: 0;
	left: 0;
	width: 288px;
	height: 100%;
	background: url('/assets_service_om/img/dest/error_404.png') no-repeat center;
	background-size: contain;
}
.Error .Footer {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: flex-end;
	   -moz-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	margin: 45px 0;
	color: inherit;
	background-color: transparent;
}
.Error .Footer a {
	color: #0b86df;
}
.TroubleReport {
	position: absolute;
	bottom: 100%;
	left: 20px;
}
a.TroubleReport__button {
	display: inline-block;
	padding: 9px 23px 9px 47px;
	border-radius: 5px 5px 0 0;
	font-size: 12px;
	text-decoration: none;
	line-height: 1;
	color: #fff;
	background-color: #7f7f7f;
	background-color: rgba(127, 127, 127, .9);
	background-repeat: no-repeat;
	background-position: 19px 50%;
	-o-transition: background-color .3s;
	-moz-transition: background-color .3s;
	transition: background-color .3s;
}
a.TroubleReport__button:hover {
	color: #fff;
	background-color: #7f7f7f;
	background-color: rgba(127, 127, 127, 1);
}

.ShopAddresses a {
	color: #0b86df;
}

.ShopAddresses a:hover {
	color: #0094ff;
}

.ShopAddresses__title {
	font-size: 20px;
	line-height: 24px;
	font-weight: normal;
	margin: 24px 0 20px;
}

.ShopAddresses .ShopAddresses__represent {
	position: relative;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	font-size: 14px;
	line-height: 21px;
	padding-left: 20px;
	display: inline-block;
	border-bottom: 0;
	margin-right: 10px;
	border-radius: 10px 10px 0 0;
	color: #858585;
	padding: 5px 14px;
	border: 1px solid #dcdcdc;
	border-bottom-width: 0;
	text-decoration: none;
}

.ShopAddresses .ShopAddresses__represent:before {
	content: '';
	margin-right: 6px;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	vertical-align: middle;
}

.ShopAddresses .ShopAddresses__represent:hover {
	border-color: #e82111;
	color: #e82111;
}

.ShopAddresses .ShopAddresses__represent.active {
	pointer-events: none;
	border-color: #e82111;
	color: #e82111;
}

.ShopAddresses .ShopAddresses__represent.active:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border-top: 1px solid #fff;
}

.ShopAddresses .ShopAddresses__represent:focus {
	outline: none;
}

.ShopAddresses .ShopAddresses__represent--map:before {
	width: 11px;
	height: 16px;
}

.ShopAddresses .ShopAddresses__represent--list {
	margin-right: 15px;
}

.ShopAddresses .ShopAddresses__represent--list:before {
	width: 15px;
	height: 12px;
}

.ShopAddresses__representMapContent {
	position: relative;
	display: none;
	margin-top: 12px;
	width: 100%;
	height: 890px;
}

.ShopAddresses__logoSamson {
	margin: 17px 0 19px;
}



/* Tabs
---------------------------------------------------------------------- */

.Tabs--shopAddresses {
	margin: 0;
}

.Tabs--shopAddresses .Tabs__list {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e82111;
	padding-right: 10px;
	padding-left: 10px;
	white-space: nowrap;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.Tabs--shopAddresses .Tabs__content {
	display: block;
	padding: 0;
}

.Tabs--shopAddresses .Tabs__content .TabContent {
	margin-top: 1.43em;
}

.Tabs--shopAddresses .Tab {
	margin: 0;
	padding: 14px 28px;
	vertical-align: top;
	display: inline-block;
	margin-right: 14px;
	border: 1px solid #dcdcdc;
	border-bottom-width: 1px;
	border-bottom-width: 0;
	border-radius: 10px 10px 0 0;
	background: none;
	cursor: pointer;
	box-shadow: none;
	font-weight: normal;
	color: #858585;
}

@media (max-width:1030px){
	.Tabs--shopAddresses .Tab{
		padding: .93em 1.05em .65em 1em;
	}
}

.Tabs--shopAddresses .Tab:before {
	display: none;
}

.Tabs--shopAddresses .Tab--active {
	cursor: default;
	border-color: #e82111;
	position: relative;
}

.Tabs--shopAddresses .Tab--active:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 0;
	border-bottom: 1px solid #fff;
}

.Tabs--shopAddresses .Tab:hover, .Tabs--shopAddresses .Tab--active, .Tabs--shopAddresses .Tab--active:hover {
	color: #e82111;
	border-color: #e82111;
}

.Tabs--shopAddresses .Tab__title {
	font-size: 15px;
	line-height: 17px;
	text-align: center;
	font-weight: bold;
}

.Tabs--shopAddresses .Tab__desc {
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	margin-top: 1px;
}



/* ShopAddressesView
---------------------------------------------------------------------- */

.ShopAddressesView--default .ShopAddressesView__control {
	display: table;
	width: 100%;
	border-bottom: 1px solid #e82111;
	margin-bottom: 15px;
}

.ShopAddressesView--default .ShopAddressesView__controlBox {
	display: table-cell;
}

.ShopAddressesView--default .ShopAddressesView__controlBox--type {
	text-align: right;
}

.ShopAddressesView--default a.ShopAddressesView__address {
	color: #0b86df;
	border-bottom: 1px dashed;
	text-decoration: none;
	display: inline;
}

.ShopAddressesView--default a.ShopAddressesView__address:hover {
	color: #0094ff;
}

.ShopAddressesView--default .ShopAddressesView__site {
	font-weight: normal;
}

.ShopAddressesView--default .ShopAddressesView__sheduleLine {
	white-space: nowrap;
}

.ShopAddressesView--default .ShopAddressesView__empty {
	color: #858585;
	font-size: 20px;
	margin: 1.4em auto 0 auto;
	text-align: center;
}

.ShopAddressesView--default .ShopAddressesView__content {
	margin-top: 1.43em;
}



/* Items
---------------------------------------------------------------------- */

.Items--shopAddressesList {
	display: table;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border-collapse: collapse;
	width: 100%;
	max-width: none;
	line-height: 1.5;
	font-size: inherit;
	border-spacing: 0;
	margin-top: 0;
	margin-bottom: -.75em;
}

.Items--shopAddressesList .Item {
	display: table-row;
}

.Items--shopAddressesList .Item + .Item .Item__box {
	border-top: 1px solid #dcdcdc;
}

.Items--shopAddressesList .Item__box {
	display: table-cell;
	vertical-align: top;
	padding: .75em;
}

.Items--shopAddressesList .Item__box:first-child {
	padding-left: 0;
}

.Items--shopAddressesList .Item__box:last-child {
	padding-right: 0;
}

.Items--shopAddressesList .Item__box--city {
	width: 14.29em;


	/* 200px */
}

.Items--shopAddressesList .Item__box--name {
	font-weight: bold;
	width: 14.29em;


	/* 200px */
}

.Items--shopAddressesList .Item__box--phone {
	text-align: right;
	width: 10em;


	/* 140px */
}

.Items--shopAddressesList .Item__box--site {
	white-space: nowrap;
}



/* CitySelector
---------------------------------------------------------------------- */

.CitySelector__link {
	position: relative;
	border: 0;
	font-size: 18px;
	line-height: 23px;
	display: inline-block;
	padding-right: 15px;
	color: #0b86df;
	cursor: pointer;
}

.CitySelector__link:hover {
	color: #0094ff;
}

.CitySelector__link:after {
	content: "";
	width: 10px;
	height: 5px;
	top: 50%;
	right: 0;
	margin-left: 5px;
	margin-top: -3px;
	position: absolute;
}

.CitySelector__current {
	font-size: 14px;
	line-height: 18px;
}

.CitySelector__current--link {
	border-bottom: 1px dashed;
}



/* CitySelectorTipTip
-----------------------------------------------------------------*/

.CitySelectorTipTip.TipTip--theme-white .TipTip__content {
	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.4);
	box-shadow: 0 5px 15px rgba(0,0,0,0.4);
	border-width: 0;
	background: #fff;
}

.CitySelectorTipTip.TipTip--theme-white .TipTip__pointer {
	background-position: 0 0;
	background-repeat: no-repeat;
	margin: 0 0 0 -6px;
}

.CitySelectorTipTip.TipTip--top.TipTip--theme-white .TipTip__pointer, .CitySelectorTipTip.TipTip--bottom.TipTip--theme-white .TipTip__pointer {
	width: 24px;
	height: 13px;
}

.CitySelectorTipTip.TipTip--top.TipTip--theme-white .TipTip__pointer {
	margin-top: -1px;
}

.CitySelectorTipTip.TipTip--bottom.TipTip--theme-white .TipTip__pointer {
	margin: 0 0 -1px -6px;
}

.CitySelectorTipTip.TipTip--right.TipTip--theme-white .TipTip__pointer, .CitySelectorTipTip.TipTip--left.TipTip--theme-white .TipTip__pointer {
	width: 13px;
	height: 24px;
}

.CitySelectorTipTip.TipTip--right.TipTip--theme-white .TipTip__pointer {
	margin: -6px 0 0 4px;
}

.CitySelectorTipTip.TipTip--left.TipTip--theme-white .TipTip__pointer {
	margin: -6px 0 0 0;
}



/* CitySelectorTip
-----------------------------------------------------------------*/

.CitySelectorTip {
	font-size: 12px;
	line-height: 18px;
	padding: 10px 12px;
	white-space: nowrap;
	cursor: default;
}

.CitySelectorTip__title, .CitySelectorTip__city {
	display: inline-block;
}

.CitySelectorTip__btn {
	color: #fff;
	background-color: #e82111;
	font-size: 14px;
	line-height: 14px;
	border-bottom: 0;
	padding: 16px;
	text-align: center;
	border-radius: 4px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	text-decoration: none;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: inline-block;
	border: 1px solid;
	padding: 5px 11px;
	font-size: 12px;
	line-height: 18px;
}

.CitySelectorTip__btn:hover{
	background-color: #ff2413;
	border-color: #ff2413;
	color: #fff;
	text-decoration: none;
}

.CitySelectorTip__btn--close {
	margin-left: 10px;
	border-color: #e82111;
}

.CitySelectorTip__btn--link {
	color: #e82111;
	margin-left: 7px;
	background-color: transparent;
	border-color: #e82111;
}



/* MapPlacemark
---------------------------------------------------------------------- */

.MapPlacemark--brand {
	width: 36px;
	height: 48px;
	cursor: pointer;
}

.MapPlacemark--brand.MapPlacemark--active {
	cursor: default;
}

.MapPlacemark--cluster {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	width: 39px;
	height: 39px;
	color: #000;
	font-size: 14px;
	line-height: 31px;
	text-align: center;
	border: 4px solid #e82111;
	border-radius: 100%;
	background-color: #fff;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-transform: translate(-19px, -19px);
	   -moz-transform: translate(-19px, -19px);
	    -ms-transform: translate(-19px, -19px);
	     -o-transform: translate(-19px, -19px);
	        transform: translate(-19px, -19px);
}

.MapPlacemark--cluster.MapPlacemark--active {
	cursor: default;
}

.MapPlacemark--cluster.MapPlacemark--active, .MapPlacemark--cluster:hover {
	border-color: #ff2413;
}



/* BuyOnline
---------------------------------------------------------------------- */

.BuyOnline--default {
	margin: 50px 0 0;
	padding: 0;
	list-style: none;
}

.BuyOnline--default .BuyOnline__item {
	display: inline-block;
	margin: 0 0 20px 2%;
	padding: 0;
	vertical-align: top;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	width: 32%;
}

.BuyOnline--default .BuyOnline__item:nth-child(3n + 1) {
	margin-left: 0;
}

.BuyOnline--default .BuyOnline__link {
	background-color: #fff;
	border: 1px solid #f2f2f2;
	text-align: center;
	display: block;
	height: 60px;
	line-height: 60px;
	padding: 34px 20px 33px;
	position: relative;
	border-radius: 10px;
	text-decoration: none;
}

.BuyOnline--default .BuyOnline__link:hover {
	border-color: $SHOP_PILL_ACTIVE_COLOR;
}

.BuyOnline--default .BuyOnline__img {
	max-width: 100%;
	max-height: 100%;
}

.BuyOnline--default .BuyOnline__title {
	color: $SHOP_PILL_COLOR;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	display: block;
	margin-top: 12px;
}

.BuyOnline--default .BuyOnline__reference {
	color: #949494;
	font-size: 12px;
	line-height: 14px;
	display: block;
	margin-top: 5px;
}

.BuyOnline--default .BuyOnline__link:hover .BuyOnline__title, .BuyOnline--default .BuyOnline__link:hover .BuyOnline__reference {
	color: $SHOP_PILL_ACTIVE_COLOR;
}



/* Addresses
---------------------------------------------------------------------- */

.Address--default .Address__title {
	font-weight: bold;
	font-size: 16px;
	line-height: 24px;
}

.Address--default .Address__infoItem {
	font-size: 13px;
	line-height: 24px;
}

.Address--default .Address__title + .Address__info, .Address--default .Address__infoItem + .Address__infoItem {
	margin-top: 6px;
}

.Address--default .Address__gallery {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.Address--default .Address__photoLink {
	border-bottom-width: 0;
	width: 16%;
	-o-transition: opacity .3s;
	-moz-transition: opacity .3s;
	transition: opacity .3s;
}

.Address--default .Address__photoLink--loading {
	position: relative;
	background-color: #dcdcdc;
	background-color: rgba(220, 220, 220, .5);
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.Address--default .Address__photoLink--loading:before {
	display: inline-block;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border: 4px solid transparent;
	border-top-color: #e82111;
	border-left-color: #e82111;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	-webkit-animation: StmSpinner 1s linear infinite;
	   -moz-animation: StmSpinner 1s linear infinite;
	     -o-animation: StmSpinner 1s linear infinite;
	        animation: StmSpinner 1s linear infinite;
	content: '';
	position: absolute;
	top: -moz-calc(50% - 12px);
	top: calc(50% - 12px);
	left: -moz-calc(50% - 12px);
	left: calc(50% - 12px);
}

.Address--default .Address__photoLink:hover {
	opacity: .6;
}

.Address--default .Address__photoLink + .Address__photoLink {
	margin-left: 1%;
}

.Address--default .Address__photo {
	display: block;
	width: 100%;
	height: auto;
}

.Address--balloonContent {
	position: absolute;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border-radius: 10px;
	padding: 18px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
	-webkit-transform: translate(-50%, -100%);
	   -moz-transform: translate(-50%, -100%);
	    -ms-transform: translate(-50%, -100%);
	     -o-transform: translate(-50%, -100%);
	        transform: translate(-50%, -100%);
}

.Address--balloonContent .Address__btnClose {
	position: absolute;
	top: 5px;
	right: 5px;
	border: none;
	width: 19px;
	height: 19px;
	padding: 0;
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}

.Address--balloonContent .Address__btnClose:hover {
	opacity: .7;
}

.Address--balloonContent .Address__title {
	padding-right: 10px;
	font-size: 14px;
	line-height: 1.143;
}

.Address--balloonContent .Address__info {
	padding-right: 10px;
}

.Address--balloonContent .Address__infoItem {
	font-size: 12px;
	line-height: 1.5;
}

.Address--balloonContent .Address__gallery {
	margin-top: 10px;
}

.Address--balloonContent .Address__photoLink + .Address__photoLink {
	margin-left: 10px;
}

.Address--balloonContent .Address__photoLink, .Address--balloonContent .Address__photo {
	width: 84px;
	height: 56px;
}

.Address--balloonContent:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 12px;
	height: 12px;
	margin-left: -6px;
	margin-bottom: -6px;
	background-color: #fff;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}


/* ShopAddressesCards
---------------------------------------------------------------------- */

.ShopAddressesCards--default {
	margin-top: 20px;
}

.ShopAddressesCard--default {
	display: inline-block;
	width: 350px;
	border: 1px solid #dcdcdc;
	margin: 0 30px 0 0;
	vertical-align: top;
	padding: 25px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border-radius: 10px;
}

.ShopAddressesCard--default .ShopAddressesCard__title {
	font-size: 20px;
	line-height: 24px;
	margin-top: 15px;
}

.ShopAddressesCard--default .ShopAddressesCard__content {
	font-size: 14px;
	line-height: 21px;
	margin-top: 12px;
	height: 105px;
}

.ShopAddressesCard--default .ShopAddressesCard__link {
	display: inline-block;
	margin-top: 5px;
	border-bottom: 0;
}

.ShopAddressesCard--default .ShopAddressesCard__mail {
	border-bottom: 0;
	display: inline;
}

.ShopAddressesCard--default .ShopAddressesCard__mail, .ShopAddressesCard--default .ShopAddressesCard__phone {
	margin-left: 26px;
	line-height: 26px;
	position: relative;
}

.ShopAddressesCard--default .ShopAddressesCard__mail:before, .ShopAddressesCard--default .ShopAddressesCard__phone:before {
	content: '';
	display: inline-block;
	position: absolute;
	left: -26px;
	width: 18px;
	height: 17px;
}

.ShopAddressesCard--default .ShopAddressesCard__mail:before {
	background-position: 0 0;
	background-repeat: no-repeat;
	top: 3px;
	height: 12px;
}

.ShopAddressesCard--default .ShopAddressesCard__phone:before {
	background-position: 0 0;
	background-repeat: no-repeat;
	top: 5px;
}

.ShopAddressesCard--default .ShopAddressesCard__btnWrapper {
	margin-top: 18px;
}

.ShopAddressesCard--default .ShopAddressesCard__btn {
	color: #fff;
	background-color: #e82111;
	font-size: 14px;
	line-height: 14px;
	border-bottom: 0;
	padding: 16px;
	text-align: center;
	border-radius: 4px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	text-decoration: none;
	display: block;
}

.ShopAddressesCard--default .ShopAddressesCard__btn:hover{
	background-color: #ff2413;
	border-color: #ff2413;
	color: #fff;
	text-decoration: none;
}

.ShopAddressesCard--default .ShopAddressesCard__explanation {
	margin-top: 7px;
	color: #858585;
	font-size: 12px;
	text-align: center;
}



/* CitySelectWindow
---------------------------------------------------------------------- */

.CitySelectWindow {
	width: 670px;
	overflow: hidden;
	padding-bottom: 0;
}

.CitySelectWindow--loading {
	position: relative;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.CitySelectWindow--loading:before {
	display: inline-block;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border: 5px solid transparent;
	border-top-color: #e82111;
	border-left-color: #e82111;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	-webkit-animation: StmSpinner 1s linear infinite;
	   -moz-animation: StmSpinner 1s linear infinite;
	     -o-animation: StmSpinner 1s linear infinite;
	        animation: StmSpinner 1s linear infinite;
	content: '';
	position: absolute;
	top: -moz-calc(50% - 50px);
	top: calc(50% - 50px);
	left: -moz-calc(50% - 50px);
	left: calc(50% - 50px);
	z-index: 2;
}

.CitySelectWindow--loading:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	background-color: rgba(255, 255, 255, .75);
	z-index: 1;
}

.CitySelectWindow a:hover {
	color: #0094ff;
}

.CitySelectWindow .FancyModal__header {
	border-bottom: 0;
	margin-bottom: 0;
}

.CitySelectWindow__content {
	border-top: 1px solid #d6d6d6;
	position: relative;
}

.CitySelectWindow__box {
	position: relative;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	height: 440px;
	width: 50%;
}

.CitySelectWindow__box:after {
	background: -moz-linear-gradient(top, #ffffff 0, #fff 100%);
	background: -o-linear-gradient(top, #ffffff 0, #fff 100%);
	background: linear-gradient(to bottom, #ffffff 0, #fff 100%);
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0, #fff 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0, #fff 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0, #fff 100%);
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 90%;
	height: 30px;
	pointer-events: none;
}

.CitySelectWindow__box--regions, .CitySelectWindow__box--cities {
	box-shadow: inset -1px 0 0 0 #d6d6d6;
}

.CitySelectWindow__box--regions {
	width: 300px;
}

.CitySelectWindow__box--cities {
	width: 370px;
}

.CitySelectWindow__wrapper {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	padding: 25px 30px 0;
	height: 100%;
	overflow: auto;
}

.CitySelectWindow__header {
	color: #b1b5bd;
	cursor: default;
	font-size: 18px;
	line-height: 1em;
	margin-bottom: 15px;
}

.CitySelectList {
	line-height: 1em;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
}

.CitySelectList--main {
	margin-bottom: 1em;
}

.CitySelectList--main .CitySelectList__box {
	margin: 0;
}

.CitySelectList:last-child {
	margin-bottom: 20px;
}

.CitySelectList__box {
	list-style: none;
	display: block;
	vertical-align: top;
	margin: 0 0 0 25px;
	padding: 0;
	max-width: 200px;
}

.CitySelectList__box--alphabet {
	color: #bbb;
	text-transform: uppercase;
	width: 15px;
	float: left;
	margin: 0;
	position: absolute;
}

.CitySelectList__item:before {
	content: none;
}

.CitySelectList__item {
	margin: 0 0 14px 0;
}

.CitySelectList__item--search {
	display: none;
}

.CitySelectList__item--main {
	font-weight: bold;
}

.CitySelectList__item--active {
	font-weight: bold;
}

.CitySelectList__item--active .CitySelectList__link {
	color: #0b86df;
	pointer-events: none;
	outline: none;
}

.CitySelectList__link {
	color: #000;
	border: 0;
}

.CitySelectList__region {
	color: #999;
	display: block;
	font-size: 16px;
	font-weight: normal;
	margin-top: 3px;
}

.CitySelectSearch .Field--search {
	position: relative;
	border-width: 0;
	padding: 0;
	margin-bottom: 15px;
	display: block;
}

.CitySelectSearch .Field__input {
	width: 100%;
	background-color: #f5f7fa;
	border: 1px solid #dcdcdc;
	height: 31px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border-radius: 4px;
	padding-left: 45px;
	background-position: 17px 50%;
	background-repeat: no-repeat;
}

.CitySelectSearch .Field__input:focus {
	background-color: #fff;
}

.CitySelectSearchResult, .CitySelectNotSearch {
	display: none;
}

.CitySelectNotSearch {
	margin-top: 13px;
}

.CitySelectNotSearch__box {
	line-height: 20px;
}

.CitySelectNotSearch__box--title {
	font-weight: bold;
}

.CitySelectNotSearch__box + .CitySelectNotSearch__box, .CitySelectNotSearch__item + .CitySelectNotSearch__item {
	margin-top: 4px;
}

.CitySelectNotSearch__list {
	list-style: none;
	margin: 0;
	padding: 0 0 0 30px;
}

.CitySelectNotSearch__item:before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 10px;
	left: -21px;
}

.HeaderNav__link .LinkWrapper {
	color: #576372;
	border: 0;
}

.ShopAddressesView__controlBox--place, .ShopAddressesView__controlBox--category {
	width: 1px;
	white-space: nowrap;
}

.ShopAddressesView__controlBox--place {
	padding-right: 15px;
}

.CitySelector__current {
	font-size: 15px;
}

.ShopAddressesSelect {
	position: relative;
	padding-right: 15px;
	padding-bottom: 5px;
	display: inline-block;
}

.ShopAddressesSelect:hover .ShopAddressesSelect__label {
	color: #0094ff;
}

.ShopAddressesSelect:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 5px;
	margin-top: -5px;
}

.ShopAddressesSelect__label {
	font-size: 15px;
	line-height: 18px;
	border-bottom: 1px dashed;
	color: #0b86df;
	cursor: pointer;
}

.ShopAddressesSelect__select {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.Items--shopAddressesList .Item__box--category {
	width: 13.2em;
}

.Items--shopAddressesList .Item__box--phone {
	max-width: 18em;
	word-wrap: break-word;
}
.Showcase {
	overflow: hidden;
}
.Showcase__content {
	position: relative;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-o-transition: margin-left .6s ease-in-out;
	-moz-transition: margin-left .6s ease-in-out;
	transition: margin-left .6s ease-in-out;
}
.Showcase__content:before, .Showcase__content:after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0.8;
}
.Showcase__content:before {
	left: 100%;
}
.Showcase__content:after {
	right: 100%;
	margin-left: 2px;
}
.Showcase__progress {
	height: .9em;
	background: #d9d9d9;
	border-radius: 1em;
}
.Showcase__handler {
	position: relative;
	display: block;
	height: 100%;
	width: 9em;
	background-color: #e82111;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
	border-radius: 1em;
}
.Showcase__controls {
	margin: 1.3em 0 0;
}
.Showcase .Category {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	width: 23.49%;
}
.Showcase .Category:not(:last-child) {
	margin-right: 2%;
}

/* Разное */
.w-half {
	width: 50%;
}

.hiddenBox {
	display: none;
}

.disabled {
	pointer-events: none;
	cursor: default;
}

/*# sourceMappingURL=maps/main.css.map */