/* This is the core CSS of Tooltipster */

/* GENERAL STRUCTURE RULES (do not edit this section) */

.tooltipster-base {
	/* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
	display: flex;
	pointer-events: none;
	/* this may be overriden in JS for fixed position origins */
	position: absolute;
}

.tooltipster-box {
	/* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
	flex: 1 1 auto;
}

.tooltipster-content {
	/* prevents an overflow if the user adds padding to the div */
	box-sizing: border-box;
	/* these make sure we'll be able to detect any overflow */
	max-height: 100%;
	max-width: 100%;
	overflow: auto;
}

.tooltipster-ruler {
	/* these let us test the size of the tooltip without overflowing the window */
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
}

/* ANIMATIONS */

/* Open/close animations */

/* fade */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
	opacity: 1;
}

/* grow */

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

/* swing */

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing.tooltipster-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

/* fall */

.tooltipster-fall {
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall.tooltipster-initial {
	top: 0 !important;
}
.tooltipster-fall.tooltipster-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0 !important;
	opacity: 0;
}

/* slide */

.tooltipster-slide {
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-initial {
	left: -40px !important;
}
.tooltipster-slide.tooltipster-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0 !important;
	opacity: 0;
}

/* Update animations */

/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */

/* fade */

@keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.tooltipster-update-fade {
	animation: tooltipster-fading 400ms;
}

/* rotate */

@keyframes tooltipster-rotating {
	25% {
		transform: rotate(-2deg);
	}
	75% {
		transform: rotate(2deg);
	}
	100% {
		transform: rotate(0);
	}
}

.tooltipster-update-rotate {
	animation: tooltipster-rotating 600ms;
}

/* scale */

@keyframes tooltipster-scaling {
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.tooltipster-update-scale {
	animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */

/* .tooltipster-box */

.tooltipster-sidetip .tooltipster-box {
	background: #565656;
	border: 2px solid black;
	border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
	margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
	margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
	margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
	margin-bottom: 8px;
}

/* .tooltipster-content */

.tooltipster-sidetip .tooltipster-content {
	color: white;
	line-height: 18px;
	padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */

.tooltipster-sidetip .tooltipster-arrow {
	overflow: hidden;
	position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
	height: 10px;
	/* half the width, for centering */
	margin-left: -10px;
	top: 0;
	width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	right: 0;
	/* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	left: 0;
	/* same as .tooltipster-left .tooltipster-arrow */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
	bottom: 0;
	height: 10px;
	margin-left: -10px;
	width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
	height: 0;
	position: absolute;
	width: 0;
}

/* .tooltipster-arrow-background */

.tooltipster-sidetip .tooltipster-arrow-background {
	border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: #565656;
	left: 0px;
	top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: #565656;
	left: -3px;
	top: 0px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: #565656;
	left: 3px;
	top: 0px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: #565656;
	left: 0px;
	top: -3px;
}

/* .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-border {
	border: 10px solid transparent;
	left: 0;
	top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
	border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
	border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
	border-top-color: black;
}

/* tooltipster-arrow-uncropped */

.tooltipster-sidetip .tooltipster-arrow-uncropped {
	position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
	top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
	left: -10px;
}
.tooltipster-templates {
    display: none;
}

.tooltipster-base {
    height: auto !important;
}

.tooltipster-sidetip.tooltipster-custom .tooltipster-box {
    border-radius: 3px;
    border: none;
    background: #fff;
    box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.3);
}

.tooltipster-sidetip.tooltipster-custom .tooltipster-content {
    color: #666;
    padding: 0;
}

.tooltipster-sidetip.tooltipster-custom .tooltipster-arrow {
    height: 9px;
    margin-left: -9px;
    width: 18px;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-custom.tooltipster-right .tooltipster-arrow {
    height: 18px;
    margin-left: 0;
    margin-top: -9px;
    width: 9px;
}

.tooltipster-sidetip.tooltipster-custom .tooltipster-arrow-background {
    border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #fff;
    top: 1px;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #fff;
    left: -1px;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #fff;
    left: 1px;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #fff;
    top: -1px;
}

.tooltipster-sidetip.tooltipster-custom .tooltipster-arrow-border {
    border: 9px solid transparent;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #fff;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #fff;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #fff;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #fff;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -9px;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-right .tooltipster-arrow-uncropped {
    left: -9px;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-left .tooltipster-arrow-uncropped {
    right: -9px;
}

.tooltipster-sidetip.tooltipster-custom.tooltipster-left .tooltipster-arrow {
    width: 18px;
}

.tooltipster-sidetip.tooltipster-right,
.tooltipster-sidetip.tooltipster-left {
    padding-left: 9px;
    padding-right: 9px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 0;
}

@media (max-width: 1229px) {
    .tooltipster-sidetip {
        opacity: 0;
        display: none;
    }
}
@charset "UTF-8";
@font-face {
  font-family: "Fedra Sans Pro LF";
  font-weight: 300;
  src: url(../assets/fonts/FedraSansProLF/FedraSansPro-BookLF.woff2) format("woff2"), url(../assets/fonts/FedraSansProLF/FedraSansPro-BookLF.woff) format("woff");
  font-display: swap; }

@font-face {
  font-family: "Fedra Sans Pro LF";
  font-weight: 350;
  src: url(../assets/fonts/FedraSansProLF/FedraSansPro-DemiLF.woff2) format("woff2"), url(../assets/fonts/FedraSansProLF/FedraSansPro-DemiLF.woff) format("woff");
  font-display: swap; }

@font-face {
  font-family: "Fedra Sans Pro LF";
  font-weight: 500;
  src: url(../assets/fonts/FedraSansProLF/FedraSansPro-MediumLF.woff2) format("woff2"), url(../assets/fonts/FedraSansProLF/FedraSansPro-MediumLF.woff) format("woff");
  font-display: swap; }

@font-face {
  font-family: "Roboto Slab";
  font-weight: 400;
  src: url(../assets/fonts/RobotoSlab/RobotoSlab-Regular.woff2) format("woff2"), url(../assets/fonts/RobotoSlab/RobotoSlab-Regular.woff) format("woff");
  font-display: swap; }

@font-face {
  font-family: "Roboto Slab";
  font-weight: 700;
  src: url(../assets/fonts/RobotoSlab/RobotoSlab-Bold.woff2) format("woff2"), url(../assets/fonts/RobotoSlab/RobotoSlab-Bold.woff) format("woff");
  font-display: swap; }

/* stylelint-disable */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

input::-ms-reveal {
  display: none; }

input::-ms-clear {
  display: none; }

/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
  text-decoration: none; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
  text-decoration: none; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
  text-decoration: none; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn, i {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
  vertical-align: middle; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  border: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input,
button {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* ==========================================================================
   Lists
   ========================================================================== */
ol {
  padding: 0;
  margin: 0; }

ul li,
ol li {
  padding: 0;
  margin: 0; }

ul {
  padding: 0;
  margin: 0; }

ul li {
  list-style: none; }

dl, dd, dt {
  margin: 0;
  padding: 0; }

/* stylelint-enable */
* {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

body {
  height: 100%;
  -webkit-overflow-scrolling: touch; }
  body *:focus {
    outline: none; }
  body.user-is-tabbing *:focus:not(input):not(textarea) {
    outline: 2px dashed #00a8ff; }
  body.ov-hidden {
    overflow: hidden; }
  body .has-error {
    color: #e4007c; }

/* stylelint-disable */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* stylelint-enable */
/* stylelint-disable */
/* Slider */
/* Icons */
@font-face {}/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "\2190"; }
    [dir="rtl"] .slick-prev:before {
      content: "\2192"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "\2192"; }
    [dir="rtl"] .slick-next:before {
      content: "\2190"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0;
      font-size: 0;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\2022";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/* stylelint-enable */
/**
 * selectize.css (v0.12.4)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
  box-shadow: inset 0 0 12px 4px #ffffff; }

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden; }

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0; }

.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important; }

.selectize-dropdown-header-close:hover {
  color: #000000; }

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none; }

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none; }

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none; }

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important; }

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05); }

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #cacaca; }

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none; }

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff; }

.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 28px;
  top: 6px;
  font-size: 23px; }

.selectize-control {
  position: relative; }

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit; }

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #ffffff;
  cursor: text;
  display: inline-block; }

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px; }

.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px; }

.selectize-input.full {
  background-color: #ffffff; }

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important; }

.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); }

.selectize-input.dropdown-active {
  border-radius: 3px 3px 0 0; }

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline; }

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0; }

.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca; }

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff; }

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.selectize-input > input::-ms-clear {
  display: none; }

.selectize-input > input:focus {
  outline: none !important; }

.selectize-input::after {
  content: ' ';
  display: block;
  clear: left; }

.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0; }

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px; }

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden; }

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px; }

.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 5px 8px; }

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none; }

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #ffffff;
  cursor: default; }

.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68; }

.selectize-dropdown .active.create {
  color: #495c68; }

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5); }

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch; }

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer; }

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text; }

.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent; }

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent; }

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto; }

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important; }

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa; }

.flatpickr-calendar {
  background: transparent;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08); }

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  visibility: visible;
  overflow: visible;
  max-height: 640px; }

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999; }

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px; }

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px); }

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block; }

.flatpickr-calendar.hasWeeks {
  width: auto; }

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0; }

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6; }

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto; }

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px; }

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px; }

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px; }

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px; }

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%; }

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6; }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff; }

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%; }

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6; }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff; }

.flatpickr-calendar:focus {
  outline: 0; }

.flatpickr-wrapper {
  position: relative;
  display: inline-block; }

.flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden; }

.flatpickr-prev-month,
.flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0px;
  line-height: 16px;
  height: 28px;
  padding: 10px calc(3.57% - 1.5px);
  z-index: 3; }

.flatpickr-prev-month i,
.flatpickr-next-month i {
  position: relative; }

.flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */ }

/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-prev-month.flatpickr-next-month,
.flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */ }

/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #959ea9; }

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: #f64747; }

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  width: 14px; }

.flatpickr-prev-month svg path,
.flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit; }

.numInputWrapper {
  position: relative;
  height: auto; }

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block; }

.numInputWrapper input {
  width: 100%; }

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.05);
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1); }

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2); }

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
  top: 33%; }

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0; }

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6); }

.numInputWrapper span.arrowDown {
  top: 50%; }

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6); }

.numInputWrapper span svg {
  width: inherit;
  height: auto; }

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5); }

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05); }

.numInputWrapper:hover span {
  opacity: 1; }

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px); }

.flatpickr-current-month.slideLeft {
  -webkit-transform: translate3d(-100%, 0px, 0px);
  transform: translate3d(-100%, 0px, 0px);
  -webkit-animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeOut 400ms ease, fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-current-month.slideLeftNew {
  -webkit-transform: translate3d(100%, 0px, 0px);
  transform: translate3d(100%, 0px, 0px);
  -webkit-animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeIn 400ms ease, fpSlideLeftNew 400ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-current-month.slideRight {
  -webkit-transform: translate3d(100%, 0px, 0px);
  transform: translate3d(100%, 0px, 0px);
  -webkit-animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeOut 400ms ease, fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-current-month.slideRightNew {
  -webkit-transform: translate3d(0, 0, 0px);
  transform: translate3d(0, 0, 0px);
  -webkit-animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeIn 400ms ease, fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0; }

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block; }

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9); }

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9); }

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: default;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: initial;
  border: 0;
  border-radius: 0;
  vertical-align: initial; }

.flatpickr-current-month input.cur-year:focus {
  outline: 0; }

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none; }

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px; }

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder; }

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0; }

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 307.875px; }

.flatpickr-days:focus {
  outline: 0; }

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1; }

.flatpickr-calendar.animate .dayContainer.slideLeft {
  -webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-calendar.animate .dayContainer.slideLeft,
.flatpickr-calendar.animate .dayContainer.slideLeftNew {
  -webkit-transform: translate3d(-100%, 0px, 0px);
  transform: translate3d(-100%, 0px, 0px); }

.flatpickr-calendar.animate .dayContainer.slideLeftNew {
  -webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideLeft 400ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-calendar.animate .dayContainer.slideRight {
  -webkit-animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeOut 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRight 400ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translate3d(100%, 0px, 0px);
  transform: translate3d(100%, 0px, 0px); }

.flatpickr-calendar.animate .dayContainer.slideRightNew {
  -webkit-animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeIn 400ms cubic-bezier(0.23, 1, 0.32, 1), fpSlideRightNew 400ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center; }

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6; }

.flatpickr-day.today {
  border-color: #959ea9; }

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff; }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7; }

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px; }

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0; }

.flatpickr-day.selected.startRange + .endRange,
.flatpickr-day.startRange.startRange + .endRange,
.flatpickr-day.endRange.startRange + .endRange {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7; }

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px; }

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; }

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  pointer-events: none; }

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default; }

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7; }

.rangeMode .flatpickr-day {
  margin-top: 1px; }

.flatpickr-weekwrapper {
  display: inline-block;
  float: left; }

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6; }

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px; }

.flatpickr-weekwrapper span.flatpickr-day {
  display: block;
  width: 100%;
  max-width: none; }

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden; }

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both; }

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left; }

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939; }

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939; }

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%; }

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%; }

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  cursor: pointer;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.flatpickr-time input.flatpickr-hour {
  font-weight: bold; }

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400; }

.flatpickr-time input:focus {
  outline: 0;
  border: 0; }

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400; }

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f0f0f0; }

.flatpickr-input[readonly] {
  cursor: pointer; }

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-webkit-keyframes fpSlideLeft {
  from {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px); }
  to {
    -webkit-transform: translate3d(-100%, 0px, 0px);
    transform: translate3d(-100%, 0px, 0px); } }

@keyframes fpSlideLeft {
  from {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px); }
  to {
    -webkit-transform: translate3d(-100%, 0px, 0px);
    transform: translate3d(-100%, 0px, 0px); } }

@-webkit-keyframes fpSlideLeftNew {
  from {
    -webkit-transform: translate3d(100%, 0px, 0px);
    transform: translate3d(100%, 0px, 0px); }
  to {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px); } }

@keyframes fpSlideLeftNew {
  from {
    -webkit-transform: translate3d(100%, 0px, 0px);
    transform: translate3d(100%, 0px, 0px); }
  to {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px); } }

@-webkit-keyframes fpSlideRight {
  from {
    -webkit-transform: translate3d(0, 0, 0px);
    transform: translate3d(0, 0, 0px); }
  to {
    -webkit-transform: translate3d(100%, 0px, 0px);
    transform: translate3d(100%, 0px, 0px); } }

@keyframes fpSlideRight {
  from {
    -webkit-transform: translate3d(0, 0, 0px);
    transform: translate3d(0, 0, 0px); }
  to {
    -webkit-transform: translate3d(100%, 0px, 0px);
    transform: translate3d(100%, 0px, 0px); } }

@-webkit-keyframes fpSlideRightNew {
  from {
    -webkit-transform: translate3d(-100%, 0, 0px);
    transform: translate3d(-100%, 0, 0px); }
  to {
    -webkit-transform: translate3d(0, 0, 0px);
    transform: translate3d(0, 0, 0px); } }

@keyframes fpSlideRightNew {
  from {
    -webkit-transform: translate3d(-100%, 0, 0px);
    transform: translate3d(-100%, 0, 0px); }
  to {
    -webkit-transform: translate3d(0, 0, 0px);
    transform: translate3d(0, 0, 0px); } }

@-webkit-keyframes fpFadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fpFadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@-webkit-keyframes fpFadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fpFadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.root {
  background-color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch; }

.page {
  background-color: #fff;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 14px;
  font-weight: 300;
  height: 100%;
  line-height: 1.42857;
  margin: 0;
  min-width: 320px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch; }
  .page--sputnik-enter {
    background-color: #000;
    position: relative;
    height: 100vh;
    min-height: 550px; }
    .ie11 .page--sputnik-enter {
      overflow: hidden; }
  .page__main {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding-bottom: 35px; }
    @media (min-width: 768px) {
      .page--search .page__main {
        padding-bottom: 48px; } }
    @media (min-width: 1230px) {
      .page--search .page__main {
        padding-bottom: 100px; } }
    .page--receiving-area .page__main {
      padding-bottom: 0; }
      @media (min-width: 1230px) {
        .page--receiving-area .page__main {
          padding-bottom: 60px; } }
    @media (min-width: 1230px) {
      .page--cart-cabinet .page__main {
        padding-bottom: 60px; } }
    .page--sputnik-enter .page__main {
      position: absolute;
      height: 100%;
      left: 0;
      top: 0;
      width: 100%;
      padding-bottom: 0; }
    .page--404 .page__main,
    .page--503 .page__main {
      padding-bottom: 0; }
  .page--cabinet .page__main {
    padding-bottom: 35px; }
    @media (min-width: 768px) {
      .page--cabinet .page__main {
        padding-bottom: 30px; } }
    @media (min-width: 1230px) {
      .page--cabinet .page__main {
        padding-bottom: 70px; } }
  .page__location-selection-overlay {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 12;
    height: 0;
    overflow: hidden;
    opacity: 0;
    will-change: opacity;
    -webkit-transition-property: height, opacity;
    transition-property: height, opacity;
    -webkit-transition-duration: 0ms, 150ms;
            transition-duration: 0ms, 150ms;
    -webkit-transition-delay: 150ms, 0ms;
            transition-delay: 150ms, 0ms; }
    @media (min-width: 1230px) {
      .page__location-selection-overlay {
        margin-top: 61px; } }
    .page__location-selection-overlay.active {
      height: 100vh;
      opacity: 1;
      -webkit-transition-property: height, opacity;
      transition-property: height, opacity;
      -webkit-transition-delay: 0ms, 0ms;
              transition-delay: 0ms, 0ms; }
  .page__common-search-overlay {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 12;
    height: 0;
    overflow: hidden;
    opacity: 0;
    will-change: opacity;
    -webkit-transition-property: height, opacity;
    transition-property: height, opacity;
    -webkit-transition-duration: 0ms, 150ms;
            transition-duration: 0ms, 150ms;
    -webkit-transition-delay: 150ms, 0ms;
            transition-delay: 150ms, 0ms; }
    .page__common-search-overlay.active {
      height: 100vh;
      opacity: 1;
      -webkit-transition-property: height, opacity;
      transition-property: height, opacity;
      -webkit-transition-delay: 0ms, 0ms;
              transition-delay: 0ms, 0ms; }
  .page__popup-form-overlay {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 12;
    height: 0;
    overflow: hidden;
    overflow-y: auto;
    opacity: 0;
    will-change: opacity;
    -webkit-transition-property: height, opacity;
    transition-property: height, opacity;
    -webkit-transition-duration: 0ms, 150ms;
            transition-duration: 0ms, 150ms;
    -webkit-transition-delay: 150ms, 0ms;
            transition-delay: 150ms, 0ms; }
    .page__popup-form-overlay.active {
      bottom: 0;
      height: auto;
      opacity: 1;
      -webkit-transition-property: height, opacity;
      transition-property: height, opacity;
      -webkit-transition-delay: 0ms, 0ms;
              transition-delay: 0ms, 0ms; }
      @media (min-width: 768px) {
        .page__popup-form-overlay.active {
          padding-bottom: 30px;
          padding-top: 30px; } }
  .page__support-callback-overlay {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 12;
    height: 0;
    overflow: hidden;
    opacity: 0;
    will-change: opacity;
    -webkit-transition-property: height, opacity;
    transition-property: height, opacity;
    -webkit-transition-duration: 0ms, 150ms;
            transition-duration: 0ms, 150ms;
    -webkit-transition-delay: 150ms, 0ms;
            transition-delay: 150ms, 0ms; }
    @media (min-width: 1230px) {
      .page__support-callback-overlay {
        margin-top: 61px; } }
    .page__support-callback-overlay.is-active {
      height: 100vh;
      opacity: 1;
      -webkit-transition-property: height, opacity;
      transition-property: height, opacity;
      -webkit-transition-delay: 0ms, 0ms;
              transition-delay: 0ms, 0ms; }
      @media (min-width: 1230px) {
        .page__support-callback-overlay.is-active {
          height: 0;
          opacity: 0;
          pointer-events: none; } }
  .page__more-possibilities {
    margin-top: 36px; }
    @media (min-width: 768px) {
      .page__more-possibilities {
        margin-top: 46px; } }
  .page--cabinet .page__tv-program {
    margin-top: 36px;
    margin-bottom: 50px; }
    @media (min-width: 768px) {
      .page--cabinet .page__tv-program {
        margin-top: 80px;
        margin-bottom: 79px; } }
    @media (min-width: 1230px) {
      .page--cabinet .page__tv-program {
        margin-bottom: 80px; } }
  .page__area {
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 8px 30px 5px rgba(0, 69, 104, 0.1);
            box-shadow: 0 8px 30px 5px rgba(0, 69, 104, 0.1); }
  .page__announcements {
    margin-top: 44px; }
    .page--contacts .page__announcements {
      margin-top: 20px; }
    @media (min-width: 768px) {
      .page__announcements {
        margin-top: 55px; }
        .page--contacts .page__announcements {
          margin-top: 30px; } }
    @media (min-width: 1230px) {
      .page__announcements {
        margin-top: 80px; } }
  * + .page__promo-banner,
  * + .page__link-banner,
  * + .page__alt-promo-banner {
    margin-top: 27px; }
    @media (min-width: 768px) {
      * + .page__promo-banner,
      * + .page__link-banner,
      * + .page__alt-promo-banner {
        margin-top: 48px; } }
    @media (min-width: 1230px) {
      * + .page__promo-banner,
      * + .page__link-banner,
      * + .page__alt-promo-banner {
        margin-top: 64px; } }
  * + .page__data-output {
    margin-top: 45px; }
    @media (min-width: 768px) {
      * + .page__data-output {
        margin-top: 60px; } }
    @media (min-width: 1230px) {
      * + .page__data-output {
        margin-top: 80px; } }
  .page__return-button {
    text-align: center; }
    :root .page__return-button {
      margin: 20px auto 12px; }
      @media (min-width: 768px) {
        :root .page__return-button {
          margin-top: 30px;
          text-align: left; } }
      @media (min-width: 1230px) {
        :root .page__return-button {
          margin-top: 50px; } }
  .page__shop-banners {
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .page__shop-banners {
        margin-bottom: 40px; } }
    @media (min-width: 1230px) {
      .page__shop-banners {
        margin-bottom: 50px;
        padding-top: 30px; } }

.page-container {
  margin: 0 auto;
  width: 93.75%; }
  @media (min-width: 768px) {
    .page-container {
      width: 89.0625%; } }
  @media (min-width: 1230px) {
    .page-container {
      width: 1170px; } }

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  font-weight: normal;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  vertical-align: middle; }

.svg-icon {
  display: inline-block;
  fill: inherit;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  vertical-align: middle; }

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

.common-button {
  background-color: #00a8ff;
  color: #fff;
  font-size: 14px;
  padding-top: 19px;
  padding-bottom: 18px;
  display: inline-block;
  width: 240px;
  border-radius: 100px; }

