/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/* cyrillic-ext */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 300;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjvWyNL4U.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

/* cyrillic */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 300;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjtGyNL4U.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

/* latin-ext */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 300;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjvmyNL4U.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* latin */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 300;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjsGyN.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* cyrillic-ext */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKcg72j00.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

/* cyrillic */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKew72j00.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

/* latin-ext */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKcQ72j00.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* latin */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKfw72.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* cyrillic-ext */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jvWyNL4U.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

/* cyrillic */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jtGyNL4U.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

/* latin-ext */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jvmyNL4U.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* latin */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jsGyN.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* cyrillic-ext */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

/* cyrillic */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

/* latin-ext */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjvmyNL4U.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* latin */
@font-face {
  font-family: 'Ubuntu';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjsGyN.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

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, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var, 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; }

blockquote, q {
  quotes: none;
  border-left: 5px solid var(--primary-color);
  padding-left: 16px;
  margin: 8px 0;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

[hidden],
template {
  display: none; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0;
  border-top: 1px solid var(--blocks-and-disabled-color);
  border-bottom: 0;
  margin: 20px 0;
}

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: inherit;
  font-size: inherit; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: not-allowed; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

* {
  tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent; }

html, body {
  font-family: "Ubuntu", sans-serif;
  color: #1C1C1C;
  font-weight: 400;
  line-height: 1.4;
  background: #F1F2F5;
  font-size: 13px; }
  @media only screen and (min-width: 769px) {
    html, body {
      font-size: 14px; } }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.1;
  color: #1C1C1C;
  font-weight: 500; }

h1, .h1 {
  font-size: 22px;
  margin: 0 0 25px 0; }
  @media only screen and (max-width: 550px) {
    h1, .h1 {
      font-size: 21px; } }

h2, .h2 {
  font-size: 20px;
  margin: 25px 0; }
  @media only screen and (max-width: 550px) {
    h2, .h2 {
      font-size: 18px;
      margin: 15px 0 10px 0;
      font-weight: 400; } }

h3, .h3 {
  font-size: 16px;
  margin: 20px 0; }
  @media only screen and (max-width: 550px) {
    h3, .h3 {
      font-size: 15px;
      margin: 15px 0 10px 0; } }

h4, .h4 {
  font-size: 15px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 13px; }

h4, h5, h6, .h4, .h5, .h6 {
  margin: 15px 0; }

h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%; }

h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%; }

small,
.small {
  color: inherit;
  font-size: 75%; }

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

img {
  border: none;
  max-width: 100%;
  height: auto; }

a {
  color: var(--primary-text-color);
  text-decoration: underline;
  -webkit-transition: all linear 0.3s 0s;
  -moz-transition: all linear 0.3s 0s;
  -o-transition: all linear 0.3s 0s;
  transition: all linear 0.3s 0s; }
  a:hover {
    text-decoration: none; }

p {
  margin: 0 0 1em 0; }

ul, ol {
  margin: 1em 0; }
  ul li, ol li {
    margin: 0 0 1em 0; }

ul {
  padding-left: 20px; }

ol {
  padding-left: 20px; }

table {
  font-size: 1em;
  border: 1px solid;
  padding: 0;
  margin: 1em 0;
  border-collapse: collapse; }
  table td, table th {
    border: 1px solid; }
  table th {
    text-align: center; }

.c-icon {
  display: inline-block;
  line-height: 0;
  font-size: 0;
  padding: 0; }

.c-icon-svg {
  color: inherit;
  fill: currentColor;
  stroke: none;
  width: 1em;
  height: 1em;
  font-size: 1em; }

