/* VAR
---------------------------------------------------------------------*/
/* MIXINS
---------------------------------------------------------------------*/
/*!

	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: #fbe100;
	color: #000;
	text-shadow: none;
}
::selection {
	background-color: #fbe100;
	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;
}
/*!
	
	USEFUL
 
 */


/* USEFUL
---------------------------------------------------------------------*/

/* предотвращает схлопывание элемента, если в нём есть плавающие */
.group:before, .group:after {
	content: " ";
	display: table;
}
.group:after {
	clear: both;
}

/* альтернативный способ */
.groupIB {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: inline-block;
	width: 100%;
}

.hideAway {
	left: -9999px;
	position: absolute;
	top: -9999px;
	visibility: hidden;
}
.hideAway\! {
	left: -9999px !important;
	position: absolute !important;
	top: -9999px !important;
	visibility: hidden !important;
}

.hideAway--clear {
	left: auto;
	position: static;
	top: auto;
	visibility: visible;
}
.hideAway--clear\! {
	left: auto !important;
	position: static !important;
	top: auto !important;
	visibility: visible !important;
}

.hideSr {
	border: 0;
	clip: rect(0,0,0,0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}


/* грамотное выравнивание */
.v-a-m-true {
	margin-top: -.17em;
	vertical-align: middle;
}

.v-a-m-tranY {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}


img[align="left"], .align-left {
	float: left;
	margin-right: .75em;
}
img[align="right"], .align-right {
	float: right;
	margin-left: .75em;
}


/* встраиваемое содержимое растягивается на всю ширину контейнера, не искажаясь */
.embedFill {
	height: auto;
	width: 100%;
}


/* предзагрузка изображений */
/*
<button>
<span class="Icon order imgPreload imgPreloadLoading"></span>
Купить
</button>
*/

.imgPreload:after {
	content: '';
	display: inline;
}
/*.imgPreloadLoading:after,
.Btn.loading .Icon {
	background: url("/img/icons/loading.gif");
}*/

/*
 * осеревание изображения
 * http://www.karlhorky.com/2012/06/cross-browser-image-grayscale-with-css.html
 * https://github.com/karlhorky/gray
 */
.grayscale {
	-webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+ */
	        filter: grayscale(100%); /* Chrome 19+, Safari 6+ */
}


/*
<label for="input">Заголовок</label>
<input id="input" type="text" />
*/

.fieldRequired:after {
	color: red;
	content: '*';
	font-weight: bold;
	margin-left: .3em;
}

.ielte7 .fieldRequired {
	background-color: #fdd;
	display: inline;
	min-height: 1em;
	min-width: 1em;
	zoom: 1;
}


.Required:after {
	content: '*';
	color: #e35959;
}


/* скрытие элементов, нуждающихся в джс, класс для модернизра */
.isNeedsJS {
	opacity: 0;
	visibility: hidden;
}
.has-js .isNeedsJS {
	opacity: 1;
	visibility: visible;
}


/* скрытие текста в элементе */
.textHide {
	border: 0;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}
.ielte7 .textHide {
	text-indent: -9999px;/* проблема: строчно-блоковые элементы улетают */
}

.textHideAway {
	text-indent: -9999px;
}


/* невыделяемый текст */
.noUserSelect {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.noUserSelect::-moz-selection {
	color: inherit
}
.noUserSelect::selection {
	color: inherit
}

/* отключение всплытия информации о ссылке при долгом нажатии на ней, http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#/apple_ref/css/property/-webkit-touch-callout */
.noTouchCallout {
	-webkit-touch-callout: none;
}

/* https://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/AdjustingtheTextSize/AdjustingtheTextSize.html */
/* аналог для ИЕ10 на ВинФон8 — http://blogs.windows.com/windows_phone/b/wpdev/archive/2012/11/15/adapting-your-webkit-optimized-site-for-internet-explorer-10.aspx */
.noTapHighlight {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* верхний регистр с разрядкой */
.textUppercase {
	font-size: .875em;
	letter-spacing: .1em;
	margin-right: -.1em;
	text-transform: uppercase;
}

/* полупробел */
/* аналог в хтмл — `&#8198;` [отсюда](http://stackoverflow.com/a/8515417) */
/* неразрывный вариант — `&#8239;` [отсюда](http://en.wikipedia.org/wiki/Non-breaking_space) */
/* символьные аналоги могут не отображаться в некоторых системах, поэтому: */
/*
<span class="halfSpace">&nbsp;</span>
*/
.textHalfSpace {
	font-size: 50%;
	line-height: 1;
}


/*doc

### .TextFade

Плавное опрозрачнивание однострочного текста

Не работает в опере 12, в ИЕ скрывается троеточиями (где возможно)
*/

.TextFade {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	-webkit-mask-image: linear-gradient(to left, transparent 0, #000 3em);
	        mask-image: linear-gradient(to left, transparent 0, #000 3em);
	-ms-text-overflow: ellipsis;
}


/* вытягивание текста в одну строку и обрезание троеточием */
.fillLine {
	display: inline-block;
	overflow: hidden;
	-ms-text-overflow: ellipsis;
			text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}


/*
Скрытие текста обрезанием

http://www.mobify.com/blog/multiline-ellipsis-in-pure-css/

```html
<p class="Ellipsify"><span class="Ellipsify__text">Эксикатор разрушаем. Заиливание волнообразно. Очевидно, что надолба перемещает легкосуглинистый бур, вне зависимости от предсказаний теоретической модели явления. Латерит, как следует из полевых и лабораторных наблюдений, восстанавливает пахотный чернозём одинаково по всем направлениям.<span></p>
```
*/

.Ellipsify {
	height: 6em;
	line-height: 1.5em;
	overflow: hidden;
}

.Ellipsify:before {
	content: "";
	float: left;
	height: 6em;
	width: 5px;
}

.Ellipsify:after {
	-moz-box-sizing: content-box;
	     box-sizing: content-box;
	content: "\02026";
	float: right;
	left: 100%;
	margin-left: -1em;
	padding-right: 5px;
	position: relative;
	text-align: right;
	top: -1.5em;
	width: 1em;
}
.Ellipsify__text {
	float: right;
	margin-left: -5px;
	width: 100%;
}


/* добавление индикатора выпадаемости */

.caret {
	border: .36em solid transparent;
	border-top-color: currentColor;
	border-bottom-width: 0;
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 0;
}

.caret--top {
	border-top: 0;
	border-bottom-color: currentColor;
	border-bottom-width: .36em;
}

.caret--left {
	border-right: 0;
	border-left-color: currentColor;
	border-top-color: transparent;
	border-bottom-width: .36em;
}

.caret--right {
	border-left: 0;
	border-right-color: currentColor;
	border-top-color: transparent;
	border-bottom-width: .36em;
}

.caret--after {
	margin-left: .4em;
}

.caret--before {
	margin-right: .4em;
}

.Btn .caret {
	margin-left: 0;
}


/* добавление внешних стрелок, удобно для ссылок со стрелками */
.larr, .rarr {
	position: relative;
}
.larr {
	margin-left: 1.5em;
}
.rarr {
	margin-right: 1.5em;
}
.larr:before, .rarr:after {
	font-size: 1.2em;
	line-height: 1em;
	position: absolute;
	top: 0;
}
.larr:before {
	content: "\2190";
	margin-right: .3em;
	right: 100%;
}
.rarr:after {
	content: "\2192";
	left: 100%;
	margin-left: .3em;
}

.Delta {
	color: #999;
}

.Delta--positiveDown, .Delta--positive {
	color: #48b28b;
}

.Delta--positiveDown:after, .Delta--positive:after {
	content: '\2191';
	position: relative;
	top: -.15em;
}

.Delta--positiveDown:after {
	content: '\2193';
}

.Delta--negativeUp, .Delta--negative {
	color: #e45959;
}

.Delta--negativeUp:after, .Delta--negative:after {
	content: '\2193';
	position: relative;
	top: -.15em;
}

.Delta--negativeUp:after {
	content: '\2191';
}


/* Адаптивные таблицы */
.TableResponsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.Files {
	padding-top: 5px;
}

.File {
	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;
}

.File:before {
	content: '';
	background-repeat: no-repeat;
	background-position: center left;
	width: 25px;
	height: 30px;
	-webkit-flex: 0 0 auto;
	   -moz-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}

.File--png:before {
	background-image: url('/assets_unlandia/img/dest/file_25x30_png.png');
}

.File--jpg:before {
	background-image: url('/assets_unlandia/img/dest/file_25x30_jpg.png');
}

.File__info {
	line-height: 1.22;
	margin-left: 8px;
	max-width: 402px;
}

.File__nameWrapper {
	display: block;
	text-decoration: none;
	border: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 2px;
}

.File__size {
	color: #949494;
	font-size: 12px;
	margin-top: 3px;
}

.File + .File {
	margin-top: 20px;
}

@-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: #82368B;
	border-left-color: #82368B;
	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;
}
/* BTN-mixin
---------------------------------------------------------------------*/

@-webkit-keyframes Spinner {

	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@-moz-keyframes Spinner {

	100% {
		-moz-transform: rotate(360deg);
		     transform: rotate(360deg);
	}
}

@-o-keyframes Spinner {

	100% {
		-o-transform: rotate(360deg);
		   transform: rotate(360deg);
	}
}

@keyframes Spinner {

	100% {
		-webkit-transform: rotate(360deg);
		   -moz-transform: rotate(360deg);
		     -o-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

.Btn {
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	font-size: 16px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	padding: .9375em 2em;
	line-height: 1;
	text-transform: uppercase;
	color: #82368b;
	display: inline-block;
	cursor: pointer;
	border-radius: 2em;
	border: 2px solid #82368b;
	background-color: #fff;
	outline: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	position: relative;
}

.Btn::-moz-selection {
	color: inherit;
}

.Btn::selection {
	color: inherit;
}

.Btn:hover {
	color: #fff;
	background-color: #82368b;
}

.Btn:active {
	color: #fff;
	background-color: #712f79;
}

.Btn.disabled {
	opacity: 0.3;
	pointer-events: none;
}

.Btn__spinner {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border: 3px solid transparent;
	border-top-color: #82368b;
	border-right-color: #82368b;
	border-radius: 50%;
	-webkit-animation: Spinner .8s linear infinite;
	   -moz-animation: Spinner .8s linear infinite;
	     -o-animation: Spinner .8s linear infinite;
	        animation: Spinner .8s linear infinite;
}

.Btn--yellow {
	background-color: #fbe100;
	border-color: #fbe100;
}

.Btn--yellow:hover, .Btn--yellow:focus {
	background-color: #fff282;
	border-color: #fff282;
	color: #82368b;
}

.Btn--group .Btn, .Btn--group .BtnMain, .Btn--group .Btn--yellow {
	border-radius: 0;
	border-width: 2px 1px;
}

.Btn--group .Btn:first-child, .Btn--group .BtnMain:first-child, .Btn--group .Btn--yellow:first-child {
	border-radius: 2em 0 0 2em;
	border-left-width: 2px;
}

.Btn--group .Btn:last-child, .Btn--group .BtnMain:last-child, .Btn--group .Btn--yellow:last-child {
	border-radius: 0 2em 2em 0;
	border-right-width: 2px;
}

.Btn--active, .BtnMain {
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	font-size: 16px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	padding: .9375em 2em;
	line-height: 1;
	text-transform: uppercase;
	color: #82368b;
	display: inline-block;
	cursor: pointer;
	border-radius: 2em;
	border: 2px solid #82368b;
	background-color: #fff;
	outline: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	position: relative;
	color: #fff;
	background-color: #82368b;
}

.Btn--active::-moz-selection, .BtnMain::-moz-selection {
	color: inherit;
}

.Btn--active::selection, .BtnMain::selection {
	color: inherit;
}

.Btn--active:hover, .BtnMain:hover {
	color: #fff;
	background-color: #82368b;
}

.Btn--active:active, .BtnMain:active {
	color: #fff;
	background-color: #712f79;
}

.Btn--active.disabled, .BtnMain.disabled {
	opacity: 0.3;
	pointer-events: none;
}

.Btn--active__spinner, .BtnMain__spinner {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border: 3px solid transparent;
	border-top-color: #82368b;
	border-right-color: #82368b;
	border-radius: 50%;
	-webkit-animation: Spinner .8s linear infinite;
	   -moz-animation: Spinner .8s linear infinite;
	     -o-animation: Spinner .8s linear infinite;
	        animation: Spinner .8s linear infinite;
}

.Btn--active:focus, .Btn--active:hover, .BtnMain:focus, .BtnMain:hover {
	background-color: #a788c0;
	border-color: #a788c0;
}

.BtnLite {
	border: 0;
	position: relative;
	display: inline-block;
	line-height: 0;
	cursor: pointer;
	background-color: transparent;
}

.BtnLite:before {
	content: '';
	position: relative;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.BtnLite:focus, .BtnLite:hover {
	background-color: transparent;
}

.BtnLite--crossMin {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.BtnLite--crossMin:before {
	width: 28px;
	height: 28px;
	left: ;
	top: ;
}

.BtnLite--backwardBig {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.BtnLite--backwardBig:before {
	width: 26px;
	height: 47px;
	left: ;
	top: ;
}

.BtnLite--forwardBig {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.BtnLite--forwardBig:before {
	width: 26px;
	height: 47px;
	left: ;
	top: ;
}

.BtnLite--arrTop {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.BtnLite--arrTop:before {
	width: 24px;
	height: 14px;
	left: ;
	top: ;
}

.BtnLite--arrDown {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.BtnLite--arrDown:before {
	width: 24px;
	height: 14px;
	left: ;
	top: ;
}

.BtnLite--arrTopMid {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.BtnLite--arrTopMid:before {
	width: 27px;
	height: 16px;
	left: ;
	top: ;
}

.BtnLite--arrDownMid {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.BtnLite--arrDownMid:before {
	width: 27px;
	height: 16px;
	left: ;
	top: ;
}

/* BTN--icon
---------------------------------------------------------------------*/
.Btn--print {
	padding: 1.25em;
	position: relative;
	background-color: #fbe100;
	border-color: #fbe100;
	background-color: #82368b;
	border-color: #82368b;
}
.Btn--print:before {
	content: '';
	position: absolute;
	display: inline-block;
	left: .75em;
	top: .75em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 32px;
	height: 32px;
}
.Btn--print:after {
	content: ' ';
	position: relative;
	display: inline-block;
	width: 1em;
}
.Btn--print:focus, .Btn--print:hover {
	border-color: #fff282;
	background-color: #fff282;
}
.Btn--print:hover {
	background-color: #a788c0;
	border-color: #a788c0;
}
.Btn--cross {
	padding: 1.25em;
	position: relative;
	background-color: #fbe100;
	border-color: #fbe100;
}
.Btn--cross:before {
	content: '';
	position: absolute;
	display: inline-block;
	left: .75em;
	top: .75em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 32px;
	height: 32px;
}
.Btn--cross:after {
	content: ' ';
	position: relative;
	display: inline-block;
	width: 1em;
}
.Btn--cross:focus, .Btn--cross:hover {
	border-color: #fff282;
	background-color: #fff282;
}
.Btn--cross {
	background-position: -1000px;
	background-repeat: no-repeat;
}
.Btn--cross:before {
	width: ;
	height: ;
	left: ;
	top: ;
}
.Btn--backward {
	padding: 1.25em;
	position: relative;
	background-color: #fbe100;
	border-color: #fbe100;
}
.Btn--backward:before {
	content: '';
	position: absolute;
	display: inline-block;
	left: .75em;
	top: .75em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 32px;
	height: 32px;
}
.Btn--backward:after {
	content: ' ';
	position: relative;
	display: inline-block;
	width: 1em;
}
.Btn--backward:focus, .Btn--backward:hover {
	border-color: #fff282;
	background-color: #fff282;
}
.Btn--backward {
	background-position: -1000px;
	background-repeat: no-repeat;
}
.Btn--backward:before {
	width: 28px;
	height: 28px;
	left: 13px;
	top: 14px;
}
.Btn--forward {
	padding: 1.25em;
	position: relative;
	background-color: #fbe100;
	border-color: #fbe100;
}
.Btn--forward:before {
	content: '';
	position: absolute;
	display: inline-block;
	left: .75em;
	top: .75em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 32px;
	height: 32px;
}
.Btn--forward:after {
	content: ' ';
	position: relative;
	display: inline-block;
	width: 1em;
}
.Btn--forward:focus, .Btn--forward:hover {
	border-color: #fff282;
	background-color: #fff282;
}
.Btn--forward {
	background-position: -1000px;
	background-repeat: no-repeat;
}
.Btn--forward:before {
	width: 28px;
	height: 28px;
	left: 16px;
	top: 14px;
}
.SliderBanner .Btn--backward, .SliderBanner .Btn--forward {
	background-color: #fff;
	border-color: #fff;
}
.SliderBanner .Btn--backward:focus, .SliderBanner .Btn--backward:hover, .SliderBanner .Btn--forward:focus, .SliderBanner .Btn--forward:hover {
	background-color: #a788c0;
	border-color: #a788c0;
}
.Btn--video {
	padding: 1.25em;
	position: relative;
	background-color: #fbe100;
	border-color: #fbe100;
}
.Btn--video:before {
	content: '';
	position: absolute;
	display: inline-block;
	left: .75em;
	top: .75em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 32px;
	height: 32px;
}
.Btn--video:after {
	content: ' ';
	position: relative;
	display: inline-block;
	width: 1em;
}
.Btn--video:focus, .Btn--video:hover {
	border-color: #fff282;
	background-color: #fff282;
}
.Btn--video {
	background-position: -1000px;
	background-repeat: no-repeat;
}
.Btn--video:before {
	width: ;
	height: ;
	left: ;
	top: ;
}
.Btn--backwardBig {
	background-position: -1000px;
	background-repeat: no-repeat;
}
.Btn--backwardBig:before, .FancyboxSlider__prev:before {
	width: 26px;
	height: 47px;
	left: ;
	top: ;
}
.Btn--forwardBig {
	background-position: -1000px;
	background-repeat: no-repeat;
}
.Btn--forwardBig:before, .FancyboxSlider__next:before {
	width: 26px;
	height: 47px;
	left: ;
	top: ;
}
.Btn--clip {
	padding-left: 4em;
	position: relative;
}
.Btn--clip:before {
	content: '';
	position: absolute;
	display: inline-block;
	width: 32px;
	height: 32px;
	left: 1.75em;
	top: .5em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin-top: -1px;
}
.Btn--clip {
	background-position: -1000px;
	background-repeat: no-repeat;
}
.Btn--clip:before {
	width: 24px;
	height: 26px;
	left: 31px;
	top: 12px;
}
.Btn--clipActive {
	padding-left: 4em;
	position: relative;
	color: #fff;
	background-color: #82368b;
}
.Btn--clipActive:before {
	content: '';
	position: absolute;
	display: inline-block;
	width: 32px;
	height: 32px;
	left: 1.75em;
	top: .5em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin-top: -1px;
}
.Btn--clipActive:before {
	width: 24px;
	height: 26px;
	left:  31px;
	top: 12px;
}
.Btn--clipActive:hover {
	background-color: #a788c0;
	border-color: #a788c0;
}

.Btn--wait {
	color: transparent;
	pointer-events: none;
}

.Btn--wait:hover, .Btn--wait:active {
	background-color: transparent;
	color: transparent;
	cursor: default;
}

.Btn--wait .Btn__spinner {
	display: block;
}



/* BtnSocial
---------------------------------------------------------------------*/

.BtnSocial {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	display: inline-block;
	outline: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	position: relative;
	width: 40px;
	height: 40px;
	vertical-align: middle;
}

.BtnSocial:focus {
	outline: none;
}

.BtnSocial:before, .BtnSocial:after {
	content: '';
	position: absolute;
	display: block;
}

.BtnSocial:before {
	width: inherit;
	height: inherit;
	left: 0;
	top: 0;
	border-radius: 50%;
	-o-transition: .1s ease-in-out;
	-moz-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
}

.BtnSocial:after {
	width: 22px;
	height: 22px;
	left: 9px;
	top: 9px;
	background-repeat: no-repeat;
	background-position: center;
}

.BtnSocial:hover:before, .BtnSocial--active:before {
	left: -5px;
	top: -5px;
	width: 50px;
	height: 50px;
}

.BtnSocial--vk:before {
	background-color: #5181b8;
}

.BtnSocial--insta:before {
	background-repeat: no-repeat;
}

.BtnSocial--insta:after {
	background-size: 100%;
}

.BtnSocial--ok:before {
	background-color: #ed812b;
}

.BtnSocial--youtube:before {
	background-color: #de2221;
}
/* TAB
---------------------------------------------------------------------*/
.Tab__wrapper {
	position: relative;
}
.Tab__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.Tab__item {
	display: inline-block;
}
.Tab__item:first-child .Tab__text {
	border-radius: 2em 0 0 2em;
	border-left-width: 2px;
}
.Tab__item:last-child .Tab__text {
	border-radius: 0 2em 2em 0;
	border-right-width: 2px;
}
.Tab__item--active {
	pointer-events: none;
}
.Tab__item--active .Tab__text {
	color: #fff;
	background-color: #82368b;
}
.Tab__item--disabled {
	opacity: 0.3;
	pointer-events: none;
}
.Tab__text {
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	font-size: 16px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	padding: .9375em 2em;
	line-height: 1;
	text-transform: uppercase;
	color: #82368b;
	display: inline-block;
	cursor: pointer;
	border-radius: 2em;
	border: 2px solid #82368b;
	background-color: #fff;
	outline: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	position: relative;
	border-radius: 0;
	border-width: 2px 1px;
	outline: none;
}
.Tab__text::-moz-selection {
	color: inherit;
}
.Tab__text::selection {
	color: inherit;
}
.Tab__text:hover {
	color: #fff;
	background-color: #82368b;
}
.Tab__text:active {
	color: #fff;
	background-color: #712f79;
}
.Tab__text.disabled {
	opacity: 0.3;
	pointer-events: none;
}
.Tab__text__spinner {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border: 3px solid transparent;
	border-top-color: #82368b;
	border-right-color: #82368b;
	border-radius: 50%;
	-webkit-animation: Spinner .8s linear infinite;
	   -moz-animation: Spinner .8s linear infinite;
	     -o-animation: Spinner .8s linear infinite;
	        animation: Spinner .8s linear infinite;
}
.Tab__text:hover {
	background-color: #a788c0;
	border-color: #a788c0;
}
.Tab__content {
	display: none;
}
.Tab__content--active {
	display: block;
}
@font-face {
	font-family: 'CirceRoundedWebRegular';
	src: url("/assets_unlandia/fonts/CirceRounded/CRO55__W/CRO55__W.eot");
	src:
		url("/assets_unlandia/fonts/CirceRounded/CRO55__W/CRO55__W.eot?#iefix") format('embedded-opentype'),
		url("/assets_unlandia/fonts/CirceRounded/CRO55__W/CRO55__W.woff2") format('woff2'),
		url("/assets_unlandia/fonts/CirceRounded/CRO55__W/CRO55__W.woff") format('woff'),
		url("/assets_unlandia/fonts/CirceRounded/CRO55__W/CRO55__W.ttf") format('truetype'),
		url("/assets_unlandia/fonts/CirceRounded/CRO55__W/CRO55__W.svg#CirceRoundedWeb-Regular") format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'CirceRoundedWebBold';
	src: url("/assets_unlandia/fonts/CirceRounded/CRO65__W/CRO65__W.eot");
	src:
		url("/assets_unlandia/fonts/CirceRounded/CRO65__W/CRO65__W.eot?#iefix") format('embedded-opentype'),
		url("/assets_unlandia/fonts/CirceRounded/CRO65__W/CRO65__W.woff2") format('woff2'),
		url("/assets_unlandia/fonts/CirceRounded/CRO65__W/CRO65__W.woff") format('woff'),
		url("/assets_unlandia/fonts/CirceRounded/CRO65__W/CRO65__W.ttf") format('truetype'),
		url("/assets_unlandia/fonts/CirceRounded/CRO65__W/CRO65__W.svg#CirceRoundedWeb-Bold") format('svg');
	font-weight: normal;
	font-style: normal;
}
/* FORM ELEMENTS
---------------------------------------------------------------------*/

/*doc

## Формы

Универсальная разметка для форм. Группы полей `Form__set` могут выделяться модификаторами `accent` (серый фон), `accent main` (жёлтый).

Чтобы поле ввода заполняло всё доcтупное пространство, не влияя на подпись, нужен модификатор `w-full` у `Form__field`.

Чтобы поле ввода заполняло всё пространство, подплывая под подпись, нужен модификатор `inputFull` у `Form__field`.

У контейнера для 

<form action="" class="Form">
	<fieldset class="Form__set accent main">
		<h4 class="Form__header">Общие сведения</h4>
		<div class="Form__field">
			<span class="Form__title"><label class="Form__label" for="id2">Имя:</label></span><div class="Form__group">
				<div class="Form__field">
					<input type="text" class="Form__input" id="id2" size="40" /><span class="icon remove"></span>
				</div>
				<div class="Form__field">
					<input type="text" class="Form__input" id="id5" size="40" /><span class="icon remove"></span>
				</div>
				<div class="Form__field">
					<span class="pseudoLink add">Добавить</span>
				</div>
			</div>
		</div>
		<div class="Form__field">
			<span class="Form__title"><label class="Form__label" for="id4">Фамилия:</label></span><input type="text" class="Form__input" id="id4" size="40" />
		</div>
		<hr class="Form__divider" />
		<div class="Form__field w-full">
			<span class="Form__title"><label class="Form__label" for="id1">Длинная подпись для поля, чтобы аж скрылась:</label></span><input type="text" class="Form__input" id="id1" size="40" />
		</div>
	</fieldset>

	<fieldset class="Form__set accent">
		<h4 class="Form__header">Общие сведения</h4>
		<div class="Form__field inputFull">
			<span class="Form__title"><label class="Form__label" for="id3">Комментарий:</label></span><textarea class="Form__input" name="" id="id3" cols="30" rows="10"></textarea>
		</div>
	</fieldset>

	<fieldset class="Form__set">
		<button>Сохранить документ</button>
	</fieldset>
</form>


<script>
$(document).ready(function () {

// псевдонаведение для связанных полей ввода
$('.Form__label').hover(
	function () {
		if ($(this).attr('for')) {
			$('#'+ $(this).attr('for')).addClass('hover');
		}
	},
	function () {
		if ($(this).attr('for')) {
			$('#'+ $(this).attr('for')).removeClass('hover');
		}
	}
)

// добавление новой строки
$('.Form .pseudoLink.add').click(function () {
	$(this).parent('.Form__field').before('<div class="Form__field"><input type="text" class="Form__input" size="40" /><span class="icon remove"></span></div>')
})

// удаление строки
$('.Form__group .icon.remove').live('click', function () {
	$(this).parent('.Form__field').remove();
})

})
</script>
*/


.Form__set {
	border: 0;
	margin-top: 1em;
	padding: 0;
}


.Form__set.buttonSet {
	border-top: 1px dotted #bababa;
	padding-top: 10px;
}
.Form__set:first-child {
	margin-top: 0;
}

.Form__header {
	border-bottom: 1px solid rgba(0,0,0,.15);
	font-size: inherit;
	margin-top: 0;
	margin-bottom: 1.5em;
	padding-bottom: .75em;
}

.Form__field {
	min-height: 1.4em;
	margin-top: 1em;
	margin-left: 230px;
	position: relative;
}
.Form__field:first-child {
	margin-top: 0;
}
.Form__field .Form__field {
	margin-left: 0;
}

.Form__divider {
	-moz-box-sizing: content-box;
	     box-sizing: content-box;
	border: 0;
	border-top: 1px solid rgba(0,0,0,.15);
	margin-top: 1em;
}

.Form__label {
	cursor: pointer;
	padding-top: .05em;
	padding-bottom: .05em;
}

.Form__title {
	color: #000000;
	color: rgba(0,0,0,.75);
	display: inline-block;
	line-height: 1.2em;
	margin-right: 10px;
	padding-top: 8px;
	padding-bottom: 5px;
	position: relative;
	text-align: right;
	vertical-align: top;
	width: 220px;
	height: 1em;

	margin-left: -230px;
}

.Form__title.hiddenTitle {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Form__title:hover {
	overflow: visible;
	white-space: normal;
}

.Form__value--truncated {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Form__input {
	border: 1px solid #d9d9d9;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	font: inherit;
	margin: 0;
	padding: 5px;
	width: 100%;
}

.Form__input:hover, .Form__input.hover, .Form__input:focus {
	border-color: #ababab;
}

textarea.Form__input {
	resize: vertical;
}
.Form__input + .Form__input {
	vertical-align: top;
}
.Form__input.w-150 {
	max-width: 150px;
}
.Form__input.w-300 {
	max-width: 300px;
}

.Form__group {
	display: inline-block;
	width: 100%;
}

.Form__group + .Form__group {
	margin-top: .75em;
}
.Form__field .Form__field + .Form__field {
	margin-top: .5em;
}
.Form__field.inputFull .Form__group .Form__field {
	margin-left: 0;
}


.Form .pseudoLink.add {
	border-bottom: 1px dashed;
	cursor: pointer;
	color: #7c7c7c;
}
.Form__field:first-child .pseudoLink.add {
	position: relative;
	top: 5px;
}
.Form .pseudoLink.add:hover {
	color: #4c4c4c;
}

.Form__field .icon.remove {
	cursor: pointer;
	margin-left: .4em;
}
.Form__field .icon.remove:hover {
	background-position: 0 -71px;
}


.Form__set.accent, .Form__set.indent {
	padding: 15px 20px;
}
.Form__set.accent, .Form__set.accent .Form__label {
	background-color: #f0f0f0;
}
.Form__set.accent.main, .Form__set.accent.main .Form__label {
	background-color: #f4f0d2;
}


.Form__field.w-full .Form__input {
	width: 100%;
}

.Form__field.inputFull {
	display: block;
	margin-left: 0;
}
.Form__field.inputFull .Form__title {
	display: block;
	margin-bottom: .5em;
	margin-left: 0;
	padding-top: 0;
	position: static;
	text-align: left;
	width: auto;
	margin-right: 0;
}
.Form__field.inputFull .Form__input {
	width: 100%;
}



.Form__field.error .Form__title, .Form__title.error {
	color: #c00;
}
.Form__field.error .Form__input, .Form__input.error {
	border-color: #c00;
}

.Form__error {
	color: #c00;
	display: block;
	font-size: 1em;
	left: 0;
	margin-top: 5px;
	width: 100%;
}

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

.Form__error li {
	padding-left: 15px;
	margin-top: 5px;
}

.Form__error li:before {
	content: '\2014';
	display: inline-block;
	width: 15px;
	margin-left: -15px;
}

.Form.Form--fresh {
	font-size: 13px;
}

.Form.Form--fresh .Form__title {
	color: #000;
	font-weight: bold;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	cursor: default;
}

.Form.Form--fresh .Form__input {
	border-radius: 2px;
}

.Form.Form--fresh .Form__field + .Form__field, .Form.Form--fresh .Form__field .Form__field + .Form__field  {
	margin-top: 1.2em;
}

.Form.Form--fresh label {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.Form.Form--fresh .Form__field .Form__field {
	margin-top: .2em;
}

.Form.Form--fresh input[type='checkbox'] {
	margin-right: .15em;
}
/* BLOCKS - CUSTOM RADIO CHECKBOX
---------------------------------------------------------------------*/

/*doc

### Custom Radio Checkbox

```html
<div class="Checkbox">
	<input type="checkbox" checked="" value="yes" name="check" id="check1" class="Checkbox__input">
	<label for="check1" class="Checkbox__label">
		<span class="Checkbox__button"></span><span class="Checkbox__text">Чекбокс</span>
	</label>
</div>

<div class="Radio">
	<input type="radio" id="radio1" class="Radio__input">
	<label for="radio1" class="Radio__label">
		<span class="Radio__button"></span><span class="Radio__text">Радиобатон</span>
	</label>
</div>
```
*/
/* BLOCKS - CUSTOM RADIO CHECKBOX
---------------------------------------------------------------------*/

/*doc

### Custom Select

```html
<div class="Select">
	<label class="Select__label">
		<select class="Select__select" data-placeholder="Выберите нужное">
			<option>Вариант первый</option>
			<option>Вторая возможность</option>
			<option>Третья опция</option>
			<option>Кейс четвёртый</option>
		</select>
		<span class="Select__text">Пожалуйста, выберите</span>
	</label>
</div>
```
*/

.Form {
	color: #30062e;
	font-size: 16px;
}

.Form__set {
	margin-top: 0;
}

.Form__field + .Form__field {
	margin-top: 30px;
}

.Form__title {
	font-size: 16px;
	text-align: left;
	padding-top: 16px;
}

.Field {
	background-color: #fff;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border: 1px solid #c5c5c5;
	border-radius: 25px;
	color: #30062e;
	font-size: 16px;
	padding: 13px 20px;
}

.Field:focus {
	border-color: #82368b;
}

textarea.Field {
	min-height: 52px;
}

.Select + .Form__error, .Field + .Form__error {
	margin-left: 20px;
}
.Form__field.error .Select__text, .Form__field.error .Checkbox__button, .Form__field.error .Radio__button {
	border-color: #c00;
}
.Form__field.error .Form__title {
	color: inherit;
}

.Checkbox {
	display: inline-block;
	margin-right: 1.5em;
}

.Checkbox__label {
	display: inline-block;
}

.Checkbox__input {
	border: 0;
	clip: rect(0,0,0,0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.Checkbox__button {
	size: 13px;
	cursor: pointer;
	display: inline-block;
	margin-top: -.17em;
	vertical-align: middle;
}

.Checkbox__label {
	padding-left: 42px;
}

.Checkbox__button {
	width: 30px;
	height: 30px;
	border: 1px solid #c5c5c5;
	background-color: #fff;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border-radius: 5px;
	float: left;
	margin-right: 12px;
	margin-left: -42px;
}

.Checkbox__input:checked + .Checkbox__label .Checkbox__button {
	border-color: #eee492;
	background-color: #fffacf;
}

.Checkbox__input:focus + .Checkbox__label .Checkbox__button {
	border-color: #82368b;
}

.Checkbox__input:checked + .Checkbox, .Checkbox--checked {
	background-color: #777;
}

.Checkbox__text {
	display: inline-block;
	padding-top: 3px;
}

.Checkbox__input:checked + .Checkbox__label .Checkbox__button {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	color: #82368b;
}

.Radio {
	display: inline-block;
	margin-right: 1.5em;
}

.Radio__label {
	display: inline-block;
}

.Radio__input {
	border: 0;
	clip: rect(0,0,0,0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.Radio__button {
	size: 13px;
	cursor: pointer;
	display: inline-block;
	margin-top: -.17em;
	vertical-align: middle;
}

.Radio__label {
	padding-left: 42px;
}

.Radio__button {
	width: 30px;
	height: 30px;
	border: 1px solid #c5c5c5;
	background-color: #fff;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border-radius: 5px;
	float: left;
	margin-right: 12px;
	margin-left: -42px;
}

.Radio__input:checked + .Radio__label .Radio__button {
	border-color: #eee492;
	background-color: #fffacf;
}

.Radio__input:focus + .Radio__label .Radio__button {
	border-color: #82368b;
}

.Radio__input:checked + .Radio, .Radio--checked {
	background-color: #777;
}

.Radio__text {
	display: inline-block;
	padding-top: 3px;
}

.Radio__button {
	border-radius: 50%;
}

.Radio__input:checked + .Radio__label .Radio__button {
	position: relative;
}

.Radio__input:checked + .Radio__label .Radio__button:before {
	content: '';
	background-color: #82368b;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 9px;
	top: 9px;
	border-radius: 100%;
}


.Select {
	display: inline-block;
	max-width: 100%;
	vertical-align: bottom;
}


.Select__label {
	display: block;
	position: relative;
}


.Select__select {
	position: absolute;
	bottom: 0;
	left: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	right: 0;
	height: 100%;
	opacity: 0;
	width: 100%;
	z-index: 2;
}


.Select__select[disabled] {
	cursor: default;
}


.ielte8 .Select__select {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}


.Select__text {
	display: block;
	min-height: 1.75em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 10px;
}


.Select__text.placeholder {
	color: #aaa;
}


.Select__text {
	padding-right: 46px;
}


.Select__text.Form__input {
	padding-top: .5em;
	padding-right: 25px;
	padding-bottom: .56em;
}


.Form__field.inputFull .Select__text.Form__input {
	width: auto;
}


.ielte8 .Select__text.Form__input {
	padding-bottom: 0;
}


.Select__text:after {
	position: absolute;
	top: 50%;
	margin-top: -4.5px;
	right: 20px;
	width: 16px;
	height: 9px;
	content: '';
}


.Select__select:focus + .Select__text {
	border-color: #82368b;
}



/*
<div class="Upload">
	<ul class="Upload__list">
		<li class="Upload__file">
			<span class="Upload__name">banner-345x120.jpg</span>
			<span class="Upload__remove">Удалить</span>
		</li>
	</ul>
	<label class="Upload__label">
		<input type="file" name="" id="" class="Upload__field">
		<span tabindex="0" class="Btn--clipActive Upload__btn">Загрузить работу</span>
	</label>
</div>
*/

.Upload {
	display: inline-block;
}

.Upload__list, .Upload__file {
	display: block;
	margin: 0;
	padding: 0;
}

.Upload__remove {
	margin-left: 10px;
	vertical-align: top;
}

.Upload__field {
	display: none;
}

.Upload--simple {
	display: inline-block;
}
/* FANCYBOX
---------------------------------------------------------------------*/

.Fancybox__wrapper {
	width: 890px;
	height: 690px;
	padding: 25px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
}

.Fancybox__wrapper--heightAuto {
	height: auto;
}

.Fancybox__wrapper--imageViewer {
	width: 90vw;
	height: 90vh;
}

.Fancybox__wrapper--workMembers .FancyboxSlider__imgCont {
	padding-bottom: 90px;
}

.Fancybox__wrapper--workMembers .FancyboxSlider__title {
	position: relative;
	line-height: 32px;
}

.Fancybox__wrapper--workMembers .FancyboxSlider__prev, .Fancybox__wrapper--workMembers .FancyboxSlider__next {
	height: -moz-calc(100% - 90px);
	height: calc(100% - 90px);
}

.Fancybox__wrapper--cards {
	width: 850px;
	height: auto;
}

.Fancybox__wrapper--cards .Cards__content {
	margin-top: 28px;
}

.Fancybox__wrapper--cards .Cards__control {
	margin-top: 20px;
}

.Fancybox__wrapper--cards .Cards__trigger {
	margin-bottom: 0;
}

.Fancybox__wrapper h2 {
	margin-top: 0;
}

.Fancybox__btnCont {
	background-color: #f3f3f3;
	padding: 27px 40px;
	border-radius: 0 0 10px 10px;
	margin: 0 -25px -25px;
}

.Fancybox__btnCont--noBG {
	background-color: transparent;
}

.Fancybox__fullImgCont {
	height: 640px;
	line-height: 640px;
	text-align: center;
}

.FancyboxSlider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.FancyboxSlider__list {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
	width: 100%;
	height: 100%;
}

.FancyboxSlider__item {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	margin: 0;
	font-size: 0;
	text-align: center;
	width: 100%;
	height: 100%;
	vertical-align: top;
}

.FancyboxSlider__imgCont {
	display: inline-block;
	padding-bottom: 70px;
	width: auto;
	height: 100%;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
}

.FancyboxSlider__img {
	display: inline-block;
	height: 100%;
	border: 1px solid #ededed;
	max-width: 100%;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	opacity: 0;
	-o-transition: opacity 350ms;
	-moz-transition: opacity 350ms;
	transition: opacity 350ms;
}

.FancyboxSlider .Btn--print {
	display: none;
}

.FancyboxSlider__titleCont {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: right;
}

.FancyboxSlider__title {
	color: #30062e;
	display: inline-block;
	position: absolute;
	left: 0;
	margin: 0;
	padding-right: 90px;
	width: 100%;
	font-size: 26px;
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	line-height: 60px;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	opacity: 0;
	-o-transition: opacity 350ms;
	-moz-transition: opacity 350ms;
	transition: opacity 350ms;
}

.FancyboxSlider__description {
	font-size: 20px;
	line-height: 22px;
	text-align: left;
	opacity: 0;
	-o-transition: opacity 350ms;
	-moz-transition: opacity 350ms;
	transition: opacity 350ms;
}

.FancyboxSlider__item--active {
	z-index: 1;
}

.FancyboxSlider__item--active .Btn--print {
	display: inline-block;
}

.FancyboxSlider__item--active .FancyboxSlider__img, .FancyboxSlider__item--active .FancyboxSlider__description, .FancyboxSlider__item--active .FancyboxSlider__title {
	opacity: 1;
}

.FancyboxSlider__prev, .FancyboxSlider__next {
	width: 40%;
	height: -moz-calc(100% - 68px);
	height: calc(100% - 68px);
	cursor: pointer;
	position: absolute;
	top: 0;
	z-index: 2;
}

.FancyboxSlider__prev:before, .FancyboxSlider__next:before {
	content: '';
	position: absolute;
	display: block;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	top: 50%;
	margin: -24px 0 0;
}

.FancyboxSlider__prev {
	left: 0;
}

.FancyboxSlider__prev:before {
	left: 22px;
}

.FancyboxSlider__next {
	right: 0;
}

.FancyboxSlider__next:before {
	right: 22px;
}
.Viewer--product {
	width: 900px;
	width: 80vw;
	max-width: 130vh;
	padding: 25px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.Viewer--product .Fancybox__wrapper {
	padding: 0;
	width: 100%;
	position: relative;
}
.Viewer--product .VerticalSlider {
	position: absolute;
	height: 100%;
}
.Viewer--product .Fancybox__fullImgCont {
	position: relative;
	height: auto;
	width: auto;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.Viewer--product .Fancybox__fullImgCont:before {
	content: '';
	display: inline-block;
	padding-top: 69%;
	vertical-align: middle;
}
.Viewer--product .Fancybox__fullImg {
	position: absolute;
	top: 0;
	left: 13%;
	height: 100%;
	width: auto;
}
.Viewer--product .Fancybox__fullImgCont--zoom .Fancybox__fullImg {
	height: auto;
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}

.Viewer__target {
	display: none;
	width: 80px;
	height: 40px;
	position: absolute;
	border: 1px solid #acacac;
	background-color: #ffffff;
	background-color: rgba(255, 255, 255, .3);
	pointer-events: none;
	cursor: pointer;
	z-index: 1;
}

.Viewer__object {
	display: none;
	width: 100%;
	height: 480px;
	min-height: 270px;
	position: absolute;
	top: 0;
	left: -3px;
	border: 1px solid #666;
	background-color: #fff;
	background-repeat: no-repeat;
	box-shadow: 0 0 10px rgba(0, 0, 0, .15);
	overflow: hidden;
}

.Viewer__img {
	top: 50%;
	left: 50%;
	position: absolute;
}
/* КНОПКА "СООБЩИТЬ О ПРОБЛЕМЕ"
-------------------------------------------------------------*/

.TroubleReport {
	position: absolute;
	bottom: 100%;
	left: 30px;
}

.TroubleReport__button {
	display: inline-block;
	padding: 10px 27px 8px 47px;
	border-radius: 5px 5px 0 0;
	border: none;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	background-color: #30062e;
	background-color: rgba(48, 6, 46, .9);
	background-repeat: no-repeat;
	background-position: 20px 50%;
	-o-transition: background-color .3s;
	-moz-transition: background-color .3s;
	transition: background-color .3s;
}

.TroubleReport__button:hover {
	color: #fff;
	background-color: #30062e;
	background-color: rgba(48, 6, 46, 1);
}
.Rubricator {
	position: absolute;
	display: none;
	width: 100%;
	top: 100%;
	left: 0;
	line-height: 1.5;
	z-index: 5;
}
.Rubricator .Rubricator__wrapper {
	position: relative;
	background-color: #f3f3f3;
	min-height: 590px;
	border: 1px solid #ededed;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
}
.Page--rubricatorIsOpen .Rubricator .Rubricator__wrapper {
	padding: 0;
}
@media screen and (max-width: 1300px) {

	.Rubricator .Rubricator__wrapper {
		width: -moz-calc(100vw - 107px);
		width: calc(100vw - 107px);
		left: -15px;
	}
}
.Rubricator__close {
	border: 0;
	position: relative;
	display: inline-block;
	line-height: 0;
	cursor: pointer;
	background-color: transparent;
	position: absolute;
	right: -53px;
	padding: 10px;
	top: 2px;
}
.Rubricator__close:before {
	content: '';
	position: relative;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.Rubricator__close:focus, .Rubricator__close:hover {
	background-color: transparent;
}
.Rubricator__close {
	background-position: -1000px;
	background-repeat: no-repeat;
}
.Rubricator__close:before {
	width: 28px;
	height: 28px;
	left: ;
	top: ;
}
@media screen and (max-width: 1150px) {

	.Rubricator__close {
		right: -37px;
		top: -5px;
	}

	.Rubricator__close:before {
		width: 20px;
		height: 20px;
	}
}
.Rubricator__hero {
	position: absolute;
	right: 0;
	top: 69px;
	width: 33.33%;
	height: 435px;
	background-image: url('/assets_unlandia/img/dest/unlandia_hero_5.png');
	background-repeat: no-repeat;
	background-position: 100% 135px;
}
.Rubricator__hero .CloudsQuote {
	position: absolute;
	left: 10px;
	top: 16px;
	padding: 1.32em 1em;
	background-color: #fff;
	font-size: 21px;
	text-transform: none;
	width: 250px;
}
.Rubricator__hero .CloudsQuote:before {
	right: 149px;
	bottom: -70px;
	border: 18px solid transparent;
	border-top: 78px solid #fff;
	-webkit-transform: rotate(-18deg);
	   -moz-transform: rotate(-18deg);
	    -ms-transform: rotate(-18deg);
	     -o-transform: rotate(-18deg);
	        transform: rotate(-18deg);
	z-index: 0;
}

.Page--withRubricator .Page__footer, .Page--withRubricator .Page__header {
	position: relative;
	display: block;
	z-index: 5;
}

.Page--withRubricator .Page__main:after {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	background-color: rgba(0, 0, 0, .5);
	z-index: 4;
	visibility: hidden;
	opacity: 0;
	-o-transition: all 100ms;
	-moz-transition: all 100ms;
	transition: all 100ms;
}

.Page--rubricatorIsOpen .Page__main {
	position: relative;
}

.Page--rubricatorIsOpen .Page__main:after {
	visibility: visible;
	opacity: 1;
	-o-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
}

.Rubric {
	font-size: 16px;
}

.Rubric__list {
	position: absolute;
	left: 0;
	top: 0;
	width: 33.33%;
	background-color: #fff;
}

.Rubric__list .Rubric__list {
	display: none;
	left: 100%;
	width: 100%;
	border-left: 1px solid #ededed;
}

.Rubric__item {
	padding: 0;
	margin: 0 0 0 -1px;
}

.Rubric__item--active > .Rubric__list {
	display: block;
}

.Rubric__item--active {
	background-color: #82368b;
}

.Rubric__item--active > .Rubric__title {
	color: #fff;
	border-bottom-color: transparent;
}

.Rubric__item .Rubric__item {
	margin-left: 0;
}

.Rubric__title {
	position: relative;
	border-bottom: 1px solid #ededed;
	padding: 13px 35px 12px 20px;
	display: block;
	color: #5c465b;
	white-space: normal;
}

.Rubric__list + .Rubric__title:before {
	content: '';
	display: block;
	position: absolute;
	right: 20px;
	top: 50%;
	width: 6px;
	height: 11px;
	margin-top: -6px;
}
html.PrintColoring body {
	display: block;
}
html.PrintColoring body > * {
	display: none !important;
}
html.PrintColoring body > .FancyboxSlider__img {
	display: inline-block !important;
	opacity: 1;
	border: 0;
}

@media print {
	@page {
		margin: 0;
	}

	html.PrintColoring {
		height: 100%;
		text-align: center;
	}

	html.PrintColoring img {
		display: inline-block;
		width: auto;
		height: auto;
		max-height: 96%;
		max-width: 95%;
		margin: 2% 2.5%;
	}
}
.Cards--default .Cards__theme {
	margin-bottom: 20px;
}
.Cards--default .Cards__theme .Btn {
	margin-right: 8px;
	margin-bottom: 10px;
}
.Cards--default .Cards__header {
	margin-top: 10px;
}
.Cards--default .Cards__list {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin-right: -30px;
}
.Cards--default .Cards__item {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	border: 2px solid transparent;
	border-radius: 25px;
	padding: 28px 28px 15px;
	background-color: #f3f3f3;
	-o-transition: border-color .2s;
	-moz-transition: border-color .2s;
	transition: border-color .2s;
	margin-right: 30px;
	margin-bottom: 30px;
	width: -moz-calc(33.333% - 30px);
	width: calc(33.333% - 30px);
}
.Cards--default .Cards__item:hover {
	border-color: #82368b;
}
.Cards--default .Cards__title {
	font-size: 26px;
	line-height: 33px;
	text-align: center;
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	margin-bottom: 15px;
	color: #82368b;
}
.Cards--default .Cards__control {
	padding-top: 28px;
	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-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin-right: -35px;
}
.Cards--default .More {
	margin-top: 10px;
}
.Cards__img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.Cards__trigger {
	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;
	cursor: pointer;
	margin-right: 35px;
	margin-bottom: 10px;
	color: #82368b;
}
.Cards__trigger:hover {
	color: #a788c0;
}
.Cards__trigger:before {
	content: '';
	display: block;
	width: 21px;
	height: 21px;
	margin-right: 10px;
}

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

html {
	color: #5c465b;
	font-family: 'CirceRoundedWebRegular','Comic Sans MS','Comic Sans',cursive;
	font-size: 18px;
}

body {
	display: table;
	table-layout: fixed;
}

.Page__header, .Page__main, .Page__banner {
	display: table-row;
	height: 100%;
}
.PageBanner {
	position: relative;
}

a {
	color: #82368b;
	text-decoration: none;
}

a:hover {
	color: #a788c0;
}

h1, h2, h3, h4, h5, h6, .H {
	color: #30062e;
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	font-weight: normal;
}

h1 { font-size: 40px; margin: 30px 0 0; line-height: normal; }
h1 + p { margin-top: 10px; }
h1 + div { margin-top: 30px; }
h2 { font-size: 30px; }
h3 { font-size: 26px; }
h4 { font-size: 26px; }
h5 { font-size: 26px; }
h6 { font-size: 26px; }

p { max-width: 850px; }

ul:not([class]) {
	list-style: none;
	padding-left: 15px;
	line-height: 1.3;
}

ul:not([class]) li::before {
	content: '';
	position: absolute;
	background: url('/assets_unlandia/img/src/interface/listContentEllipse.png') 0 0 no-repeat;
	width: 8px;
	height: 8px;
	left: -15px;
	top: 7px;
}

.More {
	text-align: center;
	margin: 20px 0;
}

.Error--503, .launchPad {
	height: 100%;
	margin: 0;
}

.Error--503 {
	height: 100%;
	margin: 0;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
	position: relative;
}

.Error--503.Error--loaded {
	height: 100vh;
	opacity: 1;
	visibility: visible;
}

.Error--503 .Error__content {
	position: absolute;
	top: 10%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 100%;
}

.Error--503 .Error__header {
	color: #fefefe;
	font-size: 5.3vmin;
	margin: 0 auto;
	line-height: 1.2em;
}

.Error--503 .Error__message {
	color: #fefefe;
	font-size: 3.35vmin;
	font-weight: bold;
	margin-top: 12px;
}

.Error--503 .launchPad {
	position: relative;
}

.Error--503 .launchPad__image {
	width: 36%;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.Page__wrapper {
	margin: auto;
	max-width: 1170px;
	min-width: 920px;
	padding: 10px 30px;
}

.Page__main {
	background: url('/assets_unlandia/img/dest/main_bg.png') 50% 0 repeat-y;
}

.Page__main--mainPage {
	background-color: #82368b;
}

.Page__main .Page__wrapper {
	padding-bottom: 90px;
}

.Page__header, .Page__footer {
	background: #fbe100;
	white-space: nowrap;
}

.Page__banner img {
	width: 100%;
	height: auto;
}

.Page__nav {
	float: left;
	width: 275px;
}

.Page--503 {
	text-align: center;
	height: 100%;
}

.Page--503 .Page__main {
	background-color: #82368b;
	background-position: center 0;
	background-size: 120% auto;
}

.Page--503 .Page__main .Page__wrapper {
	padding: 0;
	margin: 0;
	max-width: 100%;
	min-width: 100%;
	height: 100%;
}

.Page--503 .Footer__copy {
	font-size: 1.7vmin;
	color: #a98f19;
	position: absolute;
	bottom: 20px;
	z-index: 5;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	left: 50%;
}

@media screen and (max-width: 810px) {
	.Page--503 .Footer__copy {
		display: none;
	}
}

.Page--error > .Page__main > .Page__wrapper {
	display: table-cell;
	height: 100%;
	padding: 30px;
	vertical-align: middle;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
}

.Page--error .Page__footer {
	margin-top: 80px;
}

.HeaderMenu {
	margin-left: 3.5%;
	padding: 20px 0;
	display: inline-block;
	white-space: nowrap;
	position: relative;
	z-index: 6;
}

.HeaderMenu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
}

.HeaderMenu__item {
	margin: 0;
	padding: 0;
	display: inline-block;
	background-color: #fff;
	z-index: 1;
}

.HeaderMenu__item:first-child {
	border-radius: 60px 0 0 60px;
}

.HeaderMenu__item:first-child .HeaderMenu__link {
	padding-left: 30px;
	border-radius: 60px 0 0 60px;
}

.HeaderMenu__item:last-child {
	border-radius: 0 60px 60px 0;
}

.HeaderMenu__item:last-child .HeaderMenu__link {
	padding-right: 30px;
	border-radius: 0 60px 60px 0;
}

.HeaderMenu__item--active .HeaderMenu__link {
	color: #fff;
	background-color: #82368b;
}

.HeaderMenu__item:hover .HeaderSubMenu {
	display: block;
}

.HeaderMenu__item:hover .HeaderMenu__link {
	background-color: #82368b;
	color: #fff;
}

.HeaderMenu__item:hover .HeaderMenu__link:hover {
	background-color: #a788c0;
}

.HeaderMenu__link {
	font-size: 22px;
	line-height: 1em;
	color: #30062e;
	display: inline-block;
	padding: 19px 12px;
	text-decoration: none;
}

.HeaderMenu__link:hover {
	background-color: #a788c0;
	color: #fff;
}

.HeaderMenu__link:focus {
	outline: none;
}

.Header {
	line-height: 0;
	height: 145px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.HeaderLogo {
	display: inline-block;
	padding: 12px 0;
}

.HeaderLogo__link {
	display: block;
}

.HeaderLogo__link:hover {
	-webkit-filter: brightness(110%);
	        filter: brightness(110%);
}

.Logo--icon {
	display: inline-block;
	vertical-align: middle;
	width: 60px;
	height: 60px;
	background-image: url('/assets_unlandia/img/dest/interface/logo_icon.png');
}

.HeaderSubMenu {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 100%;
	display: none;
}

.HeaderSubMenu__item {
	margin: 0;
	padding: 0;
}

.HeaderSubMenu__link {
	background-color: #82368b;
	padding: 7px 12px;
	text-decoration: none;
	display: block;
	font-size: 20px;
	line-height: 44px;
	color: #fff;
}

.HeaderSubMenu__link:hover {
	background-color: #a788c0;
	color: #fff;
}

.HeaderSearch {
	display: inline-block;
	margin-left: 20px;
	vertical-align: bottom;
}

.HeaderSearch__button {
	position: relative;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	width: 21px;
	height: 21px;
	padding: 20px 20px 19px 19px;
	-moz-box-sizing: unset;
	     box-sizing: unset;
	background-color: #fff;
	border: 0;
	border-radius: 100%;
	cursor: pointer;
	z-index: 1;
}

.HeaderSearch__button:active, .HeaderSearch__button:hover {
	background-color: #82368b;
	width: 21px;
	height: 21px;
}

.HeaderSearch__button:active {
	background-color: #a788c0;
}

.HeaderSearch__field {
	position: absolute;
	display: block;
	right: 0;
	height: 60px;
	width: 60px;
	padding: 19px 0 19px 32px;
	background-color: #fff;
	border: 0;
	border-radius: 30px;
	font-size: 22px;
	color: #fff;
	line-height: 22px;
	z-index: 1;
	-o-transition: width 350ms;
	-moz-transition: width 350ms;
	transition: width 350ms;
}

.HeaderSearch__field::-webkit-input-placeholder {
	color: #a788c0;
}

.HeaderSearch__field:-moz-placeholder {
	color: #a788c0;
}

.HeaderSearch__field::-moz-placeholder {
	color: #a788c0;
}

.HeaderSearch__field:-ms-input-placeholder {
	color: #a788c0;
}

.HeaderSearch__field::placeholder {
	color: #a788c0;
}

.HeaderSearch__hint {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	padding: 12px 0 21px;
	margin: -20px 0 0;
	border-top: 1px solid #a788c0;
	background-color: #82368b;
	color: #c3a8d9;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
}

.HeaderSearch__hintList {
	margin: 0 10px 0 0;
	padding: 0;
	max-height: 177px;
	overflow: auto;
	list-style: none;
	font-size: 22px;
	line-height: 36px;/* firefox */
	scrollbar-color: #ededed transparent;
	scrollbar-width: thin;
}

/* webkit */

.HeaderSearch__hintList::-webkit-scrollbar {
	width: 5px;
	background-color: transparent;
}

.HeaderSearch__hintList::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: #ededed;
}

.HeaderSearch__hintItem {
	margin: 0;
	padding: 0 0 0 30px;
	cursor: pointer;
}

.HeaderSearch__hintItem:hover {
	color: #fff;
}

.HeaderSearch__hintLink {
	color: #c3a8d9;
	max-width: 100%;
	overflow: hidden;
	display: inline-block;
	text-overflow: ellipsis;
}

.HeaderSearch__hintLink:hover {
	color: #fff;
}

.HeaderSearch--open .HeaderSearch__field {
	width: 100%;
	background-color: #82368b;
}

.HeaderSearch--open .HeaderSearch__button {
	position: relative;
	z-index: 1;
	background-color: #82368b;
	border-radius: 0 60px 60px 0;
}

.HeaderSearch--open .HeaderSearch__button:hover {
	background-color: #a788c0;
}

.HeaderSearch--active .HeaderSearch__button {
	border-radius: 0 30px 0 0;
}

.HeaderSearch--active .HeaderSearch__field {
	border-radius: 30px 30px 0 0;
}

.HeaderSearch--active .HeaderSearch__hint {
	display: block;
	border-radius: 0 0 25px 25px;
}

@media screen and (max-width: 1150px), screen and (max-height: 650px) {
	.Header {
		height: 104px;
	}
	.Header .Page__wrapper {
		padding: 0 30px;
	}
	.Header .HeaderMenu__item:first-child .HeaderMenu__link {
		padding-left: 20px;
	}
	.Header .HeaderMenu__item:last-child .HeaderMenu__link {
		padding-right: 20px;
	}
	.Header .HeaderMenu__link {
		font-size: 20px;
		line-height: 22px;
		padding: 19px 9px;
	}
	.Header .HeaderLogo__img {
		height: 80px;
	}
}

.Footer {
	font-size: 16px;
	line-height: 30px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.Footer__column {
	display: inline-block;
	vertical-align: middle;
}

.Footer__column--logo {
	margin-right: 15px;
}

.Footer__copy {
	color: #a9901a;
}

.Footer .Page__wrapper {
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
}

.Footer--light {
	padding: 0;
	text-align: center;
	background-color: transparent;
	cursor: default;
}

.Footer--light .Footer__column {
	text-align: left;
}

.Footer--light .Footer__copy {
	color: #30062d;
}

.Footer--light .FooterMenu__link {
	color: #81358b;
}

.Footer--light .FooterMenu__link:hover {
	color: #a788c0;
}

.Footer--light .Page__wrapper {
	min-width: 0;
	padding: 0;
}

.FooterSocial {
	float: right;
	line-height: 60px;
}

.FooterSocial__text {
	color: #a9901a;
	margin-right: 8px;
}

.FooterSocial .BtnSocial {
	margin-right: 11px;
}

.FooterMenu {
	white-space: nowrap;
}

.FooterMenu__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.FooterMenu__item {
	margin: 0;
	padding: 0;
	display: inline-block;
	margin-right: 14px;
}

.FooterMenu__link {
	color: #30062e;
	text-decoration: none;
}

.FooterMenu__link:hover {
	text-decoration: underline;
	color: #30062e;
}

.Breadcrumbs {
	font-size: 16px;
	padding: 10px 0 0;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.Breadcrumbs__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.Breadcrumbs__item {
	cursor: default;
	margin: 0;
	padding: 0;
	display: inline-block;
}

.Breadcrumbs__item:first-child .Breadcrumbs__link {
	position: relative;
	width: 19px;
	height: 18px;
	display: inline-block;
	top: 1px;
}

.Breadcrumbs__item:first-child .Breadcrumbs__link:before {
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.Breadcrumbs__item:first-child .Breadcrumbs__link {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.Breadcrumbs__item:first-child .Breadcrumbs__link:before {
	width: 19px;
	height: 18px;
	left: ;
	top: ;
}

.Breadcrumbs__item:first-child:before {
	display: none;
}

.Breadcrumbs__item:before {
	content: '';
	width: 6px;
	height: 11px;
	position: relative;
	display: inline-block;
	top: 1px;
	margin: 0 10px;
}

.Breadcrumbs + div, .Breadcrumbs + p {
	margin-top: 30px
}

.Pagination {
	margin: 20px 0;
	text-align: center;
	line-height: 20px;
	font-size: 18px;
	cursor: default;
}

.Pagination__list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.Pagination__item {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0;
}

.Pagination__item--active {
	background-color: #82368b;
	border-radius: 50%;
}

.Pagination__item--active .Pagination__link {
	color: #fff;
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.Pagination__item--active .Pagination__link::-moz-selection {
	color: inherit;
}

.Pagination__item--active .Pagination__link::selection {
	color: inherit;
}

.Pagination__link {
	display: block;
	text-align: center;
	line-height: 43px;
}

.SliderBanner {
	margin-bottom: 100px;
	margin-top: 90px;
}

.SliderBanner h3 {
	text-align: center;
	color: #fff;
	font-size: 40px;
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
}

.SliderBanner__wrapper {
	position: relative;
}

.mainPage .SliderBanner__cont {
	margin: 0 54px;
}

.SliderBanner__list {
	padding: 0;
	list-style: none;
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	white-space: nowrap;
}

.SliderBanner__item {
	margin: 0;
	background-repeat: no-repeat;
	background-position: 0 0;
	display: none;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.SliderBanner__item--active {
	display: inline-block;
}

.SliderBanner__img {
	width: 100%;
}

.SliderBanner__link:hover {
	-webkit-filter: brightness(105%);
	        filter: brightness(105%);
}

.SliderBanner .Btn--backward, .SliderBanner .Btn--forward {
	position: absolute;
	top: 50%;
	margin-top: -30px;
}

.SliderBanner .Btn--backward {
	left: -30px;
}

.SliderBanner .Btn--forward {
	right: -30px;
}

.SliderBannerNav__list {
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
	text-align: center;
	line-height: 0;
}

.SliderBannerNav__item {
	display: inline-block;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 4px solid #fff;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background-color: #82368b;
	cursor: pointer;
	margin-right: 8px;
	margin-top: 8px;
}

.SliderBannerNav__item:hover {
	background-color: #ffffff;
	background-color: rgba(255, 255, 255, .5);
}

.SliderBannerNav__item--active {
	background-color: #fff;
	pointer-events: none;
}

.Showcase h3 {
	text-align: center;
	color: #fff;
	font-size: 40px;
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
}

.Showcase__cont {
	position: relative;
	padding: 0;
}

.mainPage .Showcase__cont {
	margin: 0 54px;
}

.Showcase__list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 10px;
	border: 1px solid #ededed;
	overflow: hidden;
	white-space: nowrap;
	background-color: #fff;
	line-height: 0;
}

.Showcase__item {
	margin: 0;
	padding: 20px 20px 40px;
	width: 25%;
	height: 100%;
	border-right: 1px solid #ededed;
	white-space: normal;
	display: inline-block;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
}

@media screen and (max-width: 1340px) {

	.Showcase .Showcase__item {
		width: 33.34%;
	}
}

.Showcase__imgCont {
	display: block;
	text-align: center;
	width: 250px;
	height: 250px;
	margin: auto;
	line-height: 250px;
	margin-bottom: 20px;
}

.Showcase__img {
	max-height: 250px;
	max-width: 250px;
}

.Showcase__title {
	font-size: 18px;
	display: inline-block;
	vertical-align: top;
	line-height: normal;
	overflow: hidden;
	color: #30062e;
}

.Showcase__code {
	margin-top: 12px;
	font-size: 16px;
	line-height: 1;
	color: #5b465b;
}

.Showcase__imgCont:hover + .Showcase__title, .Showcase__title:hover {
	color: #82368b;
}

.Showcase .Btn--backward, .Showcase .Btn--forward {
	position: absolute;
	top: 50%;
	margin-top: -30px;
}

.Showcase .Btn--backward {
	left: -30px;
}

.Showcase .Btn--forward {
	right: -30px;
}

.AboutBrand {
	position: relative;
}

.AboutBrand__content {
	width: 500px;
	position: relative;
	z-index: 1;
}

.AboutBrand .Hero {
	background-image: url('/assets_unlandia/img/dest/unlandia_hero_1.png');
	width: 307px;
	height: 446px;
	right: 1%;
	top: 175px;
	position: absolute;
}

@media screen and (max-width: 1170px) {

	.AboutBrand .Hero {
		width: 245.6px;
		height: 356.8px;
	}
}

@media screen and (max-width: 1050px) {

	.AboutBrand .Hero {
		width: 204.66667px;
		height: 297.33333px;
	}
}

@media screen and (max-width: 1170px) {

	.AboutBrand .Hero__quote {
		font-size: 85%;
	}
}

@media screen and (max-width: 1050px) {

	.AboutBrand .Hero__quote {
		font-size: 77%;
	}
}

.Hero {
	background-size: contain;
	font-size: 24px;
}

.Hero__quote {
	position: absolute;
	right: 100%;
	bottom: 100%;
	margin-right: -25%;
	margin-bottom: -25%;
}

.CloudsQuote {
	color: #30062e;
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	line-height: 1.3em;
	text-transform: uppercase;
	text-align: center;
	border-radius: 100%;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	padding: 2em 2.5em;
	background-color: #d3ecfb;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.CloudsQuote::before {
	content: '';
	position: absolute;
	right: 50px;
	bottom: -29px;
	border: 10px solid transparent;
	border-top: 51px solid #d3ecfb;
	-webkit-transform: rotate(-46deg);
	   -moz-transform: rotate(-46deg);
	    -ms-transform: rotate(-46deg);
	     -o-transform: rotate(-46deg);
	        transform: rotate(-46deg);
	z-index: -1;
}

.CloudsQuote__line {
	white-space: nowrap;
}

.Section__column {
	width: 48.75%;
	border: 2px solid #f3f3f3;
	padding: 28px;
	background-color: #fff;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	float: left;
	border-radius: 25px;
	line-height: 0;
	margin-bottom: 2.5%;
}

.Section__column:hover {
	border-color: #a788c0;
}

.Section__column:hover .Section__title {
	color: #a788c0;
}

.Section__column:nth-child(even) {
	margin-left: 2.5%;
}

.Section__imgCont {
	margin-bottom: 15px;
}

.Section__img {
	width: 100%;
}

.Section__date {
	font-size: 20px;
	line-height: 27px;
}

.Section__title {
	font-size: 30px;
	line-height: 30px;
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	color: #82368b;
	margin-bottom: 10px;
}

.Section__description {
	line-height: 27px;
	font-size: 20px;
	color: #5c465b;
}

.PhotoList {
	font-size: 20px;
}

.PhotoList__list {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 0;
}

.PhotoList__item {
	display: block;
	width: 31%;
	margin: 0 3.5% 20px 0;
	float: left;
}

.PhotoList__item:nth-child(3n) {
	margin-right: 0;
}

.PhotoList__link:hover .PhotoList__imgCont {
	border: 2px solid #a788c0;
}

.PhotoList__imgCont {
	display: block;
	border: 2px solid transparent;
	border-radius: 15px;
	overflow: hidden;
}

.PhotoList__img {
	max-width: 100%;
}

.PhotoList__title {
	font-size: 26px;
	line-height: normal;
	display: block;
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
}

.PhotoList__theme {
	margin-bottom: 20px;
}

.PhotoList__theme .Btn {
	margin-right: 8px;
	margin-bottom: 10px;
}

.MasterClassItem__imgWrapper {
	margin-bottom: 20px;
}

.MasterClassItem__theme {
	margin-bottom: 20px;
}

.MasterClassItem__theme .Btn {
	margin-right: 8px;
	margin-bottom: 10px;
}

.MasterClassItem__list {
	padding: 0;
	list-style: none;
	line-height: 0;
	font-size: 0;
}

.MasterClassItem__item {
	float: left;
	width: 47%;
	padding: 0 30px 30px 0;
	display: block;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	margin: 0;
}

.MasterClassItem__imgCont {
	position: relative;
	text-align: center;
}

.MasterClassItem__img {
	max-width: 100%;
}

.MasterClassItem__itemNumber {
	position: absolute;
	right: 23px;
	bottom: 16px;
	border-radius: 100%;
	width: 50px;
	height: 50px;
	font-size: 30px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	background-color: #a788c0;
}

.MasterClassItem__title {
	line-height: 27px;
	font-size: 20px;
	margin-top: 10px;
}

.Content__wrapper {
	margin-left: 293px;
}

.CatalogMenu {
	border: 1px solid #ededed;
	padding: 10px 0;
	width: 95%;
}

.CatalogMenu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
}

.CatalogMenu__item + .CatalogMenu__item {
	margin-top: 0;
}

.CatalogMenu__title {
	color: #30062e;
	display: block;
	width: 100%;
	padding: 5px 16px 6px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	line-height: 20px;
}

.CatalogMenu__title:hover {
	color: #fff;
	background-color: #82368b;
}

.CatalogMenu__list--lvl2 .CatalogMenu__title {
	padding-left: 24px;
}

.CatalogMenu__list--lvl3 .CatalogMenu__title {
	padding-left: 32px;
}

.CatalogMenu__list--lvl4 .CatalogMenu__title {
	padding-left: 40px;
}

.CatalogMenu__title--selected {
	color: #fff;
	background-color: #82368b;
}

.Catalog__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.Catalog__item {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	width: 33%;
	display: inline-block;
	padding: 20px 20px 45px;
	margin: 0 -1px -1px 0;
	border: 1px solid #ededed;
	vertical-align: top;
}

.Catalog__link {
	color: #30062e;
	vertical-align: top;
}

.Catalog__link:hover {
	color: #82368b;
}

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

.Catalog__img {
	max-width: 100%;
	vertical-align: middle;
}

.Catalog__title {
	margin-top: 20px;
	line-height: normal;
	display: block;
	font-size: 18px;
}

.Catalog__code {
	margin-top: 12px;
	font-size: 16px;
	line-height: 1;
	color: #5b465b;
}

.Catalog--searchResult .Catalog__item {
	width: 25%;
}

.SearchResultEmpty {
	position: relative;
}

.SearchResultEmpty:after {
	content: '';
	position: absolute;
	display: block;
	left: 490px;
	top: -115px;
	width: 164px;
	height: 266px;
	background-image: url('/assets_unlandia/img/dest/unlandia_hero_3.png');
}

.SearchResultEmpty__title {
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	font-size: 20px;
	margin-bottom: 10px;
}

.VerticalSlider {
	position: relative;
	width: 70px;
	height: 430px;
	margin: 29px 25px 29px 0;
	float: left;
}

.VerticalSlider + .Fancybox__fullImgCont {
	margin-left: 95px;
}

.VerticalSlider + .Fancybox__fullImgCont:before {
	padding-top: 74%;
}

.VerticalSlider__list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%;
}

.VerticalSlider__item {
	margin: 0 0 16px;
	border: 1px solid #ededed;
	border-radius: 3px;
	display: block;
	height: 70px;
	padding: 8px;
	line-height: 52px;
	text-align: center;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	cursor: pointer;
}

.VerticalSlider__item:hover, .VerticalSlider__item.active {
	border: 1px solid #82368b;
}

.VerticalSlider__img {
	max-width: 100%;
	max-height: 100%;
}

.VerticalSlider__prev, .VerticalSlider__next {
	width: 24px;
	height: 13px;
	cursor: pointer;
	position: absolute;
	margin: 0 0 0 -12px;
	left: 50%;
}

.VerticalSlider__prev:before, .VerticalSlider__next:before {
	content: '';
	display: block;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.VerticalSlider__prev {
	top: -29px;
}

.VerticalSlider__prev {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.VerticalSlider__prev:before {
	width: 24px;
	height: 14px;
	left: ;
	top: ;
}

.VerticalSlider__next {
	bottom: -29px;
}

.VerticalSlider__next {
	background-position: -1000px;
	background-repeat: no-repeat;
}

.VerticalSlider__next:before {
	width: 24px;
	height: 14px;
	left: ;
	top: ;
}

#fancybox-content .VerticalSlider {
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	padding: 27px 0;
	margin-top: 0;
	margin-bottom: -16px;
}

#fancybox-content .VerticalSlider__prev {
	top: -8px;
}

#fancybox-content .VerticalSlider__next {
	bottom: -8px;
}

.ProductCard__imgCont {
	float: left;
	margin-right: 30px;
	cursor: pointer;
	height: 480px;
	width: 480px;
	line-height: 480px;
	text-align: center;
}

.ProductCard__features {
	margin-left: 595px;
	position: relative;
}

.ProductCard__featuresHeader {
	line-height: 1.1;
	margin: 0.5em 0;
}

.VendorCode {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 25px;
}

.VendorCode__code {
	background-color: #fbe100;
	display: inline-block;
	padding: 0 10px;
	margin-left: 8px;
	border-radius: 6px;
	vertical-align: middle;
}

.VendorCode__code::-moz-selection {
	background-color: #fff;
}

.VendorCode__code::selection {
	background-color: #fff;
}

.File__size {
	font-size: 14px;
	margin-top: 0;
}

.File__nameWrapper {
	padding-bottom: 0;
}

.rotate360 {
	transition: -webkit-transform 1s;
	-o-transition: -o-transform 1s;
	-moz-transition: transform 1s, -moz-transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s, -moz-transform 1s, -o-transform 1s;
	-webkit-transform: rotate(360deg);
	   -moz-transform: rotate(360deg);
	    -ms-transform: rotate(360deg);
	     -o-transform: rotate(360deg);
	        transform: rotate(360deg);
}



/* Shops
---------------------------------------------------------------------*/

.ShopAddresses a {
	color: #82368B;
}

.ShopAddresses a:hover {
	color: #A788C0;
}

.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: #82368B;
	color: #82368B;
}

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

.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 #82368B;
	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: 20px 20px 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: #82368B;
	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: #82368B;
	border-color: #82368B;
}

.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 #82368B;
	margin-bottom: 15px;
}

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

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

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

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

.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: #82368B;
	cursor: pointer;
}

.CitySelector__link:hover {
	color: #A788C0;
}

.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: #82368B;
	font-size: 14px;
	line-height: 14px;
	border-bottom: 0;
	padding: 16px;
	text-align: center;
	border-radius: 50px;
	-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: #A788C0;
	border-color: #A788C0;
	color: #fff;
	text-decoration: none;
}

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

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



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

.MapPlacemark--brand {
	width: 35px;
	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 #82368B;
	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: #A788C0;
}



/* 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: 20px;
	text-decoration: none;
}

.BuyOnline--default .BuyOnline__link:hover {
	border-color: #82368B;
}

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

.BuyOnline--default .BuyOnline__title {
	color: #82368B;
	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: #82368B;
}



/* 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: #82368B;
	border-left-color: #82368B;
	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: 20px;
}

.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: #82368B;
	font-size: 14px;
	line-height: 14px;
	border-bottom: 0;
	padding: 16px;
	text-align: center;
	border-radius: 50px;
	-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: #A788C0;
	border-color: #A788C0;
	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: #82368B;
	border-left-color: #82368B;
	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: #A788C0;
}

.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: #82368B;
	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;
}

.Tabs--shopAddresses .Tab .Tab__title {
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	font-weight: normal;
	font-size: 16px;
}

.ShopAddresses .BuyOnline__title, .ShopAddressesWidget .BuyOnline__title {
	font-size: 15px;
}

.CitySelectorTip__btn {
	border-radius: 4px;
	font-size: 12px;
}

.ShopAddresses .ShopAddresses__represent, .ShopAddresses .CitySelector__current, .CitySelectorTip {
	font-size: inherit;
}

.CitySelectorTip {
	font-size: 16px;
}

.ShopAddresses .ShopAddressesView__city {
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	font-weight: normal;
}

.ShopAddressesWidget {
	margin-top: 0;
	padding-top: 22px;
	margin-bottom: -40px;
}

.ShopAddressesWidget__header {
	font-style: normal;
	font-weight: bold;
	font-size: 34px;
	line-height: 43px;
	text-align: center;
	color: #fff;
	margin-bottom: 23px;
}

.ShopAddressesWidget .BuyOnline {
	max-width: 900px;
	margin: auto;
}

.ShopAddressesWidget .BuyOnline__link {
	border-color: #dcdcdc;
	height: 40px;
	line-height: 40px;
	padding: 25px 20px;
}

.ShopAddressesWidget .BuyOnline__title {
	margin-top: 3px;
}



/* Contest
---------------------------------------------------------------------*/

.Contest {
	margin-bottom: 95px;
}

.Contest__container {
	width: 770px;
	position: relative;
}

.Contest__labelDate {
	width: 172px;
	height: 86px;
	background-color: #a788c0;
	border-radius: 0 10px 10px 0;
	position: absolute;
	left: 100%;
	top: 30px;
	padding: 15px 20px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	font-size: 20px;
	line-height: normal;
	color: #fff;
}

.Contest__description {
	margin-bottom: 20px;
}

.Contest__social {
	float: left;
	margin: 30px 0 0;
	line-height: 30px;
}

.Contest__navCont {
	float: right;
	margin: 30px 0 0;
	font-size: 17px;
	line-height: 30px;
}

.Contest__navPrev {
	margin-right: 25px;
}

.Contest__navPrev::before {
	content: '';
	width: 6px;
	height: 11px;
	position: relative;
	display: inline-block;
	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	     -o-transform: rotate(-180deg);
	        transform: rotate(-180deg);
	margin-right: 8px;
}

.Contest__navNext::after {
	content: '';
	width: 6px;
	height: 11px;
	position: relative;
	display: inline-block;
	margin-left: 8px;
}

.WorkMembers__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.WorkMembers__item {
	margin: 0 3% 50px 0;
	width: 30%;
	display: inline-block;
}

.WorkMembers__imgCont {
	width: 370px;
	max-width: 100%;
	height: 240px;
	border-radius: 10px;
	overflow: hidden;
	display: block;
	border: 2px solid transparent;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.WorkMembers__imgCont:hover {
	border: 2px solid #a788c0;
}

.WorkMembers__title {
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
	font-size: 26px;
}

.WorkMembers__description {
	font-size: 20px;
	line-height: 22px;
}

.WorkMembers__social {
	display: none;
	margin-top: 17px;
	border-top: 1px solid #ededed;
	line-height: 30px;
}

.Feedback {
	position: relative;
}

.Feedback .Hero {
	background-image: url('/assets_unlandia/img/dest/unlandia_hero_4.png');
	width: 229px;
	height: 348px;
	left: 75%;
	top: 228px;
	position: absolute;
	z-index: 1;
}

@media screen and (max-width: 1050px) {

	.Feedback .Hero {
		width: 183.2px;
		height: 278.4px;
	}
}

.Feedback .Hero__quote {
	background-color: #fbe100;
}

.Feedback .Hero__quote::before {
	border-top: 51px solid #fbe100;
}

@media screen and (max-width: 1050px) {

	.Feedback .Hero__quote {
		font-size: 80%;
	}
}

.Form--feedback {
	width: 700px;
}

.Form--feedback .Form__set {
	padding: 25px;
}

.Form--feedback .Form__set--fields {
	background-color: #f3f3f3;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.Form--feedback .Form__set--submit {
	background-color: #dfdfdf;
	padding-top: 35px;
	padding-bottom: 35px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.Form--feedback .Form__field {
	margin-left: 170px;
}

.Form--feedback .Form__title {
	width: 160px;
	margin-left: -170px;
}

.Form--feedback .Form__field--interest .Select, .Form--feedback .Form__field--name .Field, .Form--feedback .Form__field--phone .Field, .Form--feedback .Form__field--mail .Field, .Form--feedback .Form__field--city .Field {
	width: 330px;
}



.Form--competition {
	position: relative;
	width: 660px;
}



.Form--competition:after {
	content: "";
	position: absolute;
	right: 55px;
	top: 110px;
	background-image: url('/assets_unlandia/img/dest/unlandia_hero_1.png');
	width: 153.5px;
	height: 223px;
	background-size: contain;
}



.Form--competition .Form__head {
	margin-top: 0;
	margin-bottom: 30px;
}



.Form--competition .Form__set {
	padding: 25px;
}



.Form--competition .Form__set--submit {
	background-color: #f3f3f3;
	padding-top: 35px;
	padding-bottom: 35px;
}



.Form--competition .Form__field {
	margin-left: 90px;
}



.Form--competition .Form__title {
	width: 80px;
	margin-left: -90px;
}



.Form--competition .Field {
	width: 280px;
}

.PersonalData {
	padding: 25px;
	width: 800px;
}

.PersonalData__title {
	margin-top: 0;
}

.PersonalData__accent {
	font-size: 70%;
	margin-bottom: 0;
}

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

.Error--picture .Error__picture {
	background-repeat: no-repeat;
	background-position: 50% 0;
}

.Error--picture .Error__title {
	color: #30062e;
	margin: 25px 0 2px;
	font-size: 30px;
}

.Error--picture .Error__message {
	margin: 0;
	color: #6c5b6b;
}

.Error--404 .Error__picture {
	height: 392px;
	background-image: url('/assets_unlandia/img/misc/error_404.png');
}

.Message--default {
	position: relative;
	margin: 50px 125px 30px 0;
	padding: 35px 195px 35px 115px;
	border-radius: 8px;
	background-color: #f3f3f3;
}

.Message--default:before {
	content: '';
	position: absolute;
	left: 33px;
	top: 40px;
}

.Message--default .Message__title {
	color: #30062e;
	margin-bottom: 4px;
	font-family: 'CirceRoundedWebBold','Comic Sans MS','Comic Sans',cursive;
}

.Message--default .Message__text {
	line-height: normal;
	font-size: 16px;
}

.Message--success:before {
	background-image: url("/assets_unlandia/img/src/interface/success.png");
	width: 60px;
	height: 60px;
	left: ;
	top: ;
}

.Message--success:after {
	content: '';
	position: absolute;
	right: -100px;
	top: -77px;
	width: 257px;
	height: 251px;
	background-image: url('/assets_unlandia/img/dest/unlandia_hero_2.png');
}

.Message--fail:before {
	background-image: url("/assets_unlandia/img/src/interface/failed.png");
	width: 60px;
	height: 60px;
	left: ;
	top: ;
}

.Message--fail:after {
	content: '';
	position: absolute;
	right: -40px;
	top: -65px;
	width: 164px;
	height: 266px;
	background-image: url('/assets_unlandia/img/dest/unlandia_hero_3.png');
}

.Message--wideText .Message__text {
	margin-right: -100px;
}


.Anime {
	position: relative;
	overflow: hidden;
}


.Anime svg {
	vertical-align: middle;
}
.Anime__static, .Anime__wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-transition: .5s;
	-moz-transition: .5s;
	transition: .5s;
}
.Anime--loaded .Anime__static {
	opacity: 0;
	visibility: hidden;
}
.Anime__content {
	opacity: 0;
	visibility: hidden;
}
.Anime--loaded .Anime__content {
	opacity: 1;
	visibility: visible;
}

.Anime--main {
	border-top: 2px solid #e1cb11;
	padding-top: 40%;
}
.Anime--welcome {
	position: absolute;
	left: 50%;
	bottom: 20px;
	margin-left: -30px;
	width: 60px;
	height: 60px;
	cursor: pointer;
}
.Anime--about {
	width: 605px;
	height: 544px;
}

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