.light-button {
  background-color: white;
  color: #333;
  padding-top: 19px;
  padding-bottom: 18px;
  display: inline-block;
  width: 240px;
  border-radius: 100px;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out; }
  .light-button:hover {
    background-color: #d0c9c9; }

.notification-btn {
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(124, 144, 169, 0.4);
  background-color: transparent;
  fill: #e4007c;
  position: relative;
  -webkit-transition-property: background-color, border-color;
  transition-property: background-color, border-color;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
  overflow: visible; }
  :root:not(.mobile) .notification-btn:hover {
    background-color: #e4007c;
    border-color: #e4007c;
    fill: white; }
    :root:not(.mobile) .notification-btn:hover::after {
      -webkit-box-shadow: 0 0 0 2px white;
              box-shadow: 0 0 0 2px white; }
  .notification-btn.active {
    background-color: #e4007c;
    border-color: #e4007c;
    fill: white; }
    .notification-btn.active::after {
      -webkit-box-shadow: 0 0 0 2px white;
              box-shadow: 0 0 0 2px white; }
  @media (min-width: 1230px) {
    .notification-btn {
      width: 55px;
      height: 55px; } }
  .notification-btn::after {
    content: attr(data-count);
    min-width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: calc(100% - 14px);
    color: white;
    line-height: 1.3;
    font-size: 10px;
    font-weight: 500;
    background-color: #e4007c;
    border-radius: 8px;
    padding: 1px 5px 1px 6px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 767px) {
      .notification-btn::after {
        padding: 3px 6px; } }
  .notification-btn .svg-icon {
    fill: inherit;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
  .notification-btn--white {
    fill: #fff;
    border-color: #fff; }

.ie button.header__notification-btn svg,
.ie button.header__cart-btn svg {
  -ms-transform: translate(0, 0); }

.comparison-btn {
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(124, 144, 169, 0.4);
  background-color: transparent;
  line-height: 48px;
  fill: #e4007c;
  position: relative;
  -webkit-transition-property: background-color, border-color;
  transition-property: background-color, border-color;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
  text-align: center;
  overflow: visible; }
  :root:not(.mobile) .comparison-btn:hover {
    background-color: #e4007c;
    border-color: #e4007c;
    fill: white; }
    :root:not(.mobile) .comparison-btn:hover::after {
      -webkit-box-shadow: 0 0 0 2px white;
              box-shadow: 0 0 0 2px white; }
  @media (min-width: 1230px) {
    .comparison-btn {
      width: 55px;
      height: 55px;
      line-height: 55px; } }
  .comparison-btn::after {
    content: attr(data-count);
    min-width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: calc(100% - 14px);
    color: white;
    line-height: 1.3;
    font-size: 10px;
    font-weight: 500;
    background-color: #e4007c;
    border-radius: 8px;
    padding: 1px 5px 1px 6px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 767px) {
      .comparison-btn::after {
        padding: 3px 6px; } }
  .comparison-btn .svg-icon {
    fill: inherit;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }

.title {
  color: #333;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-weight: 500;
  margin: 0; }
  .title--h1 {
    font-size: 30px;
    font-weight: 350;
    line-height: 1.2; }
    @media (min-width: 768px) {
      .title--h1 {
        font-size: 48px;
        line-height: 1; } }
  .title--h2 {
    font-size: 24px;
    line-height: 1.25; }
    @media (min-width: 768px) {
      .title--h2 {
        font-size: 36px;
        line-height: 1.33333333; } }
  .title--h3 {
    font-size: 20px;
    line-height: 1.2; }
    @media (min-width: 768px) {
      .title--h3 {
        font-size: 24px;
        line-height: 1.33333333; } }
  .title--h4 {
    font-size: 16px;
    line-height: 1.5; }
    @media (min-width: 768px) {
      .title--h4 {
        font-size: 18px;
        line-height: 1.44444444; } }
  .title--h5, .title--sub {
    font-size: 10px;
    line-height: 1.4; }
    @media (min-width: 768px) {
      .title--h5, .title--sub {
        font-size: 12px;
        line-height: 1.33333333; } }
  .title--sub {
    color: #8a94a2;
    text-transform: uppercase; }
  .title--sub-sm {
    color: #8a94a2;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1.4; }
    @media (min-width: 768px) {
      .title--sub-sm {
        font-size: 12px; } }

.text {
  color: #333;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.73333333; }
  .text--sub {
    color: #7c90a9;
    font-size: 14px;
    line-height: 1.57142857; }
  .text--subname, .text--name {
    font-size: 14px;
    line-height: 1.28571429; }
    @media (min-width: 768px) {
      .text--subname, .text--name {
        font-size: 16px;
        line-height: 1.375; } }
  .text--subname {
    font-weight: 350; }
  .text--name {
    font-weight: 500; }

.number {
  color: #7c90a9;
  font-family: Roboto Slab, sans-serif; }
  .number--sm {
    font-size: 24px;
    line-height: 1.16666667; }
    @media (min-width: 768px) {
      .number--sm {
        font-size: 28px;
        line-height: 1; } }
  .number--md {
    font-size: 36px;
    line-height: 1; }
    @media (max-width: 767px) {
      .package-selection__price-value .number--md {
        font-size: 23px; } }
  .number--time {
    color: #333;
    font-family: Fedra Sans Pro LF, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71428571; }
  .number--dashboard {
    font-size: 28px;
    line-height: 1; }
    @media (min-width: 768px) {
      .number--dashboard {
        font-size: 32px;
        line-height: 0.875; } }
  .number--lg {
    color: #00a8ff;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -1.9px; }
    @media (min-width: 768px) {
      .number--lg {
        font-size: 44px; } }
  .number__units {
    font-size: 16px;
    padding-left: 4px; }
    .number--md .number__units {
      font-size: 22px; }
      @media (max-width: 767px) {
        .package-selection__price-value .number--md .number__units {
          font-size: 18px; } }
    .number--dashboard .number__units {
      font-weight: 700; }
      @media (min-width: 768px) {
        .number--dashboard .number__units {
          font-size: 18px; } }
    @media (min-width: 768px) {
      .number--sm .number__units {
        font-weight: 700; } }
  .number__note {
    color: #7c90a9;
    display: block;
    font-family: Fedra Sans Pro LF, sans-serif;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: normal; }

.link {
  color: #00a8ff;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-weight: 300;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out; }
  :root:not(.mobile) .link:hover {
    color: #008ed7; }

.input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #cdd8e3;
  border-radius: 100px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #333;
  display: inline-block;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 14px;
  font-weight: 300;
  height: 40px;
  line-height: 1;
  padding: 2px 20px 0;
  text-align: left;
  -webkit-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
  vertical-align: middle;
  width: 100%; }
  .input:focus {
    border-color: #00a8ff;
    outline: 0; }
  .input--md {
    height: 55px;
    font-size: 16px;
    padding-left: 25px;
    padding-right: 25px; }
    @media (max-width: 767px) {
      .input--md-special {
        padding-right: 7px; } }
    @media (min-width: 1230px) {
      .input--md-special {
        width: 344px; } }
  .input--lg {
    height: 55px;
    font-size: 16px;
    padding-left: 25px;
    padding-right: 25px; }
    @media (min-width: 768px) {
      .input--lg {
        height: 60px;
        padding-left: 30px;
        padding-right: 30px; } }
  .input.has-error {
    border-color: #e4007c;
    color: #e4007c; }
  .input--blue-background.has-error {
    border-color: #cdd8e3;
    color: #e4007c; }
  .input::-webkit-input-placeholder {
    color: #8a94a2; }
  .input::-moz-placeholder {
    opacity: 1;
    color: #8a94a2; }
  .input:-ms-input-placeholder {
    color: #8a94a2; }
  .input::-webkit-outer-spin-button, .input::-webkit-inner-spin-button {
    -webkit-appearance: none; }
  .input[type='number'] {
    -moz-appearance: textfield; }

.textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #cdd8e3;
  border-radius: 27px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #333;
  display: inline-block;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 14px;
  font-weight: 300;
  height: 110px;
  line-height: 1;
  padding: 2px 20px 0;
  text-align: left;
  -webkit-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
  vertical-align: middle;
  width: 100%;
  padding-top: 22px;
  max-width: 100%;
  min-width: 100%; }
  .textarea:focus {
    border-color: #00a8ff;
    outline: 0; }
  .textarea--md {
    font-size: 16px;
    padding-left: 25px;
    padding-right: 25px; }
  .textarea--lg {
    font-size: 16px;
    padding-left: 25px;
    padding-right: 25px; }
    @media (min-width: 768px) {
      .textarea--lg {
        padding-left: 30px;
        padding-right: 30px; } }
  .textarea.has-error {
    border-color: #e4007c;
    color: #e4007c; }
  .textarea::-webkit-input-placeholder {
    color: #8a94a2; }
  .textarea::-moz-placeholder {
    opacity: 1;
    color: #8a94a2; }
  .textarea:-ms-input-placeholder {
    color: #8a94a2; }

.arrow-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  padding-right: 20px;
  position: relative;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  vertical-align: middle; }
  .arrow-link--blue {
    color: #00a8ff;
    fill: #00a8ff; }
    :root:not(.mobile) .arrow-link--blue:hover {
      color: #008ed7;
      fill: #008ed7; }
  .arrow-link--pink {
    color: #e4007c;
    fill: #e4007c; }
    :root:not(.mobile) .arrow-link--pink:hover {
      color: #c6006b;
      fill: #c6006b; }
  .arrow-link__arrow {
    position: absolute;
    right: -5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

.checkbox {
  display: inline-block;
  position: relative;
  vertical-align: middle; }
  .checkbox--support-callback {
    padding-top: 10px; }
    @media (min-width: 768px) {
      .checkbox--support-callback {
        padding-top: 8px; } }
  .checkbox__input {
    left: -9999px;
    position: absolute; }
  .checkbox__label {
    color: #000;
    padding-top: 5px;
    min-height: 30px;
    text-align: left;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    .checkbox--support-callback .checkbox__label {
      padding-top: 5px; }
    .checkbox.has-error .checkbox__label {
      color: #e4007c; }
    .checkbox--invert .checkbox__label {
      padding-top: 2px;
      color: #fff; }
    .checkbox__input:checked + .checkbox__label,
    .checkbox__input:not(:checked) + .checkbox__label {
      cursor: pointer;
      display: inline-block;
      font-family: Fedra Sans Pro LF, sans-serif;
      font-weight: 300;
      line-height: 1.3;
      padding-left: 30px;
      position: relative;
      vertical-align: middle; }
    :root:not(.mobile) .checkbox__label:hover {
      color: #00a8ff; }
    :root:not(.mobile) .checkbox--invert .checkbox__label:hover {
      color: rgba(255, 255, 255, 0.6); }
    .checkbox__input[disabled] + .checkbox__label {
      cursor: default; }
    .checkbox__label::before {
      background-color: #fff;
      border: 1px solid #cdd8e3;
      border-radius: 4px;
      content: "";
      height: 30px;
      left: -1px;
      position: absolute;
      top: -1px;
      -webkit-transition: border 0.2s ease-out;
      transition: border 0.2s ease-out;
      width: 30px; }
      body.user-is-tabbing .checkbox__input:focus + .checkbox__label::before {
        border-color: #00a8ff; }
      .checkbox__input:checked + .checkbox__label::before {
        border-color: #00a8ff;
        background-color: #00a8ff; }
      .checkbox--invert .checkbox__input:checked + .checkbox__label::before {
        border-color: #fff; }
      .checkbox.has-error .checkbox__label::before {
        border-color: #e4007c; }
    :root:not(.mobile) .checkbox__label:hover::before {
      border-color: #00a8ff; }
    .checkbox--invert .checkbox__label::before {
      background-color: #00a8ff;
      border-color: #fff;
      -webkit-transition-property: opacity, border;
      transition-property: opacity, border; }
    :root:not(.mobile) .checkbox--invert .checkbox__label:hover::before {
      border-color: #fff;
      opacity: 0.6; }
    .checkbox__label::after {
      border-bottom: 2px solid #fff;
      border-left: 2px solid #fff;
      content: "";
      height: 5px;
      left: 9px;
      position: absolute;
      top: 10px;
      width: 10px;
      will-change: transform; }
      .checkbox__input:not(:checked) + .checkbox__label::after {
        opacity: 0;
        -webkit-transform: rotate(-50deg) scale(0);
                transform: rotate(-50deg) scale(0); }
      .checkbox__input:checked + .checkbox__label::after {
        opacity: 1;
        -webkit-transform: rotate(-50deg) scale(1);
                transform: rotate(-50deg) scale(1); }
    .checkbox--invert .checkbox__label::after {
      -webkit-transition: opacity 0.2s ease;
      transition: opacity 0.2s ease; }
    :root:not(.mobile) .checkbox--invert .checkbox__label:hover::after {
      opacity: 0.6; }
  .checkbox__text {
    display: inline-block;
    font-size: 16px;
    padding-left: 14px; }
    .checkbox--support-callback .checkbox__text {
      font-size: 15px;
      line-height: 1.73;
      padding-left: 16px;
      vertical-align: baseline; }
    .checkbox--card-extended-search .checkbox__text {
      color: #333;
      font-size: 15px;
      padding-left: 16px;
      vertical-align: baseline; }
    .checkbox--invert .checkbox__text {
      font-size: 14px;
      line-height: 1.57; }
      @media (min-width: 768px) {
        .checkbox--invert .checkbox__text {
          line-height: 1.86; } }

.ghost-btn {
  border: 2px solid transparent;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 10px 10px;
  -webkit-transition-property: color, border, background;
  transition-property: color, border, background;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  white-space: nowrap; }
  .ghost-btn--pink {
    color: #e4007c;
    border-color: #e4007c; }
    :root:not(.mobile) .ghost-btn--pink:hover {
      background-color: #e4007c;
      color: #fff; }
  .ghost-btn--blue {
    color: #00a8ff;
    border-color: #00a8ff; }
    :root:not(.mobile) .ghost-btn--blue:hover {
      background-color: #00a8ff;
      color: #fff; }
  .ghost-btn--light-blue {
    color: #2adeff;
    border-color: #2adeff; }
    :root:not(.mobile) .ghost-btn--light-blue:hover {
      background-color: #2adeff;
      color: #fff; }
  .ghost-btn--gray {
    color: #7c90a9;
    border-color: #7c90a9; }
    :root:not(.mobile) .ghost-btn--gray:hover {
      background-color: #7c90a9;
      color: #fff; }
  .ghost-btn--md {
    padding: 20px 20px 17px; }
  .ghost-btn--lg {
    padding: 20px 20px 17px; }
    @media (min-width: 768px) {
      .ghost-btn--lg {
        font-size: 16px;
        padding: 21px 25px 19px; } }

.select {
  height: 40px; }
  .select__item.selectize-control .selectize-input {
    background-color: #fff;
    border: 1px solid #cdd8e3;
    border-radius: 100px;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #333;
    cursor: pointer;
    display: block;
    height: 40px;
    font-family: Fedra Sans Pro LF, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 40px;
    margin: 0;
    overflow: hidden;
    padding: 0 35px 0 20px;
    position: relative;
    text-align: left;
    -webkit-transition: border 0.2s ease-out;
    transition: border 0.2s ease-out;
    width: 100%;
    white-space: nowrap; }
  .select__item.selectize-control .selectize-input.focus:not(.dropdown-active) {
    -webkit-box-shadow: none;
            box-shadow: none; }
  .select__item.selectize-control .selectize-input.dropdown-active {
    border-color: transparent;
    border-radius: 20px 20px 0 0;
    -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
            box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1); }
  .select__item.selectize-control .selectize-input.dropdown-active::before,
  .select__item.selectize-control .selectize-input.dropdown-active::after {
    pointer-events: none; }
  .select__item.selectize-control .selectize-input.dropdown-active::before {
    background-color: #cdd8e3;
    left: 20px;
    right: 20px;
    z-index: 20; }
  .select__item.selectize-control .selectize-input::after {
    /* arrow down */
    background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill%3D%22%2300A8FF%22%20d%3D%22M4.464%205.293A1%201%200%201%200%203.05%206.707l4.243%204.243a1%201%200%200%200%201.414%200l4.243-4.243a1%201%200%200%200-1.414-1.414L8%208.828%204.464%205.293z%22/%3E%3C/svg%3E") no-repeat;
    border: none;
    content: "";
    height: 16px;
    margin: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    width: 16px; }
  .select__item.selectize-control .selectize-input.dropdown-active::after {
    border: none;
    margin: -1px;
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg); }
  .select__item.selectize-control .selectize-input .item {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .select__item.selectize-control .selectize-input input {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit !important;
    margin: 0 !important;
    vertical-align: top; }
    .select__item.selectize-control .selectize-input input::-webkit-input-placeholder {
      color: #8a94a2; }
    .select__item.selectize-control .selectize-input input::-moz-placeholder {
      opacity: 1;
      color: #8a94a2; }
    .select__item.selectize-control .selectize-input input:-ms-input-placeholder {
      color: #8a94a2; }
  .select__item.selectize-control.plugin-disabled_search .selectize-input input {
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    width: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important; }
  .select__item.selectize-control.plugin-disabled_search .selectize-input-placeholder {
    color: #8a94a2; }
  .select__item.selectize-control.plugin-disabled_search .selectize-input-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .select__item.selectize-control.plugin-disabled_search .selectize-input > div + input + .selectize-input-placeholder {
    display: none; }
  .select__item.selectize-control .selectize-dropdown {
    border: none;
    border-radius: 0 0 20px 20px;
    -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
            box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
    color: #333;
    font-family: inherit;
    font-size: 14px;
    font-weight: inherit;
    line-height: 1.71;
    z-index: 2; }
  .select__item.selectize-control .selectize-dropdown-content {
    padding-top: 5px; }
    .select__item.selectize-control .selectize-dropdown-content .optgroup-header {
      font-weight: bold; }
  .select__item.selectize-control .selectize-dropdown [data-selectable] {
    padding: 8px 20px; }
  .select__item.selectize-control .selectize-dropdown .active {
    background-color: #f1f3f6;
    color: #333; }
    .select__item.selectize-control .selectize-dropdown .active:last-child {
      border-radius: 0 0 20px 20px; }
  .select.select--lg.dropdown-active,
  .select.select--lg .selectize-input.has-items {
    padding-top: 0;
    padding-left: 12px; }
  .select--md {
    height: 55px; }
    .select--md .select__item.selectize-control .selectize-input {
      height: 55px;
      font-size: 16px;
      line-height: 55px;
      padding-left: 25px;
      padding-right: 40px; }
    .select--md .select__item.selectize-control .selectize-input::after {
      right: 20px;
      z-index: 2; }
    .select--md .select__item.selectize-control .selectize-dropdown {
      font-size: 16px;
      line-height: 1.63; }
    .select--md .select__item.selectize-control .selectize-dropdown [data-selectable] {
      padding-left: 25px;
      padding-right: 25px; }
  .select--lg {
    height: 55px; }
    .select--lg .select__item.selectize-control .selectize-input {
      height: 55px;
      font-size: 16px;
      line-height: 55px;
      padding-left: 25px;
      padding-right: 40px; }
    .select--lg .select__item.selectize-control .selectize-input::after {
      right: 20px;
      z-index: 2; }
    .select--lg .select__item.selectize-control .selectize-dropdown {
      font-size: 16px;
      line-height: 1.63; }
    .select--lg .select__item.selectize-control .selectize-dropdown [data-selectable] {
      padding-left: 25px;
      padding-right: 25px; }
    @media (min-width: 768px) {
      .select--lg {
        height: 60px; }
        .select--lg .select__item.selectize-control .selectize-input {
          height: 60px;
          font-size: 16px;
          line-height: 60px;
          padding-left: 30px;
          padding-right: 45px; }
        .select--lg .select__item.selectize-control .selectize-input::after {
          right: 20px; }
        .select--lg .select__item.selectize-control .selectize-dropdown {
          font-size: 16px;
          line-height: 1.63; }
          .select--lg .select__item.selectize-control .selectize-dropdown-content {
            white-space: nowrap; }
        .select--lg .select__item.selectize-control .selectize-dropdown [data-selectable] {
          padding-left: 30px;
          padding-right: 30px; } }
  .select.has-error .select__item.selectize-control .selectize-input:not(.dropdown-active) {
    border-color: #e4007c; }
  .select.has-error.input--blue-background .select__item.selectize-control .selectize-input:not(.dropdown-active) {
    border-color: #cdd8e3; }

.ie .select__item.selectize-control .selectize-input input {
  font-size: 16px;
  line-height: 16px !important; }

.ie .select__item.selectize-control .selectize-input.not-full input {
  margin-top: 20px !important; }

.ie .select__item.selectize-control .selectize-input.has-items.focus input {
  margin-top: 20px !important; }

.tag {
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 14px;
  text-align: center;
  color: #333;
  font-weight: 300;
  display: inline-block;
  cursor: pointer;
  vertical-align: top; }
  .catalog-cinema__tags-item .tag {
    font-weight: 350; }
  .tag__text {
    display: inline-block;
    padding: 5px 13px 4px;
    background-color: transparent;
    color: #333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 2px solid #e5e9ee;
    border-radius: 4px;
    -webkit-transition-property: background-color, color, border-color;
    transition-property: background-color, color, border-color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
    :root:not(.mobile) .tag__text:hover {
      border-color: #00a8ff; }
    .tag[data-category] .tag__text {
      padding-left: 10px;
      padding-right: 10px; }
      .catalog-cinema__tags-item .tag[data-category] .tag__text {
        padding-left: 12px;
        padding-right: 11px; }
    .tag[data-category] .tag__checkbox:checked + .tag__text {
      color: #fff; }
    .tag[data-category="films"] .tag__checkbox:checked + .tag__text {
      background-color: #c6006b;
      border-color: #c6006b; }
    .tag[data-category="series"] .tag__checkbox:checked + .tag__text {
      background-color: #ffc200;
      border-color: #ffc200; }
    .tag[data-category="children"] .tag__checkbox:checked + .tag__text {
      background-color: #008ed7;
      border-color: #008ed7; }
    .tag[data-category="sport"] .tag__checkbox:checked + .tag__text {
      background-color: #82be00;
      border-color: #82be00; }
  body.user-is-tabbing .tag__checkbox:focus + .tag__text {
    border-color: #00a8ff; }
  .tag__checkbox:checked + .tag__text {
    background-color: #00a8ff;
    color: #fff;
    border-color: #00a8ff; }

.toggle {
  display: inline-block;
  position: relative;
  vertical-align: middle; }
  .toggle__input {
    left: -9999px;
    position: absolute; }
  .toggle__label {
    background-color: #f1f3f6;
    border-radius: 14px;
    display: block;
    height: 28px;
    position: relative;
    width: 48px; }
    .toggle__label::before {
      background-color: #00a8ff;
      border-radius: 50%;
      -webkit-box-shadow: 0 1px 1px 0 rgba(0, 69, 104, 0.2);
              box-shadow: 0 1px 1px 0 rgba(0, 69, 104, 0.2);
      content: "";
      height: 18px;
      left: 0;
      position: absolute;
      top: 5px;
      -webkit-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out;
      -webkit-transform: translateX(5px);
              transform: translateX(5px);
      width: 18px; }
      .toggle__input:checked + .toggle__label::before {
        -webkit-transform: translateX(25px);
                transform: translateX(25px); }
    .toggle__input:focus + .toggle__label {
      outline: 2px dotted #c6006b; }

@media (min-width: 768px) {
  .two-sided-toggle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

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

.two-sided-toggle__toggle {
  display: none; }
  @media (min-width: 768px) {
    .two-sided-toggle__toggle {
      background-color: #f1f3f6;
      border-radius: 14px;
      display: inline-block;
      margin: 0 20px;
      height: 28px;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      position: relative;
      vertical-align: middle;
      width: 48px; }
      body.user-is-tabbing .two-sided-toggle__input:focus ~ .two-sided-toggle__toggle {
        outline: 2px dotted #00a8ff; }
      .two-sided-toggle__toggle::before {
        background-color: #00a8ff;
        border-radius: 50%;
        -webkit-box-shadow: 0 1px 1px 0 rgba(0, 69, 104, 0.2);
                box-shadow: 0 1px 1px 0 rgba(0, 69, 104, 0.2);
        content: "";
        height: 18px;
        left: 0;
        position: absolute;
        top: 5px;
        -webkit-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
        width: 18px; }
        .two-sided-toggle__input:nth-child(1):checked ~ .two-sided-toggle__toggle::before {
          -webkit-transform: translateX(5px);
                  transform: translateX(5px); }
        .two-sided-toggle__input:nth-child(3):checked ~ .two-sided-toggle__toggle::before {
          -webkit-transform: translateX(25px);
                  transform: translateX(25px); } }

.two-sided-toggle__label {
  color: #333;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  min-width: 160px;
  padding: 24px 10px 21px;
  position: relative;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  vertical-align: middle; }
  :root:not(.mobile) .two-sided-toggle__label:hover {
    color: #00a8ff;
    cursor: pointer; }
  .two-sided-toggle__input:checked + .two-sided-toggle__label {
    pointer-events: none; }
    .two-sided-toggle__input:checked + .two-sided-toggle__label::before {
      background-color: #00a8ff;
      bottom: -1px;
      content: "";
      height: 2px;
      left: 0;
      position: absolute;
      width: 100%; }
  @media (min-width: 768px) {
    .two-sided-toggle__label {
      color: #7c90a9;
      font-size: 24px;
      font-weight: 500;
      min-width: 0;
      padding: 0; }
      .two-sided-toggle--non-abonent .two-sided-toggle__label {
        font-size: 16px; }
      .two-sided-toggle__label:nth-child(2) {
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0; }
        .two-sided-toggle__label:nth-child(2)::after {
          content: "";
          height: 18px;
          top: 3px;
          position: absolute;
          right: -43px;
          width: 18px;
          z-index: 1; }
      .two-sided-toggle__label:nth-child(4) {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; }
        .two-sided-toggle__label:nth-child(4)::before {
          content: "";
          height: 18px;
          top: 3px;
          position: absolute;
          left: -43px;
          width: 18px;
          z-index: 1; }
      .two-sided-toggle__input:checked + .two-sided-toggle__label {
        color: #00a8ff; }
        .two-sided-toggle__input:checked + .two-sided-toggle__label::before {
          display: none; } }

.accordion__list-item + .accordion__list-item {
  margin-top: 20px; }
  @media (min-width: 1230px) {
    .accordion__list-item + .accordion__list-item {
      margin-top: 50px; } }

.accordion__option {
  -webkit-box-shadow: 0 7px 50px 0 rgba(0, 69, 104, 0.1);
          box-shadow: 0 7px 50px 0 rgba(0, 69, 104, 0.1);
  display: block; }

.accordion__option-inner {
  padding: 20px;
  padding-top: 25px;
  text-align: center; }
  @media (min-width: 768px) {
    .accordion__option-inner {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 40px 24px 35px; } }
  @media (min-width: 1230px) {
    .accordion__option-inner {
      padding: 40px 24px 35px 40px; } }

.accordion__option-title {
  color: #333;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2; }
  @media (min-width: 768px) {
    .accordion__option-title {
      font-size: 24px;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }

.accordion__option-icon {
  fill: #00a8ff;
  height: 20px;
  margin: 16px auto 0;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  width: 20px;
  position: relative; }
  .accordion__option-icon svg {
    height: auto;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0; }
  @media (min-width: 768px) {
    .accordion__option-icon {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0;
      margin: 0;
      margin-right: 24px; } }
  .accordion__option--active .accordion__option-icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

.accordion__section {
  display: none;
  padding-top: 30px; }
  @media (min-width: 768px) {
    .accordion__section {
      padding-top: 40px; } }
  @media (min-width: 1230px) {
    .accordion__section {
      padding-top: 0; } }
  .accordion__section--active {
    display: block; }

.solid-btn {
  border-radius: 100px;
  color: #fff;
  fill: currentColor;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 10px 12px;
  -webkit-transition-property: color, background;
  transition-property: color, background;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  white-space: nowrap; }
  .solid-btn--pink {
    background-color: #e4007c; }
    :root:not(.mobile) .solid-btn--pink:hover {
      background-color: #c6006b; }
  .solid-btn--blue {
    background-color: #00a8ff; }
    :root:not(.mobile) .solid-btn--blue:not([disabled]):hover {
      background-color: #008ed7; }
  .solid-btn--light-blue {
    background-color: #2adeff; }
    :root:not(.mobile) .solid-btn--light-blue:hover {
      background-color: #28cbe9; }
  .solid-btn[disabled] {
    background-color: #d8d8d8; }
  .solid-btn--md {
    padding: 22px 20px 19px; }
  .solid-btn--lg {
    font-size: 14px;
    padding: 22px 20px 19px; }
    @media (min-width: 1230px) {
      .solid-btn--lg {
        font-size: 16px;
        padding: 23px 25px 21px; } }
  .solid-btn__arrow-right {
    height: 10px;
    margin-left: 10px;
    vertical-align: baseline;
    width: 19px; }
  .solid-btn__arrow-left {
    height: 10px;
    margin-right: 10px;
    vertical-align: baseline;
    width: 19px; }
  .solid-btn__show-more {
    margin-right: 12px; }

.radio {
  display: inline-block;
  position: relative;
  vertical-align: middle; }
  .radio__input {
    left: -9999px;
    position: absolute; }
  .radio__label {
    color: #000;
    min-height: 30px;
    text-align: left;
    padding-top: 6px;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    .radio__input:checked + .radio__label,
    .radio__input:not(:checked) + .radio__label {
      cursor: pointer;
      display: inline-block;
      font-family: Fedra Sans Pro LF, sans-serif;
      font-weight: 300;
      line-height: 1.3;
      padding-left: 30px;
      position: relative;
      vertical-align: middle; }
    :root:not(.mobile) .radio__label:hover {
      color: #00a8ff; }
    .radio__input[disabled] + .radio__label {
      cursor: default; }
    .radio__label::before {
      background-color: #fff;
      border: 2px solid #cdd8e3;
      border-radius: 50%;
      content: "";
      height: 28px;
      left: -2px;
      position: absolute;
      top: -2px;
      -webkit-transition: border 0.2s ease-out;
      transition: border 0.2s ease-out;
      width: 28px; }
      body.user-is-tabbing .radio__input:focus + .radio__label::before {
        outline: 2px dotted #00a8ff; }
    :root:not(.mobile) .radio__input:not(:checked) + .radio__label:hover::before {
      border-color: #00a8ff; }
    .radio__label::after {
      background-color: #00a8ff;
      border-radius: 50%;
      content: "";
      height: 16px;
      left: 6px;
      position: absolute;
      top: 6px;
      width: 16px;
      will-change: transform; }
      .radio__input:not(:checked) + .radio__label::after {
        opacity: 0;
        -webkit-transform: scale(0);
                transform: scale(0); }
      .radio__input:checked + .radio__label::after {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1); }
  .radio__label--sm {
    padding-top: 0; }
    .radio__label--sm::before {
      height: 18px;
      left: 0;
      position: absolute;
      top: 0;
      width: 18px; }
    .radio__label--sm::after {
      height: 8px;
      left: 7px;
      top: 7px;
      width: 8px; }
  .radio__text {
    font-size: 16px;
    padding-left: 14px; }
    .radio__label--sm .radio__text {
      padding-left: 5px; }
    @media (min-width: 768px) and (max-width: 1230px) {
      .radio__label--sm .radio__text {
        font-size: 13px; } }

.date-label {
  background-color: #eff5fa;
  border-radius: 100px;
  color: #7c90a9;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 15px 8px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap; }

.tab-options {
  display: inline-block;
  vertical-align: middle; }
  .tab-options__list {
    background-color: #fff;
    font-size: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap; }
  .tab-options__item {
    color: #333;
    display: inline-block;
    font-family: Fedra Sans Pro LF, sans-serif;
    font-size: 15px;
    line-height: 1;
    vertical-align: middle;
    position: relative; }
  .tab-options__tooltip {
    padding: 10px 15px;
    font-family: Fedra Sans Pro LF, sans-serif; }
  .tab-options__tooltip-description {
    font-weight: 200;
    font-size: 14px;
    line-height: 1.86;
    color: #7c90a9;
    text-align: center; }
  .tab-options__btn {
    border: 2px solid rgba(124, 144, 169, 0.1);
    color: inherit;
    display: block;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    outline: none;
    padding: 16px 15px 14px;
    -webkit-transition: background 0.2s ease-out, color 0.2s ease-out;
    transition: background 0.2s ease-out, color 0.2s ease-out; }
    .tab-options__item:first-child .tab-options__btn {
      border-radius: 4px 0 0 4px; }
    .tab-options__item:not(:first-child) .tab-options__btn {
      border-left: 0; }
    .tab-options__item:last-of-type .tab-options__btn {
      border-radius: 0 4px 4px 0; }
    :root:not(.mobile) .tab-options__btn:hover {
      color: #00a8ff; }
    .tab-options__btn--active {
      background-color: #00a8ff;
      border-color: #00a8ff;
      color: #fff;
      cursor: default; }
      :root:not(.mobile) .tab-options__btn--active:hover {
        color: #fff; }
    .tab-options--channel-selection .tab-options__btn {
      min-width: 150px; }
      @media (min-width: 768px) {
        .tab-options--channel-selection .tab-options__btn {
          min-width: 80px; } }
      @media (min-width: 1230px) {
        .tab-options--channel-selection .tab-options__btn {
          min-width: 80px; } }
    .tab-options--package-selection .tab-options__btn {
      min-width: 150px; }
      @media (min-width: 768px) {
        .tab-options--package-selection .tab-options__btn {
          min-width: 80px; } }
      @media (min-width: 1230px) {
        .tab-options--package-selection .tab-options__btn {
          min-width: 80px; } }

.multiple-select {
  position: relative; }
  .multiple-select.active .selectize-close {
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg); }
  .multiple-select .selectize-close {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 4;
    width: 16px;
    height: 16px;
    margin: 0;
    border: none;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iIzAwYThmZiI+PHBhdGggZD0iTTcgMnYxMmExIDEgMCAwIDAgMiAwVjJhMSAxIDAgMSAwLTIgMHoiLz48cGF0aCBkPSJNMiA5aDEyYTEgMSAwIDAgMCAwLTJIMmExIDEgMCAxIDAgMCAyeiIvPjwvc3ZnPg==) !important;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    cursor: pointer;
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg); }
  .multiple-select__item.selectize-control {
    border: transparent; }
    .multiple-select__item.selectize-control .selectize-input {
      background-color: #fff; }
      .multiple-select__item.selectize-control .selectize-input .item {
        width: auto;
        position: relative;
        min-width: 95px;
        padding: 6px 41px 5px 15px;
        margin-right: 10px;
        margin-bottom: 0;
        line-height: 26px;
        border-radius: 20.5px;
        background-color: rgba(0, 168, 255, 0.2);
        font-size: 15px;
        color: #000;
        display: inline-block;
        vertical-align: top;
        margin-top: 10px;
        text-overflow: clip; }
        .multiple-select__item.selectize-control .selectize-input .item.active {
          background-color: rgba(0, 168, 255, 0.2); }
      .multiple-select__item.selectize-control .selectize-input::after {
        display: none;
        content: none; }
      .multiple-select__item.selectize-control .selectize-input.dropdown-active .selectize-close {
        border: none;
        margin: -1px;
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg); }
    .multiple-select__item.selectize-control .selectize-dropdown .active {
      background-color: #fff; }
    .multiple-select__item.selectize-control.plugin-multiple_select_remove_button [data-value] {
      position: relative;
      padding-right: 24px !important; }
    .multiple-select__item.selectize-control.plugin-multiple_select_remove_button [data-value] .remove {
      border-left: 1px solid #d0d0d0;
      border-left-color: transparent !important;
      font-size: 0;
      position: relative;
      width: 16px;
      margin-left: 16px;
      margin-right: -10px;
      z-index: 1;
      top: 0;
      right: 0;
      bottom: 0;
      text-align: center;
      font-weight: 500;
      color: inherit;
      text-decoration: none;
      vertical-align: middle;
      display: inline-block;
      padding: 2px 0 0;
      border-radius: 0 2px 2px 0; }
      .multiple-select__item.selectize-control.plugin-multiple_select_remove_button [data-value] .remove::after {
        content: "";
        position: absolute;
        top: 6px;
        right: -2px;
        width: 16px;
        height: 16px;
        background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iIzAwYThmZiI+PHBhdGggZD0iTTcgMnYxMmExIDEgMCAwIDAgMiAwVjJhMSAxIDAgMSAwLTIgMHoiLz48cGF0aCBkPSJNMiA5aDEyYTEgMSAwIDAgMCAwLTJIMmExIDEgMCAxIDAgMCAyeiIvPjwvc3ZnPg==);
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg); }
    .multiple-select__item.selectize-control.plugin-multiple_select_remove_button .active .remove {
      border-left-color: #cacaca; }
    .multiple-select__item.selectize-control.plugin-multiple_select_remove_button .disabled .remove:hover {
      background: none; }
    .multiple-select__item.selectize-control.plugin-multiple_select_remove_button .disabled .remove {
      border-left-color: #fff; }
    .multiple-select__item.selectize-control.plugin-multiple_select_remove_button .remove-single {
      position: absolute;
      right: 28px;
      top: 6px;
      font-size: 23px; }
    .multiple-select__item.selectize-control.plugin-multiple_select_items_wrap {
      /*
                In order to make items disappear on the left when overflow
                the "direction" property is used on the container,
                but it is restored on children.
            */ }
      .multiple-select__item.selectize-control.plugin-multiple_select_items_wrap .selectize-input.has-items input {
        margin-left: 5px !important;
        width: 40px !important; }
      .multiple-select__item.selectize-control.plugin-multiple_select_items_wrap .selectize-items-wrap {
        background: transparent !important;
        display: inline-block;
        overflow: hidden;
        position: relative;
        margin: 0;
        padding: 0;
        border: 0;
        vertical-align: top; }
      .multiple-select__item.selectize-control.plugin-multiple_select_items_wrap .selectize-input.has-items .selectize-items-wrap {
        max-width: 350px;
        direction: rtl; }
        .multiple-select__item.selectize-control.plugin-multiple_select_items_wrap .selectize-input.has-items .selectize-items-wrap::before {
          content: "";
          position: absolute;
          top: 0;
          left: -12px;
          width: 25px;
          height: 100%;
          background: -webkit-gradient(linear, left top, right top, color-stop(50%, white), to(rgba(255, 255, 255, 0)));
          background: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0));
          z-index: 2; }
        .multiple-select__item.selectize-control.plugin-multiple_select_items_wrap .selectize-input.has-items .selectize-items-wrap .item {
          direction: ltr; }
  .multiple-select.select--lg.dropdown-active,
  .multiple-select.select--lg .selectize-input.has-items {
    padding-top: 0;
    padding-left: 12px; }

.ie .multiple-select__item.selectize-control.plugin-multiple_select_remove_button .remove {
  top: -13px; }
  .ie .multiple-select__item.selectize-control.plugin-multiple_select_remove_button .remove::after {
    top: 5px; }

.ie .multiple-select__item.selectize-control .selectize-input.not-full input {
  margin-top: 18px !important;
  top: 0; }

.ie .multiple-select__item.selectize-control .selectize-input input {
  top: 18px;
  font-size: 16px;
  line-height: 16px; }

.multiple-select-full.multiple-select .multiple-select__item.selectize-control.plugin-multiple_select_items_wrap .selectize-input.has-items .selectize-items-wrap {
  max-width: 250px; }
  @media (min-width: 768px) {
    .multiple-select-full.multiple-select .multiple-select__item.selectize-control.plugin-multiple_select_items_wrap .selectize-input.has-items .selectize-items-wrap {
      max-width: 650px; } }
  @media (min-width: 1000px) {
    .multiple-select-full.multiple-select .multiple-select__item.selectize-control.plugin-multiple_select_items_wrap .selectize-input.has-items .selectize-items-wrap {
      max-width: 710px; } }

.multiple-select-full.multiple-select .multiple-select__item.selectize-control.plugin-disabled_search .selectize-input > div + input + .selectize-input-placeholder {
  display: inline;
  pointer-events: none; }

.multiple-select-full.multiple-select .multiple-select__item.selectize-control.plugin-disabled_search .selectize-input.has-items > div + input + .selectize-input-placeholder {
  display: none; }

.multiple-select-option {
  position: relative;
  vertical-align: middle; }
  .multiple-select-option__text {
    position: relative;
    padding-top: 5px;
    padding-left: 40px;
    min-height: 30px;
    color: #000;
    line-height: 1.3;
    text-align: left;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    .multiple-select-option__text::before {
      border: 1px solid #cdd8e3;
      border-radius: 4px;
      content: "";
      height: 30px;
      left: -1px;
      position: absolute;
      top: -1px;
      -webkit-transition: border 0.2s ease-out;
      transition: border 0.2s ease-out;
      width: 30px; }
      .multiple-select-option.selected .multiple-select-option__text::before {
        background-color: #00a8ff; }
    .multiple-select-option.selected .multiple-select-option__text::after {
      border-bottom: 2px solid #fff;
      border-left: 2px solid #fff;
      content: "";
      height: 5px;
      left: 9px;
      position: absolute;
      top: 10px;
      width: 10px;
      -webkit-transform: rotate(-50deg) scale(1);
              transform: rotate(-50deg) scale(1); }
    .multiple-select-option__text:hover {
      color: #00a8ff; }
      .multiple-select-option__text:hover::before {
        border-color: #00a8ff; }

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

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

.animated-spin {
  -webkit-animation: spin-animated 1s linear infinite;
          animation: spin-animated 1s linear infinite; }

.preloader {
  position: relative; }
  .preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    background-image: url(../assets/images/elems/preloader.svg);
    background-repeat: no-repeat;
    background-position: 50%; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg); } }

.preloader-btn {
  position: relative;
  color: rgba(255, 255, 255, 0); }
  .preloader-btn:hover {
    cursor: default;
    color: rgba(255, 255, 255, 0); }
  .preloader-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .preloader-btn--light-blue:hover {
    background: inherit !important; }
  .preloader-btn--light-blue::before {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22%232adeff%22%20d%3D%22M3.108%2013.386H0v7.454l2.206-2.031a11.913%2011.913%200%200%200%209.716%205.016c6.085%200%2011.1-4.558%2011.836-10.439h-3.013a8.946%208.946%200%200%201-8.823%207.454%208.927%208.927%200%200%201-7.497-4.068l3.684-3.386h-5zM11.922-.028C5.845-.028.822%204.521.095%2010.411h3.013a8.935%208.935%200%200%201%208.814-7.454%208.93%208.93%200%200%201%207.643%204.286L16.4%2010.411h7.454V2.957L21.719%205.09a11.92%2011.92%200%200%200-9.797-5.117z%22/%3E%3C/svg%3E"); }
  .preloader-btn--blue:hover {
    background: inherit !important; }
  .preloader-btn--blue::before {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22%2300a8ff%22%20d%3D%22M3.108%2013.386H0v7.454l2.206-2.031a11.913%2011.913%200%200%200%209.716%205.016c6.085%200%2011.1-4.558%2011.836-10.439h-3.013a8.946%208.946%200%200%201-8.823%207.454%208.927%208.927%200%200%201-7.497-4.068l3.684-3.386h-5zM11.922-.028C5.845-.028.822%204.521.095%2010.411h3.013a8.935%208.935%200%200%201%208.814-7.454%208.93%208.93%200%200%201%207.643%204.286L16.4%2010.411h7.454V2.957L21.719%205.09a11.92%2011.92%200%200%200-9.797-5.117z%22/%3E%3C/svg%3E"); }
  .preloader-btn--pink:hover {
    background: inherit !important; }
  .preloader-btn--pink::before {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22%23e4007c%22%20d%3D%22M3.108%2013.386H0v7.454l2.206-2.031a11.913%2011.913%200%200%200%209.716%205.016c6.085%200%2011.1-4.558%2011.836-10.439h-3.013a8.946%208.946%200%200%201-8.823%207.454%208.927%208.927%200%200%201-7.497-4.068l3.684-3.386h-5zM11.922-.028C5.845-.028.822%204.521.095%2010.411h3.013a8.935%208.935%200%200%201%208.814-7.454%208.93%208.93%200%200%201%207.643%204.286L16.4%2010.411h7.454V2.957L21.719%205.09a11.92%2011.92%200%200%200-9.797-5.117z%22/%3E%3C/svg%3E"); }
  .preloader-btn--grey:hover {
    background: inherit !important; }
  .preloader-btn--grey::before {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22%237c90a9%22%20d%3D%22M3.108%2013.386H0v7.454l2.206-2.031a11.913%2011.913%200%200%200%209.716%205.016c6.085%200%2011.1-4.558%2011.836-10.439h-3.013a8.946%208.946%200%200%201-8.823%207.454%208.927%208.927%200%200%201-7.497-4.068l3.684-3.386h-5zM11.922-.028C5.845-.028.822%204.521.095%2010.411h3.013a8.935%208.935%200%200%201%208.814-7.454%208.93%208.93%200%200%201%207.643%204.286L16.4%2010.411h7.454V2.957L21.719%205.09a11.92%2011.92%200%200%200-9.797-5.117z%22/%3E%3C/svg%3E"); }
  .preloader-btn--white::before {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M3.108%2013.386H0v7.454l2.206-2.031a11.913%2011.913%200%200%200%209.716%205.016c6.085%200%2011.1-4.558%2011.836-10.439h-3.013a8.946%208.946%200%200%201-8.823%207.454%208.927%208.927%200%200%201-7.497-4.068l3.684-3.386h-5zM11.922-.028C5.845-.028.822%204.521.095%2010.411h3.013a8.935%208.935%200%200%201%208.814-7.454%208.93%208.93%200%200%201%207.643%204.286L16.4%2010.411h7.454V2.957L21.719%205.09a11.92%2011.92%200%200%200-9.797-5.117z%22/%3E%3C/svg%3E"); }

.header {
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none; }
  @media (max-width: 767px) {
    .header {
      border-bottom: 1px solid #f0f1f1; } }
  .header--sputnik-enter, .header--online-enter {
    border-bottom: 0; }
  .header--uplifted {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2; }
  .header--miserable {
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 69, 104, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 30px 0 rgba(0, 69, 104, 0.1), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); }
  .header__preamble {
    display: none; }
    @media (min-width: 1230px) {
      .header__preamble {
        display: block;
        border-bottom: 1px solid rgba(124, 144, 169, 0.2);
        padding-top: 19px;
        padding-bottom: 15px; } }
    @media (min-width: 1230px) {
      .header__preamble--white {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4); } }
  .header__preamble-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .header__top {
    padding-top: 16px;
    padding-bottom: 16px; }
    @media (min-width: 1230px) {
      .header__top {
        padding-top: 25px;
        padding-bottom: 20px; } }
    .header__top--grey {
      border-bottom: 1px solid #f0f1f1; }
    .header__top--white {
      border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
      @media (min-width: 1230px) {
        .header__top--white {
          border-bottom-color: transparent; } }
    @media (max-width: 767px) {
      .header--miserable .header__top {
        display: none; } }
  .header__container {
    width: 82.5%;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .header__container {
        width: 92%; } }
    @media (min-width: 1230px) {
      .header__container {
        width: 100%;
        max-width: 1170px; } }
  .header__top-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .header__menu-btn {
    padding: 4px 0 0;
    width: 24px;
    height: 24px;
    text-align: center;
    background-color: transparent;
    border: none;
    fill: white; }
    @media (min-width: 1230px) {
      .header__menu-btn {
        display: none; } }
    .header__menu-btn--grey {
      fill: #7c90a9; }
    .header__menu-btn--white {
      fill: #fff; }
    @media (min-width: 768px) {
      .header__menu-btn--mobile {
        display: none; } }
  .header__menu-btn .svg-icon {
    width: 20px;
    height: 16px;
    display: inline-block;
    vertical-align: baseline;
    fill: inherit; }
  .header__contact-btn {
    fill: white;
    display: inline-block;
    height: 24px;
    padding-top: 1px; }
    .header__contact-btn--grey {
      fill: #7c90a9; }
    .header__contact-btn--white {
      fill: #fff; }
    @media (min-width: 768px) {
      .header__contact-btn--mobile {
        display: none; } }
  .header__contact-btn .svg-icon {
    fill: inherit;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: baseline; }
  .header__profile-btn {
    fill: white;
    display: inline-block;
    height: 24px;
    border: none;
    background-color: transparent;
    padding: 1px 0 0;
    position: relative; }
    .header__profile-btn--grey {
      fill: #7c90a9; }
    .header__profile-btn--white {
      fill: #fff; }
    @media (min-width: 768px) {
      .header__profile-btn--mobile {
        display: none; } }
    .header__profile-btn::after {
      content: "";
      background-color: white;
      width: 20px;
      height: 20px;
      position: absolute;
      bottom: -38px;
      left: 0;
      -webkit-transform: translateY(-50%) rotate(45deg);
              transform: translateY(-50%) rotate(45deg);
      border-top: 1px solid #e3ebf2;
      border-left: 1px solid #e3ebf2;
      z-index: 6;
      border-radius: 2px;
      display: none; }
    .header__profile-btn.active::after {
      display: block; }
  .header__profile-btn .svg-icon {
    fill: inherit;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: baseline; }
  .header__search-btn {
    fill: white;
    padding: 1px 0 0;
    background-color: transparent;
    border: none;
    display: inline-block;
    height: 24px;
    margin-top: 2px; }
    :root:not(.mobile) .header__search-btn:hover {
      fill: #e4007c; }
    .header__search-btn--grey {
      fill: #7c90a9; }
    .header__search-btn--white,
    :root:not(.mobile) .header__search-btn--white:hover {
      fill: #fff; }
    @media (min-width: 768px) {
      .header__search-btn--mobile {
        display: none; } }
    .header__search-btn--desktop {
      display: none; }
      @media (min-width: 1230px) {
        .header__search-btn--desktop {
          display: inline-block;
          margin-left: 17px; } }
      @media (min-width: 1230px) {
        .header--online-enter .header__search-btn--desktop {
          margin-left: 0;
          margin-top: 0; } }
  .header__search-btn .svg-icon {
    fill: inherit;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: baseline;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
  .header .header__search-btn--desktop .svg-icon {
    width: 20px;
    height: 20px; }
  .header__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 768px) {
      .header__bottom {
        display: none; } }
    @media (max-width: 767px) {
      .header--uplifted .header__bottom {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .header__logo-link {
    display: inline-block; }
  .header__logo-icon {
    width: 190px;
    height: 48px; }
  .header__lk-logo-link {
    display: block;
    margin-right: auto; }
    .header--sputnik-enter .header__lk-logo-link--mobile,
    .header--online-enter .header__lk-logo-link--mobile {
      margin-left: 5px;
      margin-right: 0; }
    @media (min-width: 768px) {
      .header__lk-logo-link--mobile {
        display: none; } }
    .header__lk-logo-link--tablet {
      display: none; }
      @media (min-width: 768px) {
        .header__lk-logo-link--tablet {
          display: block;
          margin-left: 32px; }
          .header--miserable .header__lk-logo-link--tablet {
            margin-left: 10px; } }
      @media (min-width: 1230px) {
        .header__lk-logo-link--tablet {
          margin-left: 0; } }
    @media (min-width: 768px) {
      .header--sputnik-enter .header__lk-logo-link--tablet,
      .header--online-enter .header__lk-logo-link--tablet {
        display: block;
        margin-left: auto;
        margin-right: auto; } }
    @media (min-width: 1230px) {
      .header--sputnik-enter .header__lk-logo-link--tablet,
      .header--online-enter .header__lk-logo-link--tablet {
        margin-left: 0; } }
  .header__logo-mobile {
    width: 125px;
    height: 48px;
    vertical-align: bottom; }
    .header--sputnik-enter .header__logo-mobile,
    .header--online-enter .header__logo-mobile {
      width: 190px;
      height: 48px; }
  .header__logo-tablet {
    width: 190px;
    height: 48px;
    vertical-align: bottom; }
    @media (min-width: 1230px) {
      .header__logo-tablet {
        width: 202px;
        height: 51px; } }
  .header__mobile-notifications-wrap, .header__mobile-comparison-wrap {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (min-width: 768px) {
      .header__mobile-notifications-wrap, .header__mobile-comparison-wrap {
        display: none; } }
  .header__notification-wrap + .header__cart-wrap,
  .header__comparison-wrap + .header__cart-wrap {
    margin-left: 7px; }
    @media (min-width: 1230px) {
      .header__notification-wrap + .header__cart-wrap,
      .header__comparison-wrap + .header__cart-wrap {
        margin-left: 0;
        padding-left: 21px; } }
  .header__cart-wrap {
    margin-bottom: -5px; }
  @media (max-width: 1229px) {
    .header__cart-wrap--desktop {
      display: none; } }
  @media (min-width: 768px) and (max-width: 1230px) {
    .header--uplifted .header__notification-wrap {
      margin-right: 20px; } }
  .header__right-group {
    display: none; }
    @media (min-width: 768px) {
      .header__right-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    @media (min-width: 1230px) {
      .header__right-group {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
  .header__profile-label-wrap {
    margin-left: 16px; }
    @media (min-width: 1230px) {
      .header__profile-label-wrap {
        margin-left: 0;
        padding-left: 20px; } }
  .header__preamble-right-group {
    margin-left: auto;
    margin-top: -1px; }
  .header__quality-offer {
    display: inline-block;
    vertical-align: middle; }
  .header__phone-full {
    display: inline-block;
    vertical-align: middle; }
    * + .header__phone-full {
      margin-left: 47px; }
  .header__socials {
    display: inline-block;
    vertical-align: middle; }
    * + .header__socials {
      margin-left: 42px; }
  .header__desktop-navigation-wrap {
    display: none; }
    @media (min-width: 1230px) {
      .header__desktop-navigation-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-right: 20px;
        margin-bottom: 3px;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; }
        .header__desktop-navigation-wrap.hidden {
          opacity: 0; } }
    @media (min-width: 1230px) {
      .header--sputnik-enter .header__desktop-navigation-wrap,
      .header--online-enter .header__desktop-navigation-wrap {
        margin-bottom: 0; } }
  .header__notification-wrap, .header__comparison-wrap {
    position: relative; }
  .header__notification-btn, .header__comparison-btn {
    position: relative; }
    .header__notification-btn::before, .header__comparison-btn::before {
      content: "";
      background-color: white;
      width: 20px;
      height: 20px;
      position: absolute;
      bottom: -38px;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
              transform: translateX(-50%) translateY(-50%) rotate(45deg);
      border-top: 1px solid #e3ebf2;
      border-left: 1px solid #e3ebf2;
      z-index: 6;
      border-radius: 2px;
      display: none; }
    .header__notification-btn.active::before, .header__comparison-btn.active::before {
      display: block; }
  .header__notifications-dropdown {
    position: absolute;
    top: 64px;
    width: 300px;
    right: -61px;
    z-index: 5; }
    @media (min-width: 450px) {
      .header__notifications-dropdown {
        width: 410px; } }
    @media (min-width: 768px) {
      .header__notifications-dropdown {
        right: auto;
        left: -150px; } }
    @media (min-width: 1230px) {
      .header__notifications-dropdown {
        top: 71px;
        left: -60px; } }
    @media (max-width: 767px) {
      .header--uplifted .header__notifications-dropdown {
        right: -10px; } }
    @media (min-width: 768px) {
      .header--uplifted .header__notifications-dropdown {
        left: -344px; } }
  .header__profile-label-wrap {
    position: relative; }
    @media (min-width: 1230px) {
      .header__profile-label-wrap {
        width: 230px; } }
  .header__profile-label-btn::after {
    content: "";
    background-color: white;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -38px;
    left: 36px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid #e3ebf2;
    border-left: 1px solid #e3ebf2;
    z-index: 6;
    border-radius: 2px;
    display: none; }
  .header__profile-label-btn.active::after {
    display: block; }
  .header__profile-label-dropdown {
    position: absolute;
    top: 64px;
    width: 310px;
    left: -150px;
    z-index: 5; }
    @media (min-width: 1230px) {
      .header__profile-label-dropdown {
        top: 71px;
        left: -104px; } }
  .header__mobile-profile-label-wrap {
    position: relative; }
    @media (min-width: 768px) {
      .header__mobile-profile-label-wrap {
        display: none; } }
  .header__mobile-profile-label-dropdown {
    position: absolute;
    top: 40px;
    width: 300px;
    right: -18px;
    z-index: 5; }
    @media (min-width: 360px) {
      .header__mobile-profile-label-dropdown {
        width: 310px; } }
  .header__all-site-wrap {
    margin-right: 40px;
    position: relative; }
  .header__all-site-btn::after {
    content: "";
    background-color: white;
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: -48px;
    left: 35px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid #e3ebf2;
    border-left: 1px solid #e3ebf2;
    z-index: 6;
    border-radius: 2px;
    display: none; }
  .header__all-site-btn.active::after {
    display: block; }
  .header__all-site-dropdown {
    position: absolute;
    top: 53px;
    left: 0;
    width: 220px;
    z-index: 5; }
  .header__hidden-dropdowns-store {
    display: none; }
  @media (min-width: 768px) {
    .header--non-abonent-enter .header__enter-btn-wrap {
      margin-left: 16px; } }
  @media (min-width: 1230px) {
    .header--sputnik-enter .header__enter-btn-wrap,
    .header--non-abonent-enter .header__enter-btn-wrap,
    .header--online-enter .header__enter-btn-wrap {
      margin-left: 20px; } }
  @media (min-width: 768px) and (max-width: 1230px) {
    .header--non-abonent-enter .header__enter-btn {
      padding-top: 14px;
      padding-bottom: 14px; } }
  .header__enter-btn--white {
    fill: #fff; }
  .header__enter-btn--tablet {
    display: inline-block; }
    @media (min-width: 1230px) {
      .header__enter-btn--tablet {
        display: none; } }
  .header__enter-btn--desktop {
    min-width: 96px; }
    @media (max-width: 1229px) {
      .header__enter-btn--desktop {
        display: none; } }

@media (min-width: 1330px) and (max-width: 1340px) {
  .ie .header__container {
    width: 99%; } }

.ie .header__notification-btn svg,
.ie .header__comparison-btn svg {
  -ms-transform: translate(0, 0); }

.cart-btn {
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(124, 144, 169, 0.4);
  background-color: transparent;
  position: relative;
  fill: #e4007c;
  -webkit-transition-property: background-color, border-color;
  transition-property: background-color, border-color;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
  overflow: visible; }
  :root:not(.mobile) .cart-btn:hover {
    background-color: #e4007c;
    border-color: #e4007c;
    fill: white; }
    :root:not(.mobile) .cart-btn:hover::after {
      -webkit-box-shadow: 0 0 0 2px white;
              box-shadow: 0 0 0 2px white; }
  @media (min-width: 1230px) {
    .cart-btn {
      width: 55px;
      height: 55px; } }
  .cart-btn--white,
  :root:not(.mobile) .cart-btn--white:hover {
    background: transparent;
    fill: #fff;
    border-color: #fff; }
  .cart-btn[data-count]::after {
    content: attr(data-count);
    min-width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: calc(100% - 14px);
    color: white;
    line-height: 1.3;
    font-size: 10px;
    font-weight: 500;
    background-color: #e4007c;
    border-radius: 8px;
    padding: 1px 5px 1px 6px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 767px) {
      .cart-btn[data-count]::after {
        padding: 3px 6px; } }
  .cart-btn--cart-picker {
    height: 55px;
    width: 55px; }
    @media (max-width: 767px) {
      .cart-btn--cart-picker {
        border: 2px solid #e3ebf2;
        height: 40px;
        width: 40px; }
        .cart-btn--cart-picker::after {
          top: -5px; } }
    @media (min-width: 1230px) {
      .cart-btn--cart-picker {
        display: none; } }
  .cart-btn__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    fill: inherit; }
    @media (max-width: 767px) {
      .cart-btn--cart-picker .cart-btn__icon {
        width: 17px; } }

.profile-label {
  color: #333;
  display: inline-block;
  font-size: 16px;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-weight: 350;
  vertical-align: bottom;
  background-color: transparent;
  padding: 0;
  text-align: left; }
  .profile-label::before {
    content: attr(data-label);
    position: static;
    width: 48px;
    height: 48px;
    background-color: #e4007c;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 500;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
    @media (min-width: 1230px) {
      .profile-label::before {
        width: 55px;
        height: 55px; } }
  .profile-label__name {
    display: table-cell;
    width: 123px;
    vertical-align: middle;
    padding-left: 11px; }
    @media (min-width: 1230px) {
      .profile-label__name {
        width: 144px;
        padding-left: 15px;
        padding-bottom: 3px; } }
    .profile-label__name--white {
      color: #fff; }
  .profile-label__line {
    display: block; }

.ie button.profile-label {
  padding-bottom: 1px; }

.ie button.profile-label:active {
  -ms-transform: translate(-1px, -1px);
  padding-bottom: 1px; }

.location {
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 14px;
  color: #7c90a9; }
  .location--white {
    color: #fff; }
  .location__label {
    display: inline-block;
    vertical-align: middle;
    margin-top: 3px; }
    .location--white .location__label {
      opacity: 0.7; }
  .location__btn {
    border: none;
    background-color: transparent;
    display: inline-block;
    fill: currentColor;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #8a94a2;
    vertical-align: middle;
    padding: 0 7px;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
    :root:not(.mobile) .location__btn:hover {
      color: #e4007c; }
    .location--white .location__btn,
    :root:not(.mobile) .location--white .location__btn:hover {
      color: #fff; }
  .location__btn .svg-icon {
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-left: 4px;
    fill: inherit;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
  .location__btn-text {
    color: inherit;
    position: relative; }
    .location__btn-text::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      opacity: 0.3;
      background-image: repeating-linear-gradient(to right, #8a94a2 0, #8a94a2 3px, transparent 3px, transparent 4px);
      background-repeat: repeat-x; }
      .location--white .location__btn-text::after {
        background-image: repeating-linear-gradient(to right, #fff 0, #fff 3px, transparent 3px, transparent 4px);
        opacity: 0.5; }

.ie .location__label,
.edge .location__label {
  margin-top: 1px; }

.quality-offer {
  background-color: transparent;
  padding: 0;
  color: #7c90a9;
  fill: #8a94a2;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 14px;
  font-weight: 300;
  will-change: color;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms; }
  :root:not(.mobile) .quality-offer:hover {
    color: #e4007c;
    fill: #e4007c; }
  .quality-offer--white {
    color: #fff;
    fill: #fff; }
    :root:not(.mobile) .quality-offer--white:hover {
      color: #fff;
      fill: #fff; }
  .quality-offer .svg-icon {
    fill: inherit;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
  .quality-offer__text {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle; }

.phone-full {
  color: #8a94a2;
  display: inline-block;
  fill: currentColor;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding: 0;
  background-color: transparent;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
  vertical-align: top; }
  .phone-full--white {
    color: #fff; }
  .phone-full .svg-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    fill: inherit;
    margin-right: 5px;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
  .phone-full__text {
    display: inline-block;
    vertical-align: middle;
    color: inherit; }

.socials__link {
  display: inline-block;
  vertical-align: bottom;
  fill: #8a94a2;
  padding: 0;
  background-color: transparent; }
  :root:not(.moble) .socials__link:hover {
    fill: #e4007c; }
  .socials--white .socials__link,
  :root:not(.moble) .socials--white .socials__link:hover {
    fill: #fff; }
  .socials__link + .socials__link {
    margin-left: 23px; }

.socials .svg-icon {
  fill: inherit;
  width: 18px;
  height: 18px;
  display: inline-block;
  -webkit-transition-property: fill;
  transition-property: fill;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms; }

.pages-list {
  font-family: Fedra Sans Pro LF, sans-serif;
  font-weight: 300;
  font-size: 0;
  white-space: nowrap; }
  .pages-list--hidden {
    margin-left: 25px;
    position: relative; }
    .pages-list--hidden.hidden {
      position: absolute;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 1px;
      width: 1px;
      margin: 0;
      padding: 0;
      border: 0; }
  .pages-list__item {
    display: inline-block;
    position: relative;
    margin-left: 23px; }
    .pages-list__item.hidden {
      position: absolute;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 0;
      width: 0;
      margin: 0;
      padding: 0;
      border: 0; }
  .pages-list__item--hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: 0;
    padding: 0;
    border: 0; }
  .pages-list__link {
    font-size: 16px;
    color: #7c90a9;
    vertical-align: bottom;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
    :root:not(.mobile) .pages-list__link:hover {
      color: #e4007c; }
    .pages-list--white .pages-list__link,
    :root:not(.mobile) .pages-list--white .pages-list__link:hover {
      color: #fff; }
  .pages-list__btn {
    position: relative;
    font-size: 16px;
    font-weight: 300;
    color: #7c90a9;
    fill: currentColor;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
    background-color: transparent;
    vertical-align: bottom;
    overflow: visible; }
    .pages-list__btn::after {
      content: "";
      background-color: #fff;
      width: 15px;
      height: 15px;
      position: absolute;
      bottom: -46px;
      left: 12px;
      -webkit-transform: translateY(-50%) rotate(45deg);
              transform: translateY(-50%) rotate(45deg);
      border-top: 1px solid #e3ebf2;
      border-left: 1px solid #e3ebf2;
      z-index: 6;
      border-radius: 2px;
      display: none; }
    .pages-list__btn.active::after {
      display: block; }
    :root:not(.mobile) .pages-list__btn:hover {
      color: #e4007c; }
    .pages-list__btn .svg-icon {
      -webkit-transition-property: fill;
      transition-property: fill;
      margin-left: 5px; }
    .pages-list--white .pages-list__btn,
    :root:not(.mobile) .pages-list--white .pages-list__btn:hover {
      color: #fff; }
  .pages-list__dropdown {
    position: absolute;
    top: 51px;
    left: -32px;
    width: 220px;
    z-index: 5; }

.dropdown {
  display: block;
  background-color: white;
  -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
          box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
  border: 1px solid #e3ebf2;
  font-family: Fedra Sans Pro LF, sans-serif;
  text-align: left;
  border-radius: 3px; }
  .dropdown__title {
    display: block;
    padding: 29px 40px; }
  .dropdown__link {
    padding: 0 40px;
    display: block;
    background-color: transparent;
    will-change: background-color;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
    :root:not(.mobile) .dropdown__link:hover {
      background-color: #f7f7f7; }
      :root:not(.mobile) .dropdown__link:hover .dropdown__item-title {
        color: #00a8ff; }
      :root:not(.mobile) .dropdown__link:hover .dropdown__item-title::before {
        opacity: 0; }
  .dropdown__container {
    border-top: 1px solid #e5e9ee;
    padding: 25px 0; }
  .dropdown__item-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.38;
    color: #333;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
    .dropdown__item-title::before {
      content: '';
      position: absolute;
      top: 7px;
      left: -18px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #c6006b;
      opacity: 1;
      will-change: opacity;
      -webkit-transition-property: opacity;
      transition-property: opacity;
      -webkit-transition-duration: 150ms;
              transition-duration: 150ms; }
  .dropdown__item-description {
    font-size: 14px;
    line-height: 1.86;
    color: #7c90a9;
    font-weight: 300;
    max-height: 80px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; }
  .dropdown__item-title + .dropdown__item-description {
    margin-top: 6px; }
  .dropdown__btn-wrap {
    padding: 0 40px 10px;
    position: relative; }
  .dropdown__more-link {
    min-width: 133px; }

.profile-label-dropdown {
  display: block;
  background-color: white;
  -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
          box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
  border: 1px solid #e3ebf2;
  font-family: Fedra Sans Pro LF, sans-serif;
  text-align: left;
  border-radius: 3px;
  padding: 29px 40px; }
  .profile-label-dropdown__navigation {
    margin-top: 21px; }
  .profile-label-dropdown__title {
    display: block; }
  .profile-label-dropdown__item + .profile-label-dropdown__item {
    margin-top: 20px; }
  .profile-label-dropdown__link {
    color: #7c90a9;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
    :root:not(.mobile) .profile-label-dropdown__link:hover {
      color: #00a8ff; }
  .profile-label-dropdown__btn-wrap {
    margin-top: 20px;
    position: relative;
    padding-top: 20px;
    border-top: 1px solid #e3ebf2; }
  .profile-label-dropdown__exit-btn {
    display: inline-block;
    padding: 0;
    background-color: transparent;
    border: none;
    color: #7c90a9;
    font-weight: 300; }
    :root:not(.mobile) .profile-label-dropdown__exit-btn:hover {
      color: #00a8ff; }

.mobile-menu-overlay {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  height: 0;
  overflow: hidden;
  opacity: 0;
  will-change: opacity;
  -webkit-transition-property: height, opacity;
  transition-property: height, opacity;
  -webkit-transition-duration: 0ms, 150ms;
          transition-duration: 0ms, 150ms;
  -webkit-transition-delay: 150ms, 0ms;
          transition-delay: 150ms, 0ms; }
  .mobile-menu-overlay.active {
    height: 100vh;
    opacity: 1;
    -webkit-transition-property: height, opacity;
    transition-property: height, opacity;
    -webkit-transition-delay: 0ms, 0ms;
            transition-delay: 0ms, 0ms; }
  @media (min-width: 1230px) {
    .mobile-menu-overlay {
      display: none; } }

.mobile-menu {
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.42857;
  position: fixed;
  z-index: 11;
  height: 100vh;
  overflow-y: auto;
  background-color: white;
  width: 100%;
  max-width: 320px;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  will-change: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out; }
  .mobile-menu.active {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  @media (min-width: 1230px) {
    .mobile-menu {
      display: none; } }
  .mobile-menu__head {
    height: 80px;
    padding-top: 28px;
    background-color: #00a8ff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .mobile-menu__container {
    padding: 0 20px 0 32px; }
  .mobile-menu__head-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .mobile-menu__close-btn {
    fill: white;
    display: inline-block;
    vertical-align: bottom;
    padding: 0;
    border: 0;
    background-color: transparent; }
  .mobile-menu__close-btn .svg-icon {
    fill: inherit;
    display: inline-block;
    vertical-align: bottom;
    width: 24px;
    height: 24px; }
  .mobile-menu__head-right-section {
    margin-left: auto; }
  .mobile-menu__call-link {
    fill: white;
    display: inline-block;
    vertical-align: bottom; }
  .mobile-menu__call-link .svg-icon {
    fill: inherit;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: bottom; }
  .mobile-menu__search-btn {
    fill: white;
    display: inline-block;
    vertical-align: bottom;
    padding: 0;
    border: 0;
    background-color: transparent; }
  .mobile-menu__search-btn .svg-icon {
    fill: inherit;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: bottom; }
  .mobile-menu__call-link + .mobile-menu__search-btn {
    margin-left: 40px; }
  .mobile-menu__section + .mobile-menu__section {
    border-top: 1px solid #e5e9ee; }
  .mobile-menu__all-site-wrap {
    padding-bottom: 22px;
    padding-top: 23px; }
  .mobile-menu__region-wrap {
    padding-top: 22px;
    padding-bottom: 16px; }
  .mobile-menu__region-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.33;
    color: #8a94a2;
    text-transform: uppercase;
    display: block; }
  .mobile-menu__region-btn {
    background-color: transparent;
    padding: 4px 0;
    color: #00a8ff;
    fill: currentColor;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%; }
  .mobile-menu__region-btn .svg-icon {
    fill: inherit;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: auto; }
  .mobile-menu__navigation-wrap {
    padding-top: 24px;
    padding-bottom: 30px; }
  .mobile-menu__nav-item + .mobile-menu__nav-item {
    margin-top: 24px; }
  .mobile-menu__nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.38;
    color: #333; }
  .mobile-menu__nav-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: transparent;
    padding: 0;
    width: 100%;
    font-size: 15px;
    line-height: 1.73;
    color: #333;
    text-align: left;
    font-weight: 300;
    fill: #00a8ff; }
  .mobile-menu__nav-btn .svg-icon {
    fill: inherit;
    width: 16px;
    height: 16px;
    margin-left: auto; }
  .mobile-menu__nav-btn.active .svg-icon {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms; }
  .mobile-menu__all-site .mobile-menu__nav-btn {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.29; }
  .mobile-menu__add-menu-list {
    padding-top: 15px;
    padding-bottom: 15px;
    display: none; }
  .mobile-menu__all-site .mobile-menu__add-menu-list {
    padding-bottom: 0; }
  .mobile-menu__add-menu-item + .mobile-menu__add-menu-item {
    margin-top: 10px; }
  .mobile-menu__add-menu-link {
    display: inline-block;
    font-size: 14px;
    line-height: 1.86;
    text-align: left;
    color: #7c90a9;
    font-weight: 300; }
  .mobile-menu__evaluation {
    padding-top: 20px;
    padding-bottom: 20px; }
  .mobile-menu__social {
    padding-left: 18px;
    padding-top: 24px;
    padding-bottom: 24px; }

.socials-rainbow {
  font-size: 0; }
  .socials-rainbow__link {
    display: inline-block;
    vertical-align: bottom;
    padding: 0;
    background-color: transparent; }
    .socials-rainbow__link + .socials-rainbow__link {
      margin-left: 50px; }
    .socials-rainbow--footer .socials-rainbow__link + .socials-rainbow__link {
      margin-left: 10px; }
  .socials-rainbow .svg-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }

.search {
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.42857; }
  .search__container {
    width: 100%;
    padding-left: 20px;
    padding-right: 15px; }
    @media (min-width: 768px) {
      .search__container {
        padding-left: 0;
        padding-right: 0;
        width: 89.0625%;
        margin-left: auto;
        margin-right: auto; } }
    @media (min-width: 1230px) {
      .search__container {
        width: 1170px; } }
  .search__head {
    background-color: white;
    height: 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 24px; }
    @media (min-width: 768px) {
      .search__head {
        height: 100px; } }
  .search__head-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .search__form {
    display: inline-block;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .search__field {
    display: inline-block;
    width: calc(100% - 40px);
    color: #333;
    font-size: 16px;
    font-weight: 300; }
    @media (min-width: 768px) {
      .search__field {
        width: calc(100% - 150px);
        height: 50px;
        font-size: 20px; } }
  .search__submit-btn {
    display: inline-block;
    padding: 0;
    background-color: transparent;
    border: 0;
    fill: #8a94a2;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: 250ms;
            transition-duration: 250ms; }
    :root:not(.mobile) .search__submit-btn:hover {
      background-color: #008ed7; }
    @media (min-width: 768px) {
      .search__submit-btn {
        color: white;
        height: 55px;
        width: 120px;
        border-radius: 100px;
        background-color: #00a8ff; } }
  .search__submit-btn .svg-icon {
    fill: inherit;
    width: 24px;
    height: 24px; }
    @media (min-width: 768px) {
      .search__submit-btn .svg-icon {
        display: none; } }
  .search__submit-btn-text {
    display: none; }
    @media (min-width: 768px) {
      .search__submit-btn-text {
        display: inline; } }
  .search__close-btn {
    display: inline-block;
    padding: 0;
    background-color: transparent;
    border: 0;
    fill: #c6006b; }
    @media (min-width: 768px) {
      .search__close-btn {
        width: 55px;
        height: 55px;
        overflow: hidden;
        border: 2px solid #e5e9ee;
        border-radius: 50%; } }
    :root:not(.mobile) .search__close-btn:hover .svg-icon {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
  .search__close-btn .svg-icon {
    fill: inherit;
    width: 24px;
    height: 24px;
    padding: 6.5px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 250ms;
            transition-duration: 250ms; }
  .search__body {
    border-top: 1px solid #e5e9ee;
    max-height: calc(100vh - 80px);
    overflow: auto; }
  .search__result-list {
    padding-top: 10px;
    padding-bottom: 20px;
    background-color: white; }
    @media (min-width: 768px) {
      .search__result-list {
        padding-top: 30px;
        padding-bottom: 50px; } }
  .search__result-item {
    padding-top: 15px;
    padding-bottom: 12px; }
  .search__result-link {
    display: block;
    font-size: 16px;
    text-align: left;
    color: #333;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
    @media (min-width: 768px) {
      .search__result-link {
        font-size: 20px;
        display: inline-block; } }
    :root:not(.mobile) .search__result-link:hover {
      color: #00a8ff; }
  .search__result-title {
    display: block; }
  .search__result-type {
    display: block;
    font-size: 14px;
    color: #7c90a9;
    margin-top: 5px; }
  .search ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 16px;
    color: #7c90a9;
    font-weight: 300; }
    @media (min-width: 768px) {
      .search ::-webkit-input-placeholder {
        font-size: 20px; } }
  .search ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 16px;
    color: #7c90a9;
    font-weight: 300; }
    @media (min-width: 768px) {
      .search ::-moz-placeholder {
        font-size: 20px; } }
  .search :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 16px;
    color: #7c90a9;
    font-weight: 300; }
    @media (min-width: 768px) {
      .search :-ms-input-placeholder {
        font-size: 20px; } }
  .search :-moz-placeholder {
    /* Firefox 18- */
    font-size: 16px;
    color: #7c90a9;
    font-weight: 300; }
    @media (min-width: 768px) {
      .search :-moz-placeholder {
        font-size: 20px; } }

.location-selection {
  font-family: Fedra Sans Pro LF, sans-serif; }
  .location-selection__head {
    background-color: white; }
  .location-selection__mobile-header {
    background-color: #00a8ff;
    height: 56px;
    padding-top: 18px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 1230px) {
      .location-selection__mobile-header {
        display: none; } }
  .location-selection__container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px; }
    @media (min-width: 768px) {
      .location-selection__container {
        padding-left: 0;
        padding-right: 0;
        width: 89.0625%;
        margin-left: auto;
        margin-right: auto; } }
    @media (min-width: 1230px) {
      .location-selection__container {
        width: 1170px; } }
  .location-selection__back-btn {
    color: white;
    display: inline-block;
    vertical-align: bottom;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.29;
    background-color: transparent;
    padding: 0;
    border: 0;
    fill: currentColor; }
    @media (min-width: 768px) {
      .location-selection__back-btn {
        font-size: 16px; } }
  .location-selection__back-btn .svg-icon {
    width: 16px;
    height: 16px;
    fill: inherit;
    margin-right: 20px;
    margin-top: -1px; }
  .location-selection__search-wrap {
    padding-top: 30px;
    padding-bottom: 15px;
    background-color: white; }
  .location-selection__form {
    width: calc(100% + 20px);
    margin-left: -10px;
    position: relative; }
    @media (min-width: 480px) {
      .location-selection__form {
        width: 100%;
        margin-left: 0; } }
  .location-selection__field {
    display: inline-block;
    width: 100%;
    padding-right: 60px; }
  .location-selection__submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    padding: 0;
    border: 0;
    fill: #8a94a2;
    height: 100%;
    width: 55px; }
    :root:not(.mobile) .location-selection__submit-btn:hover {
      fill: #c6006b; }
  .location-selection__submit-btn .svg-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    fill: inherit;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
    margin-right: 12px;
    margin-top: 1px;
    margin-left: 1px; }
  .location-selection__results {
    background-color: white;
    max-height: calc(100vh - 56px - 100px);
    overflow-y: auto; }
  .location-selection__result-list {
    padding-top: 15px;
    padding-bottom: 30px; }
    @media (min-width: 600px) {
      .location-selection__result-list {
        -webkit-column-count: 2;
                column-count: 2; } }
    @media (min-width: 768px) {
      .location-selection__result-list {
        -webkit-column-count: 3;
                column-count: 3; } }
    @media (min-width: 1230px) {
      .location-selection__result-list {
        -webkit-column-count: 4;
                column-count: 4;
        -webkit-column-gap: 13px;
                column-gap: 13px; } }
  .location-selection__result-item {
    padding-left: 30px;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto; }
    .location-selection__result-item::before {
      content: attr(data-title);
      display: inline-block;
      color: #00a8ff;
      text-transform: uppercase;
      font-size: 18px;
      font-weight: 500;
      position: absolute;
      left: 0;
      top: 8px; }
  .location-selection__region-link {
    font-family: Fedra Sans Pro LF, sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 300;
    display: block;
    line-height: 40px; }
    .location-selection__region-link.active {
      color: #008ed7; }
      :root:not(.mobile) .location-selection__region-link.active:hover {
        cursor: default;
        color: #008ed7; }
    :root:not(.mobile) .location-selection__region-link:hover {
      color: #00a8ff; }

.support-callback {
  background-color: #fff;
  height: 100%; }
  @media (min-width: 1230px) {
    .support-callback {
      display: none; } }
  .support-callback__header {
    background-color: #00a8ff;
    height: 56px;
    padding-top: 18px; }
    @media (min-width: 768px) {
      .support-callback__header {
        height: 80px;
        padding-top: 28px; } }
  .support-callback__body {
    padding-top: 45px; }
    @media (max-width: 767px) {
      .support-callback__body {
        text-align: center; } }
    @media (min-width: 768px) {
      .support-callback__body {
        padding-top: 75px; } }
  .support-callback__container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px; }
    @media (min-width: 768px) {
      .support-callback__container {
        padding-left: 40px;
        padding-right: 40px; } }
  .support-callback__back-btn {
    color: #fff;
    display: inline-block;
    vertical-align: bottom;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.29;
    background-color: transparent;
    padding: 0;
    border: 0;
    fill: currentColor; }
    @media (min-width: 768px) {
      .support-callback__back-btn {
        font-size: 16px; } }
  .support-callback__back-btn .svg-icon {
    width: 16px;
    height: 16px;
    fill: inherit;
    margin-right: 20px;
    margin-top: -1px; }
  .support-callback__phone {
    margin-bottom: 45px; }
    @media (min-width: 768px) {
      .support-callback__phone {
        margin-bottom: 70px; } }
  .support-callback__phone-value {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1; }
    @media (min-width: 768px) {
      .support-callback__phone-value {
        font-size: 36px; } }
  .support-callback__phone-note {
    color: #7c90a9;
    display: block;
    line-height: 1;
    margin-top: 16px; }
    @media (min-width: 768px) {
      .support-callback__phone-note {
        margin-top: 18px; } }
  @media (max-width: 767px) {
    .support-callback__form {
      padding-left: 10px;
      padding-right: 10px; } }
  .support-callback__form-title {
    margin-bottom: 26px; }
    @media (min-width: 768px) {
      .support-callback__form-title {
        margin-bottom: 18px; } }
  .support-callback__field:not(:last-child) {
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .support-callback__field:not(:last-child) {
        margin-bottom: 24px; } }
  .support-callback__input {
    max-width: 330px; }
  .support-callback__submit-btn {
    margin-top: 15px;
    min-width: 260px; }
    @media (min-width: 768px) {
      .support-callback__submit-btn {
        margin-top: 5px;
        min-width: 217px; } }

.form {
  padding: 10px;
  background-color: white;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1; }
  @media (min-width: 768px) {
    .form {
      width: 630px;
      padding: 30px;
      border-radius: 4px; } }
  @media (min-width: 1230px) {
    .form {
      width: 830px; } }
  .form__form-body {
    padding-bottom: 30px; }
  .form__title {
    max-width: calc(100% - 60px); }
  .form__header {
    position: relative;
    margin-bottom: 25px;
    margin-top: 20px;
    text-align: center; }
    @media (min-width: 768px) {
      .form__header {
        margin-top: 0;
        text-align: left; } }
  .form__close {
    position: absolute;
    right: -5px;
    top: -33px; }
    @media (min-width: 768px) {
      .form__close {
        top: 0;
        right: 0; } }
    .form__close svg {
      fill: #97a0ac; }
  .form__description {
    line-height: 1.73;
    font-size: 15px; }
  .form__description p + p {
    margin-top: 7px; }
  * + .form__description {
    margin-top: 20px; }
  .form__title + .form__itself,
  .form__description + .form__itself {
    margin-top: 40px; }
  .form__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .form__line + .form__line {
      margin-top: 30px; }
      @media (max-width: 767px) {
        .form__line + .form__line {
          margin-top: 10px; } }
    .form__line--has-middle-dash {
      position: relative; }
      .form__line--has-middle-dash::before {
        content: '';
        background-color: #333;
        width: 10px;
        height: 1px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        display: none; }
        @media (min-width: 768px) {
          .form__line--has-middle-dash::before {
            display: inline-block; } }
  .form__error {
    display: none;
    font-size: 14px;
    line-height: 1.86;
    color: #e4007c;
    text-align: center; }
    @media (min-width: 768px) {
      .form__error {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 100%; } }
    .form__error.active {
      display: block; }
  .form__item {
    display: inline-block;
    width: 100%;
    position: relative; }
    .form__item + .form__item {
      margin-top: 30px; }
      @media (max-width: 767px) {
        .form__item + .form__item {
          margin-top: 10px; } }
    @media (min-width: 768px) {
      :root .form__item--sm {
        width: calc((100% - 30px) / 3);
        margin-top: 0; } }
    @media (min-width: 1230px) {
      :root .form__item--sm {
        width: calc((100% - 30px * 2) / 3); } }
    @media (min-width: 1230px) {
      :root .form__item--sm:nth-of-type(n+3) {
        margin-top: 0; } }
    @media (min-width: 768px) {
      :root .form__item--md {
        width: calc((100% - 30px) / 2);
        margin-top: 0; } }
  @media (min-width: 1230px) {
    .form__reminder-field {
      display: inline-block;
      width: 97%;
      vertical-align: middle; } }
  @media (min-width: 1230px) {
    .form__reminder-hint {
      width: 1%; } }
  @media (max-width: 767px) {
    .form__item.form__checkbox {
      margin-top: 20px; } }
  .form__date-input {
    background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2048.1%20%2847250%29%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3Eicon%2Fcalendar%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Symbols%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22icon%2Fcalendar%22%20fill%3D%22%237C90A9%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M20.335%2C22%20L3.665%2C22%20C2.74666667%2C22%202%2C21.2533333%202%2C20.335%20L2%2C5.33166667%20C2%2C4.41333333%202.74666667%2C3.66666667%203.665%2C3.66666667%20L20.335%2C3.66666667%20C21.2533333%2C3.66666667%2022%2C4.41333333%2022%2C5.33166667%20L22%2C20.335%20C22%2C21.2533333%2021.2533333%2C22%2020.335%2C22%20Z%20M20.3333333%2C5.33166667%20L3.665%2C5.33333333%20L3.66666667%2C20.335%20L20.3358333%2C20.3333333%20L20.3333333%2C5.33166667%20Z%20M21.1666667%2C10.6666667%20L2.83333333%2C10.6666667%20C2.37333333%2C10.6666667%202%2C10.2933333%202%2C9.83333333%20C2%2C9.37333333%202.37333333%2C9%202.83333333%2C9%20L21.1666667%2C9%20C21.6275%2C9%2022%2C9.37333333%2022%2C9.83333333%20C22%2C10.2933333%2021.6275%2C10.6666667%2021.1666667%2C10.6666667%20Z%20M17.1633333%2C7%20C16.7024999%2C7%2016.3299999%2C6.62666667%2016.3299999%2C6.16666667%20L16.3299999%2C2.83333333%20C16.3299999%2C2.37333333%2016.7024999%2C2%2017.1633333%2C2%20C17.6241666%2C2%2017.9966666%2C2.37333333%2017.9966666%2C2.83333333%20L17.9966666%2C6.16666667%20C17.9966666%2C6.62666667%2017.6241666%2C7%2017.1633333%2C7%20Z%20M6.83333333%2C7%20C6.37333333%2C7%206%2C6.62666667%206%2C6.16666667%20L6%2C2.83333333%20C6%2C2.37333333%206.37333333%2C2%206.83333333%2C2%20C7.29333333%2C2%207.66666667%2C2.37333333%207.66666667%2C2.83333333%20L7.66666667%2C6.16666667%20C7.66666667%2C6.62666667%207.29333333%2C7%206.83333333%2C7%20Z%22%20id%3D%22Shape%22%20fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Ctext%20id%3D%227%22%20font-family%3D%22FedraSansPro-BoldLF%2C%20Fedra%20Sans%20Pro%20LF%22%20font-size%3D%2210%22%20font-weight%3D%22bold%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ctspan%20x%3D%2210%22%20y%3D%2219%22%3E7%3C%2Ftspan%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Ftext%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
    background-position: 94% 50%;
    background-repeat: no-repeat;
    background-size: auto; }
  .form__condition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px; }
  .form__message {
    margin-top: 30px;
    fill: #00a8ff;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (min-width: 768px) {
      .form__message {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    .form__message svg {
      margin-top: 2px; }
    .form__message-text {
      margin-left: 5px;
      font-size: 16px;
      line-height: 1.38;
      font-weight: 500; }
  .form__form {
    padding-bottom: 30px; }
  .form__form-footer {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px; }
    @media (min-width: 768px) {
      .form__form-footer {
        text-align: left; } }
    .form__form-footer::after {
      content: '';
      position: absolute;
      top: 0;
      width: calc(100% + 230px);
      left: -30px;
      height: 1px;
      background-color: rgba(0, 69, 104, 0.1); }
      @media (min-width: 768px) {
        .form__form-footer::after {
          width: calc(100% + 160px);
          left: -70px; } }
  .form__form-footer-btn {
    width: 260px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .form__form-footer-btn {
        width: 180px;
        margin-bottom: 0;
        display: inline-block; } }
    .form__form-footer-btn + .form__form-footer-btn {
      margin-top: 20px; }
      @media (min-width: 768px) {
        .form__form-footer-btn + .form__form-footer-btn {
          margin-top: 0; } }
  .form__submit-btn {
    width: 260px; }
    @media (min-width: 768px) {
      .form__submit-btn {
        width: 180px; } }
  .form__close-btn {
    fill: #8a94a2;
    display: inline-block;
    vertical-align: bottom;
    padding: 0;
    border: 0;
    background-color: transparent;
    position: absolute;
    top: 10px;
    right: 10px; }
    @media (min-width: 768px) {
      .form__close-btn {
        top: 30px;
        right: 30px; } }
  .form__line-title {
    display: inline-block;
    line-height: 1.73;
    font-size: 15px;
    margin-bottom: 7px; }
  .form__checkbox-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: 37px; }
  .form__close-btn .svg-icon {
    fill: inherit;
    display: inline-block;
    vertical-align: bottom;
    width: 24px;
    height: 24px; }
  .form__checkbox {
    margin-top: 30px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .form__checkbox--mrt {
      margin-top: 0; }
    .form__checkbox--mrb {
      margin-bottom: 30px; }
    .form__checkbox-text {
      margin-left: 16px;
      margin-top: 2px; }
  .form__tooltip {
    padding: 7px 20px;
    font-family: Fedra Sans Pro LF, sans-serif; }
  .form__tooltip-description {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #7c90a9; }
  .form__hint {
    display: inline-block;
    vertical-align: middle;
    fill: #7c90a9;
    margin-left: 6px; }
    @media (max-width: 1229px) {
      .form__hint {
        display: none; } }
    .form__hint--mrt {
      margin-top: 3px; }
    @media (max-width: 767px) {
      .form__hint--special {
        position: absolute;
        top: 32%;
        right: -20px; } }
  .form__step {
    margin-bottom: 30px; }
    .form__step:last-of-type {
      margin-bottom: 0; }
  .form--activation {
    padding-bottom: 0; }
    @media (max-width: 767px) {
      .form--activation {
        padding: 26px 28px 0; } }
    @media (min-width: 768px) {
      .form--activation {
        width: 768px; } }
    @media (min-width: 992px) {
      .form--activation {
        width: 830px; } }
    .form--activation-title {
      max-width: 100%;
      margin-bottom: 15px;
      text-align: center; }
      @media (min-width: 768px) {
        .form--activation-title {
          margin-bottom: 30px;
          text-align: left; } }
    @media (min-width: 768px) {
      .form--activation .textarea {
        height: 60px; } }
  .form--check-card {
    max-width: 630px;
    height: 100%;
    padding: 26px 26px 0; }
    @media (max-width: 767px) {
      .form--check-card .form__form-footer {
        text-align: center; } }
    @media (min-width: 768px) {
      .form--check-card .form__form-footer-btn-action {
        width: 210px;
        margin-left: 30px; } }
  .form--change-device {
    height: 100%;
    padding: 26px 26px 0; }
    @media (max-width: 767px) {
      .form--change-device .form__form-footer {
        width: 100%; } }
  .form .flatpickr-calendar {
    top: calc(100% + 20px) !important;
    left: -5px !important; }
    @media (min-width: 400px) {
      .form .flatpickr-calendar {
        left: 0 !important; } }
  .form .flatpickr-day.today {
    border-color: transparent;
    background-color: transparent;
    color: #00a8ff; }
  .form .flatpickr-month {
    height: 45px;
    padding-top: 7px;
    border-bottom: 1px solid #e3e9ef; }
  .form .flatpickr-prev-month,
  .form .flatpickr-next-month {
    top: 6px; }
  .form .flatpickr-current-month {
    font-size: 15px;
    font-weight: 300; }
  .form .flatpickr-current-month span.cur-month {
    font-weight: inherit; }
  .form .flatpickr-month svg {
    fill: #00a8ff; }
  .form .flatpickr-day:hover {
    color: inherit;
    background-color: #eff5fa;
    border-color: transparent; }
  .form .flatpickr-day.selected {
    background-color: #eff5fa;
    color: inherit;
    border-color: transparent; }
  .form .flatpickr-weekdays {
    height: 32px;
    padding-top: 9px; }
  .form .flatpickr-weekday {
    color: #00a8ff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300; }
  .form .flatpickr-day {
    font-weight: inherit; }
  .form__error-item {
    display: block;
    color: #c6006b;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5; }
    .form__error-item:last-of-type {
      margin-bottom: 25px; }

.form--field-search-application-filter {
  border-bottom: 1px solid rgba(124, 144, 169, 0.1);
  padding-bottom: 30px;
  width: 100%; }
  @media (max-width: 767px) {
    .form--field-search-application-filter {
      padding-left: 20px;
      padding-right: 20px; } }
  @media (min-width: 768px) {
    .form--field-search-application-filter {
      padding-bottom: 40px; } }
  @media (min-width: 1230px) {
    .form--field-search-application-filter {
      padding-bottom: 50px; } }
  @media (max-width: 767px) {
    .form--field-search-application-filter .form__item + .form__item {
      margin-top: 25px; } }
  @media (max-width: 767px) {
    .form--field-search-application-filter .form__line + .form__line {
      margin-top: 25px; } }
  .form--field-search-application-filter .form__item--sm {
    width: 100%; }
    @media (min-width: 768px) and (max-width: 1229px) {
      .form--field-search-application-filter .form__item--sm {
        width: calc((100% - 30px) / 2); } }
    @media (min-width: 1230px) {
      .form--field-search-application-filter .form__item--sm {
        width: 255px; } }
  @media (min-width: 768px) and (max-width: 1229px) {
    .form--field-search-application-filter .form__item--md:last-of-type {
      margin-top: 30px; } }
  @media (min-width: 768px) and (max-width: 1229px) {
    .form--field-search-application-filter .form__item--md {
      width: 100%; } }
  .form--field-search-application-filter .form__checkbox {
    margin-top: 0; }
    @media (max-width: 767px) {
      .form--field-search-application-filter .form__checkbox {
        margin-bottom: 20px; }
        .form--field-search-application-filter .form__checkbox:last-of-type {
          margin-bottom: 0; } }
    .form--field-search-application-filter .form__checkbox--sm {
      width: 100%; }
    @media (min-width: 768px) {
      .form--field-search-application-filter .form__checkbox {
        width: calc((100% - 30px) / 2); } }

.ie .form__date-input {
  background-position: 95% center;
  background-size: 24px 24px; }

.sticky-header {
  background-color: #fff;
  -webkit-box-shadow: 0 7px 50px 0 rgba(0, 69, 104, 0.2);
          box-shadow: 0 7px 50px 0 rgba(0, 69, 104, 0.2);
  color: #fff;
  display: none;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2; }
  .sticky-header.is-active {
    display: block; }
  @media (min-width: 768px) {
    .sticky-header {
      -webkit-box-shadow: 0 7px 50px 0 rgba(0, 69, 104, 0.2), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 7px 50px 0 rgba(0, 69, 104, 0.2), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1); } }
  .sticky-header__top {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f1f1; }
    @media (min-width: 1230px) {
      .sticky-header__top {
        display: none; } }
  .sticky-header__container {
    width: 82.5%;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .sticky-header__container {
        width: 92%; } }
    @media (min-width: 1230px) {
      .sticky-header__container {
        width: 100%;
        max-width: 1320px; } }
  .sticky-header__top-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .sticky-header__menu-btn {
    fill: #7c90a9;
    padding: 4px 0 0;
    width: 24px;
    height: 24px;
    text-align: center;
    background-color: transparent;
    border: none; }
    :root:not(.mobile) .sticky-header__menu-btn:hover {
      fill: #c6006b; }
  .sticky-header__menu-btn .svg-icon {
    width: 20px;
    height: 16px;
    display: inline-block;
    vertical-align: baseline;
    fill: inherit; }
  .sticky-header__contact-btn {
    fill: #7c90a9;
    display: inline-block;
    height: 24px;
    padding-top: 1px; }
    :root:not(.mobile) .sticky-header__contact-btn:hover {
      fill: #c6006b; }
    @media (min-width: 768px) {
      .sticky-header__contact-btn {
        display: none; } }
  .sticky-header__contact-btn .svg-icon {
    fill: inherit;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: baseline; }
  .sticky-header__profile-btn {
    fill: #7c90a9;
    display: inline-block;
    height: 24px;
    border: none;
    background-color: transparent;
    padding: 1px 0 0;
    position: relative; }
    :root:not(.mobile) .sticky-header__profile-btn:hover {
      fill: #c6006b; }
    .sticky-header__profile-btn::after {
      content: "";
      background-color: white;
      width: 20px;
      height: 20px;
      position: absolute;
      bottom: -38px;
      left: 0;
      -webkit-transform: translateY(-50%) rotate(45deg);
              transform: translateY(-50%) rotate(45deg);
      border-top: 1px solid #e3ebf2;
      border-left: 1px solid #e3ebf2;
      z-index: 6;
      border-radius: 2px;
      display: none; }
    .sticky-header__profile-btn.active::after {
      display: block; }
  .sticky-header__profile-btn .svg-icon {
    fill: inherit;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: baseline; }
  .sticky-header__search-btn {
    fill: #7c90a9;
    padding: 1px 0 0;
    background-color: transparent;
    border: none;
    display: inline-block;
    height: 24px; }
    :root:not(.mobile) .sticky-header__search-btn:hover {
      fill: #c6006b; }
    @media (min-width: 768px) {
      .sticky-header__search-btn {
        display: none; } }
  .sticky-header__search-btn .svg-icon {
    fill: inherit;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: baseline;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
  .sticky-header__notification-wrap + .sticky-header__cart-wrap {
    margin-left: 16px; }
  .sticky-header__right-group {
    display: none; }
    @media (min-width: 768px) {
      .sticky-header__right-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
  .sticky-header__notification-wrap {
    position: relative; }
  .sticky-header__notification-btn {
    position: relative; }
    .sticky-header__notification-btn::before {
      content: "";
      background-color: white;
      width: 20px;
      height: 20px;
      position: absolute;
      bottom: -38px;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
              transform: translateX(-50%) translateY(-50%) rotate(45deg);
      border-top: 1px solid #e3ebf2;
      border-left: 1px solid #e3ebf2;
      z-index: 6;
      border-radius: 2px;
      display: none; }
    .sticky-header__notification-btn.active::before {
      display: block; }
  .sticky-header__notifications-dropdown {
    position: absolute;
    top: 64px;
    width: 300px;
    right: -74px;
    z-index: 5; }
    @media (min-width: 450px) {
      .sticky-header__notifications-dropdown {
        width: 410px; } }
    @media (min-width: 768px) {
      .sticky-header__notifications-dropdown {
        right: auto;
        left: -150px; } }
    @media (min-width: 1230px) {
      .sticky-header__notifications-dropdown {
        top: 71px;
        left: -60px; } }
  .sticky-header__profile-label-wrap {
    position: relative; }
  .sticky-header__profile-label-btn::after {
    content: "";
    background-color: white;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -38px;
    left: 16px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid #e3ebf2;
    border-left: 1px solid #e3ebf2;
    z-index: 6;
    border-radius: 2px;
    display: none; }
  .sticky-header__profile-label-btn.active::after {
    display: block; }
  .sticky-header__profile-label-dropdown {
    position: absolute;
    top: 64px;
    width: 310px;
    left: -150px;
    z-index: 5; }
    @media (min-width: 1230px) {
      .sticky-header__profile-label-dropdown {
        top: 71px;
        left: -110px; } }
  .sticky-header__mobile-profile-label-wrap {
    position: relative; }
    @media (min-width: 768px) {
      .sticky-header__mobile-profile-label-wrap {
        display: none; } }
  .sticky-header__mobile-profile-label-dropdown {
    position: absolute;
    top: 40px;
    width: 300px;
    right: -18px;
    z-index: 5; }
    @media (min-width: 360px) {
      .sticky-header__mobile-profile-label-dropdown {
        width: 310px; } }
  .sticky-header__profile-label-wrap {
    margin-left: 16px; }
    @media (min-width: 1230px) {
      .sticky-header__profile-label-wrap {
        margin-left: 20px; } }
  .sticky-header__bottom {
    overflow: hidden;
    overflow-x: auto; }
    @media (min-width: 768px) {
      .sticky-header__bottom {
        padding-left: 30px;
        padding-right: 30px; } }
  @media (min-width: 1230px) {
    .sticky-header__bottom-inner {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 0 auto;
      max-width: 1170px; } }
  .sticky-header__logo-link {
    display: none;
    vertical-align: middle; }
    @media (min-width: 768px) {
      .sticky-header__logo-link--top {
        display: inline-block;
        margin-left: 32px;
        margin-right: auto; } }
    @media (min-width: 1230px) {
      .sticky-header__logo-link--bottom {
        display: inline-block;
        margin-right: 97px; } }
  .sticky-header__logo-img {
    display: block; }
  .sticky-header__logo-link--top .sticky-header__logo-img {
    height: 48px;
    width: 190px; }
  .sticky-header__logo-link--bottom .sticky-header__logo-img {
    height: 32px;
    width: 84px; }
  .sticky-header__phone-full {
    display: none;
    vertical-align: middle; }
    @media (min-width: 1230px) {
      .sticky-header__phone-full {
        display: inline-block;
        margin-left: auto; } }
  .sticky-header__fast-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap; }
  .sticky-header__fast-links-item {
    padding-left: 10px;
    padding-right: 10px; }
    @media (min-width: 768px) {
      .sticky-header__fast-links-item {
        padding-left: 15px;
        padding-right: 15px; } }
    @media (min-width: 1230px) {
      .sticky-header__fast-links-item {
        padding-left: 20px;
        padding-right: 20px; } }
  .sticky-header__fast-link {
    display: block;
    color: #7c90a9;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 17px;
    padding-top: 18px;
    position: relative;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    @media (min-width: 1230px) {
      .sticky-header__fast-link {
        padding-bottom: 23px;
        padding-top: 23px; } }
    :root:not(.mobile) .sticky-header__fast-link:hover {
      color: #00a8ff; }
    .sticky-header__fast-link.is-active::after {
      background-color: #00a8ff;
      content: "";
      height: 2px;
      left: 0;
      position: absolute;
      bottom: 0;
      width: 100%; }

@media (min-width: 1330px) and (max-width: 1340px) {
  .ie .sticky-header__container {
    width: 99%; } }

@media (min-width: 1230px) {
  .ie .sticky-header__bottom-inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; } }

.all-site {
  background-color: transparent;
  padding: 0;
  color: #7c90a9;
  fill: currentColor;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 16px;
  font-weight: 300;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out; }
  :root:not(.mobile) .all-site:hover {
    color: #e4007c; }
  .all-site--white,
  :root:not(.mobile) .all-site--white:hover {
    color: #fff; }
  .all-site .svg-icon {
    height: 13px;
    width: 13px;
    -webkit-transition-property: fill;
    transition-property: fill; }
  .all-site__text {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle; }

.all-site-dropdown {
  display: block;
  background-color: white;
  -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
          box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
  border: 1px solid #e3ebf2;
  font-family: Fedra Sans Pro LF, sans-serif;
  text-align: left;
  border-radius: 3px;
  padding: 29px 40px; }
  .all-site-dropdown__item + .all-site-dropdown__item {
    margin-top: 16px; }
  .all-site-dropdown__link {
    color: #7c90a9;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms; }
    :root:not(.mobile) .all-site-dropdown__link:hover {
      color: #00a8ff; }

.footer {
  border-top: 1px solid #e3ebf2;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none; }
  .cart-picker-active .footer {
    padding-bottom: 55px; }
    @media (min-width: 768px) {
      .cart-picker-active .footer {
        padding-bottom: 96px; } }
    @media (min-width: 1230px) {
      .cart-picker-active .footer {
        padding-bottom: 100px; } }
  @media (max-width: 767px) {
    .footer__container {
      width: 100%; } }
  .footer__top {
    padding-bottom: 30px;
    padding-top: 40px;
    text-align: center; }
    @media (min-width: 768px) {
      .footer__top {
        padding-bottom: 45px; } }
    @media (min-width: 1230px) {
      .footer__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: left;
        padding-bottom: 60px;
        padding-top: 100px; } }
  .footer__menu {
    display: none; }
    @media (min-width: 1230px) {
      .footer__menu {
        display: block;
        width: 900px; } }
  .footer__menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .footer__menu-column {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33.3333333%;
            flex: 1 0 33.3333333%; }
  .footer__menu-title {
    margin-bottom: 25px; }
  .footer__menu-item {
    padding-right: 10px; }
    .footer__menu-item:not(:last-child) {
      margin-bottom: 13px; }
  .footer__menu-link {
    color: #7c90a9;
    font-size: 14px;
    line-height: 1.86;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    :root:not(.mobile) .footer__menu-link:hover {
      color: #c6006b; }
  @media (min-width: 768px) {
    .footer__contacts {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (min-width: 1230px) {
    .footer__contacts {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      margin-left: 0;
      width: 245px; } }
  .footer__bottom {
    border-top: 1px solid #e3ebf2;
    padding-bottom: 30px; }
    .footer--miserable .footer__bottom {
      border-top-width: 0; }
    @media (min-width: 768px) {
      .footer__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding-bottom: 34px;
        padding-top: 34px; } }
    @media (min-width: 1230px) {
      .footer__bottom {
        padding-bottom: 55px;
        padding-top: 35px; } }
  .footer__phone {
    display: none; }
    @media (min-width: 1230px) {
      .footer__phone {
        display: block;
        margin-bottom: 50px; } }
  .footer__phone-link {
    color: #333;
    display: inline-block;
    font-size: 0;
    font-weight: 500;
    vertical-align: middle;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    :root:not(.mobile) .footer__phone-link:hover {
      color: #e4007c; }
  .footer__phone-icon {
    fill: #e4007c;
    margin-right: 10px;
    vertical-align: top; }
  .footer__phone-text {
    font-size: 18px; }
  .footer__socials {
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .footer__socials {
        margin-bottom: 0; } }
    @media (min-width: 1230px) {
      .footer__socials {
        margin-bottom: 50px; } }
  .footer__socials-title {
    display: none; }
    @media (min-width: 1230px) {
      .footer__socials-title {
        display: block;
        margin-bottom: 20px; } }
  .footer__search-inner {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 245px; }
  .footer__search-input {
    padding-right: 40px; }
  .footer__search-submit {
    fill: #cdd8e3;
    height: 21px;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 21px; }
    :root:not(.mobile) .footer__search-submit:hover {
      fill: #00a8ff; }
    .footer__search-submit svg {
      height: auto;
      width: 100%; }
  .footer__copyright {
    color: #7c90a9;
    font-size: 0;
    line-height: 1.86;
    padding: 31px 0;
    text-align: center; }
    @media (min-width: 768px) {
      .footer__copyright {
        padding-bottom: 0;
        padding-top: 0;
        text-align: left; } }
  .footer__copyright-logo {
    display: none;
    height: 51px;
    width: 202px; }
    .footer__copyright-logo img {
      display: block;
      height: auto;
      width: 100%; }
    @media (min-width: 1230px) {
      .footer__copyright-logo {
        display: inline-block;
        margin-right: 40px;
        vertical-align: top; } }
  .footer__copyright-text {
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
    max-width: 200px; }
    @media (min-width: 768px) {
      .footer__copyright-text {
        max-width: 380px; } }
    @media (min-width: 1230px) {
      .footer__copyright-text {
        padding-top: 3px; } }
  .footer__design {
    border-top: 1px solid #e3ebf2;
    padding-top: 30px;
    text-align: center; }
    @media (min-width: 768px) {
      .footer__design {
        border-top: 0;
        padding-top: 0; } }
  .footer__design-link {
    color: #7c90a9;
    display: inline-block;
    font-size: 0;
    line-height: 1.17;
    vertical-align: top; }
  .footer__design-text {
    display: inline-block;
    font-size: 12px;
    margin-right: 14px;
    max-width: 70px;
    text-align: right;
    padding-top: 5px;
    vertical-align: top; }
  .footer__design-logo {
    display: inline-block;
    height: 32px;
    vertical-align: top;
    width: 59px; }

.share__list {
  font-size: 0; }

.share__item {
  display: inline-block; }
  .share__item + .share__item {
    margin-left: 10px; }

.share__btn {
  display: inline-block;
  padding: 0;
  background-color: transparent; }

.share__btn .svg-icon {
  width: 40px;
  height: 40px;
  display: inline-block; }

.share__close-btn {
  display: inline-block;
  padding: 0;
  fill: #7c90a9;
  overflow: hidden;
  border: 2px solid transparent;
  background-color: #eff5fa;
  border-radius: 50%; }
  :root:not(.mobile) .share__close-btn:hover .svg-icon {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }

.share__close-btn .svg-icon {
  fill: inherit;
  width: 14px;
  height: 14px;
  padding: 11px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms; }

.hidden-pages-dropdown {
  display: block;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
          box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
  border: 1px solid #e3ebf2;
  font-family: Fedra Sans Pro LF, sans-serif;
  text-align: left;
  border-radius: 3px;
  padding: 23px 29px; }
  .hidden-pages-dropdown__item + .hidden-pages-dropdown__item {
    margin-top: 16px; }
  .hidden-pages-dropdown__link {
    color: #7c90a9;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
    font-size: 14px;
    line-height: 1.43; }
    :root:not(.mobile) .hidden-pages-dropdown__link:hover {
      color: #00a8ff; }

.return-button {
  display: inline-block;
  color: #00a8ff;
  fill: currentColor;
  line-height: 1;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  text-align: center; }
  :root:not(.mobile) .return-button:hover {
    color: #008ed7; }
  @media (min-width: 768px) {
    .return-button {
      text-align: left; } }
  .return-button__icon {
    margin-right: 8px; }
  .return-button__text {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle; }

.universal-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  width: 100%;
  height: 100vh;
  overflow-x: hidden; }
  .universal-modal.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline; }
  .universal-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    background: rgba(0, 0, 0, 0.45); }
  .universal-modal__content {
    position: relative; }
    @media (min-width: 768px) {
      .universal-modal__content {
        margin-top: 30px; } }
  .universal-modal__close-btn {
    position: absolute;
    z-index: 2;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background-color: transparent; }
    @media (min-width: 768px) {
      .universal-modal__close-btn {
        top: 30px;
        right: 30px; } }
    .universal-modal__close-btn svg {
      fill: #97a0ac; }
  @media (min-width: 768px) {
    .universal-modal__inner {
      margin-bottom: 30px; } }

.abonent-modal {
  background-color: #fff;
  padding: 69px 30px 45px;
  height: 100%; }
  @media (min-width: 768px) {
    .abonent-modal {
      padding: 40px;
      border-radius: 4px;
      height: auto;
      width: 630px; } }
  .abonent-modal__step {
    display: none;
    position: relative; }
    .abonent-modal__step--active {
      display: block; }
  .abonent-modal__title {
    text-align: center; }
  .abonent-modal__description {
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.73;
    text-align: center; }
    @media (min-width: 768px) {
      .abonent-modal__description {
        max-width: 360px; } }
  .abonent-modal__description p + p {
    margin-top: 7px; }
  * + .abonent-modal__description {
    margin-top: 20px; }
  .abonent-modal__inner {
    margin-top: 20px; }
    @media (min-width: 768px) {
      .abonent-modal__inner {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto; } }
  .abonent-modal__field {
    margin-top: 20px;
    position: relative; }
  .abonent-modal__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px; }
    .abonent-modal__action--center {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
  .abonent-modal__action-item {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.86;
    color: #a2a2a2;
    background-color: transparent;
    margin-right: 5px;
    margin-left: 5px;
    padding-left: 0;
    padding-right: 0; }
  .abonent-modal__buttons {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px; }
    @media (max-width: 449px) {
      .abonent-modal--added-to-cart .abonent-modal__buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .abonent-modal__btn + .abonent-modal__btn {
    margin-left: 10px; }
    @media (min-width: 768px) {
      .abonent-modal__btn + .abonent-modal__btn {
        margin-left: 20px; } }
  @media (max-width: 449px) {
    .abonent-modal--added-to-cart .abonent-modal__btn + .abonent-modal__btn {
      margin-left: 0;
      margin-top: 15px; } }
  .abonent-modal__btn-full {
    width: 260px; }
    @media (min-width: 768px) {
      .abonent-modal__btn-full {
        width: 320px; } }
  .abonent-modal__transition {
    margin-top: 40px;
    text-align: center;
    display: block; }
  .abonent-modal__link {
    font-size: 14px;
    font-weight: 500;
    color: #00a8ff;
    fill: #00a8ff; }
    .abonent-modal__link svg {
      margin-left: 7px; }
  .abonent-modal__prev {
    position: absolute;
    top: -53px;
    left: -16px; }
    @media (min-width: 768px) {
      .abonent-modal__prev {
        top: -11px;
        left: -16px; } }
  .abonent-modal__enter {
    min-width: 104px;
    width: 30%; }
    @media (min-width: 768px) {
      .abonent-modal__enter {
        width: 125px; } }
  .abonent-modal__enter-later {
    min-width: 146px;
    width: 40%; }
    @media (min-width: 768px) {
      .abonent-modal__enter-later {
        width: 175px; } }
  .abonent-modal__tooltip {
    padding: 18px 19px;
    font-family: Fedra Sans Pro LF, sans-serif; }
  .abonent-modal__tooltip-description {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #7c90a9;
    line-height: 1.57; }
  .abonent-modal__hint {
    position: absolute;
    top: 18px;
    right: -27px;
    fill: #7c90a9; }
    @media (max-width: 1229px) {
      .abonent-modal__hint {
        display: none; } }
  .abonent-modal__error {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.86;
    color: #e4007c;
    text-align: center; }

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .pagination__item {
    font-size: 16px;
    line-height: 1.38;
    color: #333;
    font-weight: 500;
    border-radius: 50%; }
  .pagination__link {
    display: block;
    padding: 9px 17px;
    color: #333; }
    .pagination__link:hover {
      color: #00a8ff; }
  .pagination__link--active {
    color: #fff; }
    .pagination__link--active:hover {
      color: #fff;
      cursor: default; }
  .pagination__item--active {
    color: #fff;
    background-color: #00a8ff; }
  .pagination__prev {
    fill: #00a8ff;
    margin-right: 13px; }
  .pagination__next {
    fill: #00a8ff;
    margin-left: 13px; }
  .pagination__disabled {
    opacity: 0.5;
    cursor: default; }

.breadcrumbs__item {
  display: inline-block;
  vertical-align: top; }
  .breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-right: 4px;
    margin-left: 4px;
    font-weight: 500;
    color: #919aa7; }

.breadcrumbs__link {
  color: #00a8ff;
  font-weight: 500; }
  .breadcrumbs__link:hover {
    text-decoration: underline; }

.breadcrumbs__link-current {
  color: #919aa7;
  font-weight: 500; }

.breadcrumbs__list {
  list-style-type: none;
  padding: 0; }

.wysiwyg {
  color: #333; }
  @media (min-width: 768px) {
    .wysiwyg {
      text-align: left; } }
  .wysiwyg h1,
  .wysiwyg h2,
  .wysiwyg h3,
  .wysiwyg h4,
  .wysiwyg h5 {
    color: #333;
    font-family: Fedra Sans Pro LF, sans-serif;
    font-weight: 500;
    margin: 0; }
  .wysiwyg h1 {
    font-size: 30px;
    font-weight: 350;
    line-height: 1.2;
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .wysiwyg h1 {
        font-size: 48px;
        line-height: 1;
        margin-bottom: 40px; } }
    @media (min-width: 1230px) {
      .wysiwyg h1 {
        margin-bottom: 50px; } }
  .wysiwyg h2 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .wysiwyg h2 {
        font-size: 36px;
        line-height: 1.33333333;
        margin-bottom: 24px; } }
    @media (min-width: 1230px) {
      .wysiwyg h2 {
        margin-bottom: 30px; } }
  .wysiwyg h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .wysiwyg h3 {
        font-size: 24px;
        line-height: 1.33333333;
        margin-bottom: 20px; } }
  .wysiwyg h4 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .wysiwyg h4 {
        font-size: 18px;
        line-height: 1.44444444;
        margin-bottom: 15px; } }
  .wysiwyg h5 {
    font-size: 10px;
    line-height: 1.4;
    margin-bottom: 5px; }
    @media (min-width: 768px) {
      .wysiwyg h5 {
        font-size: 12px;
        line-height: 1.33333333;
        margin-bottom: 10px; } }
  .wysiwyg a {
    color: #00a8ff;
    font-family: Fedra Sans Pro LF, sans-serif;
    font-weight: 300;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    :root:not(.mobile) .wysiwyg a:hover {
      color: #008ed7; }
    :root:not(.mobile) .wysiwyg a.content-form__link:hover {
      color: #fff; }
    :root:not(.mobile) .wysiwyg a.channel-widget__shedule-item-program--link:hover {
      color: #00a8ff; }
    :root:not(.mobile) .wysiwyg a.ghost-btn--blue:hover {
      color: #fff; }
    :root:not(.mobile) .wysiwyg a.download__item:hover {
      color: #00a8ff; }
  .wysiwyg p {
    font-family: Fedra Sans Pro LF, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.73;
    margin-bottom: 20px;
    margin-top: 20px; }
    .wysiwyg p strong {
      font-weight: 500; }
  .wysiwyg blockquote {
    background: url(../assets/icons/quote.svg) 0 4px no-repeat;
    background-size: 53px 36px;
    margin-bottom: 20px;
    margin-top: 25px;
    min-height: 40px;
    padding-left: 73px;
    text-align: left; }
    @media (min-width: 1230px) {
      .wysiwyg blockquote {
        margin-bottom: 25px;
        margin-top: 30px; } }
    .wysiwyg blockquote p {
      font-family: Fedra Sans Pro LF, sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
      margin: 0; }
      .wysiwyg blockquote p:not(:last-child) {
        margin-bottom: 15px; }
  .wysiwyg hr {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: rgba(124, 144, 169, 0.1);
    border: none;
    display: block;
    height: 1px; }
    .wysiwyg hr.delimeter {
      margin: 40px 0; }
      @media (min-width: 768px) {
        .wysiwyg hr.delimeter {
          margin: 64px 0; } }
      @media (min-width: 1230px) {
        .wysiwyg hr.delimeter {
          margin: 80px 0; } }
  .wysiwyg ul {
    font-family: Fedra Sans Pro LF, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.73;
    list-style: disc;
    margin: 20px 0;
    padding-left: 20px;
    text-align: left; }
    @media (min-width: 768px) {
      .wysiwyg ul {
        padding-left: 30px; } }
    .wysiwyg ul li {
      list-style: inherit;
      margin: 20px 0;
      padding-left: 2px; }
      @media (min-width: 768px) {
        .wysiwyg ul li {
          padding-left: 5px; } }
    .wysiwyg ul li ul {
      list-style-type: none;
      padding-left: 27px; }
      @media (min-width: 768px) {
        .wysiwyg ul li ul {
          padding-left: 35px; } }
      .wysiwyg ul li ul li::before {
        content: "\2013";
        position: absolute;
        margin-left: -22px; }
  .wysiwyg ol {
    font-family: Fedra Sans Pro LF, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.73;
    list-style: decimal;
    margin: 20px 0;
    padding-left: 20px;
    text-align: left; }
    @media (min-width: 768px) {
      .wysiwyg ol {
        padding-left: 30px; } }
    .wysiwyg ol li {
      list-style: inherit;
      margin: 20px 0;
      padding-left: 2px; }
      @media (min-width: 768px) {
        .wysiwyg ol li {
          padding-left: 5px; } }
    .wysiwyg ol li ol {
      counter-reset: nested-ol;
      list-style-type: none;
      padding-left: 27px; }
      @media (min-width: 768px) {
        .wysiwyg ol li ol {
          padding-left: 35px; } }
      .wysiwyg ol li ol li {
        counter-increment: nested-ol; }
        .wysiwyg ol li ol li::before {
          content: counter(nested-ol) ")";
          position: absolute;
          margin-left: -22px; }
  .wysiwyg section {
    margin-bottom: 40px;
    margin-top: 40px; }
    @media (min-width: 768px) {
      .wysiwyg section {
        margin-bottom: 64px;
        margin-top: 64px; } }
    @media (min-width: 1230px) {
      .wysiwyg section {
        margin-bottom: 80px;
        margin-top: 80px; } }
  .wysiwyg .text-left {
    text-align: left; }
  .wysiwyg .text-right {
    text-align: right; }
  .wysiwyg .text-center {
    text-align: center; }
  .wysiwyg .vertical-table {
    border-collapse: collapse;
    display: block;
    margin: 30px 0;
    text-align: left;
    width: 100%; }
    @media (min-width: 768px) {
      .wysiwyg .vertical-table {
        display: table;
        margin: 40px 0; } }
    @media (min-width: 1230px) {
      .wysiwyg .vertical-table {
        margin: 50px 0; } }
    .wysiwyg .vertical-table tbody {
      display: block; }
      @media (min-width: 768px) {
        .wysiwyg .vertical-table tbody {
          display: table-row-group; } }
    .wysiwyg .vertical-table tr {
      border-bottom: 1px solid rgba(124, 144, 169, 0.1);
      display: block;
      padding: 12px 0; }
      .wysiwyg .vertical-table tr:first-child {
        border-top: 1px solid rgba(124, 144, 169, 0.1); }
      @media (min-width: 768px) {
        .wysiwyg .vertical-table tr {
          display: table-row;
          padding: 0; } }
    .wysiwyg .vertical-table td {
      color: #7c90a9;
      display: block;
      font-size: 14px;
      line-height: 1.86; }
      @media (min-width: 768px) {
        .wysiwyg .vertical-table td {
          display: table-cell;
          padding: 20px 0; } }
      @media (min-width: 1230px) {
        .wysiwyg .vertical-table td {
          padding: 30px 0; } }
      @media (min-width: 768px) {
        .wysiwyg .vertical-table td:first-child {
          padding-right: 15px;
          width: 40%; } }
      @media (min-width: 1230px) {
        .wysiwyg .vertical-table td:first-child {
          padding-right: 25px;
          width: 30%; } }
      .wysiwyg .vertical-table td strong {
        color: #333;
        font-weight: 500;
        line-height: 1.29; }
        @media (min-width: 768px) {
          .wysiwyg .vertical-table td strong {
            font-size: 16px;
            line-height: 1.38; } }
  .wysiwyg .horizontal-table {
    border-collapse: collapse;
    margin: 30px 0;
    text-align: left;
    width: 100%; }
    @media (min-width: 768px) {
      .wysiwyg .horizontal-table {
        display: table;
        margin: 40px 0; } }
    @media (min-width: 1230px) {
      .wysiwyg .horizontal-table {
        margin: 50px 0; } }
    .wysiwyg .horizontal-table tr {
      border-top: 1px solid rgba(124, 144, 169, 0.1);
      border-bottom: 1px solid rgba(124, 144, 169, 0.1); }
    .wysiwyg .horizontal-table td {
      color: #7c90a9;
      font-size: 14px;
      line-height: 1.57;
      padding: 13px 0; }
      @media (min-width: 768px) {
        .wysiwyg .horizontal-table td {
          line-height: 1.86;
          padding: 20px 0; } }
      .wysiwyg .horizontal-table td:first-child {
        padding-right: 10px;
        width: 50px; }
        @media (min-width: 768px) {
          .wysiwyg .horizontal-table td:first-child {
            width: 37%; } }
        @media (min-width: 1230px) {
          .wysiwyg .horizontal-table td:first-child {
            width: 43%; } }
      .wysiwyg .horizontal-table td:nth-child(2) {
        padding-left: 10px;
        width: 50%; }
        @media (min-width: 768px) {
          .wysiwyg .horizontal-table td:nth-child(2) {
            width: 63%; } }
        @media (min-width: 1230px) {
          .wysiwyg .horizontal-table td:nth-child(2) {
            width: 57%; } }
      .wysiwyg .horizontal-table td[colspan="2"] {
        padding: 20px 0 10px;
        width: 100%; }
        @media (min-width: 768px) {
          .wysiwyg .horizontal-table td[colspan="2"] {
            padding-bottom: 15px;
            padding-top: 35px; } }
      .wysiwyg .horizontal-table td strong {
        color: #333;
        font-weight: 500;
        line-height: 1.29; }
        @media (min-width: 768px) {
          .wysiwyg .horizontal-table td strong {
            font-size: 16px;
            line-height: 1.38; } }
  .wysiwyg .banner {
    margin-top: 30px;
    margin-bottom: 30px; }
    @media (max-width: 1229px) {
      .wysiwyg .banner img {
        width: 100%; } }
  @media (max-width: 767px) {
    .wysiwyg .btn {
      width: 100%;
      max-width: 400px; } }
  .wysiwyg .content-description {
    color: #8a94a2;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0; }
  .wysiwyg .content-margin-top {
    margin-top: 30px; }
    @media (min-width: 768px) {
      .wysiwyg .content-margin-top {
        margin-top: 50px; } }
  .wysiwyg .logo-items__list {
    padding-left: 0;
    font-size: 14px;
    list-style: none;
    text-align: center; }
  @media (min-width: 768px) {
    .wysiwyg .logo-items__item {
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
      margin: 30px 0;
      padding-left: 0; } }
  .wysiwyg .content-form__link {
    color: #fff;
    text-decoration: underline; }
    .wysiwyg .content-form__link:hover {
      text-decoration: none;
      color: #fff; }
  .wysiwyg .advantages {
    list-style: none;
    margin: 30px 0;
    padding: 0; }
    @media (min-width: 768px) {
      .wysiwyg .advantages {
        margin-left: -30px; } }
    .wysiwyg .advantages__item {
      padding-left: 0;
      margin-top: 0;
      margin-bottom: 30px; }
      @media (min-width: 768px) {
        .wysiwyg .advantages__item {
          margin-left: 30px; } }
    .wysiwyg .advantages__description p {
      margin: 0; }
  .wysiwyg .plain-helper__description p {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500; }
  .wysiwyg .step-process__list {
    padding-left: 0;
    font-size: 14px; }
  .wysiwyg .step-process__item {
    padding-left: 0; }
  .wysiwyg .channel-widget__name {
    color: #333;
    font-size: 16px;
    font-weight: 500; }
  .wysiwyg .channel-widget__shedule {
    margin: 0; }
    @media (min-width: 768px) {
      .wysiwyg .channel-widget__shedule {
        padding-left: 30px;
        padding-right: 30px; } }
    @media (min-width: 1230px) {
      .wysiwyg .channel-widget__shedule {
        padding-left: 40px;
        padding-right: 40px; } }
  .wysiwyg .channel-widget__shedule-item {
    padding-left: 0;
    margin: 0; }
  .wysiwyg .channel-widget__shedule-item-program--link {
    line-height: 1.86;
    color: #7c90a9; }
  @media (max-width: 767px) {
    .wysiwyg .channel-widget__watch-online {
      width: 22px; } }
  @media (max-width: 767px) {
    .wysiwyg .channel-widget__like {
      width: 23px; } }
  .wysiwyg .channel-widget__bookmark-btn {
    width: 50px; }
  .wysiwyg .ghost-btn {
    font-weight: 500; }
  .wysiwyg .content-tabs__slider {
    list-style: none;
    padding: 0;
    margin: 0; }
  .wysiwyg .content-tabs__slider-btn {
    width: 16px; }
  .wysiwyg .content-tabs__tab {
    color: #333; }
    .wysiwyg .content-tabs__tab--active {
      color: #00a8ff; }
  .wysiwyg .content-tabs__tabs-item {
    padding-left: 15px;
    margin: 0; }
  .wysiwyg .content-tabs__list {
    padding-left: 0; }
  .wysiwyg .content-tabs__list-item {
    list-style: none;
    padding: 0;
    margin: 0; }

.content {
  padding-top: 20px; }
  @media (min-width: 768px) {
    .content {
      padding-top: 40px; } }
  @media (min-width: 1230px) {
    .content {
      padding-top: 50px; } }
  .content__recruit {
    margin-bottom: 20px; }
    @media (min-width: 1230px) {
      .content__recruit {
        margin-bottom: 45px; } }

.content-header {
  margin-bottom: 27px;
  text-align: center; }
  .page--exchange .content-header {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .content-header {
      text-align: left; }
      .page--search .content-header {
        margin-bottom: 42px; } }
  .content-header__inner {
    max-width: 670px; }
  .content-header__return {
    color: #00a8ff;
    display: inline-block;
    fill: currentColor;
    line-height: 1;
    margin-bottom: 12px;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    :root:not(.mobile) .content-header__return:hover {
      color: #008ed7; }
    @media (min-width: 768px) {
      .content-header__return {
        margin-bottom: 17px; } }
    @media (min-width: 768px) {
      .content-header__return {
        margin-bottom: 24px; } }
  .content-header__return-icon {
    margin-right: 8px; }
  .content-header__return-text {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle; }
  .content-header__description {
    color: #8a94a2;
    font-family: Fedra Sans Pro LF, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding-top: 17px; }
    .content-header__description * {
      color: inherit;
      font-family: inherit;
      font-size: inherit;
      font-weight: inherit;
      margin: 0; }

.content-info {
  font-family: Fedra Sans Pro LF, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #7c90a9;
  line-height: 1;
  letter-spacing: normal; }
  .content-info__item {
    padding: 20px 0 18px;
    border-top: 1px solid #e5e9ee; }
    @media (min-width: 768px) {
      .content-info__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        padding: 25px 0 20px; } }
    @media (min-width: 1230px) {
      .content-info__item {
        display: block;
        padding: 20px 0 16px; } }
  .content-info__title {
    color: #333;
    font-size: 14px;
    font-weight: 500; }
    @media (min-width: 768px) {
      .content-info__title {
        width: 40%;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        font-size: 16px;
        padding-right: 100px; } }
    @media (min-width: 1230px) {
      .content-info__title {
        padding-right: 0;
        width: 100%; } }
  .content-info__description {
    line-height: 1.57; }
    @media (min-width: 768px) {
      .content-info__description {
        width: 60%;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        line-height: 1.68;
        position: relative;
        top: -2px; } }
    @media (min-width: 1230px) {
      .content-info__description {
        width: 100%;
        top: 0; } }
  .content-info__title + .content-info__description {
    margin-top: 10px; }
    @media (min-width: 768px) {
      .content-info__title + .content-info__description {
        margin-top: 0; } }
    @media (min-width: 1230px) {
      .content-info__title + .content-info__description {
        margin-top: 10px; } }
  .content-info__channel-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -7.5px; }
  .content-info__channel-item {
    padding: 5px 7.5px; }
  .content-info__channel-link {
    position: relative;
    width: 64px;
    height: 64px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
    -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.15);
            box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.15);
    vertical-align: bottom; }
  .content-info__channel-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    vertical-align: bottom; }
  .content-info__share {
    padding-top: 5px; }
  .content-info__tooltip {
    padding: 18px 16px;
    font-family: Fedra Sans Pro LF, sans-serif; }
    .content-info__tooltip-title {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.38;
      margin-bottom: 5px;
      color: #333; }
    .content-info__tooltip-description {
      font-size: 14px;
      font-weight: 200;
      line-height: 1.86;
      text-align: left;
      color: #7c90a9; }
  .content-info__hint {
    display: block;
    font-weight: 300;
    line-height: 1.86;
    color: #7c90a9; }
    @media (min-width: 768px) {
      .content-info__hint {
        display: inline-block;
        vertical-align: top;
        margin-left: 10px; } }

@media (min-width: 1230px) {
  .content-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

@media (min-width: 1230px) {
  .content-columns__main {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 670px; } }

.content-columns__aside {
  margin-top: 40px; }
  @media (min-width: 1230px) {
    .content-columns__aside {
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      margin-top: 0;
      margin-left: auto;
      width: 370px; } }

.content-columns__aside-cell {
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .content-columns__aside-cell {
      margin-bottom: 24px; } }
  @media (min-width: 1230px) {
    .content-columns__aside-cell {
      margin-bottom: 30px; } }

.content-aside-widget {
  font-family: Fedra Sans Pro LF, sans-serif;
  padding: 10px 20px 30px;
  text-align: center; }
  @media (min-width: 768px) {
    .content-aside-widget {
      padding-left: 24px;
      padding-right: 24px;
      padding-top: 20px;
      text-align: left; } }
  @media (min-width: 1230px) {
    .content-aside-widget {
      padding-left: 30px;
      padding-right: 30px;
      padding-top: 30px; } }
  .content-aside-widget__header {
    margin-bottom: 15px; }
    @media (min-width: 1230px) {
      .content-aside-widget__header {
        margin-bottom: 25px; } }
  .content-aside-widget__label {
    color: #8a94a2;
    display: inline-block;
    font-family: inherit;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    vertical-align: baseline; }
    @media (min-width: 768px) {
      .content-aside-widget__label {
        font-size: 12px; } }
  .content-aside-widget__img {
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;
    max-width: 310px; }
    .content-aside-widget__img img {
      display: block;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      height: auto; }
    @media (min-width: 768px) {
      .content-aside-widget__img {
        margin-left: 0;
        margin-right: 0; } }
    @media (min-width: 1230px) {
      .content-aside-widget__img {
        margin-bottom: 30px; } }
  .content-aside-widget__title {
    color: #333;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .content-aside-widget__title {
        font-size: 18px;
        line-height: 1.44; } }
  .content-aside-widget__description {
    color: #7c90a9;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.57; }
    @media (min-width: 768px) {
      .content-aside-widget__description {
        line-height: 1.86; } }
    .content-aside-widget__description p {
      color: inherit;
      font-family: inherit;
      font-size: inherit;
      line-height: inherit; }
  .content-aside-widget__footer {
    padding-top: 20px; }
    @media (min-width: 1230px) {
      .content-aside-widget__footer {
        padding-top: 25px; } }
  .content-aside-widget__btn {
    max-width: 310px;
    width: 100%; }

.content-aside-banner {
  color: #fff;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-weight: 300; }
  @media (min-width: 768px) {
    .content-aside-banner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .content-aside-banner__inner {
    border-radius: 3px;
    overflow: hidden;
    background-color: #00a8ff;
    display: block;
    color: inherit;
    min-height: 134px;
    position: relative;
    padding-top: 31px;
    padding-bottom: 24px;
    width: 100%; }
    @media (min-width: 768px) {
      .content-aside-banner__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        min-height: 180px;
        padding-top: 61px;
        padding-bottom: 63px; } }
    @media (min-width: 1230px) {
      .content-aside-banner__inner {
        padding-top: 34px;
        padding-bottom: 36px; } }
  .content-aside-banner__link {
    display: block;
    color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .content-aside-banner__pic-wrap {
    height: 0; }
    @media (min-width: 768px) {
      .content-aside-banner__pic-wrap {
        width: 50%;
        position: relative;
        height: auto; } }
    @media (min-width: 1230px) {
      .content-aside-banner__pic-wrap {
        width: 40%; } }
  .content-aside-banner__img {
    width: 530px;
    height: auto;
    position: absolute;
    top: -490px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block; }
    @media (min-width: 768px) {
      .content-aside-banner__img {
        width: 360px;
        left: auto;
        top: 50%;
        -webkit-transform: translateX(17%) translateY(-50%);
                transform: translateX(17%) translateY(-50%);
        right: 0; } }
    @media (min-width: 1230px) {
      .content-aside-banner__img {
        -webkit-transform: translateX(29%) translateY(-50%);
                transform: translateX(29%) translateY(-50%);
        width: 350px; } }
  .content-aside-banner__info-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 92%;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .content-aside-banner__info-container {
        padding-top: 0;
        width: 50%;
        padding-left: 2%;
        text-align: left;
        margin-right: 0;
        margin-left: 0;
        max-width: 315px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media (min-width: 1230px) {
      .content-aside-banner__info-container {
        max-width: 160px; } }
  .content-aside-banner__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    color: inherit;
    max-width: 215px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .content-aside-banner__title {
        line-height: 1.44;
        margin-left: 0;
        margin-right: 0;
        max-width: none; } }
  .content-aside-banner__description {
    font-size: 15px;
    line-height: 1.73; }
    @media (min-width: 768px) {
      .content-aside-banner__description {
        font-size: 14px;
        line-height: 1.86; } }
    .content-aside-banner__description p + p {
      margin-top: 10px; }
  .content-aside-banner__title + .content-aside-banner__description {
    margin-top: 8px; }
    @media (min-width: 768px) {
      .content-aside-banner__title + .content-aside-banner__description {
        margin-top: 5px; } }
    @media (min-width: 1230px) {
      .content-aside-banner__title + .content-aside-banner__description {
        margin-top: 8px; } }
  .content-aside-banner__close-btn {
    fill: #fff;
    background-color: transparent;
    padding: 0;
    position: absolute;
    right: 6px;
    top: 6px;
    display: inline-block;
    z-index: 1;
    will-change: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms; }
    :root:not(.mobile) .content-aside-banner__close-btn:hover {
      opacity: 0.6; }
  .content-aside-banner__close-btn .svg-icon {
    fill: inherit;
    width: 14px;
    height: 14px;
    padding: 6px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    display: inline-block; }

.content-media {
  padding-bottom: 18px; }
  @media (min-width: 768px) {
    .content-media {
      padding-bottom: 32px; } }
  @media (min-width: 768px) {
    .content-media {
      max-width: 684px;
      margin-left: auto;
      margin-right: auto; } }
  .content-media__full-view {
    width: 100%;
    height: auto;
    display: none;
    overflow: hidden; }
    .content-media--solo .content-media__full-view {
      display: block; }
    .content-media--online .content-media__full-view {
      position: relative; }
      @media (max-width: 767px) {
        .content-media--online .content-media__full-view {
          display: block;
          height: 360px;
          width: 106%;
          margin-left: -3%;
          background-color: #eeecec82;
          background-image: url(../assets/images/elems/logo-pure.svg);
          background-size: 48px auto;
          background-repeat: no-repeat;
          background-position: center; } }
    @media (min-width: 768px) {
      .content-media__full-view {
        display: block;
        height: 385px;
        background-color: #eeecec82;
        background-image: url(../assets/images/elems/logo-pure.svg);
        background-size: 48px auto;
        background-repeat: no-repeat;
        background-position: center; } }
    @media (min-width: 1230px) {
      .content-media__full-view {
        height: 377px; } }
  .content-media__button-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    text-align: center; }
    @media (min-width: 768px) {
      .content-media__button-wrap {
        bottom: 60px; } }
  .content-media__btn {
    display: block;
    padding-left: 36px;
    padding-right: 36px; }
    @media (max-width: 767px) {
      .content-media__btn {
        width: 90%;
        max-width: 350px;
        margin-left: auto;
        margin-bottom: 20px;
        margin-right: auto; }
        .content-media__btn:last-of-type {
          margin-bottom: 0; } }
    @media (min-width: 768px) {
      .content-media__btn {
        display: inline-block;
        vertical-align: top;
        margin-right: 30px; }
        .content-media__btn:last-of-type {
          margin-right: 0; } }
  .content-media__btn-trailer {
    padding-top: 19px;
    padding-bottom: 19px;
    font-size: 14px; }
    @media (min-width: 768px) {
      .content-media__btn-trailer {
        width: auto;
        font-size: 16px; } }
  .content-media__arrow-right {
    margin-left: 10px; }
  .content-media__full-img {
    width: 100%;
    height: auto;
    vertical-align: bottom; }
  .content-media__description {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.73;
    color: #333; }
    @media (min-width: 768px) {
      .content-media__description {
        margin-top: 24px;
        line-height: 1.73; } }
  .content-media__slider {
    max-width: 400px;
    width: 106.66666%;
    margin-left: -3.33333%;
    padding-bottom: 28px;
    height: 225px;
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 250ms;
            transition-duration: 250ms;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out; }
    @media (min-width: 401px) {
      .content-media__slider {
        margin-left: auto;
        margin-right: auto; } }
    @media (min-width: 768px) {
      .content-media__slider {
        width: 100%;
        max-width: 100%;
        padding-bottom: 0;
        height: 86px;
        padding-top: 24px; } }
    .content-media__slider.slick-initialized {
      opacity: 1;
      height: auto; }
  .content-media__slider-item {
    max-width: 400px;
    height: auto;
    cursor: pointer; }
    @media (min-width: 768px) {
      .content-media__slider-item {
        width: 153px; } }
    @media (min-width: 768px) {
      .content-media__slider-item + .content-media__slider-item {
        margin-left: 24px; } }
  .content-media__slider-img {
    width: 100%;
    height: auto; }
  .content-media .slick-dots {
    bottom: -6px; }
  .content-media .slick-dots li button::before {
    background-color: #00a8ff;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 1;
    position: static;
    display: inline-block; }
  .content-media .slick-dots li.slick-active button::before {
    -webkit-box-shadow: 0 0 3px 1px #00a8ff;
            box-shadow: 0 0 3px 1px #00a8ff; }
  .content-media .slick-dotted.slick-slider {
    margin-bottom: 0; }
  .content-media .slick-arrow {
    opacity: 0.7;
    width: 40px;
    height: 40px;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    top: 68px; }
    :root:not(.mobile) .content-media .slick-arrow:hover {
      opacity: 0.8; }
    .content-media .slick-arrow.slick-disabled {
      opacity: 0.3 !important;
      cursor: auto; }
    .content-media .slick-arrow::before {
      display: none; }
  .content-media .slick-prev {
    background-image: url(../assets/images/elems/slider-btn-left.svg);
    left: 8px; }
  .content-media .slick-next {
    background-image: url(../assets/images/elems/slider-btn-right.svg);
    right: 8px; }

.aside-links__item {
  border: 1px solid #f1f3f6;
  position: relative; }
  .aside-links__item:not(:last-child) {
    border-bottom: 0; }
  .aside-links__item::before {
    background-color: transparent;
    content: "";
    pointer-events: none;
    position: absolute;
    -webkit-transition-property: background, -webkit-box-shadow;
    transition-property: background, -webkit-box-shadow;
    transition-property: box-shadow, background;
    transition-property: box-shadow, background, -webkit-box-shadow;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out; }
  :root:not(.mobile) .aside-links__item:hover::before {
    background-color: #fff;
    -webkit-box-shadow: 0 10px 50px 0 rgba(0, 69, 104, 0.2);
            box-shadow: 0 10px 50px 0 rgba(0, 69, 104, 0.2);
    bottom: -1px;
    left: -1px;
    top: -1px;
    right: -1px; }

.aside-links__link {
  color: #333;
  display: block;
  font-size: 14px;
  font-weight: 350;
  line-height: 1.57;
  padding: 18px 10px 15px;
  text-align: center;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out; }
  @media (min-width: 768px) {
    .aside-links__link {
      font-size: 16px;
      line-height: 1.38;
      padding: 26px 24px 22px;
      text-align: left; } }
  @media (min-width: 1230px) {
    .aside-links__link {
      padding-left: 30px;
      padding-right: 30px; } }
  :root:not(.mobile) .aside-links__item:hover .aside-links__link {
    color: #00a8ff;
    position: relative; }

.content-form {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px 20px 30px;
  background-color: #00a8ff;
  color: #fff; }
  @media (min-width: 768px) {
    .content-form {
      padding: 40px; } }
  @media (min-width: 1230px) {
    .content-form {
      max-width: 670px; } }
  .content-form__title {
    color: #fff;
    margin-bottom: 10px; }
    @media (max-width: 767px) {
      .content-form__title {
        text-align: center; } }
  .content-form__description {
    line-height: 1.86; }
    @media (max-width: 767px) {
      .content-form__description {
        text-align: center; } }
  .content-form__error {
    display: none;
    width: 100%;
    position: absolute;
    bottom: -17px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.23;
    text-align: center; }
    @media (min-width: 768px) {
      .content-form__error {
        bottom: -17px; } }
    @media (min-width: 1230px) {
      .content-form__error {
        bottom: -20px; } }
    .content-form__error.active {
      display: block; }
  .content-form__itself {
    margin-top: 30px; }
  .content-form__body {
    padding-bottom: 30px; }
  .content-form__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .content-form__line + .content-form__line {
      margin-top: 20px; }
      @media (min-width: 1230px) {
        .content-form__line + .content-form__line {
          margin-top: 30px; } }
  .content-form__item {
    display: inline-block;
    width: 100%;
    position: relative; }
    .content-form__item + .content-form__item {
      margin-top: 20px; }
      @media (max-width: 767px) {
        .content-form__item + .content-form__item {
          margin-top: 20px; } }
    @media (min-width: 768px) {
      :root .content-form__item--sm {
        width: calc((100% - 30px) / 3);
        margin-top: 0; } }
    @media (min-width: 1230px) {
      :root .content-form__item--sm {
        width: calc((100% - 30px * 2) / 3); } }
    @media (min-width: 1230px) {
      :root .content-form__item--sm:nth-of-type(n+3) {
        margin-top: 0; } }
    @media (min-width: 768px) {
      :root .content-form__item--md {
        width: calc((100% - 30px) / 2);
        margin-top: 0; } }
  .content-form__link {
    color: #fff;
    text-decoration: underline; }
    .content-form__link:hover {
      text-decoration: none; }
  .content-form__condition-checkbox + .content-form__condition-text {
    margin-left: 16px; }
  .content-form__condition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px; }
    .content-form__condition-text {
      font-size: 14px;
      font-weight: 300;
      line-height: 2.2; }
  .content-form__submit-btn {
    display: block;
    width: 100%; }
    @media (min-width: 768px) {
      .content-form__submit-btn {
        display: inline-block;
        padding-left: 35px;
        padding-right: 35px;
        width: auto; } }

@media (max-width: 767px) {
  .content-tabs {
    margin-left: -10px;
    margin-right: -10px; } }

@media (max-width: 767px) {
  .content-tabs__title {
    padding-left: 10px;
    padding-right: 10px; } }

.content-tabs__tabs {
  border-bottom: 1px solid rgba(0, 69, 104, 0.15);
  overflow-x: auto; }
  @media (max-width: 767px) {
    .content-tabs__tabs {
      padding-left: 10px; } }
  @media (min-width: 768px) {
    .content-tabs__tabs {
      overflow-x: inherit; } }

.content-tabs__tabs-item {
  white-space: nowrap;
  padding-right: 15px;
  padding-left: 15px; }
  @media (max-width: 767px) {
    .content-tabs__tabs-item:last-of-type {
      padding-right: 10px; } }

.content-tabs__tabs-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.content-tabs__tab {
  display: block;
  position: relative;
  padding: 20px 0;
  line-height: 1;
  color: #333;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out; }
  .content-tabs__tab:hover {
    color: #00a8ff; }
  .content-tabs__tab--active::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #00a8ff; }

.content-tabs__section {
  display: none; }
  .content-tabs__section--active {
    display: block; }

.content-tabs__list {
  margin-top: 40px; }
  @media (max-width: 767px) {
    .content-tabs__list {
      padding-left: 10px;
      padding-right: 10px; } }

.content-tabs__slider {
  position: relative; }

.content-tabs__slider-inner {
  height: 54px;
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out; }
  .content-tabs__slider-inner.slick-initialized {
    overflow: initial;
    opacity: 1;
    height: auto; }

.content-tabs__slider-wrapper {
  display: inline-block;
  vertical-align: top;
  width: 97%;
  margin-left: -30px; }
  @media (min-width: 1230px) {
    .content-tabs__slider-wrapper {
      width: 98.6%; } }

.content-tabs__slider-btn {
  display: inline-block;
  fill: #00a8ff;
  vertical-align: top; }
  .content-tabs__slider-btn::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -21px;
    width: 34px;
    height: 56px; }
  .content-tabs__slider-btn svg {
    z-index: 4;
    position: relative; }
  :root:not(.mobile) .content-tabs__slider-btn:hover {
    fill: #008ed7; }
  .content-tabs__slider-btn.slick-disabled {
    opacity: 0; }

.content-tabs__slider-btn--prev {
  margin-top: 16px;
  left: -10px; }
  .content-tabs__slider-btn--prev::before {
    content: "";
    position: absolute;
    left: -17px;
    z-index: 1;
    top: -21px;
    width: 25px;
    height: 56px;
    background-image: -webkit-gradient(linear, right top, left top, from(white), to(#fff));
    background-image: linear-gradient(to left, white, #fff); }
  .content-tabs__slider-btn--prev::after {
    left: 0;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(#fff));
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0), #fff); }

.content-tabs__slider-btn--next {
  margin-top: 18px;
  right: 0;
  top: 0; }
  .content-tabs__slider-btn--next::after {
    right: 15px;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#fff));
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff); }
  .content-tabs__slider-btn--next.disabled {
    display: none; }

@media (min-width: 1230px) {
  .basic-article__container::after {
    clear: both;
    content: '';
    display: table; } }

@media (min-width: 1230px) {
  .basic-article__grid-heading {
    float: left;
    width: 670px; } }

@media (min-width: 1230px) {
  .basic-article__grid-info {
    float: right;
    width: 370px;
    margin-top: 33px; } }

@media (min-width: 1230px) {
  .basic-article__grid-info-desktop {
    margin-top: 33px; } }

@media (min-width: 1230px) {
  .basic-article__grid-main {
    float: left;
    width: 670px; } }

* + .basic-article__channel-widget {
  margin-top: 30px; }
  @media (min-width: 768px) {
    * + .basic-article__channel-widget {
      margin-top: 40px; } }
  @media (min-width: 1230px) {
    * + .basic-article__channel-widget {
      margin-top: 50px; } }

.announcements__header-container {
  text-align: center; }
  @media (min-width: 768px) {
    .announcements__header-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media (min-width: 768px) and (min-width: 768px) {
    .announcements--all-announcements .announcements__header-container {
      margin-bottom: 32px; } }
  @media (min-width: 768px) and (min-width: 1230px) {
    .announcements--all-announcements .announcements__header-container {
      margin-bottom: 44px; } }

.announcements.announcements--all-announcements {
  margin-top: 20px; }
  @media (min-width: 768px) {
    .announcements.announcements--all-announcements {
      margin-top: 42px; } }
  @media (min-width: 1230px) {
    .announcements.announcements--all-announcements {
      margin-top: 50px; } }

* + .announcements__top-link {
  margin-top: 15px; }

.announcements__header + .announcements__body {
  margin-top: 33px; }
  .announcements--all-announcements .announcements__header + .announcements__body {
    margin-top: 20px; }

.announcements__list {
  height: 0;
  opacity: 0;
  overflow: hidden;
  will-change: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
  .announcements--all-announcements .announcements__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
    opacity: 1;
    overflow: visible;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .announcements__list.slick-initialized {
    height: auto;
    opacity: 1;
    overflow: visible; }
  @media (min-width: 768px) {
    .announcements__list {
      width: 750px;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 1230px) {
    .announcements__list {
      width: 1213px; } }

.announcements__item {
  padding: 0 12px; }
  .announcements--all-announcements .announcements__item {
    margin-bottom: 10px;
    padding: 0 10px; }
    @media (min-width: 768px) {
      .announcements--all-announcements .announcements__item {
        margin-bottom: 25px;
        padding: 0 12px; } }
    @media (min-width: 1230px) {
      .announcements--all-announcements .announcements__item {
        padding: 0 14px; } }
  @media (min-width: 1230px) {
    .announcements__item {
      padding: 0 15px; }
      .announcements--all-announcements .announcements__item {
        margin-bottom: 30px; } }
  @media (min-width: 768px) {
    .announcements__item:nth-of-type(n+3) {
      opacity: 0 !important; }
      .announcements--all-announcements .announcements__item:nth-of-type(n+3) {
        opacity: 1 !important; } }
  @media (min-width: 1230px) {
    .announcements__item:nth-of-type(n+3) {
      opacity: 1 !important; } }
  @media (min-width: 1230px) {
    .announcements__item:nth-of-type(n+4) {
      opacity: 0 !important; } }

.announcements__return-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-bottom: 6px; }
  @media (min-width: 768px) {
    .announcements__return-wrap {
      margin-bottom: 12px;
      text-align: left; } }
  @media (min-width: 1230px) {
    .announcements__return-wrap {
      margin-bottom: 16px; } }

@media (max-width: 767px) {
  .announcements--all-announcements .announcements__title {
    margin-bottom: 15px; } }

.announcements__all-btn {
  display: block;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  fill: #00a8ff; }
  @media (min-width: 768px) {
    .announcements__all-btn {
      width: 194px;
      font-size: 14px;
      padding: 16px 30px; } }
  .announcements__all-btn:hover {
    fill: #fff; }
  .announcements__all-btn .svg-icon {
    margin-right: 12px; }

.announcements--all-announcements .announcements__tv-program-btn {
  padding: 13px 16px 13px 17px;
  font-weight: 300; }

.announcements--all-announcements .announcements__footer {
  margin-top: 10px; }

@media (min-width: 768px) {
  .announcements .slick-list {
    padding-left: 20px;
    padding-right: 20px; } }

@media (min-width: 1230px) {
  .announcements .slick-list {
    padding-left: 13px; } }

.announcements .slick-track {
  padding-bottom: 35px; }

.announcements .slick-dots {
  bottom: 0; }

.announcements .slick-dots li {
  margin: 0 4px; }

.announcements .slick-dots li button::before {
  background-color: #00a8ff;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 1;
  position: static;
  display: inline-block; }

.announcements .slick-dots li.slick-active button::before {
  -webkit-box-shadow: 0 0 3px 1px #00a8ff;
          box-shadow: 0 0 3px 1px #00a8ff; }

.announcements .slick-dotted.slick-slider {
  margin-bottom: 0; }

.announcements--news .announcement-card__footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (min-width: 768px) {
    .announcements--news .announcement-card__footer {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }

@media (min-width: 1230px) {
  .announcements--content .announcements__header .announcements__header-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; } }

@media (min-width: 1230px) {
  .announcements--content .announcements__header .announcements__top-link {
    margin-left: auto;
    margin-right: 30px;
    margin-top: 0; } }

.announcements--content .announcements__header .announcements__tv-program-btn {
  display: none; }
  @media (min-width: 1230px) {
    .announcements--content .announcements__header .announcements__tv-program-btn {
      display: inline-block;
      min-width: 146px; } }

.announcements--content .announcements__footer {
  margin-top: 15px;
  text-align: center; }
  @media (min-width: 768px) {
    .announcements--content .announcements__footer {
      margin-top: -10px; } }
  @media (min-width: 1230px) {
    .announcements--content .announcements__footer {
      display: none; } }
  .announcements--content .announcements__footer .announcements__tv-program-btn {
    min-width: 152px; }

.announcement-card {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  width: 320px; }
  @media (max-width: 767px) {
    .announcements--all-announcements .announcement-card {
      width: 300px;
      padding-left: 0;
      padding-right: 0; } }
  @media (min-width: 768px) {
    .announcement-card {
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      margin-right: 0;
      width: 330px;
      text-align: left; } }
  @media (min-width: 1230px) {
    .announcement-card {
      width: 367px; }
      .announcements--all-announcements .announcement-card {
        width: 370px; } }
  .announcement-card__pic-wrap {
    display: block;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    overflow: hidden;
    position: relative; }
    .announcement-card__pic-wrap::before {
      content: '';
      position: static;
      padding-top: 60%;
      display: block; }
    :root:not(.mobile) .announcement-card__pic-wrap:hover::after {
      opacity: 1; }
    .announcement-card__pic-wrap::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.2);
      opacity: 0;
      will-change: opacity;
      -webkit-transition-property: opacity;
      transition-property: opacity;
      -webkit-transition-duration: 250ms;
              transition-duration: 250ms;
      -webkit-transition-timing-function: ease-out;
              transition-timing-function: ease-out; }
  .announcement-card__img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
  .announcement-card__info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 14px 10px 30px;
    position: relative; }
    @media (min-width: 768px) {
      .announcement-card__info-container {
        padding: 16px 24px 32px; } }
  .announcement-card__heading {
    display: block;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms; }
    :root:not(.mobile) .announcement-card__heading:hover {
      color: #00a8ff; }
  .announcement-card__description {
    line-height: 1.86; }
  .announcement-card__heading + .announcement-card__description {
    margin-top: 7px; }
  .announcement-card__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%; }
    @media (min-width: 768px) {
      .announcement-card__footer {
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; } }
  .announcement-card__pic-wrap + .announcement-card__footer,
  .announcement-card__heading + .announcement-card__footer,
  .announcement-card__description + .announcement-card__footer {
    margin-top: 16px; }
  .announcement-card__date {
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    color: #7c90a9;
    background-color: #eff5fa;
    border-radius: 100px;
    padding: 6px 15px; }
  .announcement-card__channel-img {
    width: auto; }
  .announcement-card__banner-link {
    color: inherit;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-size: contain;
    padding: 14px 10px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 3px; }
    @media (min-width: 768px) {
      .announcement-card__banner-link {
        padding: 16px 24px 32px; } }
    :root:not(.mobile) .announcement-card__banner-link:hover::before {
      opacity: 1; }
    .announcement-card__banner-link::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.2);
      opacity: 0;
      will-change: opecity;
      -webkit-transition-property: opacity;
      transition-property: opacity;
      -webkit-transition-duration: 250ms;
              transition-duration: 250ms;
      -webkit-transition-timing-function: ease-out;
              transition-timing-function: ease-out; }
  .announcement-card__video-play-btn {
    position: absolute;
    text-align: center;
    display: inline-block;
    background-color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    will-change: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms; }
  .announcement-card__video-play-btn .svg-icon {
    width: 8px;
    height: 8px;
    position: static;
    display: inline-block;
    margin-left: 4px;
    margin-top: 20px; }
  .announcement-card__video-title {
    color: white;
    position: relative; }
  :root .announcement-card__price {
    display: block;
    color: #333;
    text-align: center; }
  .announcement-card__add-btn {
    width: 260px; }
    @media (min-width: 768px) {
      .announcement-card__add-btn {
        width: auto;
        padding-left: 34px;
        padding-right: 34px; } }
  .announcement-card__add-btn .svg-icon {
    fill: white;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px; }
  .announcement-card__price + .announcement-card__add-btn {
    margin-top: 16px; }
    @media (min-width: 768px) {
      .announcement-card__price + .announcement-card__add-btn {
        margin-top: 0; } }

.channel-widget {
  margin-bottom: 30px; }
  .channel-widget__header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #f1f3f6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px;
    position: relative; }
    @media (min-width: 768px) {
      .channel-widget__header {
        padding: 30px 24px; } }
    @media (min-width: 1230px) {
      .channel-widget__header {
        padding: 30px; } }
  .channel-widget__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-preferred-size: 73%;
        flex-basis: 73%; }
  .channel-widget__logo {
    position: relative;
    border: 1px solid #f1f3f6;
    border-radius: 50%;
    display: block;
    height: 64px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 12px;
    width: 64px; }
    @media (min-width: 768px) {
      .channel-widget__logo {
        margin-right: 16px; } }
    @media (min-width: 1230px) {
      .channel-widget__logo {
        margin-right: 20px; } }
    .channel-widget__logo img {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 45px;
      height: auto;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .channel-widget__img {
    vertical-align: bottom;
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .channel-widget__name {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5; }
    @media (min-width: 768px) {
      .channel-widget__name {
        font-size: 18px;
        line-height: 1.44; } }
  .channel-widget__options {
    font-size: 0;
    margin-left: auto;
    white-space: nowrap; }
  .channel-widget__option {
    display: inline-block;
    vertical-align: middle; }
    .channel-widget__option + .channel-widget__option {
      margin-left: 20px; }
  .channel-widget__watch-online {
    display: none;
    fill: #c6006b;
    height: 18px;
    width: 22px; }
    :root:not(.mobile) .channel-widget__watch-online:hover {
      fill: #e4007c; }
    .channel-widget--player .channel-widget__watch-online {
      display: inline-block; }
  .channel-widget__like {
    height: 21px;
    fill: transparent;
    stroke: #7c90a9;
    -webkit-transition: stroke 0.2s ease-out, fill 0.2s ease-out;
    transition: stroke 0.2s ease-out, fill 0.2s ease-out;
    width: 23px; }
    :root:not(.mobile) .channel-widget__like:hover {
      stroke: #c6006b; }
    .channel-widget .channel-widget__like {
      fill: #c6006b;
      stroke: #c6006b; }
  .channel-widget__body {
    padding-top: 40px;
    padding-bottom: 40px; }
  .channel-widget__shedule {
    padding-left: 20px;
    padding-right: 20px; }
    @media (min-width: 768px) {
      .channel-widget__shedule {
        padding-left: 30px;
        padding-right: 30px; } }
    @media (min-width: 1170px) {
      .channel-widget__shedule {
        padding-left: 40px;
        padding-right: 40px; } }
    .channel-widget__shedule-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .channel-widget__shedule-item + .channel-widget__shedule-item {
        margin-top: 30px; }
      .channel-widget__shedule-item-act {
        margin-right: 25px; }
      .channel-widget__shedule-item-title {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.38;
        color: #333;
        margin-bottom: 5px; }
      .channel-widget__shedule-item-program {
        line-height: 1.86;
        color: #7c90a9; }
        .channel-widget__shedule-item-program--link {
          -webkit-transition: color 0.2s ease-out;
          transition: color 0.2s ease-out; }
          .channel-widget__shedule-item-program--link:hover {
            color: #00a8ff; }
  .channel-widget__play {
    position: relative; }
    .channel-widget__play-btn {
      width: 50px;
      height: 50px;
      color: #fff;
      border-radius: 50%; }
      .channel-widget__play-btn-icon {
        border-bottom: 5px solid transparent;
        border-left: 8px solid #00a8ff;
        border-top: 5px solid transparent;
        bottom: auto;
        content: "";
        display: block;
        height: 0;
        left: 24px;
        top: 21px;
        position: absolute;
        width: 0; }
      .channel-widget__play-btn-progress {
        display: block;
        height: 100%;
        width: 52px; }
      .channel-widget__play-btn-svg {
        display: block; }
  .channel-widget__bookmark {
    position: relative; }
    .channel-widget__bookmark-btn {
      width: 50px;
      height: 50px;
      color: #fff;
      border-radius: 50%; }
      .channel-widget__bookmark-btn svg {
        fill: #fff; }
      .channel-widget__bookmark-btn-progress {
        display: inline-block; }
  @media (max-width: 767px) {
    .channel-widget__header--action {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 767px) {
    .channel-widget__header--action .channel-widget__title {
      margin-bottom: 20px; } }
  @media (max-width: 767px) {
    .channel-widget__header--action .channel-widget__options {
      margin-left: 0;
      width: 100%;
      text-align: center; } }
  @media (max-width: 767px) {
    .channel-widget__header--action .channel-widget__action {
      width: 100%;
      max-width: 300px; } }
  .channel-widget__tooltip {
    padding: 18px 16px;
    font-family: Fedra Sans Pro LF, sans-serif; }
    .channel-widget__tooltip-title {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.38;
      margin-bottom: 5px;
      color: #333; }
    .channel-widget__tooltip-description {
      font-size: 14px;
      font-weight: 200;
      line-height: 1.86;
      text-align: left;
      color: #7c90a9; }

.advantages {
  list-style: none;
  margin: 30px 0;
  padding: 0; }
  @media (min-width: 768px) {
    .advantages {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-left: -30px; } }
  .advantages__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    list-style: inherit; }
    @media (min-width: 768px) {
      .advantages__item {
        margin-left: 30px;
        width: calc(50% - 30px); } }
    .advantages--special .advantages__item {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media (min-width: 768px) {
        .advantages--special .advantages__item {
          width: 100%;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row; } }
    @media (min-width: 768px) {
      .advantages--plain .advantages__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-left: 30px;
        width: calc(33.33333% - 30px); } }
  .advantages__img {
    background-color: #00a8ff;
    border-radius: 50%;
    height: 70px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 20px;
    overflow: hidden;
    position: relative;
    width: 70px; }
    .advantages--special .advantages__img {
      -ms-flex-item-align: start;
          align-self: flex-start; }
      @media (max-width: 767px) {
        .advantages--special .advantages__img {
          -ms-flex-item-align: center;
              align-self: center;
          margin-bottom: 12px;
          margin-right: 0; } }
    .advantages--plain .advantages__img {
      margin-bottom: 15px; }
    .advantages__img img {
      left: 50%;
      position: absolute;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .advantages__info {
    font-family: Fedra Sans Pro LF, sans-serif;
    text-align: left; }
  .advantages__title {
    color: #333;
    display: block;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.38;
    margin-bottom: 5px; }
    .advantages--special .advantages__title {
      text-align: center; }
      @media (min-width: 768px) {
        .advantages--special .advantages__title {
          font-size: 25px;
          text-align: left; } }
  .advantages__description {
    color: #7c90a9;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.57; }
    .advantages__description p {
      color: inherit;
      font-size: inherit;
      line-height: inherit; }
      .advantages--plain .advantages__description p {
        color: #333;
        font-size: 15px;
        line-height: 1.73; }
      .advantages__description p + p {
        margin-top: 10px; }

.download__list {
  display: inline-block;
  vertical-align: top;
  margin: 40px 0; }

.download__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .download__item + .download__item {
    margin-top: 30px; }
  .download__item:hover .download__title {
    color: #00a8ff; }
  .download__item:hover .download__logo {
    -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
            box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.1);
    border-color: transparent; }

.download__logo {
  padding: 22px 25px;
  border: 1px solid rgba(0, 69, 104, 0.1);
  border-radius: 50%;
  margin-right: 20px;
  -webkit-transition: -webkit-box-shadow 0.2s ease-out;
  transition: -webkit-box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out; }
  @media (min-width: 768px) {
    .download__logo {
      margin-right: 30px; } }
  .download__logo svg {
    fill: #e4007c; }

.download__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.29;
  color: #333;
  margin-bottom: 2px;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out; }
  @media (min-width: 768px) {
    .download__title {
      font-size: 16px;
      line-height: 1.38; } }

.download__size {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.57;
  color: #7c90a9; }
  @media (min-width: 768px) {
    .download__size {
      line-height: 1.86; } }

.step-process {
  margin-top: 50px;
  margin-bottom: 50px; }
  .step-process__list {
    counter-reset: item; }
  .step-process__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .step-process__item + .step-process__item {
      margin-top: 30px; }
  .step-process__number {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e4007c;
    margin-right: 20px; }
    .step-process__number::before {
      content: counter(item);
      counter-increment: item;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      font-size: 24px;
      font-weight: 500;
      color: #fff; }
    @media (min-width: 768px) {
      .step-process__number {
        margin-right: 30px; } }
  .step-process__order {
    width: 70%; }
    @media (min-width: 768px) {
      .step-process__order {
        width: 100%;
        max-width: 345px; } }
  .step-process__title {
    font-size: 14px;
    line-height: 1.29;
    font-weight: 500;
    color: #333;
    margin-top: 3px;
    margin-bottom: 5px; }
    @media (min-width: 768px) {
      .step-process__title {
        font-size: 16px;
        line-height: 1.38; } }
  .step-process__description {
    line-height: 1.57;
    color: #7c90a9; }
    @media (min-width: 768px) {
      .step-process__description {
        line-height: 1.86; } }
  .step-process__link {
    margin-left: 6px; }

.logo-items {
  max-width: 575px;
  margin-top: 20px; }
  @media (min-width: 768px) {
    .logo-items {
      margin-top: 30px;
      margin-bottom: 30px; } }
  .logo-items__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center; }
  .logo-items__item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    margin-top: 10px;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .logo-items__item {
        -ms-flex-preferred-size: 33.333%;
            flex-basis: 33.333%;
        margin-top: 30px;
        margin-bottom: 30px; } }

.logo-item {
  display: inline-block;
  vertical-align: top; }
  .logo-item:hover .logo-item__logo {
    -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.15);
            box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.15); }
  .logo-item__logo {
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    margin-bottom: 5px;
    -webkit-transition: -webkit-box-shadow 0.2s ease-out;
    transition: -webkit-box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out; }
  .logo-item__name {
    font-weight: 300;
    line-height: 1.57;
    color: #7c90a9; }
  .logo-item__tooltip {
    padding: 18px 16px;
    font-family: Fedra Sans Pro LF, sans-serif; }
    .logo-item__tooltip-title {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.38;
      margin-bottom: 5px;
      color: #333; }
    .logo-item__tooltip-description {
      font-size: 14px;
      font-weight: 200;
      line-height: 1.86;
      text-align: left;
      color: #7c90a9; }

.plain-helper {
  max-width: 570px;
  margin-top: 30px;
  margin-bottom: 30px; }
  .plain-helper__icon {
    display: inline-block;
    vertical-align: top;
    fill: #c6006b;
    margin-right: 10px;
    margin-top: 5px; }
    @media (min-width: 768px) {
      .plain-helper__icon {
        margin-top: 2px; } }
  .plain-helper__description {
    display: inline-block;
    vertical-align: top;
    width: 87%;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.73; }
    @media (min-width: 768px) {
      .plain-helper__description {
        width: 92%; } }
    .plain-helper__description p {
      color: inherit;
      font-size: inherit;
      line-height: inherit; }

.additional-offers__title {
  text-align: center; }
  @media (min-width: 768px) {
    .additional-offers__title {
      text-align: left; } }

@media (min-width: 768px) {
  .additional-offers__header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

.additional-offers__header-container + .additional-offers__body {
  margin-top: 33px; }

.additional-offers__buttons {
  display: none; }
  @media (min-width: 768px) {
    .additional-offers__buttons {
      display: block;
      margin-top: 6px; } }
  @media (min-width: 1230px) {
    .additional-offers__buttons {
      margin-top: 3px; } }

.additional-offers__slider-btn {
  background-color: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
  display: inline-block;
  fill: #00a8ff; }
  .additional-offers__slider-btn.slick-disabled {
    opacity: 0.4; }
  .additional-offers__slider-btn + .additional-offers__slider-btn {
    margin-left: 8px; }

.additional-offers__slider-btn .svg-icon {
  fill: inherit;
  width: 20px;
  height: 20px; }

.additional-offers__list {
  height: 0;
  opacity: 0;
  overflow: hidden;
  will-change: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  position: relative; }
  .additional-offers__list.slick-initialized {
    height: auto;
    opacity: 1;
    overflow: visible; }
  @media (min-width: 768px) {
    .additional-offers__list {
      width: 726px;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 1230px) {
    .additional-offers__list {
      width: 1210px; } }

.additional-offers__item {
  padding: 0 12px;
  will-change: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  opacity: 1; }
  @media (min-width: 768px) {
    .additional-offers__item {
      padding: 0; } }
  @media (min-width: 768px) {
    .additional-offers__item + .additional-offers__item {
      margin-left: 24px; } }
  @media (min-width: 1230px) {
    .additional-offers__item + .additional-offers__item {
      margin-left: 30px; } }
  @media (min-width: 768px) {
    .additional-offers__item[aria-hidden="true"] {
      opacity: 0.3; } }

.additional-offers .announcement-card__footer {
  display: block; }
  @media (min-width: 768px) {
    .additional-offers .announcement-card__footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

@media (min-width: 768px) {
  .additional-offers .slick-list {
    padding-left: 20px;
    padding-right: 20px; } }

.additional-offers .slick-track {
  padding-bottom: 35px; }

.additional-offers .slick-dots {
  bottom: 0; }

.additional-offers .slick-dots li {
  margin: 0 4px; }

.additional-offers .slick-dots li button::before {
  background-color: #00a8ff;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 1;
  position: static;
  display: inline-block; }

.additional-offers .slick-dots li.slick-active button::before {
  -webkit-box-shadow: 0 0 3px 1px #00a8ff;
          box-shadow: 0 0 3px 1px #00a8ff; }

.additional-offers .slick-dotted.slick-slider {
  margin-bottom: 0; }

.promo-banner {
  color: white;
  background-color: #cdd8e3;
  overflow: hidden;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-weight: 300;
  padding-top: 16px;
  padding-bottom: 40px; }
  @media (min-width: 768px) {
    .promo-banner {
      padding-top: 40px;
      padding-bottom: 50px;
      min-height: 360px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  @media (min-width: 1230px) {
    .promo-banner {
      padding-top: 120px;
      padding-bottom: 150px;
      min-height: 640px; } }
  .promo-banner__container {
    position: relative; }
    @media (min-width: 768px) {
      .promo-banner__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 1000px; } }
    @media (min-width: 1230px) {
      .promo-banner__container {
        max-width: none; } }
  .promo-banner__pic-wrap {
    height: 0; }
    @media (min-width: 768px) {
      .promo-banner__pic-wrap {
        width: 50%;
        position: relative;
        height: auto; } }
    @media (min-width: 1230px) {
      .promo-banner__pic-wrap {
        width: 57.5%; } }
  .promo-banner__img {
    width: 540px;
    height: auto;
    position: absolute;
    top: -124px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block; }
    @media (min-width: 768px) {
      .promo-banner__img {
        width: 750px;
        left: 0;
        top: 50%;
        -webkit-transform: translateX(-29%) translateY(-50%);
                transform: translateX(-29%) translateY(-50%); } }
    @media (min-width: 1230px) {
      .promo-banner__img {
        width: 1340px;
        -webkit-transform: translateX(-28%) translateY(calc(-50% + 16px));
                transform: translateX(-28%) translateY(calc(-50% + 16px));
        left: -6px; } }
  .promo-banner__info-container {
    position: relative;
    z-index: 1;
    padding-top: 280px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .promo-banner__info-container {
        padding-top: 0;
        width: 50%;
        padding-left: 2%;
        text-align: left;
        margin-right: 0; } }
    @media (min-width: 1230px) {
      .promo-banner__info-container {
        margin-left: 0;
        padding-left: 0;
        width: 440px; } }
  .promo-banner__features-list {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0; }
    @media (min-width: 768px) {
      .promo-banner__features-list {
        position: static;
        margin-bottom: 21px; } }
    @media (min-width: 1230px) {
      .promo-banner__features-list {
        margin-bottom: 34px; } }
  @media (min-width: 768px) {
    .promo-banner__feature-item {
      display: inline-block; } }
  .promo-banner__feature-item + .promo-banner__feature-item {
    margin-top: 12.4px; }
    @media (min-width: 768px) {
      .promo-banner__feature-item + .promo-banner__feature-item {
        margin-left: 20px; } }
    @media (min-width: 1230px) {
      .promo-banner__feature-item + .promo-banner__feature-item {
        margin-left: 30px; } }
  .promo-banner__feature-icon {
    width: 34px;
    height: auto; }
    @media (min-width: 768px) {
      .promo-banner__feature-icon {
        width: 40px; } }
    @media (min-width: 1230px) {
      .promo-banner__feature-icon {
        width: 54px; } }
  .promo-banner__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.27;
    color: inherit;
    max-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .promo-banner__title {
        font-size: 36px;
        font-weight: 500;
        max-width: none; } }
    @media (min-width: 1230px) {
      .promo-banner__title {
        font-size: 56px;
        line-height: 1.14; } }
  .promo-banner__description {
    font-size: 12px;
    line-height: 1.75;
    width: 86.6666%;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .promo-banner__description {
        font-size: 15px;
        line-height: 1.73;
        width: 100%; } }
    .promo-banner__description p + p {
      margin-top: 10px; }
  .promo-banner__title + .promo-banner__description {
    margin-top: 12px; }
    @media (min-width: 768px) {
      .promo-banner__title + .promo-banner__description {
        margin-top: 15px; } }
  .promo-banner__title + .promo-banner__btn-wrap,
  .promo-banner__description + .promo-banner__btn-wrap {
    margin-top: 17px; }
    @media (min-width: 768px) {
      .promo-banner__title + .promo-banner__btn-wrap,
      .promo-banner__description + .promo-banner__btn-wrap {
        margin-top: 28px; } }
    @media (min-width: 1230px) {
      .promo-banner__title + .promo-banner__btn-wrap,
      .promo-banner__description + .promo-banner__btn-wrap {
        margin-top: 48px; } }
  .promo-banner__btn {
    display: inline-block;
    width: 83.3333%; }
    @media (min-width: 768px) {
      .promo-banner__btn {
        width: 260px; } }

.alt-promo-banner {
  position: relative;
  overflow: hidden;
  height: 578px; }
  .page--online-enter .alt-promo-banner {
    margin-top: 48px; }
  @media (min-width: 768px) {
    .alt-promo-banner {
      height: auto;
      padding-top: 44px;
      padding-bottom: 44px; }
      .page--online-enter .alt-promo-banner {
        margin-top: 72px; } }
  @media (min-width: 1230px) {
    .alt-promo-banner {
      padding-top: 110px;
      padding-bottom: 110px; }
      .page--online-enter .alt-promo-banner {
        margin-top: 100px; } }
  .alt-promo-banner__page-container {
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .alt-promo-banner__page-container {
        width: 89.0625%; } }
    @media (min-width: 1230px) {
      .alt-promo-banner__page-container {
        width: 1170px; } }
  .alt-promo-banner__img {
    position: absolute;
    width: auto;
    height: 374px;
    left: 0;
    bottom: 0; }
    @media (min-width: 700px) {
      .alt-promo-banner__img {
        width: 100%;
        height: auto; } }
    @media (min-width: 768px) {
      .alt-promo-banner__img {
        top: 0;
        height: 100%;
        width: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); } }
    @media (min-width: 900px) {
      .alt-promo-banner__img {
        width: 100%;
        height: auto;
        top: -40px; } }
  .alt-promo-banner__content {
    color: #fff;
    display: block;
    text-align: center;
    background-color: #00a8ff;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    height: 210px; }
    @media (min-width: 768px) {
      .alt-promo-banner__content {
        width: 380px;
        height: 380px;
        border-radius: 50%;
        margin-left: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-shadow: 0 0 0 115px rgba(255, 255, 255, 0.15), 0 0 0 240px rgba(255, 255, 255, 0.1), 0 0 0 365px rgba(255, 255, 255, 0.1);
                box-shadow: 0 0 0 115px rgba(255, 255, 255, 0.15), 0 0 0 240px rgba(255, 255, 255, 0.1), 0 0 0 365px rgba(255, 255, 255, 0.1); } }
    @media (min-width: 900px) {
      .alt-promo-banner__content {
        margin-right: 20px; } }
    @media (min-width: 1230px) {
      .alt-promo-banner__content {
        width: 468px;
        height: 468px;
        -webkit-box-shadow: 0 0 0 140px rgba(255, 255, 255, 0.15), 0 0 0 285px rgba(255, 255, 255, 0.1), 0 0 0 430px rgba(255, 255, 255, 0.1);
                box-shadow: 0 0 0 140px rgba(255, 255, 255, 0.15), 0 0 0 285px rgba(255, 255, 255, 0.1), 0 0 0 430px rgba(255, 255, 255, 0.1); } }
  .alt-promo-banner__content-inner {
    width: 240px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1; }
    @media (min-width: 768px) {
      .alt-promo-banner__content-inner {
        width: 290px; } }
    @media (min-width: 768px) {
      .alt-promo-banner__content-inner {
        width: 370px; } }
  .alt-promo-banner__bow {
    fill: #00a8ff;
    width: 100%;
    position: absolute;
    height: 322px;
    bottom: 1px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    left: 0; }
    @media (min-width: 768px) {
      .alt-promo-banner__bow {
        display: none; } }
  .alt-promo-banner__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    color: inherit; }
    @media (min-width: 768px) {
      .alt-promo-banner__title {
        font-size: 30px; }
        .alt-promo-banner--non-abonent .alt-promo-banner__title {
          font-size: 36px;
          line-height: 1.06; } }
    @media (min-width: 1230px) {
      .alt-promo-banner__title {
        font-size: 36px;
        line-height: 1.25; } }
  .alt-promo-banner__description {
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.69; }
    @media (min-width: 768px) {
      .alt-promo-banner__description {
        font-size: 16px; }
        .alt-promo-banner--non-abonent .alt-promo-banner__description {
          font-size: 18px;
          line-height: 1.5; } }
    @media (min-width: 1230px) {
      .alt-promo-banner__description {
        font-size: 18px;
        line-height: 1.5; } }
  * + .alt-promo-banner__description {
    margin-top: 20px; }
    @media (min-width: 1230px) {
      * + .alt-promo-banner__description {
        margin-top: 30px; } }
  .alt-promo-banner__title + .alt-promo-banner__btn-wrap,
  .alt-promo-banner__description + .alt-promo-banner__btn-wrap {
    margin-top: 30px; }
    @media (min-width: 1230px) {
      .alt-promo-banner__title + .alt-promo-banner__btn-wrap,
      .alt-promo-banner__description + .alt-promo-banner__btn-wrap {
        margin-top: 40px; } }
  @media (min-width: 768px) {
    .alt-promo-banner--non-abonent .alt-promo-banner__btn {
      font-size: 16px; } }

@media (min-width: 768px) {
  .alt-promo-banner--reversed .alt-promo-banner__content {
    margin-left: 0; } }

.alt-promo-banner--reversed .alt-promo-banner__img {
  right: 0;
  left: auto; }
  @media (min-width: 768px) {
    .alt-promo-banner--reversed .alt-promo-banner__img {
      right: auto;
      left: 50%; } }

@media (min-width: 900px) {
  .alt-promo-banner--non-abonent {
    padding-top: 20px;
    padding-bottom: 20px; } }

@media (min-width: 1230px) {
  .alt-promo-banner--non-abonent {
    padding-top: 36px;
    padding-bottom: 36px; } }

.link-banner {
  color: white;
  font-family: Fedra Sans Pro LF, sans-serif;
  font-weight: 300; }
  @media (min-width: 768px) {
    .link-banner {
      min-height: 140px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .link-banner__inner {
    border-radius: 3px;
    overflow: hidden;
    background-color: #00a8ff;
    display: block;
    color: inherit;
    position: relative;
    padding-top: 32px;
    padding-bottom: 24px; }
    @media (min-width: 768px) {
      .link-banner__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 48px;
        padding-bottom: 50px; } }
    @media (min-width: 1230px) {
      .link-banner__inner {
        padding-top: 53px;
        padding-bottom: 55px; } }
  .link-banner__link {
    display: block;
    color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .link-banner__pic-wrap {
    height: 0; }
    @media (min-width: 768px) {
      .link-banner__pic-wrap {
        width: 50%;
        position: relative;
        height: auto; }
        .link-banner--non-abonent .link-banner__pic-wrap {
          width: 49%; } }
    @media (min-width: 1230px) {
      .link-banner__pic-wrap {
        width: 40% !important; } }
  .link-banner__img {
    width: 530px;
    height: auto;
    position: absolute;
    top: -485px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block; }
    @media (min-width: 768px) {
      .link-banner__img {
        width: 620px;
        left: auto;
        top: 50%;
        -webkit-transform: translateX(25%) translateY(-50%);
                transform: translateX(25%) translateY(-50%);
        right: 0; } }
    @media (min-width: 1230px) {
      .link-banner__img {
        -webkit-transform: translateX(15%) translateY(-50%);
                transform: translateX(15%) translateY(-50%); } }
  .link-banner__info-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .link-banner__info-container {
        padding-top: 0;
        width: 50%;
        padding-left: 2%;
        text-align: left;
        margin-right: 0;
        margin-left: 0;
        max-width: 300px; }
        .link-banner--non-abonent .link-banner__info-container {
          max-width: 320px; } }
    @media (min-width: 1230px) {
      .link-banner__info-container {
        margin-left: 0;
        padding-left: 0;
        width: auto;
        max-width: none !important; } }
  .link-banner__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.27;
    color: inherit;
    max-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .link-banner__title {
        font-size: 24px;
        max-width: none;
        padding-right: 30px; } }
    @media (min-width: 1230px) {
      .link-banner__title {
        font-size: 36px;
        line-height: 1.14; } }
  .link-banner__description {
    font-size: 15px;
    line-height: 1.75;
    width: 86.6666%;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .link-banner__description {
        font-size: 18px;
        line-height: 1.73;
        width: 100%; } }
    @media (min-width: 1230px) {
      .link-banner__description {
        font-size: 24px;
        display: block; } }
    .link-banner__description p + p {
      margin-top: 10px; }
  .link-banner__title + .link-banner__description {
    margin-top: 8px; }
    @media (min-width: 768px) {
      .link-banner__title + .link-banner__description {
        margin-top: 20px; }
        .link-banner--non-abonent .link-banner__title + .link-banner__description {
          margin-top: 10px; } }
    @media (min-width: 1230px) {
      .link-banner__title + .link-banner__description {
        margin-top: 10px; } }
  .link-banner__close-btn {
    fill: #fff;
    background-color: transparent;
    padding: 0;
    position: absolute;
    right: 6px;
    top: 6px;
    display: inline-block;
    z-index: 1;
    will-change: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms; }
    :root:not(.mobile) .link-banner__close-btn:hover {
      opacity: 0.6; }
  .link-banner__close-btn .svg-icon {
    fill: inherit;
    width: 14px;
    height: 14px;
    padding: 6px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    display: inline-block; }

.check-order__result {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: #000;
  line-height: 1.7; }
  .check-order__result.active {
    display: block; }

.special-btn {
  opacity: 1;
  -webkit-transition-property: color, opacity;
  transition-property: color, opacity;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
  .special-btn:hover {
    opacity: 0.8; }

.channel-description {
  font-family: Fedra Sans Pro LF, sans-serif;
  color: #333; }
  .channel-description__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 1230px) {
      .channel-description__header {
        min-height: 92px; } }
  .channel-description__arrow-indicator {
    display: inline-block;
    fill: #00a8ff;
    margin-right: 10px;
    margin-top: -2px;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 350ms;
            transition-duration: 350ms;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
    .channel-description.active .channel-description__arrow-indicator {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    @media (min-width: 1230px) {
      .channel-description__arrow-indicator {
        display: none; } }
  .channel-description__arrow-indicator .svg-icon {
    fill: inherit;
    width: 16px;
    height: 16px; }
  .channel-description__title {
    font-size: 14px;
    line-height: 1.57;
    padding: 32px 0;
    font-weight: 350;
    cursor: pointer;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    @media (min-width: 768px) {
      .channel-description__title {
        font-size: 16px; } }
    @media (min-width: 1230px) {
      .channel-description__title {
        width: 185px; }
        .channel-packs__side .channel-description__title {
          display: none; } }
    .channel-description__title--checked {
      position: relative;
      color: #7c90a9; }
      @media (min-width: 1230px) {
        .channel-description__title--checked {
          padding-left: 55px;
          width: 240px; }
          .channel-description__title--checked::before {
            border-color: #7c90a9;
            background-color: #7c90a9;
            border-radius: 4px;
            content: "";
            height: 31px;
            left: -1px;
            position: absolute;
            top: 28px;
            -webkit-transition: border 0.2s ease-out;
            transition: border 0.2s ease-out;
            width: 31px; }
          .channel-description__title--checked::after {
            border-bottom: 2px solid #fff;
            border-left: 2px solid #fff;
            content: "";
            height: 5px;
            left: 8px;
            position: absolute;
            top: 38px;
            width: 10px;
            will-change: transform;
            -webkit-transform: rotate(-50deg) scale(1);
                    transform: rotate(-50deg) scale(1); } }
  .channel-description__visual-checkbox {
    position: relative;
    width: 31px;
    height: 31px;
    margin-left: 15px; }
    .channel-description__visual-checkbox::before {
      border-color: #7c90a9;
      background-color: #7c90a9;
      border-radius: 4px;
      content: "";
      height: 31px;
      left: -1px;
      position: absolute;
      top: 0;
      -webkit-transition: border 0.2s ease-out;
      transition: border 0.2s ease-out;
      width: 31px; }
    .channel-description__visual-checkbox::after {
      border-bottom: 2px solid #fff;
      border-left: 2px solid #fff;
      content: "";
      height: 5px;
      left: 8px;
      position: absolute;
      top: 10px;
      width: 10px;
      will-change: transform;
      -webkit-transform: rotate(-50deg) scale(1);
              transform: rotate(-50deg) scale(1); }
    @media (min-width: 1230px) {
      .channel-description__visual-checkbox {
        display: none; } }
  .channel-description__wrap-price {
    vertical-align: middle;
    margin-left: auto;
    margin-top: -4px; }
    @media (min-width: 1230px) {
      .channel-description__wrap-price {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3; } }
  .channel-description__price {
    display: block; }
    .channel-description__price--old {
      margin-top: 5px;
      font-weight: 500;
      font-size: 18px;
      color: #e4007c;
      text-decoration: line-through; }
      .channel-description__price--old .number {
        display: inline-block;
        font-weight: 500; }
  .channel-description__checkbox {
    vertical-align: middle;
    margin-left: 15px; }
    @media (min-width: 1230px) {
      .channel-description__checkbox {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-left: 0;
        margin-right: 25px; } }
  .channel-description__body {
    display: none; }
    @media (min-width: 768px) {
      .channel-description__body {
        margin-top: 7px; }
        .channel-description__body::after {
          clear: both;
          content: '';
          display: table; } }
    @media (min-width: 1230px) {
      .channel-description__body {
        display: none !important; }
        .channel-packs__side .channel-description__body {
          display: block !important; } }
  .channel-description__pic-wrap {
    position: relative;
    width: 100%;
    overflow: hidden; }
    @media (min-width: 768px) {
      .channel-description__pic-wrap {
        float: left;
        width: 48.2456%;
        margin-bottom: 24px; } }
    .channel-description__pic-wrap::before {
      content: '';
      position: static;
      display: block;
      width: 100%;
      padding-top: 56%;
      margin-bottom: 0; }
    @media (min-width: 1230px) {
      .channel-description__pic-wrap {
        width: 100%;
        position: relative;
        overflow: hidden; }
        .channel-description__pic-wrap::before {
          content: '';
          position: static;
          display: block;
          width: 100%;
          padding-top: 56%; } }
  .channel-description__pic {
    position: absolute;
    width: 100%;
    height: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); }
  .channel-description__text {
    text-align: center;
    font-size: 14px;
    line-height: 1.86;
    color: #7c90a9;
    padding-top: 26px;
    padding-bottom: 36px; }
    @media (min-width: 768px) {
      .channel-description__text {
        float: right;
        width: 48.2456%;
        text-align: left;
        padding-top: 0;
        margin-top: -7px; } }
    @media (min-width: 1230px) {
      .channel-description__text {
        float: none;
        padding-top: 30px;
        padding-bottom: 30px;
        width: 100%; } }
  .channel-description__text-title {
    display: none; }
    @media (min-width: 1230px) {
      .channel-description__text-title {
        display: block;
        margin-top: 35px;
        margin-bottom: 35px; } }
  .channel-description__logos {
    padding-top: 22px;
    border-top: 1px solid rgba(124, 144, 169, 0.1); }
    @media (min-width: 768px) {
      .channel-description__logos {
        width: 48.2456%;
        border-top: none; } }
    @media (min-width: 1230px) {
      .channel-description__logos {
        width: 100%;
        padding-top: 21px;
        border-top: 1px solid rgba(124, 144, 169, 0.1);
        margin-top: 30px; } }
  .channel-description__logo-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-bottom: 24px;
    width: 106.6%;
    margin-left: -3.3%;
    padding-left: 3.3%; }
    @media (min-width: 768px) {
      .channel-description__logo-list {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        width: 100%;
        overflow-x: visible;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .channel-description__heading + .channel-description__logo-list {
    margin-top: 10px; }
    @media (min-width: 768px) {
      .channel-description__heading + .channel-description__logo-list {
        margin-top: 14px; } }
  @media (min-width: 768px) {
    .channel-description__logo-item {
      padding: 0 8px; } }
  @media (min-width: 1230px) {
    .channel-description__logo-item {
      padding: 2px 13px; } }
  .channel-description__logo-item + .channel-description__logo-item {
    margin-left: 25px; }
    @media (min-width: 768px) {
      .channel-description__logo-item + .channel-description__logo-item {
        margin-left: 0; } }
  .channel-description__logo-item:last-of-type {
    padding-right: 3.3%; }
  .channel-description__channel-link {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
    -webkit-box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.15);
            box-shadow: 0 15px 50px 0 rgba(0, 69, 104, 0.15); }
  .channel-description__channel-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40px; }
  .channel-description__more-link {
    display: inline-block;
    margin-top: 20px;
    fill: currentColor; }
  .channel-description__more-link-arrow {
    margin-left: 10px; }
  .channel-description__popover-wrapper {
    display: none; }
  .channel-description .checkbox__input:checked:disabled + .checkbox__label::before {
    border-color: #7c90a9;
    background-color: #7c90a9; }

.channel-description__title-wrap:hover .channel-description__title {
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  color: #00a8ff; }

.channel-description__title-wrap {
  width: calc(100% - 191px); }
  @media (min-width: 1230px) {
    .channel-description__title-wrap {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }

.recruit-account__summary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 35px 20px 30px;
  position: relative; }
  @media (min-width: 768px) {
    .recruit-account__summary {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding: 30px 24px 40px; } }
  @media (min-width: 1230px) {
    .recruit-account__summary {
      padding: 40px;
      padding-right: 31px; } }
  .recruit-account__summary--payment {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.recruit-account__title {
  margin-bottom: 25px;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0; }
  @media (min-width: 768px) {
    .recruit-account__title {
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      margin-bottom: 35px; } }
  @media (min-width: 1230px) {
    .recruit-account__title {
      margin-bottom: 0;
      margin-right: 40px;
      margin-top: 5px; }
      .recruit-account--simple .recruit-account__title {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 5%;
                flex: 1 1 5%;
        margin-top: 18px; } }

.recruit-account__field-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 28px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }
  @media (min-width: 768px) {
    .recruit-account__field-card {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
              flex: 1 0 100%;
      margin-bottom: 0;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media (min-width: 1230px) {
    .recruit-account__field-card {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 854px;
              flex: 1 0 854px;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }

.recruit-account__payment-method {
  margin-bottom: 20px; }
  @media (max-width: 767px) {
    .recruit-account__payment-method {
      width: 260px;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 768px) {
    .recruit-account__payment-method {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 220px;
              flex: 1 0 220px;
      margin-bottom: 0;
      margin-right: 24px; } }
  @media (min-width: 1230px) {
    .recruit-account__payment-method {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 230px;
              flex: 1 0 230px;
      margin-right: 30px; } }

.recruit-account__payment-hint {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  text-align: center;
  margin-top: 10px;
  color: #8a94a2; }
  .recruit-account__payment-hint.active {
    display: block; }
  @media (min-width: 768px) {
    .recruit-account__payment-hint {
      width: 96%;
      margin-top: 0;
      position: absolute;
      top: 80%;
      left: 15px; } }
  @media (min-width: 1230px) {
    .recruit-account__payment-hint {
      left: 50%;
      -webkit-transform: translate(-47%);
              transform: translate(-47%); } }
  @media (min-width: 768px) {
    .recruit-account--simple .recruit-account__payment-hint {
      position: relative;
      top: 0;
      left: 29px;
      -webkit-transform: translate(0);
              transform: translate(0);
      margin-top: 10px;
      text-align: left;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 72%;
              flex: 0 0 72%;
      color: #e4007c; } }

.recruit-account__tooltip {
  padding: 12px 20px;
  font-family: Fedra Sans Pro LF, sans-serif; }

.recruit-account__tooltip-description {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: #7c90a9; }

.recruit-account__all-payment-methods {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }
  @media (min-width: 768px) {
    .recruit-account__all-payment-methods {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      margin-left: auto; } }
  @media (min-width: 1230px) {
    .recruit-account__all-payment-methods {
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      margin-left: 0;
      margin-top: -21px;
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
      padding-top: 0; } }

.recruit-account__btn {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
  min-height: 55px; }
  @media (max-width: 767px) {
    .recruit-account__btn {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 100%;
              flex: 1 1 100%; } }
  @media (min-width: 768px) {
    .recruit-account__btn {
      -ms-flex-preferred-size: 162px;
          flex-basis: 162px; } }
  @media (min-width: 1230px) {
    .recruit-account__btn {
      -ms-flex-preferred-size: 180px;
          flex-basis: 180px; } }

.recruit-account__extended {
  background-color: #fff;
  display: none; }
  .recruit-account__extended.active {
    display: block; }

.recruit-account__extended-inner {
  position: relative;
  padding: 35px 20px 30px;
  border-top: 1px solid #f2f4f6; }
  @media (min-width: 768px) {
    .recruit-account__extended-inner {
      padding: 30px 24px 40px; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-inner {
      padding: 40px;
      padding-right: 31px; } }

.recruit-account__extended-wrap-form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 768px) {
    .recruit-account__extended-wrap-form {
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; } }

@media (min-width: 768px) {
  .recruit-account__extended-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

@media (min-width: 1230px) {
  .recruit-account__extended-form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 854px;
            flex: 0 0 854px; } }

.recruit-account__extended-additory {
  margin-bottom: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (max-width: 767px) {
    .recruit-account__extended-additory {
      width: 260px; } }
  .recruit-account__extended-additory .input {
    color: #8a94a2; }
  @media (min-width: 768px) {
    .recruit-account__extended-additory {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 48%;
              flex: 0 0 48%;
      margin-bottom: 25px; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-additory {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 373px;
              flex: 1 0 373px;
      margin-right: 30px; } }
  .recruit-account__extended-additory.hidden {
    display: none; }

.recruit-account__extended-number {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .recruit-account__extended-number {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 48%;
              flex: 0 0 48%;
      margin-bottom: 0;
      margin-right: 11px; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-number {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 118px;
              flex: 1 0 118px;
      margin-right: 30px; } }

.recruit-account__extended-pin {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%; }
  @media (min-width: 768px) {
    .recruit-account__extended-pin {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 48%;
              flex: 0 0 48%; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-pin {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 118px;
              flex: 1 0 118px; } }

.recruit-account__extended-sum {
  margin-bottom: 20px;
  position: relative; }
  .recruit-account__extended-sum .input {
    color: #8a94a2; }
  @media (min-width: 768px) {
    .recruit-account__extended-sum {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 48%;
              flex: 0 0 48%;
      margin-bottom: 25px; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-sum {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 373px;
              flex: 1 0 373px;
      margin-right: 30px; } }
  .recruit-account__extended-sum.hidden {
    display: none; }

.recruit-account__extended-hint {
  position: absolute;
  top: 19px;
  right: -21px;
  fill: #7c90a9;
  cursor: pointer; }
  @media (max-width: 1229px) {
    .recruit-account__extended-hint {
      display: none; } }

.recruit-account__extended-error {
  width: 100%;
  margin-top: 15px;
  text-align: center; }
  @media (min-width: 768px) {
    .recruit-account__extended-error {
      text-align: left;
      margin-left: 5px; } }
  .recruit-account__extended-error.hidden {
    display: none; }

.recruit-account__extended-mail {
  margin-bottom: 20px;
  position: relative; }
  @media (min-width: 768px) {
    .recruit-account__extended-mail {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 48%;
              flex: 0 0 48%;
      margin-bottom: 0; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-mail {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 373px;
              flex: 1 0 373px;
      margin-right: 30px; } }

.recruit-account__extended-payment-method {
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .recruit-account__extended-payment-method {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 47%;
              flex: 0 0 47%;
      margin-bottom: 25px; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-payment-method {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 230px;
              flex: 1 0 230px; } }

.recruit-account__extended-payment-method-option {
  font-size: 0; }

.recruit-account__extended-payment-method-item, .recruit-account__extended-payment-method-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.recruit-account__extended-payment-method-option-icon, .recruit-account__extended-payment-method-item-icon {
  width: 40px;
  margin-right: 15px; }
  .recruit-account__extended-payment-method-option-icon img, .recruit-account__extended-payment-method-item-icon img {
    display: block; }

.recruit-account__extended-payment-method-item-text, .recruit-account__extended-payment-method-option-text {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  vertical-align: middle; }

.recruit-account__extended-submit {
  min-width: 260px; }
  @media (max-width: 767px) {
    .recruit-account__extended-submit {
      display: block;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 768px) {
    .recruit-account__extended-submit {
      min-width: 0;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 47%;
              flex: 0 0 47%; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-submit {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 229px;
              flex: 1 0 229px; } }

.recruit-account__extended-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e9ee; }
  @media (min-width: 768px) {
    .recruit-account__extended-title {
      padding-bottom: 11px;
      border-width: 0; } }
  @media (min-width: 768px) {
    .recruit-account__extended-title {
      padding-bottom: 20px;
      border-width: 0; } }

.recruit-account__extended-list {
  padding-top: 30px;
  margin-left: auto; }
  @media (min-width: 768px) {
    .recruit-account__extended-list {
      padding-top: 40px; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-list {
      max-width: 854px;
      padding-top: 49px; } }

.recruit-account__extended-table {
  width: 100%; }

.recruit-account__extended-table-header {
  display: none !important; }
  @media (min-width: 768px) {
    .recruit-account__extended-table-header {
      display: block !important; } }

.recruit-account__extended-table-header-cell {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  color: #8a94a2;
  text-align: left;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    .recruit-account__extended-table-header-cell {
      display: inline-block;
      width: 49%;
      padding-top: 22px;
      padding-bottom: 22px; } }
  @media (min-width: 1230px) {
    .recruit-account__extended-table-header-cell {
      width: 38%; } }

.recruit-account__extended-table-row {
  border-bottom: 1px solid #e5e9ee; }
  @media (max-width: 767px) {
    .recruit-account__extended-table-row {
      padding-top: 16px;
      padding-bottom: 16px;
      display: block; } }

.recruit-account__extended-table-cell {
  display: block;
  line-height: 1.57; }
  @media (min-width: 768px) {
    .recruit-account__extended-table-cell {
      display: inline-block;
      width: 49%;
      padding-top: 22px;
      padding-bottom: 22px; } }
  .recruit-account__extended-table-cell:first-of-type {
    font-weight: 350;
    margin-bottom: 4px; }
    @media (min-width: 768px) {
      .recruit-account__extended-table-cell:first-of-type {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 1.38; } }
    @media (min-width: 1230px) {
      .recruit-account__extended-table-cell:first-of-type {
        width: 38%; } }
  .recruit-account__extended-table-cell:last-of-type {
    color: #7c90a9; }
    @media (min-width: 768px) {
      .recruit-account__extended-table-cell:last-of-type {
        line-height: 1.86; } }

.form-flatpickr-wrap .flatpickr-calendar {
  top: calc(100% + 20px) !important;
  left: -5px !important; }
  @media (min-width: 400px) {
    .form-flatpickr-wrap .flatpickr-calendar {
      left: 0 !important; } }

.form-flatpickr-wrap .flatpickr-day.today {
  border-color: transparent;
  background-color: transparent;
  color: #00a8ff; }

.form-flatpickr-wrap .flatpickr-month {
  height: 45px;
  padding-top: 7px;
  border-bottom: 1px solid #e3e9ef; }

.form-flatpickr-wrap .flatpickr-prev-month,
.form-flatpickr-wrap .flatpickr-next-month {
  top: 6px; }

.form-flatpickr-wrap .flatpickr-current-month {
  font-size: 15px;
  font-weight: 300; }

.form-flatpickr-wrap .flatpickr-current-month span.cur-month {
  font-weight: inherit; }

.form-flatpickr-wrap .flatpickr-month svg {
  fill: #00a8ff; }

.form-flatpickr-wrap .flatpickr-day:hover {
  color: inherit;
  background-color: #eff5fa;
  border-color: transparent; }

.form-flatpickr-wrap .flatpickr-day.selected {
  background-color: #eff5fa;
  color: inherit;
  border-color: transparent; }

.form-flatpickr-wrap .flatpickr-weekdays {
  height: 32px;
  padding-top: 9px; }

.form-flatpickr-wrap .flatpickr-weekday {
  color: #00a8ff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300; }

.form-flatpickr-wrap .flatpickr-day {
  font-weight: inherit; }