.c-icon-svg-arrow-down {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-arrow-left {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-arrow-right {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-arrow-up {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-close {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-dialog {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-edit {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-eye {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-facebook {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-flikr {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-gear {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-google {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-instagram {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-key {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-linkedin {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-mailru {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-materials {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-minus {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-msg {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-odnoklasniki {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-password-ok {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-pinterest {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-question {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-reply {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-rewind-left {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-rewind-right {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-skype {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-success {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-success-2 {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-task-ok {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-telegram {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-trash {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-tumblr {
  font-size: 1em;
  width: 0.625em; }

.c-icon-svg-twitter {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-user {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-viber {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-vkontakte {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-warning {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-whatsapp {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-youtube {
  font-size: 1em;
  width: 1em; }

.c-icon-svg-youtube2 {
  font-size: 1em;
  width: 1em; }

.c-icon-reply {
  background-image: url(../images/icons.png);
  background-position: 0px 0px;
  width: 20px;
  height: 13px; }

body:before {
  content: 'xxs';
  display: none; }

@media only screen and (min-width: 426px) {
  body:before {
    content: 'xs'; } }

@media only screen and (min-width: 551px) {
  body:before {
    content: 'sm'; } }

@media only screen and (min-width: 769px) {
  body:before {
    content: 'md'; } }

@media only screen and (min-width: 1025px) {
  body:before {
    content: 'lg'; } }

@media only screen and (min-width: 1361px) {
  body:before {
    content: 'xl'; } }

.l-container {
  width: 100%;
  min-width: 320px;
  max-width: 1230px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 30px; }
  .l-container:after {
    content: '';
    display: table;
    clear: both; }

.l-main-wrapper {
  overflow: hidden;
  min-height: 100vh;
  min-width: 320px;
  max-width: 1230px;
  margin: 0 auto; }
  @media only screen and (min-width: 769px) {
    .l-main-wrapper {
      padding: 30px; } }
  @media only screen and (min-width: 1025px) {
    .l-main-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: stretch;
      -webkit-align-items: stretch;
         -moz-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
         -moz-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
         -moz-box-orient: horizontal;
         -moz-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.l-main-header {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-bottom: 20px; }

.l-main-aside {
  display: none; }
  @media only screen and (min-width: 1025px) {
    .l-main-aside {
      display: block;
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 250px;
         -moz-box-flex: 0;
          -ms-flex: 0 0 250px;
              flex: 0 0 250px;
      max-width: 250px;
      margin-right: 20px; } }
  @media only screen and (min-width: 1361px) {
    .l-main-aside {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 300px;
         -moz-box-flex: 0;
          -ms-flex: 0 0 300px;
              flex: 0 0 300px;
      max-width: 300px; } }

.l-main-body {
  position: relative;
  max-width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
  @media only screen and (min-width: 1025px) {
    .l-main-body {
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 -webkit-calc(100% - 270px);
         -moz-box-flex: 0;
          -ms-flex: 0 1 calc(100% - 270px);
              flex: 0 1 calc(100% - 270px);
      max-width: -webkit-calc(100% - 270px);
      max-width: -moz-calc(100% - 270px);
      max-width: calc(100% - 270px); } }
  @media only screen and (min-width: 1361px) {
    .l-main-body {
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 -webkit-calc(100% - 320px);
         -moz-box-flex: 0;
          -ms-flex: 0 1 calc(100% - 320px);
              flex: 0 1 calc(100% - 320px);
      max-width: -webkit-calc(100% - 320px);
      max-width: -moz-calc(100% - 320px);
      max-width: calc(100% - 320px); } }

.l-main-footer {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 20px; }

.l-main-body {
  position: relative; }

.l-page-header {
  position: relative;
  margin-bottom: 20px; }
  .l-page-header h1, .l-page-header .h1 {
    margin: 0; }

.l-page-content:after {
  content: '';
  display: table;
  clear: both; }

@media only screen and (min-width: 551px) {
  .l-page-content {
    padding-bottom: 50px; } }

.l-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px; }

[class*="l-col"] {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }

.l-col-xxs-1, .l-col-xs-1, .l-col-sm-1, .l-col-md-1, .l-col-lg-1, .l-col-container-1, .l-col-1, .l-col-xs-2, .l-col-sm-2, .l-col-md-2, .l-col-lg-2, .l-col-container-2, .l-col-2, .l-col-xs-3, .l-col-sm-3, .l-col-md-3, .l-col-lg-3, .l-col-container-3, .l-col-3, .l-col-xs-4, .l-col-sm-4, .l-col-md-4, .l-col-lg-4, .l-col-container-4, .l-col-4, .l-col-xs-5, .l-col-sm-5, .l-col-md-5, .l-col-lg-5, .l-col-container-5, .l-col-5, .l-col-xs-6, .l-col-sm-6, .l-col-md-6, .l-col-lg-6, .l-col-container-6, .l-col-6, .l-col-xs-7, .l-col-sm-7, .l-col-md-7, .l-col-lg-7, .l-col-container-7, .l-col-7, .l-col-xs-8, .l-col-sm-8, .l-col-md-8, .l-col-lg-8, .l-col-container-8, .l-col-8, .l-col-xs-9, .l-col-sm-9, .l-col-md-9, .l-col-lg-9, .l-col-container-9, .l-col-9, .l-col-xs-10, .l-col-sm-10, .l-col-md-10, .l-col-lg-10, .l-col-container-10, .l-col-10, .l-col-xs-11, .l-col-sm-11, .l-col-md-11, .l-col-lg-11, .l-col-container-11, .l-col-11, .l-col-xs-12, .l-col-sm-12, .l-col-md-12, .l-col-lg-12, .l-col-container-12, .l-col-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%; }

.l-col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.l-col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.l-col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%; }

.l-col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.l-col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.l-col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%; }

.l-col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.l-col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.l-col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%; }

.l-col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.l-col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.l-col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%; }

.l-col-pull-0 {
  right: auto; }

.l-col-pull-1 {
  right: 8.33333%; }

.l-col-pull-2 {
  right: 16.66667%; }

.l-col-pull-3 {
  right: 25%; }

.l-col-pull-4 {
  right: 33.33333%; }

.l-col-pull-5 {
  right: 41.66667%; }

.l-col-pull-6 {
  right: 50%; }

.l-col-pull-7 {
  right: 58.33333%; }

.l-col-pull-8 {
  right: 66.66667%; }

.l-col-pull-9 {
  right: 75%; }

.l-col-pull-10 {
  right: 83.33333%; }

.l-col-pull-11 {
  right: 91.66667%; }

.l-col-pull-12 {
  right: 100%; }

.l-col-push-0 {
  left: auto; }

.l-col-push-1 {
  left: 8.33333%; }

.l-col-push-2 {
  left: 16.66667%; }

.l-col-push-3 {
  left: 25%; }

.l-col-push-4 {
  left: 33.33333%; }

.l-col-push-5 {
  left: 41.66667%; }

.l-col-push-6 {
  left: 50%; }

.l-col-push-7 {
  left: 58.33333%; }

.l-col-push-8 {
  left: 66.66667%; }

.l-col-push-9 {
  left: 75%; }

.l-col-push-10 {
  left: 83.33333%; }

.l-col-push-11 {
  left: 91.66667%; }

.l-col-push-12 {
  left: 100%; }

.l-col-offset-0 {
  margin-left: 0%; }

.l-col-offset-1 {
  margin-left: 8.33333%; }

.l-col-offset-2 {
  margin-left: 16.66667%; }

.l-col-offset-3 {
  margin-left: 25%; }

.l-col-offset-4 {
  margin-left: 33.33333%; }

.l-col-offset-5 {
  margin-left: 41.66667%; }

.l-col-offset-6 {
  margin-left: 50%; }

.l-col-offset-7 {
  margin-left: 58.33333%; }

.l-col-offset-8 {
  margin-left: 66.66667%; }

.l-col-offset-9 {
  margin-left: 75%; }

.l-col-offset-10 {
  margin-left: 83.33333%; }

.l-col-offset-11 {
  margin-left: 91.66667%; }

.l-col-offset-12 {
  margin-left: 100%; }

.l-col-auto {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  width: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }

@media only screen and (min-width: 426px) {
  .l-col-xxs-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    width: auto; }
  .l-col-xxs-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .l-col-xxs-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .l-col-xxs-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .l-col-xxs-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .l-col-xxs-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .l-col-xxs-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .l-col-xxs-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .l-col-xxs-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .l-col-xxs-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .l-col-xxs-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .l-col-xxs-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .l-col-xxs-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .l-col-xxs-pull-0 {
    right: auto; }
  .l-col-xxs-pull-1 {
    right: 8.33333%; }
  .l-col-xxs-pull-2 {
    right: 16.66667%; }
  .l-col-xxs-pull-3 {
    right: 25%; }
  .l-col-xxs-pull-4 {
    right: 33.33333%; }
  .l-col-xxs-pull-5 {
    right: 41.66667%; }
  .l-col-xxs-pull-6 {
    right: 50%; }
  .l-col-xxs-pull-7 {
    right: 58.33333%; }
  .l-col-xxs-pull-8 {
    right: 66.66667%; }
  .l-col-xxs-pull-9 {
    right: 75%; }
  .l-col-xxs-pull-10 {
    right: 83.33333%; }
  .l-col-xxs-pull-11 {
    right: 91.66667%; }
  .l-col-xxs-pull-12 {
    right: 100%; }
  .l-col-xxs-push-0 {
    left: auto; }
  .l-col-xxs-push-1 {
    left: 8.33333%; }
  .l-col-xxs-push-2 {
    left: 16.66667%; }
  .l-col-xxs-push-3 {
    left: 25%; }
  .l-col-xxs-push-4 {
    left: 33.33333%; }
  .l-col-xxs-push-5 {
    left: 41.66667%; }
  .l-col-xxs-push-6 {
    left: 50%; }
  .l-col-xxs-push-7 {
    left: 58.33333%; }
  .l-col-xxs-push-8 {
    left: 66.66667%; }
  .l-col-xxs-push-9 {
    left: 75%; }
  .l-col-xxs-push-10 {
    left: 83.33333%; }
  .l-col-xxs-push-11 {
    left: 91.66667%; }
  .l-col-xxs-push-12 {
    left: 100%; }
  .l-col-xxs-offset-0 {
    margin-left: 0%; }
  .l-col-xxs-offset-1 {
    margin-left: 8.33333%; }
  .l-col-xxs-offset-2 {
    margin-left: 16.66667%; }
  .l-col-xxs-offset-3 {
    margin-left: 25%; }
  .l-col-xxs-offset-4 {
    margin-left: 33.33333%; }
  .l-col-xxs-offset-5 {
    margin-left: 41.66667%; }
  .l-col-xxs-offset-6 {
    margin-left: 50%; }
  .l-col-xxs-offset-7 {
    margin-left: 58.33333%; }
  .l-col-xxs-offset-8 {
    margin-left: 66.66667%; }
  .l-col-xxs-offset-9 {
    margin-left: 75%; }
  .l-col-xxs-offset-10 {
    margin-left: 83.33333%; }
  .l-col-xxs-offset-11 {
    margin-left: 91.66667%; }
  .l-col-xxs-offset-12 {
    margin-left: 100%; } }

@media only screen and (min-width: 551px) {
  .l-col-xs-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    width: auto; }
  .l-col-xs-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .l-col-xs-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .l-col-xs-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .l-col-xs-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .l-col-xs-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .l-col-xs-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .l-col-xs-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .l-col-xs-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .l-col-xs-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .l-col-xs-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .l-col-xs-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .l-col-xs-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .l-col-xs-pull-0 {
    right: auto; }
  .l-col-xs-pull-1 {
    right: 8.33333%; }
  .l-col-xs-pull-2 {
    right: 16.66667%; }
  .l-col-xs-pull-3 {
    right: 25%; }
  .l-col-xs-pull-4 {
    right: 33.33333%; }
  .l-col-xs-pull-5 {
    right: 41.66667%; }
  .l-col-xs-pull-6 {
    right: 50%; }
  .l-col-xs-pull-7 {
    right: 58.33333%; }
  .l-col-xs-pull-8 {
    right: 66.66667%; }
  .l-col-xs-pull-9 {
    right: 75%; }
  .l-col-xs-pull-10 {
    right: 83.33333%; }
  .l-col-xs-pull-11 {
    right: 91.66667%; }
  .l-col-xs-pull-12 {
    right: 100%; }
  .l-col-xs-push-0 {
    left: auto; }
  .l-col-xs-push-1 {
    left: 8.33333%; }
  .l-col-xs-push-2 {
    left: 16.66667%; }
  .l-col-xs-push-3 {
    left: 25%; }
  .l-col-xs-push-4 {
    left: 33.33333%; }
  .l-col-xs-push-5 {
    left: 41.66667%; }
  .l-col-xs-push-6 {
    left: 50%; }
  .l-col-xs-push-7 {
    left: 58.33333%; }
  .l-col-xs-push-8 {
    left: 66.66667%; }
  .l-col-xs-push-9 {
    left: 75%; }
  .l-col-xs-push-10 {
    left: 83.33333%; }
  .l-col-xs-push-11 {
    left: 91.66667%; }
  .l-col-xs-push-12 {
    left: 100%; }
  .l-col-xs-offset-0 {
    margin-left: 0%; }
  .l-col-xs-offset-1 {
    margin-left: 8.33333%; }
  .l-col-xs-offset-2 {
    margin-left: 16.66667%; }
  .l-col-xs-offset-3 {
    margin-left: 25%; }
  .l-col-xs-offset-4 {
    margin-left: 33.33333%; }
  .l-col-xs-offset-5 {
    margin-left: 41.66667%; }
  .l-col-xs-offset-6 {
    margin-left: 50%; }
  .l-col-xs-offset-7 {
    margin-left: 58.33333%; }
  .l-col-xs-offset-8 {
    margin-left: 66.66667%; }
  .l-col-xs-offset-9 {
    margin-left: 75%; }
  .l-col-xs-offset-10 {
    margin-left: 83.33333%; }
  .l-col-xs-offset-11 {
    margin-left: 91.66667%; }
  .l-col-xs-offset-12 {
    margin-left: 100%; } }

@media only screen and (min-width: 769px) {
  .l-col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    width: auto; }
  .l-col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .l-col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .l-col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .l-col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .l-col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .l-col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .l-col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .l-col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .l-col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .l-col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .l-col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .l-col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .l-col-sm-pull-0 {
    right: auto; }
  .l-col-sm-pull-1 {
    right: 8.33333%; }
  .l-col-sm-pull-2 {
    right: 16.66667%; }
  .l-col-sm-pull-3 {
    right: 25%; }
  .l-col-sm-pull-4 {
    right: 33.33333%; }
  .l-col-sm-pull-5 {
    right: 41.66667%; }
  .l-col-sm-pull-6 {
    right: 50%; }
  .l-col-sm-pull-7 {
    right: 58.33333%; }
  .l-col-sm-pull-8 {
    right: 66.66667%; }
  .l-col-sm-pull-9 {
    right: 75%; }
  .l-col-sm-pull-10 {
    right: 83.33333%; }
  .l-col-sm-pull-11 {
    right: 91.66667%; }
  .l-col-sm-pull-12 {
    right: 100%; }
  .l-col-sm-push-0 {
    left: auto; }
  .l-col-sm-push-1 {
    left: 8.33333%; }
  .l-col-sm-push-2 {
    left: 16.66667%; }
  .l-col-sm-push-3 {
    left: 25%; }
  .l-col-sm-push-4 {
    left: 33.33333%; }
  .l-col-sm-push-5 {
    left: 41.66667%; }
  .l-col-sm-push-6 {
    left: 50%; }
  .l-col-sm-push-7 {
    left: 58.33333%; }
  .l-col-sm-push-8 {
    left: 66.66667%; }
  .l-col-sm-push-9 {
    left: 75%; }
  .l-col-sm-push-10 {
    left: 83.33333%; }
  .l-col-sm-push-11 {
    left: 91.66667%; }
  .l-col-sm-push-12 {
    left: 100%; }
  .l-col-sm-offset-0 {
    margin-left: 0%; }
  .l-col-sm-offset-1 {
    margin-left: 8.33333%; }
  .l-col-sm-offset-2 {
    margin-left: 16.66667%; }
  .l-col-sm-offset-3 {
    margin-left: 25%; }
  .l-col-sm-offset-4 {
    margin-left: 33.33333%; }
  .l-col-sm-offset-5 {
    margin-left: 41.66667%; }
  .l-col-sm-offset-6 {
    margin-left: 50%; }
  .l-col-sm-offset-7 {
    margin-left: 58.33333%; }
  .l-col-sm-offset-8 {
    margin-left: 66.66667%; }
  .l-col-sm-offset-9 {
    margin-left: 75%; }
  .l-col-sm-offset-10 {
    margin-left: 83.33333%; }
  .l-col-sm-offset-11 {
    margin-left: 91.66667%; }
  .l-col-sm-offset-12 {
    margin-left: 100%; } }

@media only screen and (min-width: 1025px) {
  .l-col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    width: auto; }
  .l-col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .l-col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .l-col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .l-col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .l-col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .l-col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .l-col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .l-col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .l-col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .l-col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .l-col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .l-col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .l-col-md-pull-0 {
    right: auto; }
  .l-col-md-pull-1 {
    right: 8.33333%; }
  .l-col-md-pull-2 {
    right: 16.66667%; }
  .l-col-md-pull-3 {
    right: 25%; }
  .l-col-md-pull-4 {
    right: 33.33333%; }
  .l-col-md-pull-5 {
    right: 41.66667%; }
  .l-col-md-pull-6 {
    right: 50%; }
  .l-col-md-pull-7 {
    right: 58.33333%; }
  .l-col-md-pull-8 {
    right: 66.66667%; }
  .l-col-md-pull-9 {
    right: 75%; }
  .l-col-md-pull-10 {
    right: 83.33333%; }
  .l-col-md-pull-11 {
    right: 91.66667%; }
  .l-col-md-pull-12 {
    right: 100%; }
  .l-col-md-push-0 {
    left: auto; }
  .l-col-md-push-1 {
    left: 8.33333%; }
  .l-col-md-push-2 {
    left: 16.66667%; }
  .l-col-md-push-3 {
    left: 25%; }
  .l-col-md-push-4 {
    left: 33.33333%; }
  .l-col-md-push-5 {
    left: 41.66667%; }
  .l-col-md-push-6 {
    left: 50%; }
  .l-col-md-push-7 {
    left: 58.33333%; }
  .l-col-md-push-8 {
    left: 66.66667%; }
  .l-col-md-push-9 {
    left: 75%; }
  .l-col-md-push-10 {
    left: 83.33333%; }
  .l-col-md-push-11 {
    left: 91.66667%; }
  .l-col-md-push-12 {
    left: 100%; }
  .l-col-md-offset-0 {
    margin-left: 0%; }
  .l-col-md-offset-1 {
    margin-left: 8.33333%; }
  .l-col-md-offset-2 {
    margin-left: 16.66667%; }
  .l-col-md-offset-3 {
    margin-left: 25%; }
  .l-col-md-offset-4 {
    margin-left: 33.33333%; }
  .l-col-md-offset-5 {
    margin-left: 41.66667%; }
  .l-col-md-offset-6 {
    margin-left: 50%; }
  .l-col-md-offset-7 {
    margin-left: 58.33333%; }
  .l-col-md-offset-8 {
    margin-left: 66.66667%; }
  .l-col-md-offset-9 {
    margin-left: 75%; }
  .l-col-md-offset-10 {
    margin-left: 83.33333%; }
  .l-col-md-offset-11 {
    margin-left: 91.66667%; }
  .l-col-md-offset-12 {
    margin-left: 100%; } }

@media only screen and (min-width: 1361px) {
  .l-col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    width: auto; }
  .l-col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .l-col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .l-col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .l-col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .l-col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .l-col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .l-col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .l-col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .l-col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .l-col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .l-col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .l-col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .l-col-lg-pull-0 {
    right: auto; }
  .l-col-lg-pull-1 {
    right: 8.33333%; }
  .l-col-lg-pull-2 {
    right: 16.66667%; }
  .l-col-lg-pull-3 {
    right: 25%; }
  .l-col-lg-pull-4 {
    right: 33.33333%; }
  .l-col-lg-pull-5 {
    right: 41.66667%; }
  .l-col-lg-pull-6 {
    right: 50%; }
  .l-col-lg-pull-7 {
    right: 58.33333%; }
  .l-col-lg-pull-8 {
    right: 66.66667%; }
  .l-col-lg-pull-9 {
    right: 75%; }
  .l-col-lg-pull-10 {
    right: 83.33333%; }
  .l-col-lg-pull-11 {
    right: 91.66667%; }
  .l-col-lg-pull-12 {
    right: 100%; }
  .l-col-lg-push-0 {
    left: auto; }
  .l-col-lg-push-1 {
    left: 8.33333%; }
  .l-col-lg-push-2 {
    left: 16.66667%; }
  .l-col-lg-push-3 {
    left: 25%; }
  .l-col-lg-push-4 {
    left: 33.33333%; }
  .l-col-lg-push-5 {
    left: 41.66667%; }
  .l-col-lg-push-6 {
    left: 50%; }
  .l-col-lg-push-7 {
    left: 58.33333%; }
  .l-col-lg-push-8 {
    left: 66.66667%; }
  .l-col-lg-push-9 {
    left: 75%; }
  .l-col-lg-push-10 {
    left: 83.33333%; }
  .l-col-lg-push-11 {
    left: 91.66667%; }
  .l-col-lg-push-12 {
    left: 100%; }
  .l-col-lg-offset-0 {
    margin-left: 0%; }
  .l-col-lg-offset-1 {
    margin-left: 8.33333%; }
  .l-col-lg-offset-2 {
    margin-left: 16.66667%; }
  .l-col-lg-offset-3 {
    margin-left: 25%; }
  .l-col-lg-offset-4 {
    margin-left: 33.33333%; }
  .l-col-lg-offset-5 {
    margin-left: 41.66667%; }
  .l-col-lg-offset-6 {
    margin-left: 50%; }
  .l-col-lg-offset-7 {
    margin-left: 58.33333%; }
  .l-col-lg-offset-8 {
    margin-left: 66.66667%; }
  .l-col-lg-offset-9 {
    margin-left: 75%; }
  .l-col-lg-offset-10 {
    margin-left: 83.33333%; }
  .l-col-lg-offset-11 {
    margin-left: 91.66667%; }
  .l-col-lg-offset-12 {
    margin-left: 100%; } }

@media only screen and (min-width: 1231px) {
  .l-col-container-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    width: auto; }
  .l-col-container-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .l-col-container-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .l-col-container-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .l-col-container-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .l-col-container-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .l-col-container-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .l-col-container-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .l-col-container-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .l-col-container-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .l-col-container-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .l-col-container-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .l-col-container-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .l-col-container-pull-0 {
    right: auto; }
  .l-col-container-pull-1 {
    right: 8.33333%; }
  .l-col-container-pull-2 {
    right: 16.66667%; }
  .l-col-container-pull-3 {
    right: 25%; }
  .l-col-container-pull-4 {
    right: 33.33333%; }
  .l-col-container-pull-5 {
    right: 41.66667%; }
  .l-col-container-pull-6 {
    right: 50%; }
  .l-col-container-pull-7 {
    right: 58.33333%; }
  .l-col-container-pull-8 {
    right: 66.66667%; }
  .l-col-container-pull-9 {
    right: 75%; }
  .l-col-container-pull-10 {
    right: 83.33333%; }
  .l-col-container-pull-11 {
    right: 91.66667%; }
  .l-col-container-pull-12 {
    right: 100%; }
  .l-col-container-push-0 {
    left: auto; }
  .l-col-container-push-1 {
    left: 8.33333%; }
  .l-col-container-push-2 {
    left: 16.66667%; }
  .l-col-container-push-3 {
    left: 25%; }
  .l-col-container-push-4 {
    left: 33.33333%; }
  .l-col-container-push-5 {
    left: 41.66667%; }
  .l-col-container-push-6 {
    left: 50%; }
  .l-col-container-push-7 {
    left: 58.33333%; }
  .l-col-container-push-8 {
    left: 66.66667%; }
  .l-col-container-push-9 {
    left: 75%; }
  .l-col-container-push-10 {
    left: 83.33333%; }
  .l-col-container-push-11 {
    left: 91.66667%; }
  .l-col-container-push-12 {
    left: 100%; }
  .l-col-container-offset-0 {
    margin-left: 0%; }
  .l-col-container-offset-1 {
    margin-left: 8.33333%; }
  .l-col-container-offset-2 {
    margin-left: 16.66667%; }
  .l-col-container-offset-3 {
    margin-left: 25%; }
  .l-col-container-offset-4 {
    margin-left: 33.33333%; }
  .l-col-container-offset-5 {
    margin-left: 41.66667%; }
  .l-col-container-offset-6 {
    margin-left: 50%; }
  .l-col-container-offset-7 {
    margin-left: 58.33333%; }
  .l-col-container-offset-8 {
    margin-left: 66.66667%; }
  .l-col-container-offset-9 {
    margin-left: 75%; }
  .l-col-container-offset-10 {
    margin-left: 83.33333%; }
  .l-col-container-offset-11 {
    margin-left: 91.66667%; }
  .l-col-container-offset-12 {
    margin-left: 100%; } }

.a-spinLeft {
  -webkit-animation-name: spin-left;
     -moz-animation-name: spin-left;
       -o-animation-name: spin-left;
          animation-name: spin-left;
  -webkit-transform-origin: center center;
     -moz-transform-origin: center center;
      -ms-transform-origin: center center;
       -o-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear; }

.a-spinRight {
  -webkit-animation-name: spin-right;
     -moz-animation-name: spin-right;
       -o-animation-name: spin-right;
          animation-name: spin-right;
  -webkit-transform-origin: center center;
     -moz-transform-origin: center center;
      -ms-transform-origin: center center;
       -o-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear; }

.a-infinite {
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite; }

.a-opacity {
  -webkit-animation: opacity 0.3s linear;
     -moz-animation: opacity 0.3s linear;
       -o-animation: opacity 0.3s linear;
          animation: opacity 0.3s linear; }

@-webkit-keyframes opacity {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-moz-keyframes opacity {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-o-keyframes opacity {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes opacity {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes spin-left {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-moz-keyframes spin-left {
  from {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg); }
  to {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg); } }

@-o-keyframes spin-left {
  from {
    -o-transform: rotate(0deg);
       transform: rotate(0deg); }
  to {
    -o-transform: rotate(360deg);
       transform: rotate(360deg); } }

@keyframes spin-left {
  from {
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes spin-right {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }

@-moz-keyframes spin-right {
  from {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg); }
  to {
    -moz-transform: rotate(-360deg);
         transform: rotate(-360deg); } }

@-o-keyframes spin-right {
  from {
    -o-transform: rotate(0deg);
       transform: rotate(0deg); }
  to {
    -o-transform: rotate(-360deg);
       transform: rotate(-360deg); } }

@keyframes spin-right {
  from {
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(-360deg);
       -moz-transform: rotate(-360deg);
         -o-transform: rotate(-360deg);
            transform: rotate(-360deg); } }

@-webkit-keyframes popup-body {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-moz-keyframes popup-body {
  from {
    opacity: 0;
    -moz-transform: translate(0, 5px);
         transform: translate(0, 5px); }
  to {
    opacity: 1;
    -moz-transform: translate(0, 0);
         transform: translate(0, 0); } }

@-o-keyframes popup-body {
  from {
    opacity: 0;
    -o-transform: translate(0, 5px);
       transform: translate(0, 5px); }
  to {
    opacity: 1;
    -o-transform: translate(0, 0);
       transform: translate(0, 0); } }

@keyframes popup-body {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 5px);
       -moz-transform: translate(0, 5px);
         -o-transform: translate(0, 5px);
            transform: translate(0, 5px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes img-loading {
  from {
    background-position: -150% 0; }
  to {
    background-position: 150% 0; } }

@-moz-keyframes img-loading {
  from {
    background-position: -150% 0; }
  to {
    background-position: 150% 0; } }

@-o-keyframes img-loading {
  from {
    background-position: -150% 0; }
  to {
    background-position: 150% 0; } }

@keyframes img-loading {
  from {
    background-position: -150% 0; }
  to {
    background-position: 150% 0; } }

@-webkit-keyframes error {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0); } }

@-moz-keyframes error {
  0%, 100% {
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -moz-transform: translate3d(-5px, 0, 0);
         transform: translate3d(-5px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -moz-transform: translate3d(5px, 0, 0);
         transform: translate3d(5px, 0, 0); } }

@-o-keyframes error {
  0%, 100% {
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-5px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(5px, 0, 0); } }

@keyframes error {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
       -moz-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(5px, 0, 0);
       -moz-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0); } }

@-webkit-keyframes btn {
  20% {
    background-size: 0 20%, 50% 20%, 75% 20%; }
  40% {
    background-size: 25% 20%, 0 20%, 50% 20%; }
  60% {
    background-size: 50% 20%, 25% 20%, 0 20%; }
  80% {
    background-size: 50% 20%, 75% 20%, 25% 20%; } }

@-moz-keyframes btn {
  20% {
    -moz-background-size: 0 20%, 50% 20%, 75% 20%;
         background-size: 0 20%, 50% 20%, 75% 20%; }
  40% {
    -moz-background-size: 25% 20%, 0 20%, 50% 20%;
         background-size: 25% 20%, 0 20%, 50% 20%; }
  60% {
    -moz-background-size: 50% 20%, 25% 20%, 0 20%;
         background-size: 50% 20%, 25% 20%, 0 20%; }
  80% {
    -moz-background-size: 50% 20%, 75% 20%, 25% 20%;
         background-size: 50% 20%, 75% 20%, 25% 20%; } }

@-o-keyframes btn {
  20% {
    -o-background-size: 0 20%, 50% 20%, 75% 20%;
       background-size: 0 20%, 50% 20%, 75% 20%; }
  40% {
    -o-background-size: 25% 20%, 0 20%, 50% 20%;
       background-size: 25% 20%, 0 20%, 50% 20%; }
  60% {
    -o-background-size: 50% 20%, 25% 20%, 0 20%;
       background-size: 50% 20%, 25% 20%, 0 20%; }
  80% {
    -o-background-size: 50% 20%, 75% 20%, 25% 20%;
       background-size: 50% 20%, 75% 20%, 25% 20%; } }

@keyframes btn {
  20% {
    -moz-background-size: 0 20%, 50% 20%, 75% 20%;
      -o-background-size: 0 20%, 50% 20%, 75% 20%;
         background-size: 0 20%, 50% 20%, 75% 20%; }
  40% {
    -moz-background-size: 25% 20%, 0 20%, 50% 20%;
      -o-background-size: 25% 20%, 0 20%, 50% 20%;
         background-size: 25% 20%, 0 20%, 50% 20%; }
  60% {
    -moz-background-size: 50% 20%, 25% 20%, 0 20%;
      -o-background-size: 50% 20%, 25% 20%, 0 20%;
         background-size: 50% 20%, 25% 20%, 0 20%; }
  80% {
    -moz-background-size: 50% 20%, 75% 20%, 25% 20%;
      -o-background-size: 50% 20%, 75% 20%, 25% 20%;
         background-size: 50% 20%, 75% 20%, 25% 20%; } }

@-webkit-keyframes success-icon {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(360deg);
            transform: scale(0) rotate(360deg); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-moz-keyframes success-icon {
  0% {
    opacity: 0;
    -moz-transform: scale(0) rotate(360deg);
         transform: scale(0) rotate(360deg); }
  50% {
    opacity: 1;
    -moz-transform: scale(1);
         transform: scale(1); } }

@-o-keyframes success-icon {
  0% {
    opacity: 0;
    -o-transform: scale(0) rotate(360deg);
       transform: scale(0) rotate(360deg); }
  50% {
    opacity: 1;
    -o-transform: scale(1);
       transform: scale(1); } }

@keyframes success-icon {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(360deg);
       -moz-transform: scale(0) rotate(360deg);
         -o-transform: scale(0) rotate(360deg);
            transform: scale(0) rotate(360deg); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes menu-app-open {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  50% {
    opacity: 1;
    -webkit-transform: translateX(5%);
            transform: translateX(5%); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@-moz-keyframes menu-app-open {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
         transform: translateX(-100%); }
  50% {
    opacity: 1;
    -moz-transform: translateX(5%);
         transform: translateX(5%); }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0); } }

@-o-keyframes menu-app-open {
  0% {
    opacity: 0;
    -o-transform: translateX(-100%);
       transform: translateX(-100%); }
  50% {
    opacity: 1;
    -o-transform: translateX(5%);
       transform: translateX(5%); }
  100% {
    -o-transform: translateX(0);
       transform: translateX(0); } }

@keyframes menu-app-open {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%); }
  50% {
    opacity: 1;
    -webkit-transform: translateX(5%);
       -moz-transform: translateX(5%);
         -o-transform: translateX(5%);
            transform: translateX(5%); }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0); } }

.c-btn, .c-read-more .c-read-more__btn {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  border: none;
  text-transform: none;
  text-decoration: none;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  width: auto;
  height: auto;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
     -moz-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  position: relative;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  padding: 9px 20px;
  color: #FFFFFF;
  background: var(--primary-color);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  z-index: 20;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all ease 0.3s 0s;
  -moz-transition: all ease 0.3s 0s;
  -o-transition: all ease 0.3s 0s;
  transition: all ease 0.3s 0s; }
  .c-btn::-ms-clear, .c-read-more .c-read-more__btn::-ms-clear {
    display: none; }
  @media only screen and (min-width: 551px) {
    .c-btn:hover, .c-read-more .c-read-more__btn:hover {
      background: var(--primary-hover-color); } }
  @media only screen and (min-width: 769px) {
    .c-btn, .c-read-more .c-read-more__btn {
      font-size: 14px; } }
  .c-btn .c-icon, .c-read-more .c-read-more__btn .c-icon {
    vertical-align: top;
    font-size: 1.33333em; }
    .c-btn .c-icon:first-child:not(:last-child), .c-read-more .c-read-more__btn .c-icon:first-child:not(:last-child) {
      margin-right: 0.66667em; }
    .c-btn .c-icon:last-child:not(:first-child), .c-read-more .c-read-more__btn .c-icon:last-child:not(:first-child) {
      margin-left: 0.66667em; }
  .c-btn.c-btn--green, .c-read-more .c-btn--green.c-read-more__btn {
    background: #00C67F; }
    .c-btn.c-btn--green:hover, .c-read-more .c-btn--green.c-read-more__btn:hover {
      background: #00945F; }
  .c-btn.c-btn--secondary, .c-read-more .c-btn--secondary.c-read-more__btn {
    background: var(--secondary-color); }
  .c-btn.c-btn--secondary:hover, .c-read-more .c-btn--secondary.c-read-more__btn:hover {
      background: var(--secondary-hover-color); }
  .c-btn.c-btn--red, .c-read-more .c-btn--red.c-read-more__btn {
    background: #ef4545; }
    .c-btn.c-btn--red:hover, .c-read-more .c-btn--red.c-read-more__btn:hover {
      background: #d82f2f; }
  .c-btn.c-btn--link, .c-read-more .c-btn--link.c-read-more__btn {
    background: none;
    padding-left: 0;
    padding-right: 0;
    color: var(--primary-text-color); }
    @media only screen and (min-width: 551px) {
      .c-btn.c-btn--link:hover, .c-read-more .c-btn--link.c-read-more__btn:hover {
        color: var(--primary-hover-color); } }
  .c-btn.c-btn--grey, .c-read-more .c-btn--grey.c-read-more__btn {
    border: 1px solid #CAD4DD;
    background: none;
    line-height: 23px;
    padding: 5px 15px;
    color: #828890;
    font-weight: 500; }
    .c-btn.c-btn--grey:hover, .c-btn.c-btn--grey.active, .c-read-more .c-btn--grey.c-read-more__btn:hover {
      border-color: var(--blocks-and-disabled-color);
      background: var(--blocks-and-disabled-color); }
  .c-btn.c-btn--block, .c-read-more .c-btn--block.c-read-more__btn {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box; }
  .c-btn.c-btn--sm, .c-read-more .c-btn--sm.c-read-more__btn {
    font-size: 13px;
    padding: 5px 15px; }
  .c-btn.c-btn--lg, .c-read-more .c-btn--lg.c-read-more__btn {
    font-size: 15px;
    padding: 14px 20px; }
  .c-btn.is-loading, .c-read-more .is-loading.c-read-more__btn {
    cursor: progress; }
    .c-btn.is-loading:after, .c-read-more .is-loading.c-read-more__btn:after {
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.7) url("../images/loader.svg") center center no-repeat;
      -moz-background-size: 1em 1em;
        -o-background-size: 1em 1em;
           background-size: 1em 1em;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
  .c-btn[disabled], .c-read-more .c-read-more__btn[disabled], .c-btn.is-disabled, .c-read-more .is-disabled.c-read-more__btn {
    border-color: #828890;
    background: #828890;
    color: #ffffff; }

.c-btn-scroll-top {
  display: none;
  position: fixed;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  right: 0;
  bottom: 0;
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease 0.3s 0s;
  -moz-transition: all ease 0.3s 0s;
  -o-transition: all ease 0.3s 0s;
  transition: all ease 0.3s 0s; }
  @media only screen and (min-width: 551px) {
    .c-btn-scroll-top {
      display: block; } }
  .c-btn-scroll-top .c-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -.5em;
    margin-top: -.5em; }
  .c-btn-scroll-top.is-active {
    opacity: 1;
    visibility: visible; }

.c-tooltip {
  display: inline-block;
  vertical-align: top;
  position: absolute;
  z-index: 300;
  text-align: left;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  background: #1B1D1E;
  color: #ffffff;
  font-size: 11px;
  line-height: 12px;
  font-weight: 400;
  padding: 15px 20px;
  width: 170px;
  -webkit-animation: opacity 0.5s ease-in;
     -moz-animation: opacity 0.5s ease-in;
       -o-animation: opacity 0.5s ease-in;
          animation: opacity 0.5s ease-in; }
  .c-tooltip:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    width: 0;
    height: 0;
    border-style: solid;
    color: #1B1D1E; }
  .c-tooltip.c-tooltip--top {
    margin-top: -10px; }
    .c-tooltip.c-tooltip--top:after {
      border-width: 6px 7px 0 7px;
      border-color: currentColor transparent transparent transparent;
      top: 100%;
      left: 50%;
      margin-left: -7px; }
  .c-tooltip.c-tooltip--bottom {
    margin-top: 10px; }
    .c-tooltip.c-tooltip--bottom:after {
      border-width: 0 7px 6px 7px;
      border-color: transparent transparent currentColor transparent;
      bottom: 100%;
      left: 50%;
      margin-left: -7px; }
  .c-tooltip.c-tooltip--left {
    margin-left: -10px; }
    .c-tooltip.c-tooltip--left:after {
      border-width: 7px 0 7px 6px;
      border-color: transparent transparent transparent currentColor;
      left: 100%;
      top: 50%;
      margin-top: -7px; }
  .c-tooltip.c-tooltip--right {
    margin-left: 10px; }
    .c-tooltip.c-tooltip--right:after {
      border-width: 7px 6px 7px 0;
      border-color: transparent currentColor transparent transparent;
      right: 100%;
      top: 50%;
      margin-top: -7px; }

.c-popup {
  position: fixed;
  z-index: 1000;
  overflow: auto;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); }
  .c-popup.c-popup--blue {
    background: #333; }
    /*.c-popup.c-popup--blue:before {
      content: '';
      display: block;
      position: absolute;
      right: 25%;
      left: 0;
      bottom: 0;
      top: 0;
      background: #30;
      -webkit-transform: skewX(-30deg);
         -moz-transform: skewX(-30deg);
          -ms-transform: skewX(-30deg);
           -o-transform: skewX(-30deg);
              transform: skewX(-30deg);
      -webkit-transform-origin: right top;
         -moz-transform-origin: right top;
          -ms-transform-origin: right top;
           -o-transform-origin: right top;
              transform-origin: right top;
      z-index: -1; }*/
  .c-popup.c-popup--lg .c-popup__body {
    width: 100%; }
    @media only screen and (min-width: 561px) {
      .c-popup.c-popup--lg .c-popup__body {
        width: 500px;
        padding-left: 75px;
        padding-right: 75px; } }
  .c-popup .c-popup__container {
    display: table;
    height: 100%;
    width: 100%;
    overflow: auto; }
  .c-popup .c-popup__inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }
    @media only screen and (min-width: 426px) {
      .c-popup .c-popup__inner {
        padding: 30px; } }
  .c-popup .c-popup__body {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, var(--shadow-power));
       -moz-box-shadow: 0 3px 4px rgba(0, 0, 0, var(--shadow-power));
            box-shadow: 0 3px 4px rgba(0, 0, 0, var(--shadow-power));
    -webkit-animation-name: popup-body;
       -moz-animation-name: popup-body;
         -o-animation-name: popup-body;
            animation-name: popup-body;
    width: 100%; }
    @media only screen and (min-width: 511px) {
      .c-popup .c-popup__body {
        width: 450px;
        padding: 50px;
        -webkit-border-radius: 5px;
           -moz-border-radius: 5px;
                border-radius: 5px; } }
  .c-popup .c-popup__content {
    position: relative;
    z-index: 990; }
  .c-popup .c-popup__close {
    position: absolute;
    z-index: 1000;
    display: block;
    cursor: pointer;
    background: none;
    top: 0;
    right: 0;
    padding: 20px;
    font-size: 13px;
    line-height: 0;
    color: var(--primary-color); }
    .c-popup .c-popup__close .c-icon {
      display: block; }
    @media only screen and (min-width: 551px) {
      .c-popup .c-popup__close:hover {
        color: #1C1C1C; } }

.c-item-comment {
  display: block;
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, var(--shadow-power));
  padding: 20px;
  margin-bottom: 20px; }
  @media only screen and (min-width: 551px) {
    .c-item-comment {
      padding: 25px 30px;
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px; } }
  .c-item-comment .c-item-comment__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 10px; }
  .c-item-comment .c-item-comment__body {
    font-size: 13px;
    line-height: 1.4;
    color: #1C1C1C; }
    @media only screen and (min-width: 551px) {
      .c-item-comment .c-item-comment__body {
        font-size: 14px; } }
    .c-item-comment .c-item-comment__body p {
      margin: 0; }
  .c-item-comment .c-item-comment__title {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0; }
  .c-item-comment .c-item-comment__name {
    display: inline;
    font-size: 15px;
    line-height: 1;
    color: #1C1C1C;
    font-weight: 500;
    margin: 0; }
    @media only screen and (min-width: 551px) {
      .c-item-comment .c-item-comment__name {
        font-size: 16px; } }
  .c-item-comment .c-item-comment__date {
    display: inline;
    color: var(--neutral-elements-color);
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    margin: 0 0 0 10px; }
    @media only screen and (min-width: 551px) {
      .c-item-comment .c-item-comment__date {
        font-size: 12px; } }
  .c-item-comment .c-item-comment__btn {
    line-height: 0;
    text-decoration: none;
    cursor: pointer;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    font-size: 20px; }
  .c-item-comment .c-item-comment__edit, .c-item-comment .c-item-comment__remove {
    font-size: 15px; }
  .c-item-comment .c-item-comment__actions {
    margin-left: auto;
    line-height: 0;
    margin-top: 5px; }
    @media only screen and (min-width: 769px) {
      .c-item-comment .c-item-comment__actions {
        margin-top: 0; } }
    .c-item-comment .c-item-comment__actions ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
         -moz-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      padding: 0;
      margin: 0 -10px; }
      @media only screen and (min-width: 769px) {
        .c-item-comment .c-item-comment__actions ul {
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
             -moz-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }
      .c-item-comment .c-item-comment__actions ul li {
        display: inline-block;
        vertical-align: top;
        margin: 0;
        padding: 0 10px; }
  .c-item-comment.c-item-comment--reply {
    background: var(--blocks-and-disabled-color);
    border: 0; }
    @media only screen and (max-width: 550px) {
      .c-item-comment.c-item-comment--reply .c-item-comment__head {
        position: relative;
        padding-left: 30px; }
        .c-item-comment.c-item-comment--reply .c-item-comment__head:before {
          content: '';
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          background-image: url(../images/icons.png);
          background-position: 0px 0px;
          width: 20px;
          height: 13px; } }

.c-item-question {
  display: block;
  text-align: left;
  text-decoration: none;
  position: relative;
  border-bottom: 1px solid var(--blocks-and-disabled-color);
  font-weight: 400;
  padding: 15px 20px 5px 60px;
  -webkit-transition: all ease 0.3s 0s;
  -moz-transition: all ease 0.3s 0s;
  -o-transition: all ease 0.3s 0s;
  transition: all ease 0.3s 0s; }
  @media only screen and (min-width: 769px) {
    .c-item-question {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
         -moz-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding: 20px 30px; } }
  .c-item-question:hover {
    background: rgba(229, 235, 241, 0.2); }
    .c-item-question:hover .c-item-question__icon {
      color: var(--primary-color); }
  .c-item-question.is-active .c-item-question__title {
    font-weight: 700; }
  .c-item-question.is-active .c-item-question__icon {
    color: var(--primary-color); }
  .c-item-question .c-item-question__icon {
    position: absolute;
    left: 20px;
    top: 15px;
    line-height: 0;
    font-size: 25px;
    color: #CAD4DD;
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
    -o-transition: all ease 0.3s 0s;
    transition: all ease 0.3s 0s; }
    @media only screen and (min-width: 769px) {
      .c-item-question .c-item-question__icon {
        font-size: 20px;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
           -moz-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        left: auto;
        top: auto;
        margin-right: 15px;
        position: relative; } }
  .c-item-question .c-item-question__title {
    font-size: 15px;
    line-height: 20px;
    color: #1C1C1C;
    margin-bottom: 10px; }
    @media only screen and (min-width: 769px) {
      .c-item-question .c-item-question__title {
        font-size: 14px;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
           -moz-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        max-width: 50%;
        margin-bottom: 0;
        margin-right: 20px; } }
  .c-item-question .c-item-question__date {
    text-align: right;
    color: #000000;
    font-size: 11px;
    margin-top: 5px; }
    @media only screen and (min-width: 769px) {
      .c-item-question .c-item-question__date {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
           -moz-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        margin-left: 20px;
        margin-top: 0;
        font-size: 14px; } }
  .c-item-question .c-item-question__text {
    font-size: 13px;
    line-height: 1.4;
    color: #828890; }
    @media only screen and (min-width: 769px) {
      .c-item-question .c-item-question__text {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
           -moz-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis; } }
    .c-item-question .c-item-question__text p {
      margin: 0; }

.c-item-material {
  display: block;
  position: relative;
  padding: 15px 20px;
  border-top: 1px solid var(--blocks-and-disabled-color);
  border-bottom: 1px solid var(--blocks-and-disabled-color); }
  @media only screen and (min-width: 769px) {
    .c-item-material {
      padding: 20px 30px; } }
  .c-item-material .c-item-material__title {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #1C1C1C;
    margin: 0;
    text-decoration: none; }
    @media only screen and (min-width: 769px) {
      .c-item-material .c-item-material__title {
        font-size: 16px; } }
    .c-item-material .c-item-material__title a {
      color: inherit;
      text-decoration: none; }
  .c-item-material .c-item-material__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 10px; }
  .c-item-material .c-item-material__icon {
    color: var(--secondary-color);
    font-size: 20px;
    margin-left: 15px;
    line-height: 0; }
  .c-item-material .c-item-material__text {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #1C1C1C; }
    @media only screen and (min-width: 769px) {
      .c-item-material .c-item-material__text {
        font-size: 14px; } }
    .c-item-material .c-item-material__text p {
      margin: 0; }

.c-table-wrapper {
  max-width: 100%;
  overflow: hidden; }
  .c-table-wrapper.is-active {
    overflow: auto; }

.c-table {
  border: 1px solid var(--blocks-and-disabled-color);
  border-bottom: none;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  border-collapse: separate; }
  .c-table th,
  .c-table td {
    border: none;
    text-align: left;
    padding: 15px 30px; }
  .c-table th {
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--blocks-and-disabled-color); }
  .c-table td {
    font-size: 14px;
    line-height: 20px;
    border-bottom: 1px solid var(--blocks-and-disabled-color); }
  .c-table tr:nth-child(odd) td {
    background: #FAFBFC; }

.c-table-lessons {
  width: 100%;
  border: none;
  margin: 0; }
  @media only screen and (max-width: 768px) {
    .c-table-lessons {
      display: block; }
      .c-table-lessons thead, .c-table-lessons th {
        display: none; }
      .c-table-lessons tbody, .c-table-lessons tfoot, .c-table-lessons td, .c-table-lessons tr {
        display: block; } }
  .c-table-lessons th, .c-table-lessons td {
    border: none;
    text-align: left;
    color: #1C1C1C; }
    @media only screen and (min-width: 769px) {
      .c-table-lessons th, .c-table-lessons td {
        padding: 14px 20px; }
        .c-table-lessons th:first-child, .c-table-lessons td:first-child {
          padding-left: 30px; }
        .c-table-lessons th:last-child, .c-table-lessons td:last-child {
          padding-right: 30px; } }
  .c-table-lessons thead, .c-table-lessons tfoot {
    background: var(--blocks-and-disabled-color);
 }
  .c-table-lessons th {
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase; }
  .c-table-lessons td {
    font-size: 14px;
    line-height: 20px; }
    @media only screen and (min-width: 769px) {
      .c-table-lessons td {
        border-bottom: 1px solid var(--blocks-and-disabled-color); } }
  .c-table-lessons .c-table-lessons__title {
    margin-bottom: 10px; }
    @media only screen and (min-width: 769px) {
      .c-table-lessons .c-table-lessons__title {
        margin-bottom: 0;
        width: 250px; } }
  @media only screen and (min-width: 769px) {
    .c-table-lessons .c-table-lessons__desc {
      width: 300px; } }
  @media only screen and (max-width: 768px) {
    .c-table-lessons .c-table-lessons__desc {
      display: none; } }
  @media only screen and (max-width: 768px) {
    .c-table-lessons .c-table-lessons__date {
      display: none; } }
  .c-table-lessons .c-table-lessons__action {
    margin-bottom: 20px; }
    @media only screen and (min-width: 769px) {
      .c-table-lessons .c-table-lessons__action {
        margin-bottom: 0; } }
  .c-table-lessons .c-table-lessons__btn {
    margin-top: 20px; }
    @media only screen and (min-width: 769px) {
      .c-table-lessons .c-table-lessons__btn {
        width: 160px;
        margin-top: 0; } }
  .c-table-lessons .c-table-lessons__item {
    border-top: 1px solid var(--blocks-and-disabled-color);
    padding: 20px; }
    @media only screen and (min-width: 769px) {
      .c-table-lessons .c-table-lessons__item {
        border: none;
        padding: 0; } }
    .c-table-lessons .c-table-lessons__item.is-inactive {
      background: rgba(229, 235, 241, 0.2); }
      @media only screen and (min-width: 769px) {
        .c-table-lessons .c-table-lessons__item.is-inactive {
          background: none; }
          .c-table-lessons .c-table-lessons__item.is-inactive th,
          .c-table-lessons .c-table-lessons__item.is-inactive td {
            background: rgba(229, 235, 241, 0.2); } }
    .c-table-lessons .c-table-lessons__item:last-child {
      border-bottom: none; }
      .c-table-lessons .c-table-lessons__item:last-child th,
      .c-table-lessons .c-table-lessons__item:last-child td {
        border-bottom: none; }
    .c-table-lessons .c-table-lessons__item-title {
      text-decoration: none;
      margin-bottom: 5px; }
      .c-table-lessons .c-table-lessons__item-title a {
        color: currentColor;
        text-decoration: none; }
    .c-table-lessons .c-table-lessons__item-action {
      display: inline-block;
      vertical-align: top;
      position: relative;
      font-size: 12px;
      line-height: 1.66667em;
      text-decoration: none;
      padding-left: 2.5em;
      font-weight: 700;
      color: #828890; }
      .c-table-lessons .c-table-lessons__item-action.is-error {
        color: #C83329; }
      .c-table-lessons .c-table-lessons__item-action.is-disabled, .c-table-lessons .c-table-lessons__item-action[disabled] {
        color: #71757B; }
      .c-table-lessons .c-table-lessons__item-action.is-success {
        color: #00C67F; }
      @media only screen and (min-width: 769px) {
        .c-table-lessons .c-table-lessons__item-action {
          padding-left: 0; } }
      @media only screen and (min-width: 769px) {
        .c-table-lessons .c-table-lessons__item-action > span {
          display: none; } }
      .c-table-lessons .c-table-lessons__item-action .c-icon {
        font-size: 1.66667em;
        position: absolute;
        left: 0;
        top: 0; }
        @media only screen and (min-width: 769px) {
          .c-table-lessons .c-table-lessons__item-action .c-icon {
            position: relative; } }
      .c-table-lessons .c-table-lessons__item-action.is-error {
        color: #F61C0D; }
      .c-table-lessons .c-table-lessons__item-action.is-disabled, .c-table-lessons .c-table-lessons__item-action[disabled] {
        color: var(--neutral-elements-color); }
      .c-table-lessons .c-table-lessons__item-action.is-active {
        color: #3A99D8; }
      .c-table-lessons .c-table-lessons__item-action.is-success {
        color: #00C67F; }
    .c-table-lessons .c-table-lessons__item-desc {
      font-size: 13px;
      line-height: 20px;
      font-weight: 400;
      color: #71757B; }
    .c-table-lessons .c-table-lessons__item-status {
      display: none;
      vertical-align: top;
      text-decoration: none;
      position: relative;
      font-weight: 700;
      font-size: 12px;
      line-height: 15px;
      color: #3A99D8;
      padding-left: 2em; }
      @media only screen and (min-width: 769px) {
        .c-table-lessons .c-table-lessons__item-status {
          display: inline-block; } }
      .c-table-lessons .c-table-lessons__item-status.is-error {
        color: #F61C0D; }
      .c-table-lessons .c-table-lessons__item-status.is-disabled, .c-table-lessons .c-table-lessons__item-status[disabled] {
        color: #CAD4DD; }
      .c-table-lessons .c-table-lessons__item-status.is-success {
        color: #00C67F; }
      .c-table-lessons .c-table-lessons__item-status .c-icon {
        font-size: 1.25em;
        position: absolute;
        left: 0;
        top: 0; }
    @media only screen and (max-width: 425px) {
      .c-table-lessons .c-table-lessons__item-btn .c-btn, .c-table-lessons .c-table-lessons__item-btn .c-read-more .c-read-more__btn, .c-read-more .c-table-lessons .c-table-lessons__item-btn .c-read-more__btn {
        display: block;
        width: 100%; } }

.c-table-question th, .c-table-question td {
  padding-left: 15px;
  padding-right: 15px; }
  .c-table-question th:first-child, .c-table-question td:first-child {
    padding-left: 30px; }
  .c-table-question th:last-child, .c-table-question td:last-child {
    padding-right: 30px; }

.c-table-question .c-table-question__status {
  text-align: center;
  line-height: 0;
  font-size: 20px; }
  .c-table-question .c-table-question__status.is-error {
    color: #C83329; }
  .c-table-question .c-table-question__status.is-disabled, .c-table-question .c-table-question__status[disabled] {
    color: #71757B; }
  .c-table-question .c-table-question__status.is-success {
    color: #00C67F; }

.c-social-links .youtube {
  background: #F61C0D; }

.c-social-links .vkontakte {
  background: #5181B8; }

.c-social-links .facebook {
  background: #3B5998; }

.c-social-links .instagram {
  background: #E8237A;
  background: -webkit-linear-gradient(250deg, #962AFB 5%, #E8237A 50%, #F1BE0B 100%);
  background: -moz- oldlinear-gradient(250deg, #962AFB 5%, #E8237A 50%, #F1BE0B 100%);
  background: -o-linear-gradient(250deg, #962AFB 5%, #E8237A 50%, #F1BE0B 100%);
  background: linear-gradient(200deg, #962AFB 5%, #E8237A 50%, #F1BE0B 100%); }

.c-social-links .telegram {
  background: #269eda; }

.c-social-links a {
  display: block;
  position: relative;
  height: 1em;
  width: 1em;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  background: #71757B;
  color: #ffffff; }
  .c-social-links a .c-icon {
    display: block;
    font-size: 0.42857em;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -.5em;
    margin-top: -.5em; }

.c-social-links ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  margin: 0 -0.2em; }
  .c-social-links ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0 0.2em;
    margin: 0; }

.c-header {
  position: relative;
  z-index: 300;
  background: #ffffff;
  padding: 10px 30px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
     -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
          box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power)); }
  @media only screen and (min-width: 769px) {
    .c-header {
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px; } }
  .c-header .c-header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: space-between;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: space-between; }
  @media only screen and (max-width: 769px) {
    .c-header .c-header__inner {
      /*overflow: auto;*/ } }
  .c-header .c-header__nav-toggle {
    margin-right: auto;
    font-size: 30px; }
    @media only screen and (min-width: 1025px) {
      .c-header .c-header__nav-toggle {
        display: none; } }
  .c-header .c-header__form {
    display: none;
    margin-right: 20px; }
    @media only screen and (min-width: 1025px) {
      .c-header .c-header__form {
        display: block; } }
  .c-header .c-header__notice {
    display: inline-block;
    vertical-align: top;
    position: relative;
    font-size: 0;
    line-height: 0;
    /*padding-right: 15px;
    padding-bottom: 5px;*/
    margin-left: auto; }
    .c-header .c-header__notice .c-icon {
      font-size: 30px;
      color: var(--neutral-elements-color); }
    .c-header .c-header__notice-count {
      position: absolute;
      /*right: 0;
      bottom: 0;*/
      right: -15px;
      bottom: -5px;
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
              border-radius: 50%;
      font-size: 12px;
      line-height: 14px;
      padding: 4px;
      font-weight: 700;
      background: var(--primary-color);
      color: #FFFFFF;
      text-align: center;
      min-width: 26px;
      min-height: 26px;
      border: 2px solid #FFFFFF; }
  .c-header .c-header__user {
    /*display: none;*/
    /*-webkit-box-flex: 0;
    -webkit-flex: 0 0 250px;
       -moz-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    max-width: 250px;*/
    position: relative;
    margin: -10px -40px -10px -5px; }
    .c-header .c-header__user.is-expanded .c-header__user-btn {
      background: var(--primary-color);
      color: #FFFFFF;
      -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
         -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
              box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power)); }
      .c-header .c-header__user.is-expanded .c-header__user-btn:after {
        color: #FFFFFF; }
      .c-header .c-header__user.is-expanded .user_icon {
        color: #FFFFFF; }
    .c-header .c-header__user.is-expanded .c-header__user-menu {
      display: block; }
    .c-header .c-header__user-btn {
      display: block;
      position: relative;
      font-size: 14px;
      line-height: 20px;
      color: #1B1D1E;
      text-decoration: none;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      /*padding: 20px 50px 20px 37px;*/
      padding: 20px 10px 20px 10px;
      -webkit-border-radius: 0 3px 3px 0;
         -moz-border-radius: 0 3px 3px 0;
              border-radius: 0 3px 3px 0; }
        @media only screen and (min-width: 1025px) {
          .c-header .c-header__user-btn {
            padding: 20px 50px 20px 37px;
          }
        }
      .c-header .c-header__user-btn:hover {
        background: var(--primary-color);
        color: #FFFFFF; }
        .c-header .c-header__user-btn:hover:after {
          color: #FFFFFF; }
        .c-header .c-header__user-btn:hover .user_icon {
        color: #FFFFFF; }
      .c-header .c-header__user-btn > .user_login {
        display: none;
        border-bottom: 1px dashed var(--neutral-elements-color); }
        @media only screen and (min-width: 1025px) {
          .c-header .c-header__user-btn > .user_login{
            display: block;
          }
        }
      .c-header .c-header__user-btn > .user_icon {
        display: block;
        padding: 10px;
        /*color: var(--primary-color);*/
        /*border: 1px solid currentColor;*/
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: block;
        height: 1rem;
        box-sizing: content-box;
        }
        .c-header .c-header__user-btn > .user_icon svg {
          transform: translateY(-2px);
        }
        @media only screen and (min-width: 1025px) {
          .c-header .c-header__user-btn > .user_icon {
            display: none;
          }
        }
      .c-header .c-header__user-btn:after {
        content: '';
        display: none;
        position: absolute;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        color: var(--primary-color);
        right: 30px;
        top: 50%;
        margin-top: -2.5px;
        width: 10px;
        height: 5px;
        border-style: solid;
        border-width: 5px 5px 0 5px;
        border-color: currentColor transparent transparent transparent; }
          @media only screen and (min-width: 1025px) {
            .c-header .c-header__user-btn:after {
              display: block;
            }
          }
    .c-header .c-header__user-menu {
      /*width: 100%;*/
      display: none;
      width: max-content;
      position: absolute;
      top: 100%;
      right: 0;
      background: #FFFFFF;
      padding: 20px 30px;
      -webkit-border-radius: 0 0 3px 3px;
         -moz-border-radius: 0 0 3px 3px;
              border-radius: 0 0 3px 3px;
      -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
         -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
              box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
      -webkit-animation: opacity 0.5s ease;
         -moz-animation: opacity 0.5s ease;
           -o-animation: opacity 0.5s ease;
              animation: opacity 0.5s ease; }
    @media only screen and (min-width: 1025px) {
      .c-header .c-header__user {
        /*display: block;*/
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 250px;
           -moz-box-flex: 0;
            -ms-flex: 0 0 250px;
                flex: 0 0 250px;
        max-width: 250px;
        } }

.c-footer {
  position: relative;
  /*z-index: 300;*/
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
     -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
          box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
  padding: 20px 30px;
  font-size: 14px;
  line-height: 15px;
  color: #1C1C1C;
  font-weight: 400; }
  @media only screen and (min-width: 769px) {
    .c-footer {
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px; } }
  .c-footer .c-footer__inner {
    text-align: center; }
    @media only screen and (min-width: 769px) {
      .c-footer .c-footer__inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
           -moz-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
  .c-footer .c-footer__logo {
    margin-left: auto; }
    .c-footer .c-footer__logo-title, .c-footer .c-footer__logo-img {
      display: inline-block;
      vertical-align: middle; }
    .c-footer .c-footer__logo-title {
      font-size: 14px;
      line-height: 15px;
      color: #1C1C1C;
      font-weight: 400; }
    .c-footer .c-footer__logo-img {
      font-size: 0;
      line-height: 0; }
      .c-footer .c-footer__logo-img > img {
          height: 21px;
      }

.c-aside .c-aside__logo {
  display: block;
  background: #FFFFFF;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  line-height: 0;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
  box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power)); }

select.is-error ~ .ui-selectmenu-button {
  border-color: #C83329; }

.ui-select-container {
  display: block;
  position: relative;
  z-index: 20;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .ui-select-container select {
    display: block;
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20; }
    .ui-select-container select.is-error ~ .ui-selectmenu-button {
      border-color: #C83329; }
    @media only screen and (min-width: 551px) {
      .ui-select-container select {
        z-index: -1; } }

.ui-selectmenu-button {
  display: block;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--blocks-and-disabled-color);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  height: 38px;
  padding: 9px 20px;
  font-size: 13px;
  line-height: 18px;
  color: #1C1C1C; }
  .ui-selectmenu-button-open {
    -webkit-border-radius: 3px 3px 0 0;
       -moz-border-radius: 3px 3px 0 0;
            border-radius: 3px 3px 0 0; }

.ui-selectmenu-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: var(--primary-color) transparent transparent transparent;
  position: absolute;
  font-size: 0;
  right: 15px;
  top: 50%;
  margin-top: -2.5px; }

.ui-selectmenu-text {
  overflow: hidden;
  display: block;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  color: inherit;
  white-space: nowrap; }

.ui-selectmenu-menu {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  display: none;
  z-index: 20;
  text-align: left;
  -webkit-border-radius: 0 0 3px 3px;
     -moz-border-radius: 0 0 3px 3px;
          border-radius: 0 0 3px 3px;
  border: 1px solid var(--blocks-and-disabled-color);
  border-top: none;
  background: #FFFFFF; }
  .ui-selectmenu-menu .ui-menu {
    padding: 0;
    margin: 0;
    overflow: auto;
    max-height: 240px;
    max-width: 100%;
    width: 100%; }
    .ui-selectmenu-menu .ui-menu-item {
      display: block;
      margin: 0;
      border-bottom: 1px solid var(--blocks-and-disabled-color); }
      .ui-selectmenu-menu .ui-menu-item:last-child {
        border-bottom: none; }
      .ui-selectmenu-menu .ui-menu-item-wrapper {
        display: block;
        text-decoration: none;
        padding: 9px 20px;
        font-size: 13px;
        line-height: 18px;
        color: #1C1C1C;
        cursor: pointer; }
        .ui-selectmenu-menu .ui-menu-item-wrapper.ui-state-active, .ui-selectmenu-menu .ui-menu-item-wrapper:hover {
          background: var(--blocks-and-disabled-color); }

.ui-selectmenu-open {
  display: block; }

.c-form {
  position: relative;
  text-align: left;
  display: block; }
  .c-form .l-row {
    margin-left: -10px;
    margin-right: -10px; }
    .c-form .l-row [class*="l-col"] {
      padding-left: 10px;
      padding-right: 10px; }
  .c-form .c-form__title {
    font-weight: 400;
    font-size: 21px;
    line-height: 1;
    color: #1C1C1C;
    margin-bottom: 15px; }
    @media only screen and (min-width: 769px) {
      .c-form .c-form__title {
        font-size: 22px; } }
  .c-form .c-form__field {
    position: relative;
    margin-bottom: 15px; }
    .c-form .c-form__field-clear {
      display: none;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      color: var(--primary-text-color);
      width: 40px;
      background: none;
      border: none;
      -webkit-box-shadow: none;
         -moz-box-shadow: none;
              box-shadow: none;
      font-size: 10px; }
      .c-form .c-form__field-clear .c-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -.5em;
        margin-top: -.5em; }
    .c-form .c-form__field-password {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      color: var(--neutral-elements-color);
      width: 40px;
      background: none;
      border: none;
      -webkit-box-shadow: none;
         -moz-box-shadow: none;
              box-shadow: none;
      font-size: 15px; }
      .c-form .c-form__field-password:hover, .c-form .c-form__field-password.is-active {
        color: var(--primary-color); }
      .c-form .c-form__field-password .c-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -.5em;
        margin-top: -.5em; }
  .c-form .c-form__label {
    display: block;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #71757B;
    margin-bottom: 5px; }
    @media only screen and (min-width: 769px) {
      .c-form .c-form__label {
        font-size: 14px; } }
  .c-form .c-form__error {
    font-size: 0.8em;
    line-height: 1;
    margin: 0.5em 0;
    color: #C83329; }
    .c-form .c-form__error p {
      margin: 0; }
    .c-form .c-form__error ul,
    .c-form .c-form__error li {
      display: block;
      padding: 0;
      margin: 0; }
  .c-form .c-form__head {
    margin-bottom: 25px;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #1C1C1C; }
    @media only screen and (min-width: 769px) {
      .c-form .c-form__head {
        font-size: 14px; } }
    .c-form .c-form__head p {
      margin: 0; }
  .c-form .c-form__footer {
    font-size: 0.8em; }
  .c-form .c-form__license {
    margin: 20px 0;
    font-size: 12px; }
    .c-form .c-form__license a {
      text-decoration: none; }

.c-form-success {
  display: block;
  position: relative;
  text-align: center;
  font-size: 1em;
  background: #FFFFFF;
  padding: 30px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px; }
  .c-form-success p {
    margin: 0; }
  .c-form-success .c-form-success__icon {
    display: block;
    font-size: 45px;
    line-height: 0;
    text-align: center;
    color: #00C67F;
    -webkit-animation: success-icon 0.3s ease-in-out;
       -moz-animation: success-icon 0.3s ease-in-out;
         -o-animation: success-icon 0.3s ease-in-out;
            animation: success-icon 0.3s ease-in-out;
    margin-bottom: 10px; }

.c-form-reply .c-form__head {
  text-align: left;
  margin: 0 0 15px 0; }

.c-form-reply .c-form__title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px 0; }

.c-form-reply .c-form__footer {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.c-form-reply .c-form__reset {
  margin-left: 20px; }

.c-form-reply textarea {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
     -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
          box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power)); }

.c-form-test .c-form__field {
  margin-bottom: 10px; }

.c-form-test .c-form__footer {
  padding: 0 30px; }

@media only screen and (max-width: 425px) {
  .c-form-test .c-form__submit .c-btn, .c-form-test .c-form__submit .c-read-more .c-read-more__btn, .c-read-more .c-form-test .c-form__submit .c-read-more__btn {
    display: block;
    width: 100%; } }

.c-form-test .c-form-test__row {
  border-bottom: 1px solid var(--blocks-and-disabled-color);
  padding: 0 30px 20px 30px;
  margin-bottom: 20px; }
  .c-form-test .c-form-test__row-title {
    font-weight: 400;
    font-size: 20px;
    color: #1C1C1C;
    margin-bottom: 30px; }

.c-form-question {
  margin: 30px 0 10px 0; }
  .c-form-question .c-form__footer {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .c-form-question .c-form__reset {
    margin-left: 20px; }
  .c-form-question textarea {
    min-height: 170px; }
  .c-form-question .c-form-question__theme {
    max-width: 350px; }

.c-form-user {
  padding: 0 20px; }
  @media only screen and (min-width: 769px) {
    .c-form-user {
      padding: 10px 30px; } }
  @media only screen and (max-width: 425px) {
    .c-form-user .c-form__submit .c-btn, .c-form-user .c-form__submit .c-read-more .c-read-more__btn, .c-read-more .c-form-user .c-form__submit .c-read-more__btn {
      display: block;
      width: 100%; } }
  .c-form-user .c-form__footer {
    margin-top: 20px; }
  .c-form-user input[type="text"], .c-form-user input[type="email"],
  .c-form-user input[type="datetime"], .c-form-user input[type="datetime-local"],
  .c-form-user input[type="password"], .c-form-user input[type="tel"],
  .c-form-user input[type="phone"], .c-form-user input[type="number"],
  .c-form-user input[type="search"], .c-form-user textarea {
    padding-left: 20px;
    padding-right: 20px; }
  .c-form-user .c-form-user__row {
    margin-bottom: 20px; }
    @media only screen and (min-width: 769px) {
      .c-form-user .c-form-user__row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
           -moz-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        max-width: 550px; } }
    .c-form-user .c-form-user__row:last-child {
      margin-bottom: 0; }
    @media only screen and (min-width: 769px) {
      .c-form-user .c-form-user__row .c-form__label {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 180px;
           -moz-box-flex: 0;
            -ms-flex: 0 0 180px;
                flex: 0 0 180px;
        max-width: 180px;
        margin: 0 20px 0 0; } }
    @media only screen and (min-width: 769px) {
      .c-form-user .c-form-user__row .c-form__field,
      .c-form-user .c-form-user__row .c-form__submit {
        margin: 0;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 350px;
           -moz-box-flex: 0;
            -ms-flex: 0 1 350px;
                flex: 0 1 350px;
        max-width: 350px; } }

.c-form-login .c-form-login__logo {
  text-align: center;
  margin-bottom: 30px; }
  .c-form-login .c-form-login__logo img {
    max-height: 200px;
    max-width: 200px; }

.c-form-login .c-form-login__links {
  text-align: center;
  margin-top: 30px; }
  .c-form-login .c-form-login__links a {
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--primary-text-color); }
    .c-form-login .c-form-login__links a:hover {
      text-decoration: underline; }
  .c-form-login .c-form-login__links ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    margin: 0 -15px;
    text-align: center; }
    @media only screen and (min-width: 426px) {
      .c-form-login .c-form-login__links ul {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: 0 -20px 0 0; } }
    .c-form-login .c-form-login__links ul li {
      display: inline-block;
      vertical-align: top;
      padding: 0 15px;
      margin: 0; }

@media only screen and (min-width: 426px) {
  .c-form-pay .c-form__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
       -moz-box-orient: horizontal;
       -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }

@media only screen and (max-width: 425px) {
  .c-form-pay .c-form__submit .c-btn, .c-form-pay .c-form__submit .c-read-more .c-read-more__btn, .c-read-more .c-form-pay .c-form__submit .c-read-more__btn {
    display: block;
    width: 100%; } }

.c-form-pay .c-form-pay__total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  flex-wrap: wrap; 
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--blocks-and-disabled-color);
  border-bottom: 1px solid var(--blocks-and-disabled-color); }
  @media only screen and (min-width: 426px) {
    .c-form-pay .c-form-pay__total {
      margin: 30px 0; } }
  .c-form-pay .c-form-pay__total-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-right: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1C1C1C; }
  .c-form-pay .c-form-pay__total-prices {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    text-align: right; }

.c-form-pay .c-form-pay__price {
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: var(--primary-text-color); }
  .c-form-pay .c-form-pay__price-old {
    font-weight: 500;
    text-decoration: line-through;
    font-size: 14px;
    line-height: 20px;
    color: var(--neutral-elements-color); }

.c-form-pay .c-form-pay__links {
  margin-top: 15px; }
  @media only screen and (min-width: 426px) {
    .c-form-pay .c-form-pay__links {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 auto;
         -moz-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto;
      margin-right: 20px;
      margin-top: 0; } }
  .c-form-pay .c-form-pay__links a {
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--primary-text-color); }
    .c-form-pay .c-form-pay__links a:hover {
      text-decoration: underline; }
  .c-form-pay .c-form-pay__links ul {
    display: block;
    padding: 0;
    margin: 0; }
    .c-form-pay .c-form-pay__links ul li {
      display: block;
      padding: 0;
      margin: 0 0 5px 0; }
      .c-form-pay .c-form-pay__links ul li:last-child {
        margin-bottom: 0; }

select.is-error ~ .ui-selectmenu-button {
  border-color: #C83329; }

.ui-select-container {
  display: block;
  position: relative;
  z-index: 20;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .ui-select-container select {
    display: block;
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20; }
    .ui-select-container select.is-error ~ .ui-selectmenu-button {
      border-color: #C83329; }
    @media only screen and (min-width: 551px) {
      .ui-select-container select {
        z-index: -1; } }

.ui-selectmenu-button {
  display: block;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--blocks-and-disabled-color);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  height: 38px;
  padding: 9px 20px;
  font-size: 13px;
  line-height: 18px;
  color: #1C1C1C; }
  .ui-selectmenu-button-open {
    -webkit-border-radius: 3px 3px 0 0;
       -moz-border-radius: 3px 3px 0 0;
            border-radius: 3px 3px 0 0; }

.ui-selectmenu-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: var(--primary-color) transparent transparent transparent;
  position: absolute;
  font-size: 0;
  right: 15px;
  top: 50%;
  margin-top: -2.5px; }

.ui-selectmenu-text {
  overflow: hidden;
  display: block;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  color: inherit;
  white-space: nowrap; }

.ui-selectmenu-menu {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  display: none;
  z-index: 20;
  text-align: left;
  -webkit-border-radius: 0 0 3px 3px;
     -moz-border-radius: 0 0 3px 3px;
          border-radius: 0 0 3px 3px;
  border: 1px solid var(--blocks-and-disabled-color);
  border-top: none;
  background: #FFFFFF; }
  .ui-selectmenu-menu .ui-menu {
    padding: 0;
    margin: 0;
    overflow: auto;
    max-height: 240px;
    max-width: 100%;
    width: 100%; }
    .ui-selectmenu-menu .ui-menu-item {
      display: block;
      margin: 0;
      border-bottom: 1px solid var(--blocks-and-disabled-color); }
      .ui-selectmenu-menu .ui-menu-item:last-child {
        border-bottom: none; }
      .ui-selectmenu-menu .ui-menu-item-wrapper {
        display: block;
        text-decoration: none;
        padding: 9px 20px;
        font-size: 13px;
        line-height: 18px;
        color: #1C1C1C;
        cursor: pointer; }
        .ui-selectmenu-menu .ui-menu-item-wrapper.ui-state-active, .ui-selectmenu-menu .ui-menu-item-wrapper:hover {
          background: var(--blocks-and-disabled-color); }

.ui-selectmenu-open {
  display: block; }

[disabled],
.is-disabled {
  cursor: not-allowed;
  border-color: var(--blocks-and-disabled-color);
  color: var(--blocks-and-disabled-color); }

.is-loading {
  cursor: progress; }

.is-error {
  border-color: #C83329;
  -webkit-animation: error 0.3s ease-in-out;
     -moz-animation: error 0.3s ease-in-out;
       -o-animation: error 0.3s ease-in-out;
          animation: error 0.3s ease-in-out; }

textarea {
  display: block;
  width: 100%;
  resize: none;
  background: #FFFFFF;
  border: 1px solid var(--blocks-and-disabled-color);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding: 20px 20px;
  font-size: 13px;
  line-height: 18px;
  color: #1C1C1C;
  min-height: 90px;
  max-height: 300px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all ease 0.3s 0s;
  -moz-transition: all ease 0.3s 0s;
  -o-transition: all ease 0.3s 0s;
  transition: all ease 0.3s 0s; }
  textarea::-ms-clear {
    display: none; }
  textarea::-webkit-input-placeholder {
    color: #71757B; }
  textarea::-moz-placeholder {
    color: #71757B; }
  textarea:-moz-placeholder {
    color: #71757B; }
  textarea:-ms-input-placeholder {
    color: #71757B; }
  textarea.is-changed {
    border-color: #3A99D8; }
  textarea.is-error {
    border-color: #C83329; }
  textarea[disabled], textarea.is-disabled {
    border-color: var(--blocks-and-disabled-color);
    background: var(--blocks-and-disabled-color);
    color: #71757B; }

input[type="text"], input[type="email"],
input[type="datetime"], input[type="datetime-local"],
input[type="password"], input[type="tel"],
input[type="phone"], input[type="number"],
input[type="search"] {
  display: block;
  text-align: left;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--blocks-and-disabled-color);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  height: 38px;
  padding: 9px 20px;
  font-size: 13px;
  line-height: 18px;
  color: #1C1C1C;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all ease 0.3s 0s;
  -moz-transition: all ease 0.3s 0s;
  -o-transition: all ease 0.3s 0s;
  transition: all ease 0.3s 0s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all ease 0.3s 0s;
  -moz-transition: all ease 0.3s 0s;
  -o-transition: all ease 0.3s 0s;
  transition: all ease 0.3s 0s; }
  input[type="text"]::-ms-clear, input[type="email"]::-ms-clear,
  input[type="datetime"]::-ms-clear, input[type="datetime-local"]::-ms-clear,
  input[type="password"]::-ms-clear, input[type="tel"]::-ms-clear,
  input[type="phone"]::-ms-clear, input[type="number"]::-ms-clear,
  input[type="search"]::-ms-clear {
    display: none; }
  input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder,
  input[type="datetime"]::-webkit-input-placeholder, input[type="datetime-local"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder,
  input[type="phone"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder,
  input[type="search"]::-webkit-input-placeholder {
    color: #71757B; }
  input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder,
  input[type="datetime"]::-moz-placeholder, input[type="datetime-local"]::-moz-placeholder,
  input[type="password"]::-moz-placeholder, input[type="tel"]::-moz-placeholder,
  input[type="phone"]::-moz-placeholder, input[type="number"]::-moz-placeholder,
  input[type="search"]::-moz-placeholder {
    color: #71757B; }
  input[type="text"]:-moz-placeholder, input[type="email"]:-moz-placeholder,
  input[type="datetime"]:-moz-placeholder, input[type="datetime-local"]:-moz-placeholder,
  input[type="password"]:-moz-placeholder, input[type="tel"]:-moz-placeholder,
  input[type="phone"]:-moz-placeholder, input[type="number"]:-moz-placeholder,
  input[type="search"]:-moz-placeholder {
    color: #71757B; }
  input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder,
  input[type="datetime"]:-ms-input-placeholder, input[type="datetime-local"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder,
  input[type="phone"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder,
  input[type="search"]:-ms-input-placeholder {
    color: #71757B; }
  input[type="text"]::-ms-clear, input[type="email"]::-ms-clear,
  input[type="datetime"]::-ms-clear, input[type="datetime-local"]::-ms-clear,
  input[type="password"]::-ms-clear, input[type="tel"]::-ms-clear,
  input[type="phone"]::-ms-clear, input[type="number"]::-ms-clear,
  input[type="search"]::-ms-clear {
    display: none; }
  input[type="text"].is-changed, input[type="email"].is-changed,
  input[type="datetime"].is-changed, input[type="datetime-local"].is-changed,
  input[type="password"].is-changed, input[type="tel"].is-changed,
  input[type="phone"].is-changed, input[type="number"].is-changed,
  input[type="search"].is-changed {
    border-color: #3A99D8; }
  input[type="text"].is-error, input[type="email"].is-error,
  input[type="datetime"].is-error, input[type="datetime-local"].is-error,
  input[type="password"].is-error, input[type="tel"].is-error,
  input[type="phone"].is-error, input[type="number"].is-error,
  input[type="search"].is-error {
    border-color: #C83329; }
  input[type="text"][disabled], input[type="text"].is-disabled, input[type="email"][disabled], input[type="email"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled, input[type="datetime-local"][disabled], input[type="datetime-local"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled, input[type="tel"][disabled], input[type="tel"].is-disabled,
  input[type="phone"][disabled],
  input[type="phone"].is-disabled, input[type="number"][disabled], input[type="number"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled {
    border-color: var(--blocks-and-disabled-color);
    background: var(--blocks-and-disabled-color);
    color: #71757B; }
  input[type="text"].input-large, input[type="email"].input-large,
  input[type="datetime"].input-large, input[type="datetime-local"].input-large,
  input[type="password"].input-large, input[type="tel"].input-large,
  input[type="phone"].input-large, input[type="number"].input-large,
  input[type="search"].input-large {
    line-height: 18px;
    padding: 14px 20px;
    height: 48px; }
  input[type="text"].t-grey, input[type="email"].t-grey,
  input[type="datetime"].t-grey, input[type="datetime-local"].t-grey,
  input[type="password"].t-grey, input[type="tel"].t-grey,
  input[type="phone"].t-grey, input[type="number"].t-grey,
  input[type="search"].t-grey {
    background: var(--input-background-color);
    border-color: var(--input-background-color);
    color: var(--input-text-color); }
  input.t-grey::placeholder
  {
    color: var(--input-placeholder-color); 
  }

select {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--blocks-and-disabled-color);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  height: 38px;
  padding: 9px 20px;
  font-size: 13px;
  line-height: 18px;
  color: #1C1C1C;
  cursor: pointer;
  -webkit-transition: all ease 0.3s 0s;
  -moz-transition: all ease 0.3s 0s;
  -o-transition: all ease 0.3s 0s;
  transition: all ease 0.3s 0s; }
  select.is-error {
    border-color: #C83329; }
  select.is-changed {
    border-color: #3A99D8; }
  select[disabled], select.is-disabled {
    border-color: var(--blocks-and-disabled-color);
    color: var(--blocks-and-disabled-color); }

.c-checkbox {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .c-checkbox input {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: none;
    opacity: 0;
    z-index: -1; }
    .c-checkbox input:checked ~ .c-checkbox__label:after {
      opacity: 1;
      -webkit-transform: rotate(-45deg) scale(1);
         -moz-transform: rotate(-45deg) scale(1);
          -ms-transform: rotate(-45deg) scale(1);
           -o-transform: rotate(-45deg) scale(1);
              transform: rotate(-45deg) scale(1); }
    .c-checkbox input:disabled {
      cursor: not-allowed; }
    .c-checkbox input:disabled ~ .c-checkbox__label {
      cursor: not-allowed; }
    .c-checkbox input:disabled:not(.c-form-test__row input) ~ .c-checkbox__label {
      color: var(--blocks-and-disabled-color); }
      .c-checkbox input:disabled:not(.c-form-test__row input) ~ .c-checkbox__label:before, .c-checkbox input:disabled:not(.c-form-test__row input) ~ .c-checkbox__label:after {
        border-color: var(--blocks-and-disabled-color); }
    .c-checkbox input:focus ~ .c-checkbox__label:before {
      border-color: var(--primary-color); }
    .c-checkbox input.is-error ~ .c-checkbox__label {
      color: #C83329; }
      .c-checkbox input.is-error ~ .c-checkbox__label:before {
        border-color: #C83329; }
  .c-checkbox .c-checkbox__label {
    display: block;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    font-size: 13px;
    line-height: 20px;
    color: #1C1C1C;
    font-weight: 400;
    min-height: 20px;
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
    -o-transition: all ease 0.3s 0s;
    transition: all ease 0.3s 0s; }
    @media only screen and (min-width: 769px) {
      .c-checkbox .c-checkbox__label {
        font-size: 14px; } }
    .c-checkbox .c-checkbox__label:before, .c-checkbox .c-checkbox__label:after {
      content: '';
      display: block;
      position: absolute;
      -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
              box-sizing: border-box;
      -webkit-transition: all ease 0.3s 0s;
      -moz-transition: all ease 0.3s 0s;
      -o-transition: all ease 0.3s 0s;
      transition: all ease 0.3s 0s; }
    .c-checkbox .c-checkbox__label:before {
      width: 20px;
      height: 20px;
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px;
      border: 1px solid var(--blocks-and-disabled-color);
      left: 0;
      top: 0; }
    .c-checkbox .c-checkbox__label:after {
      width: 10px;
      height: 5px;
      border-bottom: 2px solid var(--primary-color);
      border-left: 2px solid var(--primary-color);
      -webkit-transform: rotate(-50deg) scale(0.9);
         -moz-transform: rotate(-50deg) scale(0.9);
          -ms-transform: rotate(-50deg) scale(0.9);
           -o-transform: rotate(-50deg) scale(0.9);
              transform: rotate(-50deg) scale(0.9);
      -webkit-transform-origin: left bottom;
         -moz-transform-origin: left bottom;
          -ms-transform-origin: left bottom;
           -o-transform-origin: left bottom;
              transform-origin: left bottom;
      top: 9px;
      left: 9px;
      opacity: 0; }
  .c-checkbox.c-checkbox--block {
    display: block;
    width: 100%; }

.c-radio {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .c-radio input {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: none;
    opacity: 0;
    z-index: -1; }
    .c-radio input:focus ~ .c-radio__label:before {
      border-color: var(--primary-color); }
    .c-radio input:checked ~ .c-radio__label:after {
      opacity: 1;
      -webkit-transform: scale(1);
         -moz-transform: scale(1);
          -ms-transform: scale(1);
           -o-transform: scale(1);
              transform: scale(1); }
    .c-radio input:disabled {
      cursor: not-allowed; }
    .c-radio input:disabled ~ .c-radio__label {
      cursor: not-allowed; }
    .c-radio input:disabled:not(.c-form-test__row input) ~ .c-radio__label {
      color: var(--blocks-and-disabled-color); }
      .c-radio input:disabled:not(.c-form-test__row input) ~ .c-radio__label:before {
        border-color: var(--blocks-and-disabled-color); }
      .c-radio input:disabled:not(.c-form-test__row input) ~ .c-radio__label:after {
        background: var(--blocks-and-disabled-color); }
    .c-radio input.is-error ~ .c-radio__label {
      color: #C83329; }
      .c-radio input.is-error ~ .c-radio__label:before {
        border-color: #C83329; }
  .c-radio .c-radio__label {
    display: block;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    font-size: 13px;
    line-height: 20px;
    color: #1C1C1C;
    font-weight: 400;
    min-height: 20px;
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
    -o-transition: all ease 0.3s 0s;
    transition: all ease 0.3s 0s; }
    @media only screen and (min-width: 769px) {
      .c-radio .c-radio__label {
        font-size: 14px; } }
    .c-radio .c-radio__label:before, .c-radio .c-radio__label:after {
      content: '';
      display: block;
      position: absolute;
      -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
              box-sizing: border-box;
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
              border-radius: 50%;
      -webkit-transition: all ease 0.3s 0s;
      -moz-transition: all ease 0.3s 0s;
      -o-transition: all ease 0.3s 0s;
      transition: all ease 0.3s 0s; }
    .c-radio .c-radio__label:before {
      width: 20px;
      height: 20px;
      border: 1px solid var(--blocks-and-disabled-color);
      left: 0;
      top: 0; }
    .c-radio .c-radio__label:after {
      width: 8px;
      height: 8px;
      top: 6px;
      left: 6px;
      opacity: 0;
      background: var(--primary-color);
      -webkit-transform: scale(0.9);
         -moz-transform: scale(0.9);
          -ms-transform: scale(0.9);
           -o-transform: scale(0.9);
              transform: scale(0.9); }
  .c-radio.c-radio--block {
    display: block;
    width: 100%; }

.c-form {
  position: relative;
  text-align: left;
  display: block; }
  .c-form .l-row {
    margin-left: -10px;
    margin-right: -10px; }
    .c-form .l-row [class*="l-col"] {
      padding-left: 10px;
      padding-right: 10px; }
  .c-form .c-form__title {
    font-weight: 400;
    font-size: 21px;
    line-height: 1;
    color: #1C1C1C;
    margin-bottom: 15px; }
    @media only screen and (min-width: 769px) {
      .c-form .c-form__title {
        font-size: 22px; } }
  .c-form .c-form__field {
    position: relative;
    margin-bottom: 15px; }
    .c-form .c-form__field-clear {
      display: none;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      color: var(--primary-text-color);
      width: 40px;
      background: none;
      border: none;
      -webkit-box-shadow: none;
         -moz-box-shadow: none;
              box-shadow: none;
      font-size: 10px; }
      .c-form .c-form__field-clear .c-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -.5em;
        margin-top: -.5em; }
    .c-form .c-form__field-password {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      color: var(--neutral-elements-color);
      width: 40px;
      background: none;
      border: none;
      -webkit-box-shadow: none;
         -moz-box-shadow: none;
              box-shadow: none;
      font-size: 15px; }
      .c-form .c-form__field-password:hover, .c-form .c-form__field-password.is-active {
        color: var(--primary-color); }
      .c-form .c-form__field-password .c-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -.5em;
        margin-top: -.5em; }
  .c-form .c-form__label {
    display: block;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #71757B;
    margin-bottom: 5px; }
    @media only screen and (min-width: 769px) {
      .c-form .c-form__label {
        font-size: 14px; } }
  .c-form .c-form__error {
    font-size: 0.8em;
    line-height: 1;
    margin: 0.5em 0;
    color: #C83329; }
    .c-form .c-form__error p {
      margin: 0; }
    .c-form .c-form__error ul,
    .c-form .c-form__error li {
      display: block;
      padding: 0;
      margin: 0; }
  .c-form .c-form__head {
    margin-bottom: 25px;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #1C1C1C; }
    @media only screen and (min-width: 769px) {
      .c-form .c-form__head {
        font-size: 14px; } }
    .c-form .c-form__head p {
      margin: 0; }
  .c-form .c-form__footer {
    font-size: 0.8em; }
  .c-form .c-form__license {
    margin: 20px 0;
    font-size: 12px; }
    .c-form .c-form__license a {
      text-decoration: none; }

.c-form-success {
  display: block;
  position: relative;
  text-align: center;
  font-size: 1em;
  background: #FFFFFF;
  padding: 30px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px; }
  .c-form-success p {
    margin: 0; }
  .c-form-success .c-form-success__icon {
    display: block;
    font-size: 45px;
    line-height: 0;
    text-align: center;
    color: #00C67F;
    -webkit-animation: success-icon 0.3s ease-in-out;
       -moz-animation: success-icon 0.3s ease-in-out;
         -o-animation: success-icon 0.3s ease-in-out;
            animation: success-icon 0.3s ease-in-out;
    margin-bottom: 10px; }

.c-form-reply .c-form__head {
  text-align: left;
  margin: 0 0 15px 0; }

.c-form-reply .c-form__title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px 0; }

.c-form-reply .c-form__footer {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.c-form-reply .c-form__reset {
  margin-left: 20px; }

.c-form-reply textarea {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
     -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
          box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power)); }

.c-form-test .c-form__field {
  margin-bottom: 10px; }

.c-form-test .c-form__footer {
  padding: 0 30px; }

@media only screen and (max-width: 425px) {
  .c-form-test .c-form__submit .c-btn, .c-form-test .c-form__submit .c-read-more .c-read-more__btn, .c-read-more .c-form-test .c-form__submit .c-read-more__btn {
    display: block;
    width: 100%; } }

.c-form-test .c-form-test__row {
  border-bottom: 1px solid var(--blocks-and-disabled-color);
  padding: 0 30px 20px 30px;
  margin-bottom: 20px; }
  .c-form-test .c-form-test__row-title {
    font-weight: 400;
    font-size: 20px;
    color: #1C1C1C;
    margin-bottom: 30px; }

.c-form-question {
  margin: 30px 0 10px 0; }
  .c-form-question .c-form__footer {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .c-form-question .c-form__reset {
    margin-left: 20px; }
  .c-form-question textarea {
    min-height: 170px; }
  .c-form-question .c-form-question__theme {
    max-width: 350px; }

.c-form-user {
  padding: 0 20px; }
  @media only screen and (min-width: 769px) {
    .c-form-user {
      padding: 10px 30px; } }
  @media only screen and (max-width: 425px) {
    .c-form-user .c-form__submit .c-btn, .c-form-user .c-form__submit .c-read-more .c-read-more__btn, .c-read-more .c-form-user .c-form__submit .c-read-more__btn {
      display: block;
      width: 100%; } }
  .c-form-user .c-form__footer {
    margin-top: 20px; }
  .c-form-user input[type="text"], .c-form-user input[type="email"],
  .c-form-user input[type="datetime"], .c-form-user input[type="datetime-local"],
  .c-form-user input[type="password"], .c-form-user input[type="tel"],
  .c-form-user input[type="phone"], .c-form-user input[type="number"],
  .c-form-user input[type="search"], .c-form-user textarea {
    padding-left: 20px;
    padding-right: 20px; }
  .c-form-user .c-form-user__row {
    margin-bottom: 20px; }
    @media only screen and (min-width: 769px) {
      .c-form-user .c-form-user__row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
           -moz-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        max-width: 550px; } }
    .c-form-user .c-form-user__row:last-child {
      margin-bottom: 0; }
    @media only screen and (min-width: 769px) {
      .c-form-user .c-form-user__row .c-form__label {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 180px;
           -moz-box-flex: 0;
            -ms-flex: 0 0 180px;
                flex: 0 0 180px;
        max-width: 180px;
        margin: 0 20px 0 0; } }
    @media only screen and (min-width: 769px) {
      .c-form-user .c-form-user__row .c-form__field,
      .c-form-user .c-form-user__row .c-form__submit {
        margin: 0;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 350px;
           -moz-box-flex: 0;
            -ms-flex: 0 1 350px;
                flex: 0 1 350px;
        max-width: 350px; } }

.c-form-login .c-form-login__logo {
  text-align: center;
  margin-bottom: 30px; }
  .c-form-login .c-form-login__logo img {
    max-height: 200px;
    max-width: 200px; }

.c-form-login .c-form-login__links {
  text-align: center;
  margin-top: 30px; }
  .c-form-login .c-form-login__links a {
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--primary-text-color); }
    .c-form-login .c-form-login__links a:hover {
      text-decoration: underline; }
  .c-form-login .c-form-login__links ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    margin: 0 -15px;
    text-align: center; }
    @media only screen and (min-width: 426px) {
      .c-form-login .c-form-login__links ul {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: 0 -20px 0 0; } }
    .c-form-login .c-form-login__links ul li {
      display: inline-block;
      vertical-align: top;
      padding: 0 15px;
      margin: 0; }

@media only screen and (min-width: 426px) {
  .c-form-pay .c-form__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
       -moz-box-orient: horizontal;
       -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }

@media only screen and (max-width: 425px) {
  .c-form-pay .c-form__submit .c-btn, .c-form-pay .c-form__submit .c-read-more .c-read-more__btn, .c-read-more .c-form-pay .c-form__submit .c-read-more__btn {
    display: block;
    width: 100%; } }

.c-form-pay .c-form-pay__total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--blocks-and-disabled-color);
  border-bottom: 1px solid var(--blocks-and-disabled-color); }
  @media only screen and (min-width: 426px) {
    .c-form-pay .c-form-pay__total {
      margin: 30px 0; } }
  .c-form-pay .c-form-pay__total-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-right: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1C1C1C; }
  .c-form-pay .c-form-pay__total-prices {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    text-align: right; }

.c-form-pay .c-form-pay__price {
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: var(--primary-text-color); }
  .c-form-pay .c-form-pay__price-old {
    font-weight: 500;
    text-decoration: line-through;
    font-size: 14px;
    line-height: 20px;
    color: var(--neutral-elements-color); }

.c-form-pay .c-form-pay__links {
  margin-top: 15px; }
  @media only screen and (min-width: 426px) {
    .c-form-pay .c-form-pay__links {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 auto;
         -moz-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto;
      margin-right: 20px;
      margin-top: 0; } }
  .c-form-pay .c-form-pay__links a {
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--primary-text-color); }
    .c-form-pay .c-form-pay__links a:hover {
      text-decoration: underline; }
  .c-form-pay .c-form-pay__links ul {
    display: block;
    padding: 0;
    margin: 0; }
    .c-form-pay .c-form-pay__links ul li {
      display: block;
      padding: 0;
      margin: 0 0 5px 0; }
      .c-form-pay .c-form-pay__links ul li:last-child {
        margin-bottom: 0; }

.c-field-addon {
  display: block;
  position: relative; }
  .c-field-addon .c-field-addon__icon {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    line-height: 0;
    font-size: 20px;
    color: var(--neutral-elements-color);
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
    -o-transition: all ease 0.3s 0s;
    transition: all ease 0.3s 0s; }
    .c-field-addon .c-field-addon__icon .c-icon {
      position: absolute;
      left: 50%;
      top: 50%;
      margin-left: -.5em;
      margin-top: -.5em; }
  .c-field-addon input[type="text"], .c-field-addon input[type="email"],
  .c-field-addon input[type="datetime"], .c-field-addon input[type="datetime-local"],
  .c-field-addon input[type="password"], .c-field-addon input[type="tel"],
  .c-field-addon input[type="phone"], .c-field-addon input[type="number"],
  .c-field-addon input[type="search"], .c-field-addon textarea {
    padding-left: 50px; }
  .c-field-addon textarea ~ .c-field-addon__icon {
    height: 45px; }

.c-menu-hamburger {
  display: block;
  position: relative;
  cursor: pointer;
  background: none;
  overflow: hidden;
  border: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  padding: 0;
  margin: 0;
  font-size: 1em;
  width: 1em;
  color: var(--primary-color); }
  .c-menu-hamburger span {
    display: block;
    width: 0.66667em;
    height: 0.1em;
    margin-bottom: 0.16667em;
    background: currentColor;
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
    -o-transition: all ease 0.3s 0s;
    transition: all ease 0.3s 0s; }
    .c-menu-hamburger span:first-child {
      width: 1em; }
    .c-menu-hamburger span:last-child {
      margin-bottom: 0; }
  .c-menu-hamburger.is-active span {
    width: 1em; }
    .c-menu-hamburger.is-active span:first-child {
      width: 0.66667em; }

.c-menu {
  line-height: 1;
  text-align: left; }
  .c-menu ul {
    padding: 0;
    margin: 0;
    display: block; }
    .c-menu ul li {
      list-style: none;
      padding: 0;
      margin: 0; }
  .c-menu .c-menu__item-link {
    color: currentColor;
    text-decoration: none; }

.c-menu-main ul {
  display: block; }
  .c-menu-main ul li {
    display: block;
    margin-bottom: 10px; }

.c-menu-main .c-menu__category {
  margin: 20px 0; }
  .c-menu-main .c-menu__category ul li {
    margin-bottom: 2px; }

.c-menu-main .c-menu__label {
  display: block;
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  color: var(--neutral-elements-color); }

.c-menu-main .c-menu__item {
  background: #FFFFFF;
  font-size: 16px;
  line-height: 20px;
  color: #1B1D1E;
  font-weight: 500;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
  box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
  cursor: pointer;
  }
  .c-menu-main .c-menu__item-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 15px 20px;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    -webkit-transition: all linear 0.3s 0s;
    -moz-transition: all linear 0.3s 0s;
    -o-transition: all linear 0.3s 0s;
    transition: all linear 0.3s 0s;}
    .c-menu-main .c-menu__item-link[data-count] {
      padding-right: 50px; }
      .c-menu-main .c-menu__item-link[data-count]:before {
        content: attr(data-count);
        display: block;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        position: absolute;
        right: 25px;
        top: 50%;
        margin-top: -13px;
        -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
                border-radius: 50%;
        font-size: 12px;
        line-height: 14px;
        padding: 4px;
        font-weight: 700;
        background: var(--primary-color);
        color: #FFFFFF;
        text-align: center;
        min-width: 26px;
        min-height: 26px;
        border: 2px solid #FFFFFF;
        -webkit-transition: all ease 0.3s 0s;
        -moz-transition: all ease 0.3s 0s;
        -o-transition: all ease 0.3s 0s;
        transition: all ease 0.3s 0s; }
    .c-menu-main .c-menu__item-link:hover {
      color: #FFFFFF;
      background: var(--primary-color); }
      .c-menu-main .c-menu__item-link:hover:before {
        background: #FFFFFF;
        color: var(--primary-color); }
  .c-menu-main .c-menu__item.is-active, .c-menu-main .c-menu__item.is-expanded {
    color: #FFFFFF;
    background: var(--primary-color); }
  .c-menu-main .c-menu__item.has-dropdown > .c-menu__item-link:after {
    content: '';
    display: none;
    /*position: absolute;*/
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    color: currentColor;
    right: 20px;
    top: 50%;
    /*margin-top: -2.5px;*/
    width: 10px;
    height: 5px;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: currentColor transparent transparent transparent; }
  .c-menu-main .c-menu__item.has-dropdown.is-expanded > .c-menu__item-link:after, .c-menu-main .c-menu__item.has-dropdown.is-collapsed > .c-menu__item-link:after {
    display: block; }
  .c-menu-main .c-menu__item.has-dropdown.is-expanded > .c-menu__item-link:after {
    -webkit-transform: scale(-1);
       -moz-transform: scale(-1);
        -ms-transform: scale(-1);
         -o-transform: scale(-1);
            transform: scale(-1); }

.c-menu-main .c-menu__dropdown {
  background: #FFFFFF;
  -webkit-border-radius: 0 0 3px 3px;
     -moz-border-radius: 0 0 3px 3px;
          border-radius: 0 0 3px 3px;
  max-height: 400px;
  overflow: auto;
  -webkit-animation: opacity 0.5s ease;
     -moz-animation: opacity 0.5s ease;
       -o-animation: opacity 0.5s ease;
          animation: opacity 0.5s ease; }
  .c-menu-main .c-menu__dropdown ul li {
    margin: 0; }
  .c-menu-main .c-menu__dropdown .c-menu__item {
    font-size: 13px;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    color: #1B1D1E;
    margin-bottom: 0; }
    .c-menu-main .c-menu__dropdown .c-menu__item-link {
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0;
      color: #1B1D1E;
      padding-left: 40px; }
      .c-menu-main .c-menu__dropdown .c-menu__item-link:before {
        content: '';
        display: block;
        position: absolute;
        left: 15px;
        top: 50%;
        margin-top: -4px;
        width: 8px;
        height: 8px;
        -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
                border-radius: 50%;
        color: var(--blocks-and-disabled-color);
        background: currentColor;
        -webkit-transition: all ease 0.3s 0s;
        -moz-transition: all ease 0.3s 0s;
        -o-transition: all ease 0.3s 0s;
        transition: all ease 0.3s 0s; }
      .c-menu-main .c-menu__dropdown .c-menu__item-link:hover {
        background: var(--blocks-and-disabled-color); }
        .c-menu-main .c-menu__dropdown .c-menu__item-link:hover:before {
          color: var(--primary-color); }
    .c-menu-main .c-menu__dropdown .c-menu__item.is-active {
      background: var(--blocks-and-disabled-color); }
      .c-menu-main .c-menu__dropdown .c-menu__item.is-active > .c-menu__item-link:before {
        color: var(--primary-color); }

.c-menu-user ul {
  display: block; }
  .c-menu-user ul li {
    margin-bottom: 20px; }
    .c-menu-user ul li:last-child {
      margin-bottom: 0; }

.c-menu-user .c-menu__item {
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
  color: #1C1C1C; }
  .c-menu-user .c-menu__item.is-active {
    color: var(--primary-color); }
    .c-menu-user .c-menu__item.is-active > .c-menu__item-link {
      color: var(--primary-color);
      padding-left: 20px;
      margin-right: 0; }
      .c-menu-user .c-menu__item.is-active > .c-menu__item-link:before {
        max-width: 15px; }
  .c-menu-user .c-menu__item-link {
    display: inline-block;
    position: relative;
    margin-right: 20px; }
    .c-menu-user .c-menu__item-link:before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -1px;
      height: 2px;
      width: 15px;
      max-width: 0;
      background: var(--primary-color);
      -webkit-transition: all ease 0.3s 0s;
      -moz-transition: all ease 0.3s 0s;
      -o-transition: all ease 0.3s 0s;
      transition: all ease 0.3s 0s; }
    .c-menu-user .c-menu__item-link:hover {
      color: var(--primary-color);
      padding-left: 20px;
      margin-right: 0; }
      .c-menu-user .c-menu__item-link:hover:before {
        max-width: 15px; }

.c-menu-app {
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 425px;
  background: #FFFFFF;
  -webkit-animation: menu-app-open 0.5s ease;
     -moz-animation: menu-app-open 0.5s ease;
       -o-animation: menu-app-open 0.5s ease;
          animation: menu-app-open 0.5s ease; }
  .c-menu-app-overlay {
    position: fixed;
    z-index: 490;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-animation: opacity 0.3s;
       -moz-animation: opacity 0.3s;
         -o-animation: opacity 0.3s;
            animation: opacity 0.3s; }
  .c-menu-app .c-menu-app__title {
    display: block;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px; }
  .c-menu-app .c-menu-app__inner {
    position: absolute;
    left: 0;
    top: 0;
    padding-right: 50px;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    z-index: 490; }
  .c-menu-app .c-menu-app__head {
    position: relative;
    z-index: 500;
    background: var(--primary-color);
    padding: 15px 40px 14px 40px;
    height: 50px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
       -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
            box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50px;
       -moz-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px; }
  .c-menu-app .c-menu-app__aside {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: #454648;
    z-index: 500; }
  .c-menu-app .c-menu-app__body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow: auto;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    background: inherit; }
  .c-menu-app .c-menu-app__footer {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-top: auto;
    padding: 20px;
    text-align: center;
    bottom: 0;
    position: relative; }
    .c-menu-app .c-menu-app__footer:before {
      content: '';
      display: block;
      position: absolute;
      bottom: 100%;
      left: 0;
      width: 100%;
      height: 20px;
      pointer-events: none;
      background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 1e-05)));
      background: -webkit-linear-gradient(bottom, #fff, rgba(255, 255, 255, 1e-05));
      background: -moz- oldlinear-gradient(bottom, #fff, rgba(255, 255, 255, 1e-05));
      background: -o-linear-gradient(bottom, #fff, rgba(255, 255, 255, 1e-05));
      background: linear-gradient(to top, #fff, rgba(255, 255, 255, 1e-05)); }
  .c-menu-app .c-menu-app__back {
    position: absolute;
    z-index: 500;
    top: 0;
    left: 0;
    height: 100%;
    width: 40px;
    cursor: pointer;
    line-height: 0;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    color: #FFFFFF;
    font-size: 10px; }
    .c-menu-app .c-menu-app__back .c-icon {
      position: absolute;
      left: 50%;
      top: 50%;
      margin-left: -.5em;
      margin-top: -.5em; }
  .c-menu-app .c-menu-app__close {
    right: 0;
    top: 0;
    background: none;
    font-size: 20px;
    color: #FFFFFF;
    border: none;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    cursor: pointer;
    z-index: 500;
    padding: 15px; }
  .c-menu-app .c-menu-app__nav ul,
  .c-menu-app .c-menu-app__nav li {
    display: block;
    padding: 0;
    margin: 0; }
  .c-menu-app .c-menu-app__nav li {
    border-bottom: 1px solid var(--blocks-and-disabled-color); }
  .c-menu-app .c-menu-app__category li:last-child, .c-menu-app .c-menu-app__dropdown li:last-child {
    border-bottom: none; }
  .c-menu-app .c-menu-app__category-title {
    display: block;
    padding: 25px 20px 10px 20px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 15px;
    font-weight: 700;
    color: var(--neutral-elements-color); }
  .c-menu-app .c-menu-app__item {
    display: block;
    position: relative;
    background: #FFFFFF;
    font-size: 13px;
    line-height: 25px;
    color: #1C1C1C;
    font-weight: 500; }
    .c-menu-app .c-menu-app__item.is-expanded > .c-menu-app__toggle, .c-menu-app .c-menu-app__item.is-active > .c-menu-app__toggle {
      color: #FFFFFF; }
    .c-menu-app .c-menu-app__item.is-expanded > .c-menu-app__item-link, .c-menu-app .c-menu-app__item.is-active > .c-menu-app__item-link {
      background: var(--primary-color);
      color: #FFFFFF; }
      .c-menu-app .c-menu-app__item.is-expanded > .c-menu-app__item-link[data-count]:after, .c-menu-app .c-menu-app__item.is-active > .c-menu-app__item-link[data-count]:after {
        background: #FFFFFF;
        color: var(--primary-color); }
    .c-menu-app .c-menu-app__item.is-expanded > .c-menu-app__item-link {
      -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
         -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
              box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power)); }
    .c-menu-app .c-menu-app__item-link {
      display: block;
      white-space: nowrap;
      overflow: hidden;
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      position: relative;
      color: inherit;
      text-decoration: none;
      padding: 12px 20px; }
      .c-menu-app .c-menu-app__item-link[data-count]:after {
        content: attr(data-count);
        display: inline-block;
        vertical-align: middle;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        margin-left: 10px;
        -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
                border-radius: 50%;
        font-size: 12px;
        line-height: 13px;
        padding: 4px;
        font-weight: 700;
        background: var(--primary-color);
        color: #FFFFFF;
        text-align: center;
        min-width: 25px;
        min-height: 25px;
        border: 2px solid #FFFFFF;
        -webkit-transition: all ease 0.3s 0s;
        -moz-transition: all ease 0.3s 0s;
        -o-transition: all ease 0.3s 0s;
        transition: all ease 0.3s 0s; }
  .c-menu-app .c-menu-app__toggle {
    position: absolute;
    outline: none;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: none;
    border: none;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    padding: 0;
    margin: 0;
    font-size: 1em;
    color: var(--primary-color); }
    .c-menu-app .c-menu-app__toggle .c-icon {
      position: absolute;
      left: 50%;
      top: 50%;
      margin-left: -.5em;
      margin-top: -.5em; }
    .c-menu-app .c-menu-app__toggle[data-action="collapse"] {
      height: 50px; }
      .c-menu-app .c-menu-app__toggle[data-action="collapse"]:after {
        content: '';
        display: block;
        position: absolute;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        color: currentColor;
        right: 20px;
        top: 50%;
        margin-top: -2.5px;
        width: 10px;
        height: 5px;
        border-style: solid;
        border-width: 5px 5px 0 5px;
        border-color: currentColor transparent transparent transparent; }

ol.c-list,
ul.c-list {
  display: block;
  padding-left: 0; }
  ol.c-list li,
  ul.c-list li {
    display: block;
    position: relative;
    padding-left: 1.66667em; }
    ol.c-list li:before,
    ul.c-list li:before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -.25em;
      width: 0.5em;
      height: 0.5em;
      background: var(--primary-color);
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
              border-radius: 50%; }

@media only screen and (min-width: 769px) {
  .c-list-comments .c-list-comments__answer {
    padding-left: 70px; } }

.c-list-materials .c-item-material:last-child {
  border-bottom: 0; }

.c-list-materials .c-item-material + .c-item-material {
  border-top: none; }

.c-section {
  display: block;
  position: relative;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
     -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
          box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px; 
  }
  @media only screen and (min-width: 769px) {
    .c-section {
      padding: 20px 30px 30px 30px;
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px; } }
  .c-section .c-section__title {
    font-size: 21px;
    font-weight: 400;
    color: #1C1C1C;
    margin: 0 0 0.5em 0; }
    @media only screen and (min-width: 551px) {
      .c-section .c-section__title {
        font-size: 22px; } }
    .c-section .c-section__title .c-icon {
      font-size: 0.90909em;
      margin-left: 10px; }
    .c-section .c-section__title-date {
      display: block;
      color: var(--primary-text-color);
      font-size: 0.61905em;
      font-weight: 500;
      margin-top: 0.8em; }
      @media only screen and (min-width: 769px) {
        .c-section .c-section__title-date {
          display: none; } }
    .c-section .c-section__title a {
      color: inherit; }
  .c-section__inner {
    margin-left: -20px;
    margin-right: -20px; }
    @media only screen and (min-width: 769px) {
      .c-section__inner {
        margin-right: -30px;
        margin-left: -30px; } }

.c-section-content .c-section__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid var(--blocks-and-disabled-color);
  margin: 0 -20px 20px -20px;
  padding: 0 20px 20px 20px; }
  @media only screen and (min-width: 769px) {
    .c-section-content .c-section__head {
      margin: 0 -30px 20px -30px;
      padding: 20px 30px; } }

.c-section-content .c-section__title {
  margin: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
  @media only screen and (min-width: 769px) {
    .c-section-content .c-section__title {
      font-weight: 500; } }

.c-section-content .c-section__edit {
  margin-left: 15px;
  margin-bottom: auto;
  padding: 5px 0;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start; }
  @media only screen and (min-width: 769px) {
    .c-section-content .c-section__edit {
      position: absolute;
      right: 0;
      top: 0;
      padding: 20px; } }

.c-section-content .c-section__more {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 15px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center; }

.c-section-home {
  padding: 0; }
  .c-section-home .c-section__title {
    font-size: 20px;
    color: #1C1C1C;
    font-weight: 400; }
  .c-section-home .c-section__head {
    margin: 0 0 10px 0; }
  .c-section-home .c-section-home__slider {
    position: relative; }
  .c-section-home .c-section-home__content {
    padding: 20px;}
    @media only screen and (min-width: 769px) {
      .c-section-home .c-section-home__content {
        padding: 30px; } }

.c-section-welcome {
  padding: 30px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
  box-shadow: 0 2px 4px rgba(0, 0, 0, var(--shadow-power));
}
  @media only screen and (min-width: 1025px) {
    .c-section-welcome {
      padding: 20px 30px; } }
  .c-section-welcome .c-section__title {
    margin: 0 0 5px 0;
    font-weight: 400; }
    @media only screen and (min-width: 1025px) {
      .c-section-welcome .c-section__title {
        margin: 0;
        font-size: 30px; } }
  .c-section-welcome .c-section-welcome__logo {
    text-align: center;
    line-height: 0;
    font-size: 0;
    margin-bottom: 20px; }
    .c-section-welcome .c-section-welcome__logo img {
      max-width: 70px;
      max-height: 70px; }
    @media only screen and (min-width: 769px) {
      .c-section-welcome .c-section-welcome__logo {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 70px;
           -moz-box-flex: 0;
            -ms-flex: 0 0 70px;
                flex: 0 0 70px;
        max-width: 70px;
        margin-bottom: 0;
        margin-right: 20px; } }
    @media only screen and (min-width: 1025px) {
      .c-section-welcome .c-section-welcome__logo {
        display: none; } }
  @media only screen and (min-width: 769px) {
    .c-section-welcome .c-section-welcome__inner {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
         -moz-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  .c-section-welcome .c-section-welcome__text {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    font-size: 15px;
    font-weight: 400;
    color: var(--neutral-elements-color);
    text-align: center; }
    @media only screen and (min-width: 769px) {
      .c-section-welcome .c-section-welcome__text {
        text-align: left; } }
    .c-section-welcome .c-section-welcome__text p {
      margin: 0; }
  .c-section-welcome .c-section-welcome__social {
    font-size: 35px;
    margin-top: 20px;
    text-align: center; }
    .c-section-welcome .c-section-welcome__social ul {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    @media only screen and (min-width: 769px) {
      .c-section-welcome .c-section-welcome__social {
        margin-left: 20px;
        margin-top: 0;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
           -moz-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto; } }

.c-section-alerts {
  padding: 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  margin: 30px 0;
  background: none; }
  @media only screen and (min-width: 769px) {
    .c-section-alerts {
      margin: 50px 0 20px 0; } }

.c-section-dialog {
  padding: 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  background: none; }
  @media only screen and (min-width: 769px) {
    .c-section-dialog {
      margin: 50px 0 0 0; } }
  .c-section-dialog .c-section__head {
    margin-bottom: 10px;
    padding: 0 20px; }
    @media only screen and (min-width: 769px) {
      .c-section-dialog .c-section__head {
        padding: 0; } }
  .c-section-dialog .c-section-dialog__list {
    margin-bottom: 30px; }
  .c-section-dialog .c-section-dialog__form {
    padding: 0 20px; }
    @media only screen and (min-width: 769px) {
      .c-section-dialog .c-section-dialog__form {
        padding: 0; } }

.c-section-answer {
  padding: 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  background: none;
  margin: 20px 0;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;}
  .c-section-answer .c-section__head {
    margin-bottom: 10px;
    padding: 0 20px; }
    @media only screen and (min-width: 769px) {
      .c-section-answer .c-section__head {
        padding: 0; } }
  .c-section-answer .c-section-answer__list {
    margin-bottom: 30px; }
  .c-section-answer .c-section-answer__form {
    padding: 0 20px; }
    @media only screen and (min-width: 769px) {
      .c-section-answer .c-section-answer__form {
        padding: 0; } }

.c-section-comments {
  padding: 30px 0 0 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  background: none;
  margin: 30px 0;
  border-top: 2px solid var(--blocks-and-disabled-color);
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;}
  @media only screen and (min-width: 769px) {
    .c-section-comments {
      margin: 40px 0;
      padding: 40px 0 0 0; } }
  .c-section-comments .c-section__title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500; }
  .c-section-comments .c-section__head {
    margin-bottom: 10px;
    padding: 0 20px; }
    @media only screen and (min-width: 769px) {
      .c-section-comments .c-section__head {
        padding: 0; } }
  .c-section-comments .c-section-comments__list {
    margin-bottom: 30px; }
  .c-section-comments .c-section-comments__form {
    padding: 0 20px; }
    @media only screen and (min-width: 769px) {
      .c-section-comments .c-section-comments__form {
        padding: 0; } }

.c-section-lessons {
  padding-bottom: 0; }
  .c-section-lessons .c-section__head {
    padding-bottom: 0;
    border-bottom: none; }

.c-section-questions {
  padding-bottom: 0; }
  .c-section-questions .c-section__head {
    margin-bottom: 0; }

.c-section-materials {
  padding-bottom: 0; }
  .c-section-materials .c-section__head {
    padding-bottom: 0;
    border-bottom: none; }

.c-section-user .c-section-user__form {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--blocks-and-disabled-color); }
  .c-section-user .c-section-user__form:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }

.c-logo {
  font-size: 0;
  line-height: 0;
  text-decoration: none; }
  .c-logo a {
    text-decoration: none; }

.c-breadcrumbs {
  display: none;
  text-align: left;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: #828890; }
  @media only screen and (min-width: 769px) {
    .c-breadcrumbs {
      display: block; } }
  .c-breadcrumbs a {
    text-decoration: none;
    color: var(--primary-text-color); }
  .c-breadcrumbs span, .c-breadcrumbs a {
    display: inline;
    vertical-align: middle; }
  .c-breadcrumbs .c-breadcrumbs__sep {
    margin: 0 5px; }

.c-pager {
  display: block;
  font-size: 0;
  line-height: 0;
  text-align: center; }
  .c-pager .c-pager__item, .c-pager .c-pager__all {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-decoration: none; }

.c-slider-main {
  overflow: hidden; }
  .c-slider-main .owl-dots {
    margin: 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 175px; }
    .c-slider-main .owl-dots button.owl-dot {
      color: #FFFFFF; }
  .c-slider-main .c-slider-main__item {
    display: block;
    position: relative;
    z-index: 20;
    background: #1C1C1C; }
    @media only screen and (min-width: 769px) {
      .c-slider-main .c-slider-main__item {
        height: 390px; } }
    .c-slider-main .c-slider-main__item-img {
      display: block;
      font-size: 0;
      line-height: 0;
      /*height: 200px;*/
      padding-bottom: 45.88%;
      height: 0;
      position: relative;
      overflow: hidden; }
      @media only screen and (min-width: 769px) {
        .c-slider-main .c-slider-main__item-img {
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
          z-index: -1; } }
      .c-slider-main .c-slider-main__item-img img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .c-slider-main .c-slider-main__item-content {
      background: #1C1C1C;
      color: #ffffff;
      text-align: left;
      font-size: 13px;
      padding: 20px; }
      @media only screen and (min-width: 769px) {
        .c-slider-main .c-slider-main__item-content {
          font-size: 14px;
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          padding: 20px 30px; } }
      .c-slider-main .c-slider-main__item-content p {
        margin: 0; }
    .c-slider-main .c-slider-main__item-title {
      margin: 0 0 0.38462em 0;
      font-size: 1.38462em;
      font-weight: 400; }
      @media only screen and (min-width: 769px) {
        .c-slider-main .c-slider-main__item-title {
          font-size: 1.57143em; } }
    .c-slider-main .c-slider-main__item ~ .c-slider-main__item {
      display: none; }

.c-page-edit {
  color: var(--primary-color);
  text-decoration: none; }

.c-page-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 20px 20px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--blocks-and-disabled-color); }
  @media only screen and (min-width: 769px) {
    .c-page-nav {
      padding: 0 30px 20px 30px; } }
  .c-page-nav .c-page-nav__date {
    display: none;
    margin-right: auto;
    color: #FFFFFF;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: var(--primary-color);
    font-size: 14px;
    line-height: 18px;
    padding: 10px 15px;
    font-weight: 500; }
    @media only screen and (min-width: 769px) {
      .c-page-nav .c-page-nav__date {
        display: block; } }
  .c-page-nav .c-page-nav__btn {
    display: inline-block;
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    line-height: 14px;
    padding: 7px 10px;
    color: #1C1C1C;
    font-weight: 500;
    border: 1px solid var(--blocks-and-disabled-color);
    margin-right: 10px; }
    @media only screen and (min-width: 769px) {
      .c-page-nav .c-page-nav__btn {
        margin-left: 20px;
        margin-right: 0;
        font-size: 14px;
        line-height: 16px;
        padding: 10px 15px; } }
    .c-page-nav .c-page-nav__btn:hover .c-icon {
      color: var(--primary-color); }
    .c-page-nav .c-page-nav__btn .c-icon {
      color: var(--neutral-elements-color); }
  @media only screen and (max-width: 768px) {
    .c-page-nav .c-page-nav__next, .c-page-nav .c-page-nav__prev {
      font-size: 0;
      line-height: 0;
      padding-left: 7px;
      padding-right: 7px; } }
  .c-page-nav .c-page-nav__next .c-icon, .c-page-nav .c-page-nav__prev .c-icon {
    display: block;
    font-size: 14px; }
    @media only screen and (min-width: 769px) {
      .c-page-nav .c-page-nav__next .c-icon, .c-page-nav .c-page-nav__prev .c-icon {
        position: absolute;
        top: 50%;
        margin-top: -.5em; } }
  @media only screen and (min-width: 769px) {
    .c-page-nav .c-page-nav__next {
      padding-right: 40px; }
      .c-page-nav .c-page-nav__next .c-icon {
        right: 20px;
        margin-right: -.5em; } }
  @media only screen and (min-width: 769px) {
    .c-page-nav .c-page-nav__prev {
      padding-left: 40px; }
      .c-page-nav .c-page-nav__prev .c-icon {
        left: 20px;
        margin-left: -.5em; } }

.c-page-desc {
  padding: 0 20px 20px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--blocks-and-disabled-color); }
  @media only screen and (min-width: 769px) {
    .c-page-desc {
      padding: 0 30px 20px 30px; } }
  .c-page-desc p {
    margin: 0; }
  .c-page-desc .c-page-desc__title {
    display: block;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--neutral-elements-color); }

.c-alert {
  position: relative;
  -webkit-animation: opacity 0.5s ease-in-out;
     -moz-animation: opacity 0.5s ease-in-out;
       -o-animation: opacity 0.5s ease-in-out;
          animation: opacity 0.5s ease-in-out;
  padding: 15px 20px;
  margin: 10px 0;
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
  color: #3A99D8;
  background: #E5EBF1; }
  @media only screen and (min-width: 551px) {
    .c-alert {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
         -moz-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
         -moz-box-orient: horizontal;
         -moz-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px;
      font-size: 15px;
      line-height: 20px; } }
  .c-alert p {
    margin: 0; }
  .c-alert .c-alert__message {
    overflow-wrap: break-word;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0; }
  .c-alert .c-alert__date {
    font-size: 11px;
    line-height: 15px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 5px; }
    @media only screen and (min-width: 551px) {
      .c-alert .c-alert__date {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
           -moz-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        margin-left: 20px;
        margin-bottom: 0;
        font-size: 13px;
        line-height: 20px; } }
  .c-alert.c-alert--error {
    color: #C83329;
    background: #F6C2BE; }
  .c-alert.c-alert--success {
    color: #00C67F;
    background: #C4EDDE; }
  .c-alert.c-alert--neutral {
    color: #6f6f6f;
    background: #dedede; }
    
.c-subscribes .c-subscribes__head {
  overflow: hidden;
  }

.c-subscribes .c-subscribes__title {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #1C1C1C;
  margin: 0 0 10px 0;
  }
  @media only screen and (min-width: 769px) {
    .c-subscribes .c-subscribes__title {
      float: left; } }

  .c-subscribes .c-subscribes__time {
    }
    @media only screen and (min-width: 769px) {
      .c-subscribes .c-subscribes__time {
        float: right; } }

.c-subscribes .c-subscribes__subtitle {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #1C1C1C;
  margin: 0 0 10px 0; }
  @media only screen and (min-width: 769px) {
    .c-subscribes .c-subscribes__subtitle {
      font-size: 14px; } }

.c-subscribes .c-subscribes__item {
  margin-bottom: 10px; }
  .c-subscribes .c-subscribes__item .c-btn, .c-subscribes .c-subscribes__item .c-read-more .c-read-more__btn, .c-read-more .c-subscribes .c-subscribes__item .c-read-more__btn {
    vertical-align: middle; }
  .c-subscribes .c-subscribes__item-label {
    display: inline;
    vertical-align: middle;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #1C1C1C;
    margin-left: 15px; }
    @media only screen and (min-width: 426px) {
      .c-subscribes .c-subscribes__item-label {
        font-size: 14px; } }

    .c-subscribes .c-subscribes__body {
      padding: 10px 20px;
      border-bottom: 1px solid var(--blocks-and-disabled-color); }
      @media only screen and (min-width: 769px) {
        .c-subscribes .c-subscribes__body {
            padding: 20px 30px; } }

    .c-subscribes .c-subscribes__footer {
      padding: 20px 20px 20px 20px;
      }
      @media only screen and (min-width: 769px) {
        .c-subscribes .c-subscribes__footer {
          padding: 20px 30px 20px 30px;
          } }

.c-read-more .c-read-more__footer {
  text-align: center;
  margin-top: 10px; }

.app-loader {
  display: block;
  position: fixed;
  background: rgba(0, 0, 0, 0.7) url("../images/loader.svg") center center no-repeat;
  -moz-background-size: 40px 40px;
    -o-background-size: 40px 40px;
       background-size: 40px 40px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  line-height: 0; }

.owl-nav {
  font-size: 0;
  direction: ltr; }
  .owl-nav.disabled {
    display: none; }
  .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-prev,
  .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-next {
    cursor: pointer;
    display: inline-block;
    position: relative;
    vertical-align: top;
    line-height: 0;
    background: none;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    padding: 0;
    overflow: hidden;
    font-size: 55px;
    width: 1em;
    height: 1em;
    background: #ffffff;
    color: #1C1C1C;
    opacity: 0.9;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
    -o-transition: all ease 0.3s 0s;
    transition: all ease 0.3s 0s; }
    .owl-nav button.owl-prev .c-icon,
    .owl-nav button.owl-next .c-icon {
      font-size: 0.54545em;
      position: absolute;
      left: 50%;
      top: 50%;
      margin-left: -.5em;
      margin-top: -.5em; }
    .owl-nav button.owl-prev.disabled,
    .owl-nav button.owl-next.disabled {
      opacity: 0.2;
      cursor: not-allowed; }
    .owl-nav button.owl-prev:hover,
    .owl-nav button.owl-next:hover {
      opacity: 1; }
  .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-prev {
    margin-right: 20px; }

.owl-dots {
  text-align: center;
  line-height: 0;
  font-size: 0;
  position: relative;
  direction: ltr;
  margin-top: 10px; }
  .owl-dots button.owl-dot {
    display: inline-block;
    color: #3A99D8;
    vertical-align: top;
    position: relative;
    background: none;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    padding: 0;
    font-size: 0;
    line-height: 0;
    margin: 5px;
    width: 8px;
    height: 8px;
    border: 1px solid currentColor;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
    -o-transition: all ease 0.3s 0s;
    transition: all ease 0.3s 0s; }
    .owl-dots button.owl-dot.active {
      background: currentColor; }

.owl-drag .owl-stage {
  cursor: move; }

.owl-carousel {
  direction: ltr; }
  .owl-carousel.l-row {
    margin: 0;
    display: block; }
  .owl-carousel [class^=l-col] {
    width: auto;
    max-width: none;
    padding: 0;
    float: none;
    display: block; }
  .owl-carousel .owl-nav {
    font-size: 0; }
    .owl-carousel .owl-nav button.owl-prev {
      left: 0;
      -webkit-border-radius: 0 3px 3px 0;
         -moz-border-radius: 0 3px 3px 0;
              border-radius: 0 3px 3px 0; }
    .owl-carousel .owl-nav button.owl-next {
      right: 0;
      -webkit-border-radius: 3px 0 0 3px;
         -moz-border-radius: 3px 0 0 3px;
              border-radius: 3px 0 0 3px; }
    .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
      position: absolute;
      display: block;
      top: 50%;
      margin: -0.5em 0 0 0; }

.owl-item img {
  width: auto; }

.owl-item > * {
  margin: 0; }

.pswp__bg {
  background: rgba(0, 0, 0, 0.7); }

.pswp__caption__center {
  text-align: center;
  max-width: none;
  line-height: 20px;
  padding: 10px;
  font-size: 16px; }

.pswp__caption {
  min-height: 40px; }

.highslide-credits {
  display: none !important; }

.highslide-image {
  border: none;
  background: none; }

.b-animation-gears {
  margin-bottom: 20px;
  color: #CCCCCC; }
  .b-animation-gears [class^="c-icon"] {
    stroke-width: 0.3px; }
  .b-animation-gears .b-animation-gears__gear {
    font-size: 100px;
    -webkit-animation-duration: 6000ms;
       -moz-animation-duration: 6000ms;
         -o-animation-duration: 6000ms;
            animation-duration: 6000ms; }
  .b-animation-gears .b-animation-gears__gear-sm {
    font-size: 50px;
    margin-bottom: 50px;
    -webkit-animation-duration: 4000ms;
       -moz-animation-duration: 4000ms;
         -o-animation-duration: 4000ms;
            animation-duration: 4000ms; }

.h-clear:after {
  content: '';
  display: table;
  clear: both; }

.h-pull-right {
  float: right; }

.h-pull-left {
  float: left; }

.h-no-margin {
  margin: 0 !important; }

.h-rounded {
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%; }

.h-no-border {
  border: none !important; }

.h-justify {
  width: 100%; }

.h-text-center {
  text-align: center; }

.h-text-muted {
  color: #71757B; }

.h-color-green {
  color: #00C67F; }

.h-color-red {
  color: #C83329; }

.h-color-blue {
  color: #3A99D8; }

.h-color-primary {
  color: var(--primary-color); }

.h-color-secondary {
  color: var(--secondary-color); }

.h-color-blocks-and-disabled {
  color: var(--blocks-and-disabled-color); }

.h-color-primary-text {
  color: var(--primary-text-color); }

.h-bg-color-primary {
  background-color: var(--primary-color); }

.h-bg-color-secondary {
  background-color: var(--secondary-color); }

.h-bg-color-blocks-and-disabled {
  background-color: var(--blocks-and-disabled-color); }

.h-font-inherit {
  font-size: inherit;
  text-align: inherit;
  line-height: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  color: inherit;
  font-family: inherit;
  text-indent: inherit;
  word-break: inherit;
  white-space: inherit; }

.h-font-light {
  font-weight: 300; }

.h-font-regular {
  font-weight: 400; }

.h-font-medium,
.h-font-semibold {
  font-weight: 600; }

.h-font-bold {
  font-weight: 700; }

.h-vertical-middle {
  vertical-align: middle !important; }

.h-vertical-top {
  vertical-align: top !important; }

.h-vertical-bottom {
  vertical-align: top !important; }

.h-hidden {
  display: none !important; }

@media only screen and (min-width: 551px) {
  .h-hidden-xs-up {
    display: none !important; } }

@media only screen and (max-width: 550px) {
  .h-hidden-xs-down {
    display: none !important; } }

@media only screen and (min-width: 769px) {
  .h-hidden-sm-up {
    display: none !important; } }

@media only screen and (max-width: 768px) {
  .h-hidden-sm-down {
    display: none !important; } }

@media only screen and (min-width: 1025px) {
  .h-hidden-md-up {
    display: none !important; } }

@media only screen and (max-width: 1024px) {
  .h-hidden-md-down {
    display: none !important; } }

@media only screen and (min-width: 1361px) {
  .h-hidden-lg-up {
    display: none !important; } }

@media only screen and (max-width: 1360px) {
  .h-hidden-lg-down {
    display: none !important; } }

@media only screen and (min-width: 1231px) {
  .h-hidden-container-up {
    display: none !important; } }

@media only screen and (max-width: 1230px) {
  .h-hidden-container-down {
    display: none !important; } }

.h-flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
     -moz-box-orient: horizontal !important;
     -moz-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important; }

.h-flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
     -moz-box-orient: vertical !important;
     -moz-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important; }

.h-flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
     -moz-box-orient: horizontal !important;
     -moz-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important; }

.h-flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
     -moz-box-orient: vertical !important;
     -moz-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important; }

.h-justify-content-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
     -moz-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important; }

.h-justify-content-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
     -moz-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important; }

.h-justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
     -moz-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important; }

.h-justify-content-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
     -moz-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important; }

.h-justify-content-around {
  -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important; }

.h-align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
     -moz-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important; }

.h-align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
     -moz-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important; }

.h-align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
     -moz-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important; }

.h-align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
     -moz-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important; }

.h-align-items-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
     -moz-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important; }

.h-align-content-start {
  -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important; }

.h-align-content-end {
  -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important; }

.h-align-content-center {
  -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
          align-content: center !important; }

.h-align-content-between {
  -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important; }

.h-align-content-around {
  -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important; }

.h-align-content-stretch {
  -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important; }

.h-align-self-auto {
  -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
              -ms-grid-row-align: auto !important;
          align-self: auto !important; }

.h-align-self-start {
  -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
          align-self: flex-start !important; }

.h-align-self-end {
  -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
          align-self: flex-end !important; }

.h-align-self-center {
  -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
              -ms-grid-row-align: center !important;
          align-self: center !important; }

.h-align-self-baseline {
  -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important; }

.h-align-self-stretch {
  -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
              -ms-grid-row-align: stretch !important;
          align-self: stretch !important; }

@media (min-width: 550px) {
  .h-flex-xs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .h-flex-xs-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .h-flex-xs-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .h-flex-xs-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .h-justify-content-xs-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
       -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .h-justify-content-xs-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
       -moz-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .h-justify-content-xs-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
       -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .h-justify-content-xs-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
       -moz-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .h-justify-content-xs-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important; }
  .h-align-items-xs-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
       -moz-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .h-align-items-xs-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
       -moz-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .h-align-items-xs-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
       -moz-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .h-align-items-xs-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
       -moz-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .h-align-items-xs-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
       -moz-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .h-align-content-xs-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important; }
  .h-align-content-xs-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important; }
  .h-align-content-xs-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important; }
  .h-align-content-xs-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important; }
  .h-align-content-xs-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important; }
  .h-align-content-xs-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important; }
  .h-align-self-xs-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
                -ms-grid-row-align: auto !important;
            align-self: auto !important; }
  .h-align-self-xs-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important; }
  .h-align-self-xs-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important; }
  .h-align-self-xs-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
                -ms-grid-row-align: center !important;
            align-self: center !important; }
  .h-align-self-xs-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important; }
  .h-align-self-xs-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
                -ms-grid-row-align: stretch !important;
            align-self: stretch !important; } }

@media (min-width: 768px) {
  .h-flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .h-flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .h-flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .h-flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .h-justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
       -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .h-justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
       -moz-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .h-justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
       -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .h-justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
       -moz-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .h-justify-content-sm-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important; }
  .h-align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
       -moz-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .h-align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
       -moz-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .h-align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
       -moz-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .h-align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
       -moz-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .h-align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
       -moz-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .h-align-content-sm-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important; }
  .h-align-content-sm-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important; }
  .h-align-content-sm-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important; }
  .h-align-content-sm-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important; }
  .h-align-content-sm-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important; }
  .h-align-content-sm-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important; }
  .h-align-self-sm-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
                -ms-grid-row-align: auto !important;
            align-self: auto !important; }
  .h-align-self-sm-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important; }
  .h-align-self-sm-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important; }
  .h-align-self-sm-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
                -ms-grid-row-align: center !important;
            align-self: center !important; }
  .h-align-self-sm-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important; }
  .h-align-self-sm-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
                -ms-grid-row-align: stretch !important;
            align-self: stretch !important; } }

@media (min-width: 1024px) {
  .h-flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .h-flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .h-flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .h-flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .h-justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
       -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .h-justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
       -moz-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .h-justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
       -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .h-justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
       -moz-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .h-justify-content-md-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important; }
  .h-align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
       -moz-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .h-align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
       -moz-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .h-align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
       -moz-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .h-align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
       -moz-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .h-align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
       -moz-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .h-align-content-md-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important; }
  .h-align-content-md-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important; }
  .h-align-content-md-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important; }
  .h-align-content-md-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important; }
  .h-align-content-md-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important; }
  .h-align-content-md-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important; }
  .h-align-self-md-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
                -ms-grid-row-align: auto !important;
            align-self: auto !important; }
  .h-align-self-md-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important; }
  .h-align-self-md-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important; }
  .h-align-self-md-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
                -ms-grid-row-align: center !important;
            align-self: center !important; }
  .h-align-self-md-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important; }
  .h-align-self-md-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
                -ms-grid-row-align: stretch !important;
            align-self: stretch !important; } }

@media (min-width: 1360px) {
  .h-flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .h-flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .h-flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .h-flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .h-justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
       -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .h-justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
       -moz-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .h-justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
       -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .h-justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
       -moz-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .h-justify-content-lg-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important; }
  .h-align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
       -moz-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .h-align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
       -moz-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .h-align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
       -moz-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .h-align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
       -moz-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .h-align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
       -moz-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .h-align-content-lg-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important; }
  .h-align-content-lg-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important; }
  .h-align-content-lg-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important; }
  .h-align-content-lg-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important; }
  .h-align-content-lg-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important; }
  .h-align-content-lg-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important; }
  .h-align-self-lg-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
                -ms-grid-row-align: auto !important;
            align-self: auto !important; }
  .h-align-self-lg-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important; }
  .h-align-self-lg-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important; }
  .h-align-self-lg-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
                -ms-grid-row-align: center !important;
            align-self: center !important; }
  .h-align-self-lg-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important; }
  .h-align-self-lg-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
                -ms-grid-row-align: stretch !important;
            align-self: stretch !important; } }

@media (min-width: 1230px) {
  .h-flex-container-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .h-flex-container-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important; }
  .h-flex-container-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
       -moz-box-orient: horizontal !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .h-flex-container-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
       -moz-box-orient: vertical !important;
       -moz-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .h-justify-content-container-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
       -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .h-justify-content-container-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
       -moz-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .h-justify-content-container-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
       -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .h-justify-content-container-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
       -moz-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .h-justify-content-container-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important; }
  .h-align-items-container-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
       -moz-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .h-align-items-container-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
       -moz-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .h-align-items-container-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
       -moz-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .h-align-items-container-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
       -moz-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important; }
  .h-align-items-container-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
       -moz-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important; }
  .h-align-content-container-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important; }
  .h-align-content-container-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important; }
  .h-align-content-container-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important; }
  .h-align-content-container-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important; }
  .h-align-content-container-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important; }
  .h-align-content-container-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important; }
  .h-align-self-container-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
                -ms-grid-row-align: auto !important;
            align-self: auto !important; }
  .h-align-self-container-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important; }
  .h-align-self-container-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important; }
  .h-align-self-container-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
                -ms-grid-row-align: center !important;
            align-self: center !important; }
  .h-align-self-container-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important; }
  .h-align-self-container-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
                -ms-grid-row-align: stretch !important;
            align-self: stretch !important; } }

[href^="tel"], [href^="mailto"] {
  direction: ltr;
  display: inline-block; }

[dir="ltr"],
[direction="ltr"] {
  direction: ltr; }

[lang="ar"],
[dir="rtl"],
[direction="rtl"] {
  direction: rtl;
  text-align: right; }
  [lang="ar"] textarea,
  [lang="ar"] input[type="text"], [lang="ar"] input[type="email"],
  [lang="ar"] input[type="password"], [lang="ar"] input[type="tel"],
  [lang="ar"] input[type="phone"], [lang="ar"] input[type="number"],
  [lang="ar"] input[type="search"],
  [dir="rtl"] textarea,
  [dir="rtl"] input[type="text"],
  [dir="rtl"] input[type="email"],
  [dir="rtl"] input[type="password"],
  [dir="rtl"] input[type="tel"],
  [dir="rtl"] input[type="phone"],
  [dir="rtl"] input[type="number"],
  [dir="rtl"] input[type="search"],
  [direction="rtl"] textarea,
  [direction="rtl"] input[type="text"],
  [direction="rtl"] input[type="email"],
  [direction="rtl"] input[type="password"],
  [direction="rtl"] input[type="tel"],
  [direction="rtl"] input[type="phone"],
  [direction="rtl"] input[type="number"],
  [direction="rtl"] input[type="search"] {
    text-align: right; }

@media print {
  #header,
  #footer,
  .l-page-header,
  .l-page-sidebar,
  form, input, button {
    display: none; } }

pre
{
    background-color: #eee;
    border-radius: 5px;
    padding: 20px;
    border: 1px solid #ccc;
}
.video-frame
{
    position:relative;
    padding-bottom:56.25%;
    height:0;
    overflow-y: auto;
}
.video-frame iframe, .video-frame video, .video-frame .video-js
{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.vjs-big-play-button
{
    top: calc(50% - 1.5em / 2) !important;
    left: calc(50% - 3em / 2) !important;
}
.video-js-audio
{
  height: 30px;
}
.video-js-audio .vjs-big-play-button
{
  height: 0 !important;
  border: none !important;
}
.answer_attachments_section
{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--blocks-and-disabled-color);
}
.answer_attachment
{
  margin: 2px 0;
}
.answer_attachment_icon
{
  width: 15px;
  height: 15px;
  opacity: 0.4;
  margin-bottom: -3px;
  margin-right: 3px;
}
.answer_audio_messages_section
{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--blocks-and-disabled-color);
}
.answer_audio_message
{
  margin: 6px 0;
}
.answer_audio_message audio
{
  max-height: 34px;
  width: 250px;
  max-width: 100%;
}
.answer_audio_message_icon
{
  width: 20px;
  height: 20px;
  opacity: 0.8;
  display: inline-block;
  margin-bottom: 6px;
  margin-right: 6px;
}
.telegram-invite-link
{
  display: block;
  position: relative;
  height: 1em;
  padding: 15px;
  width: 1em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  background: #269eda;
  color: #ffffff;
}
.telegram-invite-link-icon
{
  float: right;
  color: white;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
}
.telegram-invite-link~.c-header__notice
{
    margin-left: 0;
}

.vk-invite-link
{
  display: block;
  position: relative;
  height: 1em;
  padding: 15px;
  width: 1em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  background: #4a76a8;
  color: #ffffff;
}
.vk-invite-link-icon
{
  float: right;
  color: white;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
}
.vk-invite-link~.c-header__notice
{
  margin-left: 0;
}
.telegram-invite-link ~ .vk-invite-link
{
  margin-left: 0;
}
@media only screen and (min-width: 551px) {
  .home_btn_container {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    }
    .c-header__nav-toggle, .telegram-invite-link, .vk-invite-link, .c-header__notice {
      z-index: 1;
    }
}
@media only screen and (min-width: 1025px) {
  .home_btn_container {
    display: none; }
}
.emdesell-logo
{
  color: var(--primary-text-color);
}
.bonus-system-link 
{
  text-decoration: none;
  border-radius: 30px;
  background: #99a7c0;
  color: white;
  display: flex;
  line-height: 12px;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  font-weight: bold;
}
.bonus-system-link:hover {
    background: #6f7d95;
}
.bonus-system-svg {
  color: inherit;
  stroke: none;
  filter: invert(1);
  width: 24px;
  height: 24px;
  font-size: 12px;
}
.header-flex-block
{
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-flex-block:last-child
{
  justify-content: flex-end;
}