@font-face {
  font-family: "Roboto";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), url("fonts/Roboto/RobotoRegular/RobotoRegular.woff") format("woff"); }
/* font-family: "RobotoLight"; */
@font-face {
  font-family: "Roboto";
  src: local("RobotoLight"), url("fonts/Roboto/RobotoLight/RobotoLight.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 300; }
/* font-family: "RobotoMedium"; */
@font-face {
  font-family: "Roboto";
  src: local("RobotoMedium"), url("fonts/Roboto/RobotoMedium/RobotoMedium.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 600; }
/* font-family: "RobotoBold"; */
@font-face {
  font-family: "Roboto";
  src: local("RobotoBold"), url("fonts/Roboto/RobotoBold/RobotoBold.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 800; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-width: 375px;
  color: #333333;
  position: relative; }
  body.m-overlay:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.15);
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  color: #333;
  text-decoration: underline; }
  a:hover {
    text-decoration: none; }

mark {
  color: #333;
  background: transparent; }

strong {
  font-weight: bold; }

.helper {
  flex: 1 0 auto; }

.shake {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px; }

@-moz-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0); }
  20%, 80% {
    transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0); }
  40%, 60% {
    transform: translate3d(4px, 0, 0); } }
@-webkit-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0); }
  20%, 80% {
    transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0); }
  40%, 60% {
    transform: translate3d(4px, 0, 0); } }
@-o-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0); }
  20%, 80% {
    transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0); }
  40%, 60% {
    transform: translate3d(4px, 0, 0); } }
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0); }
  20%, 80% {
    transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0); }
  40%, 60% {
    transform: translate3d(4px, 0, 0); } }
.btn {
  position: relative;
  -webkit-appearance: none;
  touch-action: manipulation;
  user-select: none;
  cursor: pointer;
  background-image: none;
  border: none;
  outline: none;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  padding: 0 20px;
  line-height: 40px;
  height: 40px;
  color: #fff;
  margin: 0;
  border-radius: 10px;
  background-color: #FFB82F;
  transition: background-color .5s ease; }
  .btn:hover {
    background-color: #E6A62A; }
  .btn.m-transparent {
    background-color: transparent; }
  .btn.m-orange {
    background-color: #E88E2E;
    color: #fff; }
  .btn.m-red {
    background-color: #EB5757; }
  .btn.m-blueborder {
    color: #4698E1;
    border: 1px #4698E1 solid;
    background-color: transparent; }
  .btn.m-grayborder {
    border: 1px #c4c4c4 solid;
    background-color: transparent;
    color: #333333; }
  .btn.m-small {
    font-size: 9px;
    line-height: 16px;
    height: 16px;
    text-transform: uppercase;
    border-radius: 10px;
    background-color: #f2f2f2;
    color: #333333;
    padding: 0 10px;
    font-weight: 800; }
    .btn.m-small:hover {
      opacity: .75; }
    .btn.m-small.m-orange {
      background-color: #E88E2E;
      color: #fff; }

.title {
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: #333333; }
  @media only screen and (min-width: 960px) {
    .title {
      font-weight: 400;
      font-size: 25px;
      line-height: 25px; } }
  .title .m-toall {
    background-color: #FFB82F;
    color: #fff;
    border-radius: 10px;
    padding: 2px 10px;
    text-decoration: none;
    font-size: 10px;
    line-height: 20px;
    display: inline-block;
    vertical-align: bottom;
    margin-left: 15px;
    transition: background-color .5s ease; }
    .title .m-toall:hover {
      background-color: #E88E2E; }

.tooltip {
  position: relative;
  display: inline-block;
  vertical-align: top; }

.tooltip--left-side.active .tooltip__content {
  display: flex;
  animation: show-left-side-tooltip 0.2s ease-in-out; }

.tooltip--left-side.active .tooltip__content,
.tooltip--right-side.active .tooltip__content {
  display: flex;
  animation: show-right-side-tooltip 0.2s ease-in-out; }

.tooltip--right-bottom-side.active .tooltip__content {
  display: flex;
  animation: show-right-bottom-side-tooltip 0.2s ease-in-out; }

.tooltip__button {
  display: block;
  padding: 0px;
  margin: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  outline: none;
  width: 18px;
  height: 18px; }

.tooltip__content {
  background: #333;
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  position: absolute;
  width: 250px;
  min-height: 60px;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

.tooltip__content .user-content {
  font-size: 14px;
  line-height: 15px;
  -webkit-font-smoothing: subpixel-antialiased;
  transform: translateZ(0);
  text-align: left; }

.tooltip-arrow {
  position: absolute;
  width: 10px;
  height: 30px;
  top: 50%;
  margin-top: -15px; }

.tooltip--right-side .tooltip__content {
  left: 100%; }

.tooltip--right-bottom-side .tooltip__content {
  left: 100%;
  transform: translateY(0); }

.tooltip--right-side .tooltip-arrow {
  right: 100%; }

.tooltip--left-side .tooltip__content {
  right: 100%; }

.tooltip--left-side .tooltip-arrow {
  left: 100%; }

.tooltip__calc--left {
  position: absolute;
  right: -40px;
  top: 6px; }

@-moz-keyframes show-left-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(-10px) translateY(-50%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%); } }
@-webkit-keyframes show-left-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(-10px) translateY(-50%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%); } }
@-o-keyframes show-left-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(-10px) translateY(-50%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%); } }
@keyframes show-left-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(-10px) translateY(-50%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%); } }
@-moz-keyframes show-right-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(10px) translateY(-50%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%); } }
@-webkit-keyframes show-right-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(10px) translateY(-50%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%); } }
@-o-keyframes show-right-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(10px) translateY(-50%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%); } }
@keyframes show-right-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(10px) translateY(-50%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%); } }
@-moz-keyframes show-right-bottom-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(10px) translateY(0); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0%); } }
@-webkit-keyframes show-right-bottom-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(10px) translateY(0%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0%); } }
@-o-keyframes show-right-bottom-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(10px) translateY(0%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0%); } }
@keyframes show-right-bottom-side-tooltip {
  from {
    opacity: 0;
    transform: translateX(10px) translateY(0%); }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0%); } }
.cookie {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  background-color: #333333;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 15px;
  box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.16);
  z-index: 99;
  font-size: 11px;
  line-height: 14px; }
  .cookie a {
    color: #fff;
    text-decoration: underline; }
    .cookie a:hover {
      text-decoration: none; }

.cookie__inner {
  padding: 20px; }

.cookie__close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer; }
  .cookie__close svg {
    width: 14px;
    height: 14px; }
    .cookie__close svg path {
      fill: #fff; }

.toaster {
  position: relative;
  color: #fff;
  background-color: #333333;
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  z-index: 9999;
  font-size: 14px;
  line-height: 18px; }
  .toaster a {
    color: #fff;
    text-decoration: none; }
    .toaster a:hover {
      text-decoration: underline; }
  .toaster.toaster_error {
    background-color: #EB5757;
    color: #fff; }
  .toaster.toaster_add {
    background-color: #FFB82F;
    color: #333333; }

.toaster__inner {
  position: relative;
  padding: 10px 40px 10px 20px;
  height: 60px;
  display: flex;
  align-items: center; }

.toaster__btn {
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  background-color: #fff;
  color: #333333 !important;
  text-transform: uppercase;
  text-decoration: none !important;
  outline: none;
  border: none;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  cursor: pointer;
  margin-left: 20px; }

.toaster__icon {
  display: inline-block;
  margin-right: 10px; }

.toaster__close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  height: 14px; }
  .toaster__close svg {
    width: 14px;
    height: 14px; }

.text-area {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border: 1px solid #c4c4c4;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 14px;
  line-height: 20px;
  padding: 10px;
  width: 100%;
  resize: none; }
  .text-area:focus {
    outline: 1px #FFB82F;
    border-color: #FFB82F; }
  .text-area::placeholder {
    color: #c4c4c4; }

.text-input {
  position: relative;
  display: inline-block;
  z-index: 2;
  padding: 6px 10px;
  background: transparent;
  border: none;
  font-size: 14px;
  width: 100%;
  height: 30px;
  outline: none;
  color: #333333;
  border-radius: 10px;
  border: 1px solid #c4c4c4;
  box-sizing: border-box; }
  .text-input.m-invalid {
    border-color: #EB5757;
    color: #EB5757; }
    .text-input.m-invalid::placeholder {
      color: #EB5757; }
  .text-input:focus {
    outline: 1px #FFB82F;
    border-color: #FFB82F; }
  .text-input::placeholder {
    color: #c4c4c4; }

.text-label {
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
  display: block; }

.checkbox-btn {
  position: relative;
  display: block; }
  .checkbox-btn.m-invalid [type=checkbox]:after {
    border: 1px #EB5757 solid; }
  .checkbox-btn.m-invalid span {
    color: #EB5757; }
  .checkbox-btn span {
    display: inline-block;
    position: relative;
    padding-left: 1px;
    padding-top: 2px;
    cursor: pointer;
    font-size: 13px; }
  .checkbox-btn [type=checkbox] {
    -webkit-appearance: none;
    background-color: transparent;
    border-radius: 100%;
    cursor: pointer;
    display: inline-block;
    position: relative;
    outline: none;
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
    margin: 0; }
    .checkbox-btn [type=checkbox]:after {
      content: '';
      background-color: #fff;
      border: 1px solid #c4c4c4;
      border-radius: 5px;
      left: -2px;
      position: absolute;
      pointer-events: none;
      top: -2px;
      overflow: hidden;
      width: 18px;
      height: 18px; }
    .checkbox-btn [type=checkbox]:checked:after {
      background-image: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.86015 5.93748L0.726549 3.85248L0 4.55748L2.86015 7.35248L9 1.35248L8.27857 0.647476L2.86015 5.93748Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-color: #FFB82F;
      border: 1px solid #FFB82F; }

.radio-btn {
  position: relative;
  display: block; }
  .radio-btn span {
    display: inline-block;
    position: relative;
    padding-left: 8px;
    cursor: pointer;
    font-size: 13px; }
  .radio-btn [type=radio] {
    -webkit-appearance: none;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    position: relative;
    outline: none;
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
    background-color: #fff;
    border: 1px solid #FFB82F;
    box-sizing: border-box;
    margin: 0; }
    .radio-btn [type=radio]:after {
      content: '';
      background-color: #fff;
      border-radius: 50%;
      position: absolute;
      pointer-events: none;
      top: -1px;
      left: -1px;
      overflow: hidden;
      width: 20px;
      height: 20px;
      transform: scale(0.5); }
    .radio-btn [type=radio]:checked {
      background-color: #fff; }
      .radio-btn [type=radio]:checked:after {
        background-color: #FFB82F; }
    .radio-btn [type=radio]:disabled {
      border: 1px #f2f2f2 solid; }
      .radio-btn [type=radio]:disabled + span {
        color: #f2f2f2;
        cursor: default; }
      .radio-btn [type=radio]:disabled:after {
        display: none; }

.ui-slider {
  background-color: #f2f2f2;
  height: 5px;
  border-radius: 5px;
  position: relative; }
  .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    background-color: #FFB82F;
    top: 0;
    height: 100%; }
  .ui-slider .ui-slider-handle {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    background: #C4C4C4;
    border: 2px solid #FFFFFF;
    top: -8px;
    margin-left: -10px;
    position: absolute;
    z-index: 2; }
    .ui-slider .ui-slider-handle.ui-state-focus {
      outline-color: #FFB82F; }

/**
 * 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, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative; }

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; }

.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;
  -webkit-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -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 {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

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

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block; }

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  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-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

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

.owl-carousel .animated {
  animation-duration: 1s;
  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-height {
  transition: height .5s ease-in-out; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease; }

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

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

.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 .1s 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-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none; }

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

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

.owl-nav .disabled {
  opacity: .5;
  cursor: default; }

.owl-nav.disabled + .owl-dots {
  margin-top: 26px;
  text-align: center; }

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1; }
  .owl-dots .owl-dot:focus {
    outline: none; }

.owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 5px 7px;
  background: #f2f2f2;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px; }

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: #FFB82F; }

[data-scrollbar] {
  display: block;
  position: relative; }

.scroll-content {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.scrollbar-track {
  position: absolute;
  opacity: 0;
  z-index: 1;
  background: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity 0.5s 0.5s ease-out;
  transition: opacity 0.5s 0.5s ease-out; }

.scrollbar-track.show,
.scrollbar-track:hover {
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s; }

.scrollbar-track-x {
  left: 0;
  width: 100%;
  bottom: 3px;
  height: 3px; }
  @media (min-width 1200px) {
    .scrollbar-track-x {
      height: 6px; } }

.scrollbar-track-y {
  top: 0;
  height: 100%;
  right: 3px;
  width: 3px; }
  @media (min-width 1200px) {
    .scrollbar-track-y {
      width: 6px; } }

.scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  background: #C4C4C4;
  border-radius: 4px;
  width: 4px;
  height: 4px; }
  @media (min-width 1200px) {
    .scrollbar-thumb {
      width: 6px;
      height: 6px; } }

.page {
  margin: 0 auto;
  position: relative;
  max-width: 1600px;
  padding-bottom: 50px; }
  @media only screen and (min-width: 1200px) {
    .page {
      padding-bottom: 100px; } }
  @media only screen and (min-width: 1600px) {
    .page {
      padding-bottom: 140px; } }
  .page .title {
    margin-top: 18px;
    margin-bottom: 30px;
    font-weight: 800; }

.page__in {
  padding: 20px 20px 0; }
  .page__in.m-center {
    text-align: center; }
  .page__in.m-pt50 {
    padding-top: 50px; }

.page__pic {
  margin-bottom: 30px; }

.page__desc {
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 23px; }
  .page__desc h2 {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    text-transform: uppercase; }
  .page__desc p {
    margin-bottom: 40px; }
    .page__desc p:last-child {
      margin-bottom: 0; }
  .page__desc b {
    font-weight: 800; }
  .page__desc a {
    text-decoration: none; }
    .page__desc a.tel {
      color: #4698E1; }

.page__btn {
  margin-bottom: 30px; }
  .page__btn .btn {
    height: 30px;
    line-height: 30px; }

.page__section {
  position: relative;
  overflow: hidden;
  vertical-align: top;
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 30px; }
  .page__section:last-child {
    margin-bottom: 0; }
  @media only screen and (min-width: 960px) {
    .page__section {
      margin-bottom: 50px; }
      .page__section:last-child {
        margin-bottom: 0; } }
  @media only screen and (min-width: 1200px) {
    .page__section.m-video {
      padding-left: 400px; } }
  .page__section.m-tac {
    text-align: center; }
  .page__section p {
    margin-bottom: 30px; }
    .page__section p:last-child {
      margin-bottom: 0; }
  .page__section h2 {
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 30px; }
  .page__section ul {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 14px;
    line-height: 30px; }

.page__section-item {
  display: inline-block;
  vertical-align: top; }
  .page__section-item svg {
    max-width: 100%;
    height: auto; }

.page__section-title {
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 30px; }
  @media only screen and (min-width: 960px) {
    .page__section-title {
      font-weight: 400;
      font-size: 30px;
      line-height: 30px; } }

.page__video {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px; }
  .page__video img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    display: block; }
  @media only screen and (min-width: 1200px) {
    .page__video {
      position: absolute;
      left: 0;
      top: 0;
      width: 370px; }
      .page__video img {
        max-width: 100%; } }
  .page__video .page__video-in {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 277px; }
    @media only screen and (min-width: 960px) {
      .page__video .page__video-in {
        height: 500px; } }
  .page__video .page__video_play {
    position: absolute;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer; }

.page__content {
  width: 100%; }

.page__txt {
  font-size: 17px;
  line-height: 30px; }
  .page__txt p {
    margin-bottom: 30px; }
  .page__txt h2 {
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 30px; }
  .page__txt ul {
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 14px;
    line-height: 30px; }

.page__ctrl {
  text-align: center;
  padding: 43px 0 53px; }
  @media only screen and (min-width: 960px) {
    .page__ctrl {
      text-align: right; } }
  .m-cat .page__ctrl {
    padding: 23px 0; }
    @media only screen and (min-width: 960px) {
      .m-cat .page__ctrl {
        text-align: left; } }
    .m-cat .page__ctrl.m-top {
      display: none; }
      @media only screen and (min-width: 960px) {
        .m-cat .page__ctrl.m-top {
          display: block;
          position: relative;
          left: -10px; } }
  .m-search .page__ctrl {
    padding: 23px 0; }
  .m-response .page__ctrl {
    text-align: left;
    padding: 0; }

.page__ctrl-item {
  font-weight: bold;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 34px;
  height: 34px;
  padding-top: 8px; }
  .page__ctrl-item.m-active {
    border-radius: 7px;
    background-color: #FFB82F;
    color: #fff; }

.slides__wrap {
  width: 100%;
  height: 188px;
  position: relative;
  margin-bottom: 30px; }
  @media only screen and (min-width: 960px) {
    .slides__wrap {
      margin-bottom: 20px;
      padding: 0px 60px;
      height: 234px; } }
  @media only screen and (min-width: 1200px) {
    .slides__wrap {
      height: 320px; } }

.slides__arr {
  border-radius: 50%;
  background-color: #f2f2f2;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  transform: scale(1, 1) translateY(-50%);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  user-select: none; }
  .slides__arr:hover {
    background-color: #FFB82F; }
    .slides__arr:hover svg path {
      fill: #fff; }
  @media only screen and (min-width: 960px) {
    .slides__arr {
      display: flex; } }
  .slides__arr.slides__arr_left {
    left: 0;
    transform: scale(-1, 1) translateY(-50%); }
  .slides__arr.slides__arr_right {
    right: 0; }
  .slides__arr.m-disabled {
    opacity: .5;
    cursor: default; }
    .slides__arr.m-disabled svg path {
      fill: #c4c4c4; }
    .slides__arr.m-disabled:hover {
      background-color: #f2f2f2; }
      .slides__arr.m-disabled:hover svg path {
        fill: #c4c4c4; }

.slides__list {
  padding: 0 0 0 20px; }
  .slides__list .owl-item {
    position: relative;
    border-radius: 10px; }
    .slides__list .owl-item:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 10px;
      box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
      display: none; }

.slides__item {
  position: relative;
  border-radius: 10px;
  width: 130px;
  height: 188px; }
  @media only screen and (min-width: 960px) {
    .slides__item {
      width: 190px;
      height: 234px; } }
  @media only screen and (min-width: 1200px) {
    .slides__item {
      width: 256px;
      height: 320px; } }

.slides__item-img {
  width: 100%;
  margin: 0 auto;
  width: 120px;
  height: 120px; }
  .slides__item-img img {
    max-width: 100%;
    height: auto; }
  @media only screen and (min-width: 960px) {
    .slides__item-img {
      width: 150px;
      height: 150px; } }
  @media only screen and (min-width: 1200px) {
    .slides__item-img {
      width: 236px;
      height: 236px; } }

.slides__item-price {
  font-weight: 800;
  font-size: 17px;
  line-height: 20px;
  padding-top: 10px; }
  @media only screen and (min-width: 960px) {
    .slides__item-price {
      font-size: 21px;
      line-height: 20px; } }
  .slides__item-price span {
    display: inline-block; }
  .slides__item-price s {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #919191; }

.slides__item-title {
  font-size: 12px;
  line-height: 16px;
  position: relative;
  overflow: hidden;
  padding-top: 6px; }
  .slides__item-title:after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); }
  @media only screen and (min-width: 960px) {
    .slides__item-title {
      white-space: nowrap; } }

.dropdown-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.dropdown {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  user-select: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999; }
  .dropdown.m-open {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    top: -32px;
    transform: translateY(0); }

.dropdown-title {
  height: 32px;
  line-height: 32px;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .m-open .dropdown-title {
    padding: 20px 10px 5px; }
  .dropdown-title svg {
    display: inline-block;
    padding-left: 10px; }
    .m-open .dropdown-title svg {
      transform: scale(1, -1); }

.dropdown-input {
  padding: 5px 10px; }
  .dropdown-input input {
    padding: 5px 0;
    border: 0px;
    outline: 0px;
    width: 100%;
    display: block;
    border-bottom: 1px #f2f2f2 solid; }
    .dropdown-input input:focus {
      border-bottom: 1px #FFB82F solid; }

.dropdown-list {
  padding-top: 10px;
  display: none; }
  .m-open .dropdown-list {
    display: block; }

.dropdown-item {
  height: 32px;
  line-height: 32px;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 10px; }
  .dropdown-item:hover {
    background-color: #4698E1;
    color: #fff; }
    .dropdown-item:hover a {
      color: #fff; }
  .dropdown-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; }
  .dropdown-item a {
    text-decoration: none; }

.geo {
  display: inline-block;
  position: relative;
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  line-height: 14px; }

.geo__icon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle; }
  .geo_show .geo__icon {
    display: none; }

.geo__title {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap; }

.geo__select {
  border-radius: 10px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  display: none;
  border-radius: 10px;
  overflow: hidden;
  padding-top: 5px;
  position: absolute;
  top: -8px;
  left: -10px;
  z-index: 99;
  width: 220px; }
  .geo_show .geo__select {
    display: block; }

.geo__input {
  margin-bottom: 5px; }
  .geo__input input[type="text"] {
    border-radius: 10px;
    border: none;
    padding: 5px 10px;
    width: 100%;
    width: calc(100% - 20px);
    display: block !important; }
    .geo__input input[type="text"]:focus {
      outline-color: transparent; }

.geo__close {
  position: absolute;
  top: 10px;
  right: 7px;
  z-index: 99; }

.geo__item {
  font-size: 12px;
  line-height: 14px;
  padding: 12px 10px;
  color: #333333; }
  .geo__item mark {
    color: #4698E1; }
  .geo__item:hover {
    background-color: #4698E1;
    color: #fff; }
    .geo__item:hover mark {
      color: #fff; }

.header {
  color: #fff;
  background-color: #001F51;
  background-image: url(../i/header_bg.png);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60px; }
  @media only screen and (min-width: 960px) {
    .header {
      height: auto; } }

.header__in {
  margin: 0 auto;
  position: relative;
  max-width: 1600px; }
  @media only screen and (min-width: 960px) {
    .header__in {
      padding: 23px 20px 21px 20px; } }

.header__item {
  position: absolute;
  top: 0;
  display: none; }
  @media only screen and (min-width: 960px) {
    .header__item {
      display: block; } }
  .header__item.m-logo {
    top: 23px;
    left: 20px;
    width: 240px; }
  .header__item.m-search {
    position: relative;
    top: inherit;
    margin-left: 250px;
    margin-right: 200px; }
    @media only screen and (min-width: 1200px) {
      .header__item.m-search {
        margin-right: 310px; } }
  .header__item.m-icons {
    right: 20px;
    width: 240px;
    padding-top: 66px; }
    @media only screen and (min-width: 1200px) {
      .header__item.m-icons {
        padding-top: 44px; } }

.header__geo {
  margin-bottom: 18px; }

.header__logo {
  display: inline-block;
  background-image: url(../i/logo.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  width: 238px;
  height: 34px;
  background-size: contain; }

.header__cont {
  color: #fff;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap; }
  .header__cont a.phone__number {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 19px;
    line-height: 22px;
    margin-right: 30px; }

.header__search-in {
  border-radius: 10px;
  background-color: #fff;
  padding: 0 37px;
  height: 22px;
  width: 100%;
  position: relative; }
  @media only screen and (min-width: 1200px) {
    .header__search-in {
      max-width: 100%; } }
  .header__search-in.m-autocomplete {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /*
    &:after {
    	content: '';
    	display: block;
    	background-color: #fff;
    	width: 100%;
    	height: 10px;
    	position: absolute;
    	left: 0;
    	top: 32px;
    	z-index: 100;
    }
    */ }

.header__search-input {
  font-size: 14px;
  line-height: 18px;
  display: block;
  height: 22px;
  width: 100%;
  border: 0;
  outline: none;
  padding: 0; }
  .header__search-input:focus {
    border: 0; }
  .header__search-input::placeholder {
    color: #c4c4c4; }

.header__search-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px; }

.header__search-clear {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 34px;
  height: 22px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  background-color: #fff;
  display: none; }
  .m-notempty .header__search-clear {
    display: flex; }

.header__icons {
  white-space: nowrap;
  text-align: right; }

.header__icons-item {
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  margin-right: 24px;
  width: 34px; }
  @media only screen and (min-width: 1200px) {
    .header__icons-item {
      width: 55px; } }
  .header__icons-item:last-child {
    margin-right: 0; }

.header__icons-item__icon {
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
  margin: 0 auto 5px;
  position: relative;
  background-position: 50%;
  background-repeat: no-repeat; }
  .header__icons-item__icon.m-delivery {
    background-image: url(../i/icon_delivery.svg); }
  .header__icons-item__icon.m-profile {
    background-image: url(../i/icon_profile.svg); }
  .header__icons-item__icon.m-basket {
    background-image: url(../i/icon_basket.svg); }
  .m-basket-full .header__icons-item__icon.m-basket {
    background-image: url(../i/icon_basket_full.svg); }

.header__icons-item__counter {
  background-color: #EB5757;
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  line-height: 16px;
  border-radius: 8px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  z-index: 1;
  display: none;
  width: 22px;
  height: 16px; }
  .m-basket-full .header__icons-item__counter {
    display: inline-block; }

.header__icons-item__title {
  display: none; }
  @media only screen and (min-width: 1200px) {
    .header__icons-item__title {
      display: inline-block; } }

.header__mobile {
  position: relative;
  display: flex;
  justify-content: start;
  height: 60px;
  z-index: 999; }
  @media only screen and (min-width: 960px) {
    .header__mobile {
      display: none; } }
  .header__mobile .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 145px;
    background-size: contain;
    background-position: 50%; }
  .header__mobile .header__mobile-search .header__mobile-search-icon {
    height: 60px;
    width: 40px;
    padding: 20px 10px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none; }
  .header__mobile .header__mobile-search .header__mobile-search-input {
    display: none; }
    .header__mobile .header__mobile-search .header__mobile-search-input input {
      width: 100%;
      height: 60px;
      padding: 10px 60px;
      border: none;
      box-sizing: border-box;
      font-size: 17px;
      line-height: 18px; }
      .header__mobile .header__mobile-search .header__mobile-search-input input:focus {
        outline: none; }
  .header__mobile .header__mobile-search .header__mobile-search-close {
    display: none;
    cursor: pointer;
    height: 60px;
    width: 40px;
    padding: 23px 10px;
    text-align: center; }
  .header__mobile .header__mobile-search .header__mobile-search-list {
    display: none; }
  .header__mobile .header__mobile-search.search_show {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    z-index: 99; }
    .header__mobile .header__mobile-search.search_show .header__mobile-search-list {
      display: block;
      position: absolute;
      top: 60px;
      background-color: #fff;
      width: 100%;
      box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1) inset; }
    .header__mobile .header__mobile-search.search_show .header__mobile-search-item {
      padding: 10px 35px;
      font-size: 17px;
      color: #333333;
      height: 50px;
      padding-top: 15px;
      padding-bottom: 15px;
      cursor: pointer; }
      .header__mobile .header__mobile-search.search_show .header__mobile-search-item:hover {
        color: #fff;
        background-color: #4698E1; }
    .header__mobile .header__mobile-search.search_show .header__mobile-search-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%); }
      .header__mobile .header__mobile-search.search_show .header__mobile-search-icon svg path {
        fill: #333333; }
    .header__mobile .header__mobile-search.search_show .header__mobile-search-input {
      display: block; }
    .header__mobile .header__mobile-search.search_show .header__mobile-search-close {
      display: inline-block;
      position: absolute;
      right: 0px;
      top: 50%;
      transform: translateY(-50%); }
  .header__mobile .header__mobile-basket {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); }
    .header__mobile .header__mobile-basket .header__icons-item {
      height: 60px;
      width: 60px;
      padding: 20px; }
  .header__mobile .header__burger-button {
    padding: 15px 10px 15px 20px;
    height: 60px; }
  .header__mobile .burger-button__line {
    display: block;
    background-color: #fff;
    width: 18px;
    height: 2px;
    margin-bottom: 3px;
    margin-right: 1px;
    margin-left: 1px;
    transition: transform 0.2s, background .2s; }
    .header__mobile .burger-button__line:last-child {
      margin-bottom: 0; }

.nav {
  position: relative;
  background: rgba(0, 45, 116, 0.2);
  display: none; }
  @media only screen and (min-width: 960px) {
    .nav {
      display: block; } }

.nav__in {
  padding: 16px 10px 6px;
  margin: 0 auto;
  max-width: 1600px; }

.nav__item {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  position: relative; }
  .nav__item > a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 10px;
    text-transform: uppercase; }
  .nav__item:hover > a {
    background-color: #fff;
    color: #1451A5; }
  .nav__item.m-sub:hover > a {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    color: #1451A5;
    position: relative;
    z-index: 100; }
  .nav__item.m-sub:hover:after {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    height: 55px;
    background-color: #fff;
    z-index: 99; }

.nav__sub {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  width: 680px;
  padding: 15px 15px 25px;
  font-weight: 400;
  z-index: 99;
  display: none;
  position: absolute;
  top: 42px; }
  .nav__item:hover .nav__sub {
    display: block; }
  .nav__item[data-pos='left'] .nav__sub {
    left: 0; }
  .nav__item[data-pos='halfleft'] .nav__sub {
    transform: translateX(-25%);
    left: 25%; }
  .nav__item[data-pos='center'] .nav__sub {
    transform: translateX(-50%);
    left: 50%; }
  .nav__item[data-pos='halfright'] .nav__sub {
    transform: translateX(20%);
    right: 20%; }
  .nav__item[data-pos='right'] .nav__sub {
    right: 0; }

.nav__sub-in {
  display: flex;
  justify-content: space-between; }

.nav__sub-column {
  width: 200px; }
  .nav__sub-column.m-img {
    width: 180px;
    margin-left: 15px; }

.nav__sub-item {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 10px; }
  .nav__sub-item:last-child {
    margin-bottom: 0; }
  .nav__sub-item a {
    text-decoration: none; }

.nav__sub-title {
  font-weight: 800;
  margin-bottom: 25px;
  text-decoration: none; }
  .nav__sub-title a {
    text-decoration: none; }
    .nav__sub-title a:hover {
      text-decoration: underline; }

.breadcrumbs {
  position: relative;
  font-size: 15px;
  line-height: 16px;
  z-index: 1;
  overflow: hidden;
  width: 100%; }
  .m-news .breadcrumbs {
    position: relative;
    left: -4px; }
  .m-news-article .breadcrumbs {
    position: absolute;
    left: 16px;
    top: 10px;
    width: auto; }
    @media only screen and (min-width: 960px) {
      .m-news-article .breadcrumbs {
        position: relative;
        left: -4px;
        top: 0; } }
  .page .breadcrumbs {
    left: -7px; }
  .passport .breadcrumbs {
    padding: 0 20px;
    padding-top: 18px; }
    @media only screen and (min-width: 960px) {
      .passport .breadcrumbs {
        padding-top: 30px; } }
    .passport .breadcrumbs .btn {
      width: 30px;
      height: 24px;
      font-size: 14px;
      line-height: 20px;
      margin-right: 10px;
      padding-left: 0;
      padding-right: 0; }
      @media only screen and (min-width: 960px) {
        .passport .breadcrumbs .btn {
          width: 102px;
          height: 30px;
          line-height: 30px; } }
  .breadcrumbs .btn {
    width: auto; }
    .breadcrumbs .btn span.m-mob {
      display: inline-block; }
      @media only screen and (min-width: 960px) {
        .breadcrumbs .btn span.m-mob {
          display: none; } }
    .breadcrumbs .btn span.m-desk {
      display: none; }
      @media only screen and (min-width: 960px) {
        .breadcrumbs .btn span.m-desk {
          display: inline-block; } }

.breadcrumbs__in {
  display: flex;
  align-items: center;
  justify-content: flex-start; }

.breadcrumbs__item {
  position: relative;
  display: inline-block;
  padding: 10px 7px;
  z-index: 2;
  text-decoration: none;
  color: #333333; }
  .breadcrumbs__item:hover {
    color: #4698E1;
    text-decoration: none !important; }
  .breadcrumbs__item.breadcrumbs__item_home {
    display: inline-block;
    text-decoration: none;
    padding: 5px 9px 7px 7px; }
    @media only screen and (min-width: 960px) {
      .breadcrumbs__item.breadcrumbs__item_home {
        display: none; } }
  .breadcrumbs__item.breadcrumbs__item_link {
    display: none;
    text-decoration: none; }
    .breadcrumbs__item.breadcrumbs__item_link:fisrt-child {
      display: inline-block; }
    @media only screen and (min-width: 960px) {
      .breadcrumbs__item.breadcrumbs__item_link {
        display: inline-block; } }
  .breadcrumbs__item.breadcrumbs__item_current {
    cursor: default;
    color: #333;
    text-decoration: none;
    display: none; }
    @media only screen and (min-width: 960px) {
      .breadcrumbs__item.breadcrumbs__item_current {
        display: inline-block; } }
    .breadcrumbs__item.breadcrumbs__item_current:hover {
      color: inherit;
      text-decoration: none; }
  .m-news-article .breadcrumbs__item {
    color: #fff; }
    @media only screen and (min-width: 960px) {
      .m-news-article .breadcrumbs__item {
        color: #333333; } }

.breadcrumbs__link {
  text-decoration: none; }
  .breadcrumbs__link:hover {
    text-decoration: underline; }

.breadcrumbs__item-arr {
  display: none; }
  @media only screen and (min-width: 960px) {
    .breadcrumbs__item-arr {
      display: inline-block; } }
  .breadcrumbs__item-arr svg {
    vertical-align: middle;
    transform: scale(-1, 1); }
    @media only screen and (min-width: 960px) {
      .breadcrumbs__item-arr svg {
        transform: scale(1, 1); } }
  .breadcrumbs__item-arr.breadcrumbs__item_arr_current {
    display: none; }
    @media only screen and (min-width: 960px) {
      .breadcrumbs__item-arr.breadcrumbs__item_arr_current {
        display: inline-block; } }

.tabs {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 0; }
  @media only screen and (min-width: 960px) {
    .tabs {
      margin-top: 30px;
      margin-left: auto;
      margin-right: auto; } }
  @media only screen and (min-width: 960px) {
    .tabs {
      text-align: center; } }

.tabs__in {
  background-color: #f2f2f2;
  text-transform: uppercase;
  padding: 0 10px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .tabs__in::-webkit-scrollbar {
    display: none; }
  @media only screen and (min-width: 960px) {
    .tabs__in {
      background-color: #fff;
      margin: 0 auto; } }

.tabs__list {
  white-space: nowrap; }
  @media only screen and (min-width: 960px) {
    .tabs__list {
      display: flex;
      justify-content: center; } }

.tabs__item {
  font-weight: 800;
  font-size: 17px;
  line-height: 20px;
  display: inline-block;
  padding: 10px;
  color: #c4c4c4;
  cursor: pointer;
  user-select: none; }
  .tabs__item a {
    color: #c4c4c4; }
  .tabs__item.m-active {
    color: #000; }
    .tabs__item.m-active a {
      color: #000; }
  @media only screen and (min-width: 960px) {
    .tabs__item {
      font-size: 14px;
      line-height: 20px;
      color: #000;
      background-color: #f2f2f2;
      border-right: 1px #fff solid;
      min-width: 170px; }
      .tabs__item:first-child {
        border-bottom-left-radius: 10px;
        border-top-left-radius: 10px; }
      .tabs__item:last-child {
        border-bottom-right-radius: 10px;
        border-top-right-radius: 10px; }
      .tabs__item a {
        color: #000; }
      .tabs__item.m-active {
        background-color: #4698E1;
        color: #fff; }
        .tabs__item.m-active a {
          color: #fff; } }
  .tabs__item a {
    text-decoration: none; }

@media only screen and (min-width: 960px) {
  .mainer {
    margin-top: 20px; } }

.mainer__in {
  position: relative;
  max-width: 1600px;
  margin: 0 auto; }
  @media only screen and (min-width: 960px) {
    .mainer__in {
      padding: 0 20px 0 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; } }
  @media only screen and (min-width: 1200px) {
    .mainer__in {
      padding: 0 0 0 20px; } }

.mainer-banner {
  overflow: hidden;
  border-radius: 10px;
  display: none;
  width: 25%;
  height: 350px;
  padding-right: 20px; }
  @media only screen and (min-width: 1200px) {
    .mainer-banner {
      display: inline-block; } }

.mainer-banner-in {
  width: 100%; }
  .mainer-banner-in img {
    width: 100%;
    max-width: 100%;
    height: 350px; }

.mainer-stuff {
  margin-bottom: 20px;
  position: relative;
  width: 100%; }
  @media only screen and (min-width: 1200px) {
    .mainer-stuff {
      padding-right: 20px;
      height: 350px;
      width: 75%; } }

.mainer-stuff__list {
  overflow: hidden; }
  @media only screen and (min-width: 960px) {
    .mainer-stuff__list {
      border-radius: 10px; } }
  .mainer-stuff__list .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin-top: 0 !important; }

.mainer-stuff__item {
  display: block;
  position: relative;
  height: 500px;
  overflow: hidden; }
  @media only screen and (min-width: 720px) {
    .mainer-stuff__item {
      height: 800px; } }
  @media only screen and (min-width: 960px) {
    .mainer-stuff__item {
      height: 350px; } }
  .mainer-stuff__item img {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    height: 100%; }
    @media only screen and (min-width: 960px) {
      .mainer-stuff__item img {
        width: 100% !important;
        height: auto; } }

.main-txt {
  margin-bottom: 100px; }

.main-txt__in {
  max-width: 960px;
  padding: 0 20px;
  margin: 0 auto; }

.main-txt__title {
  font-size: 20px;
  line-height: 23px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 35px; }
  @media only screen and (min-width: 960px) {
    .main-txt__title {
      text-align: center;
      font-size: 30px;
      line-height: 30px;
      font-weight: 400; } }

.main-txt__body {
  font-size: 14px;
  line-height: 20px; }
  .main-txt__body p {
    margin-bottom: 15px; }
    .main-txt__body p:last-child {
      margin-bottom: 0; }

.main-txt__futher {
  padding-top: 25px;
  line-height: 11px; }
  .main-txt__futher a {
    background-color: #f2f2f2;
    border-radius: 10px;
    text-align: center;
    font-size: 9px;
    line-height: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 3px 12px; }

.main-cat {
  max-width: 1600px;
  margin: 0 auto 40px; }
  @media only screen and (min-width: 960px) {
    .main-cat {
      margin-bottom: 50px; } }

.main-cat__in {
  padding: 0 0 0 20px;
  margin: 0 auto;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */ }
  @media only screen and (min-width: 960px) {
    .main-cat__in {
      overflow: hidden; } }
  .main-cat__in::-webkit-scrollbar {
    display: none; }

.main-cat__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
  min-width: 870px; }

.main-cat__item {
  position: relative;
  display: inline-block;
  width: 25%;
  padding: 0 20px 20px 0;
  text-decoration: none;
  font-size: 17px;
  line-height: 20px;
  color: #fff;
  overflow: hidden; }
  @media only screen and (min-width: 1200px) {
    .main-cat__item {
      font-size: 25px;
      line-height: 25px; } }
  .main-cat__item:nth-child(n+3) {
    padding-bottom: 0; }

.main-cat__item-in {
  position: relative;
  display: inline-block;
  background: url(../i/main_cat_bg.png) 0 0 no-repeat;
  background-size: cover;
  height: 140px;
  width: 100%;
  text-decoration: none;
  color: #fff;
  border-radius: 10px; }
  @media only screen and (min-width: 960px) {
    .main-cat__item-in {
      height: 250px; } }
  .main-cat__item-in span {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px; }

.main-opt {
  padding: 0 20px;
  margin: 0 auto 40px;
  max-width: 1600px; }

.main-opt__list {
  overflow: hidden; }
  @media only screen and (min-width: 960px) {
    .main-opt__list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; } }

.main-opt__item {
  text-decoration: none;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  display: inline-block; }
  .main-opt__item:nth-child(2n+1) {
    padding-right: 0px; }
  .main-opt__item:nth-child(2n) {
    padding-left: 0px; }
  @media only screen and (min-width: 720px) {
    .main-opt__item {
      font-size: 25px;
      line-height: 25px; } }
  @media only screen and (min-width: 960px) {
    .main-opt__item {
      margin-bottom: 0;
      width: 50%; }
      .main-opt__item:nth-child(2n+1) {
        padding-right: 10px; }
      .main-opt__item:nth-child(2n) {
        padding-left: 10px; } }

.main-opt__item-in {
  font-size: 17px;
  line-height: 20px;
  background-image: url("../i/bg_item_wide.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  display: inline-block;
  height: 250px;
  width: 100%;
  border-radius: 10px;
  position: relative; }

.main-opt__item-title {
  text-align: center;
  color: #fff;
  padding: 0 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: inline-block; }
  @media only screen and (min-width: 960px) {
    .main-opt__item-title {
      padding: 0; } }

.grid-main {
  max-width: 1600px;
  margin: 0 auto 40px; }
  @media only screen and (min-width: 960px) {
    .grid-main {
      margin: 0 auto 65px; } }
  .grid-main .slides__wrap {
    margin-bottom: 0; }

.grid-main__in {
  padding: 0 0 0 20px; }
  @media only screen and (min-width: 960px) {
    .grid-main__in {
      padding: 0 20px; } }
  .grid-main__in .title {
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    padding-right: 20px; }
    @media only screen and (min-width: 960px) {
      .grid-main__in .title {
        display: block; } }

@media only screen and (min-width: 960px) {
  .grid-main__stuff {
    display: flex;
    justify-content: start; } }

.grid-main__list {
  width: 100%;
  margin-bottom: 30px; }
  @media only screen and (min-width: 960px) {
    .grid-main__list {
      width: 75%;
      margin-bottom: 0; } }
  .grid-main__list .slides__list {
    padding: 0 !important; }

.grid-main__banner {
  width: 100%;
  padding-right: 20px; }
  @media only screen and (min-width: 960px) {
    .grid-main__banner {
      width: 25%;
      padding-left: 20px;
      padding-right: 0; } }
  .grid-main__banner .banner {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    height: 280px; }
    @media only screen and (min-width: 960px) {
      .grid-main__banner .banner {
        height: 234px; } }
    @media only screen and (min-width: 1200px) {
      .grid-main__banner .banner {
        height: 320px; } }
    .grid-main__banner .banner img {
      width: 100%;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media only screen and (min-width: 960px) {
        .grid-main__banner .banner img {
          width: auto;
          height: 100%; } }

.spacer {
  flex: 1 0 auto; }

.main-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  outline: none;
  color: #fff; }

.main-nav-show {
  overflow: hidden; }
  .main-nav-show .g-wrapper {
    opacity: 0;
    visibility: hidden; }
  .main-nav-show .main-nav {
    opacity: 1;
    visibility: visible; }

.main-nav__center-block {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto; }

.main-nav__bg-wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
  left: 0; }

@media (max-width: 959px) {
  .main-nav__bg-wrapper {
    padding: 0; } }
@media (max-width: 959px) {
  .main-nav__bg-wrapper .main-nav__right {
    display: none; } }
.main-nav__content {
  position: relative;
  display: flex; }

.main-nav__scroller {
  display: flex;
  flex: 1 0;
  overflow: hidden;
  height: 100vh; }

.main-nav__scroller .scroll-content {
  width: 100%; }

.main-nav__bg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100vw;
  background-size: cover;
  background-position: center; }

.main-nav__pan {
  position: relative;
  display: flex;
  flex-direction: column; }

.main-nav__inner {
  position: relative;
  flex: 1 0;
  background-image: url(../i/nav_bg.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: contain; }

.main-nav__left {
  min-width: 100%; }
  .main-nav__left .main-nav__bg {
    right: 0;
    background-color: #001F51;
    width: 100vw; }
  .main-nav__left .main-nav__inner {
    display: flex;
    flex-direction: column;
    min-height: 100vh; }

.main-nav__footer {
  margin-top: 20px;
  text-align: center;
  background-color: #002D74; }
  .main-nav__footer svg {
    height: 90px;
    width: auto;
    max-width: 80%; }

.main-nav__header {
  display: flex;
  align-items: center;
  min-height: 60px;
  text-decoration: none;
  z-index: 99;
  background: rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  padding: 0 20px 0 0px; }
  .main-nav__header a {
    text-decoration: none; }

.main-nav__header-item {
  padding: 5px 7px;
  margin-left: 7px;
  color: #fff;
  font-weight: bold;
  font-size: 19px;
  line-height: 22px; }
  .main-nav__header-item svg path {
    fill: #fff; }

/*
.main-nav__header-right {
	display: none;
	z-index: 20;
	background-color: #fff;
	padding-right: 0px;
	padding-left: 0;
	min-height: 120px;
	margin-left: 40px;
	margin-bottom: 20px;
	border-bottom: 1px $gray solid;

	@include min960 {
		display: flex;
		align-items: center;
	}

	.cities {
		display: none;
		@include min960 {
			display: flex;
		}
		.cities__input {
			right: inherit;
			left: 0;

			.text-input {
				border: 1px $gray solid;
			}
		}
	}
}

@media (max-width: 959px) {
	.main-nav__right {
		height: 0;
		position: static;
	}
	.main-nav__right .main-nav__inner {
		position: static;
	}
}
@media (min-width: 960px) {
	.main-nav__right {
		width: 66.66%;
	}
}
@media (min-width: 1200px) {
	.main-nav__right {
		width: 73%;
	}
}

.main-nav__right .main-nav__bg {
	left: 0;
	background: #fff;
}
*/
.main-nav__nav {
  position: relative; }

@media (max-width: 959px) {
  .main-nav__nav {
    overflow: hidden; } }
.main-nav__nav > ul {
  list-style: none;
  margin: 0;
  padding: 0; }

@media (max-width: 959px) {
  .main-nav__nav > ul {
    margin-top: 20px; } }
.main-nav__nav li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .main-nav__nav li:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background-color: transparent;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: -1; }

.main-nav__nav li.active:before,
.main-nav__nav li:hover:before {
  opacity: 1;
  z-index: 0; }

.main-nav__children-output {
  position: absolute;
  width: 100%;
  left: 100%;
  top: 0; }

@media (min-width: 960px) {
  .main-nav__children-output {
    transition: none;
    display: none; } }
@media (max-width: 959px) {
  .main-nav__children-output-d {
    display: none; } }
.main-nav__children-output-d .main-nav__child-list {
  columns: 2;
  max-width: 650px; }

.main-nav__children-output-d .main-nav__child-list > div {
  break-inside: avoid-column; }

.main-nav__children-output-d .main-nav__to-top-level {
  display: none; }

@media (min-width: 960px) {
  .main-nav__nav.active {
    height: auto !important; }

  .main-nav__nav.active > ul {
    transition: none; } }
@media (max-width: 959px) {
  .main-nav__nav.active > ul {
    transition: transform .2s ease;
    transform: translateX(-100%); }

  .main-nav__nav.active .main-nav__children-output {
    transition: transform .2s ease;
    transform: translateX(-100%); } }
.main-nav__top-level-btn {
  position: relative;
  display: block;
  text-decoration: none;
  text-transform: none;
  color: #fff;
  margin: 0;
  padding: 10px 20px;
  border: none;
  background: transparent;
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  text-align: left;
  -webkit-appearance: none;
  font-family: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  outline: none; }

button.main-nav__top-level-btn {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.41 0L0 1.41L4.58 6L0 10.59L1.41 12L7.41 6L1.41 0Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%; }

.main-nav__top-level-btn .svg-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  margin-top: -10px; }

.main-nav__children {
  display: none; }

.main-nav__desc {
  color: #EB5757;
  font-weight: bold;
  font-size: 17px;
  line-height: 21px;
  margin-bottom: 18px; }

.main-nav__info {
  font-size: 11px;
  line-height: 14px; }
  .main-nav__info p {
    margin-bottom: 12px; }
    .main-nav__info p:last-child {
      margin-bottom: 0; }

.main-nav-close {
  line-height: 1;
  height: 50px;
  width: 50px;
  padding: 15px;
  margin-right: -15px;
  color: inherit;
  background: transparent; }
  .main-nav-close svg {
    width: 14px;
    height: auto; }
    .main-nav-close svg path {
      fill: #fff; }
  .main-nav-close:hover {
    background: transparent; }

.main-nav__to-top-level {
  display: block;
  width: 100%;
  height: 100px;
  text-align: left;
  color: #fff;
  margin: 0;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 25px;
  line-height: 30px;
  padding: 30px 20px 30px 56px;
  overflow: hidden;
  text-overflow: hidden;
  /*white-space: nowrap;*/
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='21' viewBox='0 0 13 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.2265 2.9266L9.9 0.600098L0 10.5001L9.9 20.4001L12.2265 18.0736L4.6695 10.5001L12.2265 2.9266Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 20px 50%; }

.main-nav__menu-item {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 20px;
  position: relative; }

.main-nav__child {
  padding-top: 10px; }

.main-nav__child-nav {
  margin: 0;
  padding: 0;
  list-style: none; }
  .main-nav__child-nav li {
    display: flex; }

.main-nav-header-btn {
  width: 130px;
  height: 40px;
  font-size: 11px;
  background-color: #FFB82F;
  padding: 0 5px;
  line-height: 40px;
  white-space: nowrap;
  display: none; }
  .main-nav-header-btn:hover {
    background-color: #FFB82F; }

.main-nav__site {
  margin: 40px 20px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 17px;
  line-height: 40px; }
  .j-in .main-nav__site {
    display: none; }
  .main-nav__site .main-nav__site-title {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 25px; }
  .main-nav__site a {
    color: #fff;
    text-decoration: none; }

.main-nav__geo {
  position: relative;
  height: 60px; }
  .j-in .main-nav__geo {
    display: none; }
  .main-nav__geo .geo {
    display: block;
    padding: 20px;
    position: absolute;
    width: 100%; }
    .main-nav__geo .geo.geo_show {
      padding: 0; }
      .main-nav__geo .geo.geo_show .geo__title {
        display: none; }
  .main-nav__geo .geo__select {
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    top: inherit;
    left: inherit;
    padding-top: 0; }
    .main-nav__geo .geo__select .geo__input {
      padding-top: 10px;
      height: 60px;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25); }
      .main-nav__geo .geo__select .geo__input input[type="text"] {
        border-radius: 0;
        height: 30px;
        padding-left: 20px; }
    .main-nav__geo .geo__select .geo__close {
      top: 20px;
      right: 22px;
      width: 24px;
      height: 24px;
      text-align: center;
      padding: 5px; }
  .main-nav__geo .geo__list {
    padding-top: 10px; }
  .main-nav__geo .geo__item {
    padding-left: 20px;
    padding-right: 20px; }

.search {
  padding-top: 40px; }
  @media only screen and (min-width: 720px) {
    .search {
      padding-top: 50px; } }

.search__not {
  background-image: url(../i/search_not.png);
  background-repeat: no-repeat;
  background-position: 50%;
  margin-bottom: 30px;
  height: 188px; }

.search__otherwise {
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  line-height: 20px; }
  @media only screen and (min-width: 960px) {
    .search__otherwise {
      font-size: 20px;
      line-height: 23px; } }

.search__in {
  margin: 0 auto;
  padding: 0 20px 30px;
  position: relative;
  max-width: 1600px; }

.search__title {
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
  text-transform: uppercase; }

.search__form {
  position: relative; }
  @media only screen and (min-width: 720px) {
    .search__form {
      padding: 0 20px; } }

.search__form-in {
  background-color: #f2f2f2;
  padding: 0 37px;
  height: 50px;
  width: 100%;
  position: relative; }
  @media only screen and (min-width: 720px) {
    .search__form-in {
      border-radius: 10px;
      height: 34px; } }

.search__form-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px; }

.search__form-clear {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 34px;
  height: 34px;
  text-align: right;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  display: none; }
  .m-notempty .search__form-clear {
    display: flex; }

.search__form-input {
  font-size: 14px;
  line-height: 18px;
  display: block;
  height: 50px;
  width: 100%;
  border: 0;
  outline: none;
  padding: 0;
  background-color: transparent; }
  @media only screen and (min-width: 720px) {
    .search__form-input {
      height: 34px; } }
  .search__form-input:focus {
    border: 0; }
  .search__form-input::placeholder {
    color: #c4c4c4; }

.search__list {
  padding-top: 58px; }

.search__slides {
  padding: 0 20px; }

.search__autocomplete-wrap {
  position: absolute;
  top: 21px;
  left: 0;
  z-index: 99;
  width: 100%; }

.search__autocomplete {
  width: 100%;
  min-height: 500px;
  background-color: #fff;
  box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
  padding: 10px 25px 0;
  overflow: hidden; }

.search__autocomplete-in {
  width: 50%;
  position: relative;
  padding-bottom: 40px; }

.search__autocomplete-row {
  padding-right: 50px; }

.search__autocomplete-category {
  border-radius: 10px;
  padding: 6px 12px;
  display: block;
  text-decoration: none; }
  .m-active .search__autocomplete-category, .search__autocomplete-category:hover {
    color: #fff;
    background-color: #4698E1; }

.search__autocomplete-list {
  position: absolute;
  width: 100%;
  left: 100%;
  top: 0;
  display: none; }
  .m-active .search__autocomplete-list {
    display: block; }

.search__autocomplete-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 20px; }
  .search__autocomplete-item:last-child {
    margin-bottom: 0; }
  .search__autocomplete-item a {
    color: #4698E1; }

.search__autocomplete-item-img {
  margin-right: 10px; }

.hlds {
  margin: 0 auto 50px;
  position: relative;
  max-width: 1600px;
  padding: 0 0 0 20px; }
  @media only screen and (min-width: 960px) {
    .hlds {
      padding: 0 20px; } }
  .hlds .title {
    margin-bottom: 20px; }
    @media only screen and (min-width: 960px) {
      .hlds .title {
        padding: 0;
        margin-bottom: 30px; } }

.hlds__in {
  overflow: hidden;
  position: relative; }
  @media only screen and (min-width: 960px) {
    .hlds__in {
      padding: 0 40px; } }

.hlds__ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 34px;
  height: 34px;
  z-index: 10;
  opacity: .6;
  transition: opacity .2s ease;
  background-color: #f2f2f2;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: none;
  user-select: none; }
  .hlds__ctrl:hover {
    background-color: #FFB82F; }
    .hlds__ctrl:hover svg path {
      fill: #fff; }
  @media only screen and (min-width: 960px) {
    .hlds__ctrl {
      display: flex; } }
  .hlds__ctrl svg {
    max-width: 100%;
    height: auto; }
  .hlds__ctrl:hover {
    opacity: 1; }
  .hlds__ctrl.hlds__ctrl_left {
    left: 0px;
    transform: scale(-1, 1) translateY(-50%); }
  .hlds__ctrl.hlds__ctrl_right {
    right: 0px; }

.hlds__list {
  margin: 0 auto;
  width: 100%;
  overflow: hidden; }
  .hlds__list .owl-item {
    max-width: 125px; }
    @media only screen and (min-width: 960px) {
      .hlds__list .owl-item {
        max-width: inherit; } }

.hlds__item {
  text-align: center;
  width: 125px; }

.hlds__item-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 5px; }
  .hlds__item-icon.m-yellow {
    background-color: #FFB82F; }
  .hlds__item-icon.m-blue {
    background-color: #4698E1; }
  .hlds__item-icon .hlds__item-icon_label {
    position: absolute;
    text-transform: uppercase;
    background-color: #4698E1;
    color: #fff;
    font-size: 9px;
    line-height: 11px;
    border-radius: 7px;
    padding: 3px 7px;
    right: -50%;
    top: 0; }

.hlds__item-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 5px; }

.hlds__item-desc {
  font-size: 12px;
  line-height: 14px; }

.grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%; }

.grid__item {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 auto 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: box-shadow .5s ease;
  padding: 10px;
  width: 163px;
  height: 260px; }
  @media only screen and (min-width: 720px) {
    .grid__item {
      margin-left: inherit;
      margin-right: inherit;
      width: 213px;
      height: 370px; } }
  @media only screen and (min-width: 960px) {
    .grid__item {
      padding: 20px;
      width: 293px; } }
  @media only screen and (min-width: 1200px) {
    .grid__item {
      width: 275px; } }
  .grid__item:hover {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1); }
  .grid__item.m-empty {
    height: 0;
    margin: 0;
    padding: 0; }

.grid__item-img {
  display: inline-block;
  position: relative; }
  .grid__item-img img {
    max-width: 100%;
    height: auto; }

.grid__item-price {
  display: block;
  font-weight: 800;
  font-size: 21px;
  line-height: 20px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 10px; }

.grid__item-price-in {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #919191;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px; }
  .grid__item-price-in span {
    color: #fff;
    font-size: 9px;
    line-height: 9px;
    background: #E88E2E;
    border-radius: 10px;
    display: inline-block;
    margin-left: 10px;
    width: 32px;
    height: 17px;
    text-align: center;
    padding-top: 4px; }

.grid__item-basket {
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 0;
  cursor: pointer;
  z-index: 2; }
  .grid__item-basket svg path {
    fill: #c4c4c4; }

.grid__item-label {
  display: inline-block;
  font-weight: 800;
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  color: #fff;
  background-color: #6C9B3D;
  position: absolute;
  left: 10px;
  top: 20px;
  z-index: 2;
  display: inline-block;
  padding: 5px; }

.grid__item-title {
  display: inline-block;
  font-size: 15px;
  line-height: 16px;
  height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative; }
  .grid__item-title:after {
    content: '';
    display: inline-block;
    width: 78px;
    height: 18px;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    right: 0; }

.cat {
  padding-top: 10px;
  position: relative; }
  .m-cat-filter .cat {
    padding-top: 0; }
  @media only screen and (min-width: 960px) {
    .cat {
      padding-top: 40px; } }

.cat__in {
  padding: 0 20px 100px;
  margin: 0 auto;
  position: relative;
  max-width: 1600px; }
  @media only screen and (min-width: 960px) {
    .cat__in {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap; } }

.cat__content {
  flex: 1; }
  .m-cat-filter .cat__content {
    display: none; }
  @media only screen and (min-width: 960px) {
    .cat__content {
      padding-left: 80px; } }
  .cat__content .breadcrumbs {
    margin-bottom: 15px; }
    @media only screen and (min-width: 960px) {
      .cat__content .breadcrumbs {
        margin-bottom: 25px;
        position: relative;
        left: -5px; } }

.cat__info {
  font-size: 15px;
  line-height: 16px;
  display: none; }
  @media only screen and (min-width: 960px) {
    .cat__info {
      display: inline-block; } }

.cat__info-count {
  padding-right: 23px; }
  .cat__info-count b {
    font-weight: 800;
    display: inline-block; }

.cat__sort {
  font-size: 15px;
  line-height: 16px; }
  .cat__sort b {
    font-weight: 800;
    display: inline-block;
    margin-right: 26px; }

.cat__sort-item {
  border-bottom: 1px #333333 dashed;
  cursor: pointer;
  display: inline-block;
  position: relative;
  margin-right: 26px; }
  .cat__sort-item.m-active {
    color: #4698E1;
    border-bottom-color: #4698E1; }
    .cat__sort-item.m-active.m-up:after {
      content: '';
      display: inline-block;
      background-image: url(htdocs/i/icon_arr_left.svg);
      background-repeat: no-repeat;
      background-position: 50%;
      background-size: cover;
      width: 20px;
      height: 16px;
      position: absolute;
      top: 0px;
      right: -20px; }

.cat__mob-ctrl {
  position: relative;
  height: 52px;
  width: 100%;
  display: block; }
  @media only screen and (min-width: 960px) {
    .cat__mob-ctrl {
      display: none; } }

.cat__mob-ctrl-filter {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer; }

.cat__mob-ctrl-filter-in {
  position: relative; }

.cat__mob-ctrl-filter-count {
  background-color: #EB5757;
  color: #fff;
  width: 16px;
  height: 16px;
  font-weight: 800;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px; }

.cat__mob-sort {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  user-select: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999; }
  .cat__mob-sort.m-open {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    background-color: #fff; }
  @media only screen and (min-width: 960px) {
    .cat__mob-sort {
      display: none; } }

.cat__mob-sort-title {
  height: 32px;
  line-height: 32px;
  cursor: pointer; }
  .cat__mob-sort-title svg {
    display: inline-block;
    padding-left: 10px; }
    .m-open .cat__mob-sort-title svg {
      transform: scale(1, -1); }

.cat__mob-sort-list {
  display: none; }
  .m-open .cat__mob-sort-list {
    display: block; }

.cat__mob-sort-item {
  height: 32px;
  line-height: 32px;
  cursor: pointer; }

.cat__title {
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  margin-bottom: 6px; }
  @media only screen and (min-width: 960px) {
    .cat__title {
      margin-bottom: 10px;
      font-size: 25px;
      line-height: 25px;
      margin-bottom: 18px; } }

.cat__aside {
  padding-top: 10px;
  display: block; }
  .m-cat-filter .cat__aside {
    display: block;
    padding-top: 0; }
  .cat__aside .smart-filter-form {
    display: none; }
    @media only screen and (min-width: 960px) {
      .cat__aside .smart-filter-form {
        display: block; } }
    .cat__aside .smart-filter-form .btn.m-small {
      font-size: 13px;
      line-height: 16px;
      height: 35px;
      text-transform: uppercase;
      border-radius: 10px;
      padding: 0 10px;
      font-weight: 800; }
  .cat__aside .showForm {
    transform: rotate(-180deg); }
  .cat__aside .cat__filter-close {
    cursor: pointer;
    transition-duration: 0.8s;
    transition-property: transform; }
  @media only screen and (min-width: 960px) {
    .cat__aside {
      width: 230px;
      flex: 0 230px;
      display: block; } }

.cat__aside-title {
  font-weight: 800;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 35px;
  display: none; }
  @media only screen and (min-width: 960px) {
    .cat__aside-title {
      display: block; } }

.cat__nav {
  display: none; }
  @media only screen and (min-width: 960px) {
    .cat__nav {
      display: block; } }

.cat__nav-item {
  font-size: 15px;
  line-height: 17px;
  margin-bottom: 25px; }
  .cat__nav-item a {
    text-decoration: none; }
    .cat__nav-item a:hover {
      text-decoration: underline; }
  .cat__nav-item.m-active > a {
    color: #4698E1; }

.cat__nav-item-in {
  padding-left: 20px;
  padding-top: 16px; }
  .cat__nav-item-in div {
    padding-bottom: 16px; }
    .cat__nav-item-in div:last-child {
      padding-bottom: 0; }
    .cat__nav-item-in div a {
      color: #333333; }

.cat__filter-close {
  cursor: pointer; }

.cat__filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
  box-shadow: 25px 0px 25px rgba(0, 0, 0, 0.1);
  height: 75px;
  margin-bottom: 25px;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (min-width: 960px) {
    .cat__filter-title {
      display: none; } }

.cat__filter-title-count {
  background-color: #EB5757;
  color: #fff;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 11px;
  line-height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  position: relative;
  top: -5px; }

.cat__filter-item {
  margin-bottom: 20px; }
  .cat__filter-item.m-show {
    margin-bottom: 38px; }
  .cat__filter-item.m-btn {
    display: none;
    text-align: center; }
    .m-cat-filter .cat__filter-item.m-btn {
      display: block; }
  .cat__filter-item .btn {
    max-width: 335px; }

.cat__filter-item-title {
  font-weight: 800;
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 5px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none; }
  .m-show .cat__filter-item-title svg {
    transform: scale(1, -1); }

.cat__filter-item-section {
  display: none; }
  .m-show .cat__filter-item-section {
    display: block; }

.cat__filter-item-section-item {
  padding-bottom: 14px; }
  .cat__filter-item-section-item:last-child {
    padding-bottom: 0; }
  .cat__filter-item-section-item label {
    font-size: 15px;
    line-height: 16px;
    position: relative;
    padding-left: 30px; }
    .cat__filter-item-section-item label input[type="checkbox"] {
      position: absolute;
      left: 0;
      top: 3px; }
    .cat__filter-item-section-item label span {
      font-size: 15px; }

.cat__filter-item-section-ctrl {
  display: flex;
  padding-top: 10px; }
  .cat__filter-item-section-ctrl .btn.m-small.m-orange {
    margin-left: 5px; }

.cat__filter-range {
  margin-bottom: 28px;
  padding-left: 5px;
  padding-right: 5px; }

.cat__filter-range-form {
  display: flex;
  justify-content: space-between; }

.cat__filter-range-form-item {
  display: inline-block;
  position: relative;
  width: 45%; }
  @media only screen and (min-width: 960px) {
    .cat__filter-range-form-item {
      width: 105px; } }
  .cat__filter-range-form-item .text-placeholder {
    position: absolute;
    z-index: 3;
    color: #c4c4c4;
    left: 10px;
    top: 0px;
    width: 10px;
    height: 40px;
    line-height: 40px; }
    @media only screen and (min-width: 960px) {
      .cat__filter-range-form-item .text-placeholder {
        height: 30px;
        line-height: 30px; } }
  .cat__filter-range-form-item .text-input {
    text-align: right;
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 40px; }
    @media only screen and (min-width: 960px) {
      .cat__filter-range-form-item .text-input {
        padding-top: 6px;
        padding-bottom: 6px;
        height: 30px;
        line-height: 30px; } }

.cat_txt {
  padding-top: 50px;
  font-size: 14px;
  line-height: 20px; }
  .cat_txt h2 {
    font-weight: 800;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 30px;
    text-transform: uppercase; }
    @media only screen and (min-width: 960px) {
      .cat_txt h2 {
        font-weight: 400;
        font-size: 30px;
        line-height: 30px; } }
  .cat_txt p {
    margin-bottom: 30px; }
    .cat_txt p:last-child {
      margin-bottom: 0; }

.passport {
  padding-bottom: 50px; }

.passport__in {
  margin: 0 auto;
  max-width: 1600px; }

.passport__title {
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  padding: 18px 0px 0; }
  @media only screen and (min-width: 960px) {
    .passport__title {
      padding-top: 20px;
      font-size: 25px;
      line-height: 25px; } }

.passport__stata {
  padding-top: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-transform: none;
  display: flex;
  align-items: center; }
  .passport__title .passport__stata {
    display: none; }
    @media only screen and (min-width: 960px) {
      .passport__title .passport__stata {
        display: block; } }
  .passport__row-aside .passport__stata {
    display: block;
    margin-bottom: 40px; }
    @media only screen and (min-width: 960px) {
      .passport__row-aside .passport__stata {
        display: none; } }
  .passport__stata .passport__stata-mark {
    display: inline-block;
    margin: 0 17px 0 20px;
    position: relative;
    top: 2px; }
  .passport__stata .passport__stata-response {
    text-decoration: none;
    border-bottom: 1px dashed #333333;
    cursor: pointer; }

.passport__tags {
  padding: 0;
  margin-bottom: 50px; }
  @media only screen and (min-width: 960px) {
    .passport__tags {
      margin-bottom: 40px; } }
  @media only screen and (min-width: 1200px) {
    .passport__tags {
      margin-bottom: 50px; } }

.passport__tags-title {
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px; }
  @media only screen and (min-width: 960px) {
    .passport__tags-title {
      font-weight: 400;
      font-size: 25px;
      line-height: 25px; } }

.passport__tags-list {
  position: relative;
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .passport__tags-list::-webkit-scrollbar {
    display: none; }
  @media only screen and (min-width: 960px) {
    .passport__tags-list {
      white-space: normal; } }

.passport__tags-list-in {
  padding-left: 20px;
  padding-right: 20px;
  position: relative; }

.passport__tags-item {
  display: inline-block;
  border-radius: 10px;
  color: #fff;
  background-color: #4698E1;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 10px;
  line-height: 23px;
  height: 23px;
  padding: 0px 12px;
  margin-right: 20px; }
  @media only screen and (min-width: 960px) {
    .passport__tags-item {
      margin-bottom: 20px; } }
  .passport__tags-item:last-child {
    margin-right: 20px; }

.passport__slide {
  padding: 0 0 40px; }
  @media only screen and (min-width: 720px) {
    .passport__slide {
      padding: 0 20px 50px; } }

.m-recommend .passport__slide-in .slides__list {
  padding-left: 0; }
@media only screen and (min-width: 960px) {
  .passport__slide-in {
    margin-left: 0; } }

.passport__slide-title {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 38px; }
  @media only screen and (min-width: 720px) {
    .passport__slide-title {
      padding-left: 0;
      padding-right: 0; } }

.passport__row {
  padding: 0 20px;
  margin-bottom: 30px; }
  .passport__row.m-tabs {
    display: block;
    margin-bottom: 20px;
    padding: 0; }
    @media only screen and (min-width: 960px) {
      .passport__row.m-tabs {
        display: none; } }
    .passport__row.m-tabs .tabs {
      margin-left: 0;
      margin-right: 0; }
  .passport__row.m-slide {
    display: block;
    padding: 0; }
    @media only screen and (min-width: 960px) {
      .passport__row.m-slide {
        display: none; } }
  .passport__row.m-info {
    padding: 0 0 0 20px; }
    @media only screen and (min-width: 960px) {
      .passport__row.m-info {
        padding: 0 20px; } }
  @media only screen and (min-width: 960px) {
    .passport__row {
      margin-bottom: 50px; } }
  @media only screen and (min-width: 960px) {
    .passport__row:first-child {
      margin-bottom: 90px; } }
  @media only screen and (min-width: 1200px) {
    .passport__row:first-child {
      margin-bottom: 130px; } }

@media only screen and (min-width: 960px) {
  .passport__row-in {
    display: flex;
    justify-content: start; }
  .passport__row-in--align-baseline{
    align-items: baseline; } }

.passport__row-aside {
  width: 100%;
  background-color: #fff; }
  @media only screen and (min-width: 960px) {
    .passport__row-aside {
      /*width: 250px;*/
      padding-left: 15px; } }
  @media only screen and (min-width: 1200px) {
    .passport__row-aside {
      width: 100%;
      /*padding-left: 97px;*/
      padding-left: 50px; } }
  @media only screen and (min-width: 1600px) {
    .passport__row-aside {
      /*padding-left: 179px;*/
      padding-left: 80px; } }

.passport__row-aside-price {
  font-weight: bold;
  font-size: 35px;
  line-height: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center; }
.passport__row-aside-price-title{
  font-size: 20px;}
  @media only screen and (min-width: 960px) {
    .passport__row-aside-price {
      margin-bottom: 20px; } }
  .passport__row-aside-price span {
    display: inline-block;
    margin-right: 20px; }
  .passport__row-aside-price s {
    font-size: 17px;
    line-height: 30px;
    color: #919191; }

.passport__row-aside-tobask {
  margin-bottom: 50px; }
  @media only screen and (min-width: 960px) {
    .passport__row-aside-tobask {
      margin-bottom: 40px; } }
  .passport__row-aside-tobask .btn {
    width: 335px; }
    @media only screen and (min-width: 960px) {
      .passport__row-aside-tobask .btn {
        width: 250px; } }

.passport__row-aside-btn{
  height: 60px;
}
.passport__row-aside-availability{
  font-weight: bold;
  font-size: 20px;
}
.passport__row-aside-availability--red{
  color:red;
}
.passport__row-aside-availability--green{
  color:green;
}
.passport__row-aside-region {
  font-size: 14px;
  line-height: 16px;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center; }
  .passport__row-aside-region > span {
    display: inline-block; }
  .passport__row-aside .passport__row-aside-region {
    display: none; }
    @media only screen and (min-width: 960px) {
      .passport__row-aside .passport__row-aside-region {
        display: block; } }
    @media only screen and (min-width: 1200px) {
      .passport__row-aside .passport__row-aside-region {
        display: flex;
        flex-direction: row; } }

.passport__row-aside-region-drop {
  display: block;
  padding-left: 10px;
  margin-top: -2px; }
  @media only screen and (min-width: 960px) {
    .passport__row-aside-region-drop {
      margin-top: 20px; } }
  @media only screen and (min-width: 1200px) {
    .passport__row-aside-region-drop {
      margin-top: -2px;
      display: inline-block; } }
  .passport__row-aside-region-drop .geo__title {
    text-transform: uppercase;
    font-weight: 800; }
  .passport__row-aside-region-drop .geo__icon {
    margin-right: 0;
    margin-left: 5px; }

.passport__row-aside-del {
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 20px; }
  .passport__row-aside-del b {
    font-weight: 800; }
  .passport__row-aside-del span {
    display: inline-block; }
  .passport__row-aside-del svg {
    margin-right: 10px; }
  .passport__row-aside .passport__row-aside-del {
    display: none; }
    @media only screen and (min-width: 960px) {
      .passport__row-aside .passport__row-aside-del {
        display: flex; } }

.passport__row-aside .passport__row-aside-logo {
  display: none; }
  @media only screen and (min-width: 960px) {
    .passport__row-aside .passport__row-aside-logo {
      display: flex; } }

.passport__row-pic {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px; }
  @media only screen and (min-width: 960px) {
    .passport__row-pic {
      padding-left: 105px; } }

.passport__pic-aside {
  height: 84px;
  position: absolute;
  top: 220px;
  left: -210px;
  transform: rotate(90deg);
  display: none; }
  @media only screen and (min-width: 960px) {
    .passport__pic-aside {
      display: block; } }

.passport__pic-aside-in {
  position: relative;
  padding-left: 65px;
  padding-right: 65px;
  width: 520px; }

.passport__pic-aside__arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none; }
  .passport__pic-aside__arr svg {
    width: 7px;
    height: auto; }
  .passport__pic-aside__arr:hover {
    background-color: #FFB82F; }
    .passport__pic-aside__arr:hover svg path {
      fill: #fff; }
  .passport__pic-aside__arr.m-prev {
    left: 0;
    transform: scale(-1, 1) translateY(-50%);
    cursor: pointer; }
  .passport__pic-aside__arr.m-next {
    right: 0; }
  .passport__pic-aside__arr.m-disabled {
    cursor: default; }
    .passport__pic-aside__arr.m-disabled svg path {
      fill: #c4c4c4; }
    .passport__pic-aside__arr.m-disabled:hover {
      background-color: #f2f2f2; }
      .passport__pic-aside__arr.m-disabled:hover svg path {
        fill: #c4c4c4; }

.passport__pic-aside-list {
  width: 390px;
  height: 86px;
  overflow: hidden; }

.passport__pic-aside-item {
  width: 84px;
  height: 84px;
  margin: 1px;
  padding: 7px;
  display: inline-block;
  transform: rotate(-90deg);
  cursor: pointer;
  user-select: none;
  border: 2px solid #fff;
  border-radius: 10px; }
  .passport__pic-aside-item.m-active {
    border: 2px solid #FFB82F; }
  .passport__pic-aside-item img {
    width: 70px;
    height: 70px; }

.passport__pic {
  width: 100%; }
  @media only screen and (min-width: 960px) {
    .passport__pic {
      width: 520px; } }

.passport__pic-item {
  overflow: hidden; }
  .passport__pic-item img {
    max-width: 100%;
    height: auto; }

.passport__row-info {
  margin-bottom: 30px; }
  @media only screen and (min-width: 960px) {
    .passport__row-info {
      width: 600px;
      padding-right: 20px; } }

.passport__row-info-item {
  margin-bottom: 40px;
  display: none; }
  .passport__row-info-item[data-tab="3"] {
    margin-bottom: 0; }
  .passport__row-info-item[data-tab="5"] {
    padding-left: 80px; }
  .passport__row-info-item.m-active-tab[data-tab="5"] {
    padding-left: 0; }
  @media only screen and (min-width: 960px) {
    .passport__row-info-item[data-tab="5"] {
      padding-left: 15px; } }
  @media only screen and (min-width: 1200px) {
    .passport__row-info-item[data-tab="5"] {
      padding-left: 50px; } }
  @media only screen and (min-width: 1600px) {
    .passport__row-info-item[data-tab="5"] {
      padding-left: 80px; } }
  @media only screen and (min-width: 960px) {
    .passport__row-info-item {
      display: block; } }
  .passport__row-info-item .title {
    margin-bottom: 20px; }
  .passport__row-info-item.m-hide {
    display: none; }
  .passport__row-info-item.m-active-tab {
    display: block; }
    .passport__row-info-item.m-active-tab .title {
      display: none; }
      @media only screen and (min-width: 960px) {
        .passport__row-info-item.m-active-tab .title {
          display: block; } }

.passport__row-info-body {
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  padding-right: 10px; }

.passport__params {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px; }

.param-item {
  margin-bottom: 8px; }
  .param-item > span {
    overflow-wrap: break-word;
    word-break: break-word;
    display: inline-block;
    vertical-align: bottom;
    width: 47%; }
    .param-item > span:first-child {
      width: 49%;
      color: #333333;
      margin: 0 1.5% 0 0;
      position: relative;
      vertical-align: top; }
      .param-item > span:first-child:after {
        border-bottom: 1px dotted #ccc;
        bottom: 7px;
        content: '';
        display: block;
        height: 20px;
        left: 0;
        position: absolute;
        width: 100%; }
    .param-item > span b {
      background: #fff;
      font-weight: 400;
      padding: 0 10px 0 0;
      position: relative;
      z-index: 1; }

.passport__row-slide {
  flex: 1;
  overflow: hidden; }
  .passport__row-slide .title {
    margin-bottom: 20px; }
  .m-slide .passport__row-slide {
    padding-left: 20px; }
    @media only screen and (min-width: 960px) {
      .m-slide .passport__row-slide {
        padding-left: 0; } }

.passport__resp {
  padding: 0 20px; }

.passport__row-aside-personal {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 35px 30px;
  position: relative;
  min-width: 335px;
  margin-top: -10px;
  margin-bottom: 50px; }
  @media only screen and (min-width: 960px) {
    .passport__row-aside-personal {
      padding: 40px 35px;
      margin-top: 30px; } }
  @media only screen and (min-width: 1200px) {
    .passport__row-aside-personal {
      max-width: 335px; } }

.passport__row-aside-personal-title {
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 25px;
  font-size: 21px;
  line-height: 22px; }

.passport__row-aside-personal-form-row {
  margin-bottom: 30px; }
  .passport__row-aside-personal-form-row:last-child {
    margin-bottom: 0; }
  .passport__row-aside-personal-form-row.m-btn {
    text-align: center; }
    @media only screen and (min-width: 960px) {
      .passport__row-aside-personal-form-row.m-btn {
        text-align: center; } }
  .passport__row-aside-personal-form-row .btn {
    height: 40px;
    line-height: 40px; }
    @media only screen and (min-width: 960px) {
      .passport__row-aside-personal-form-row .btn {
        height: 30px;
        line-height: 30px; } }

.response {
  max-width: 1120px;
  margin-bottom: 50px; }
  @media only screen and (min-width: 960px) {
    .response {
      margin-bottom: 100px; } }

.response__in {
  position: relative; }
  @media only screen and (min-width: 960px) {
    .response__in {
      padding-bottom: 0; } }
  .m-show-form .response__in {
    padding-bottom: 430px; }
    @media only screen and (min-width: 960px) {
      .m-show-form .response__in {
        padding-bottom: 0; } }
  .m-response .response__in {
    padding-top: 50px; }

.response__title {
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative; }
  @media only screen and (min-width: 960px) {
    .response__title {
      font-weight: 400;
      font-size: 25px;
      line-height: 25px; } }
  .response__title .btn {
    height: 30px;
    line-height: 30px;
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99; }
    @media only screen and (min-width: 960px) {
      .response__title .btn {
        display: inline-block; } }
    .m-show-form .response__title .btn {
      display: none; }

.response__form {
  padding-bottom: 80px;
  max-width: 620px;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  display: none; }
  .m-show-form .response__form {
    display: block; }
  @media only screen and (min-width: 960px) {
    .response__form {
      position: relative;
      left: inherit;
      right: inherit;
      bottom: inherit; } }
  .response__form .text-area {
    min-height: 100px; }

.response__form-title {
  font-weight: 800;
  margin-right: 20px;
  padding-bottom: 8px; }

.response__form-mark {
  display: flex;
  align-items: center;
  margin-bottom: 30px; }
  @media screen and (max-width: 576px) {
    .response__form-mark{
      justify-content: center;
      flex-wrap: wrap;
    }
    span.response__form-title{
      margin: 20px 40px;
    }
  }
  .response__form-mark .response__form-title {
    padding-bottom: 0; }
  .response__form-mark div.mark-stars {
    display: inline-block; }
    .response__form-mark div.mark-stars i {
      display: inline-block;
      width: 30px;
      height: 30px;
      background-image: url(../i/stars.svg);
      background-repeat: no-repeat;
      background-position: -150px 0;
      margin-right: 10px;
      cursor: pointer; }
      .response__form-mark div.mark-stars i:last-child {
        margin-right: 0; }
      .response__form-mark div.mark-stars i.m-active {
        background-position: 0px 0; }

.response__form-desc {
  padding-top: 7px;
  font-size: 11px;
  line-height: 13px; }

.response__form-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 27px; }
  .response__form-btn .btn {
    min-width: 100%;
    height: 40px;
    line-height: 30px; }
.response__comment {
  margin-bottom: 44px; }
  .response__comment:last-child {
    margin-bottom: 0; }
  .response__comment:nth-child(2n) .response__comment-avatar {
    background-color: #83DCB7; }
  .response__comment:nth-child(3n) .response__comment-avatar {
    background-color: #DCD383; }
  .response__comment:nth-child(4n) .response__comment-avatar {
    background-color: #DC8883; }
  .response__comment:nth-child(5n) .response__comment-avatar {
    background-color: #DC83C3; }

.response__comment-header {
  vertical-align: top; }

.response__comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #DC83C3;
  color: #fff;
  font-weight: 800;
  font-size: 35px;
  line-height: 25px;
  text-align: center;
  padding-top: 16px;
  display: inline-block;
  vertical-align: top; }

.response__comment-info {
  margin-left: 20px;
  display: inline-block;
  vertical-align: top; }

.response__comment-info-in {
  display: block;
  white-space: nowrap; }
  @media only screen and (min-width: 960px) {
    .response__comment-info-in {
      white-space: normal; } }

.response__comment-author {
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  margin-right: 20px; }

.response__comment-date {
  display: inline-block;
  font-size: 14px;
  line-height: 25px; }

.response__comment-body {
  font-size: 14px;
  line-height: 25px;
  padding-top: 12px; }
  .response__comment-body p {
    margin-bottom: 10px; }
    .response__comment-body p:last-child {
      margin-bottom: 45px; }

.response__comment-mark {
  padding-top: 5px; }

.mark-in {
  background-image: url(../i/starmark.svg);
  background-repeat: no-repeat;
  background-position: -100px center;
  height: 15px;
  width: 100px;
  font-size: 0; }
  .mark-in.m-0 {
    background-position-x: -100px; }
  .mark-in.m-1 {
    background-position-x: -80px; }
  .mark-in.m-2 {
    background-position-x: -60px; }
  .mark-in.m-3 {
    background-position-x: -40px; }
  .mark-in.m-4 {
    background-position-x: -20px; }
  .mark-in.m-5 {
    background-position-x: 0; }

.response__btn-wrap {
  display: block;
  padding-top: 40px; }
  .m-show-form .response__btn-wrap {
    display: none; }
  .response__btn-wrap .btn {
    width: 335px;
    margin: 0 auto; }
  @media only screen and (min-width: 720px) {
    .response__btn-wrap {
      text-align: center;
      padding-top: 50px;
      text-align: left; } }
  @media only screen and (min-width: 960px) {
    .response__btn-wrap {
      display: none; } }

.footer {
  color: #333;
  background-color: #f2f2f2;
  text-align: center;
  padding: 48px 20px; }
  @media only screen and (min-width: 960px) {
    .footer {
      text-align: left;
      padding: 40px 20px; } }
  .footer .btn {
    font-size: 14px;
    white-space: nowrap;
    display: inline-block;
    margin-top: 22px; }
    @media only screen and (min-width: 960px) {
      .footer .btn {
        font-size: 10px;
        height: 24px;
        line-height: 25px;
        margin-top: 12px; } }
    @media only screen and (min-width: 1600px) {
      .footer .btn {
        margin-top: 0;
        margin-left: 17px; } }

.footer__in {
  margin: 0 auto;
  max-width: 1560px; }
  @media only screen and (min-width: 960px) {
    .footer__in {
      display: flex;
      flex-wrap: nowrap; } }

.footer__logo {
  display: inline-block;
  margin-bottom: 33px; }
  @media only screen and (min-width: 960px) {
    .footer__logo {
      display: none; } }

.footer__title {
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 18px;
  display: none; }
  @media only screen and (min-width: 960px) {
    .footer__title {
      display: block; } }

.footer__links {
  display: none;
  width: 240px; }
  @media only screen and (min-width: 960px) {
    .footer__links {
      display: block; } }

.footer__links-item {
  margin-bottom: 7px; }
  .footer__links-item:last-child {
    margin-bottom: 0; }
  .footer__links-item a {
    text-decoration: none; }

.footer__contacts {
  width: 100%;
  margin-bottom: 46px; }
  @media only screen and (min-width: 960px) {
    .footer__contacts {
      width: 160px; } }
  @media only screen and (min-width: 1600px) {
    .footer__contacts {
      width: 300px; } }

.footer__phone {
  font-size: 25px;
  line-height: 29px;
  text-decoration: none;
  font-weight: 800; }
  @media only screen and (min-width: 960px) {
    .footer__phone {
      font-size: 20px;
      line-height: 23px; } }
  .footer__phone a {
    text-decoration: none;
    display: block; }
    @media only screen and (min-width: 1600px) {
      .footer__phone a {
        display: inline-block; } }
  .footer__phone .m-small {
    font-size: 12px;
    line-height: 18px;
    display: block;
    font-weight: 400; }
  .footer__phone p {
    margin-bottom: 20px; }
  @media only screen and (min-width: 1600px) {
    .footer__phone {
      width: 310px; } }

.footer__addr {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px; }
  .footer__addr span {
    display: block; }

@media only screen and (min-width: 960px) {
  .footer__pay {
    width: 500px;
    margin-left: 83px; } }
@media only screen and (min-width: 1200px) {
  .footer__pay {
    width: auto;
    margin-left: 143px; } }
@media only screen and (min-width: 960px) {
  .footer__pay .footer__title {
    width: 400px; } }
@media only screen and (min-width: 1200px) {
  .footer__pay .footer__title {
    width: 100%; } }

.footer__pay-list {
  width: 300px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto; }
  @media only screen and (min-width: 960px) {
    .footer__pay-list {
      margin-left: inherit;
      margin-right: inherit; } }
  @media only screen and (min-width: 1200px) {
    .footer__pay-list {
      float: left;
      margin-right: 50px; } }
  @media only screen and (min-width: 1320px) {
    .footer__pay-list {
      margin-right: 90px; } }

.footer__pay-item {
  display: inline-block;
  margin-right: 15px; }
  .footer__pay-item svg {
    height: 20px;
    width: auto; }
    @media only screen and (min-width: 960px) {
      .footer__pay-item svg {
        height: 28px; } }
  .footer__pay-item:last-child {
    margin-right: 0; }
  .footer__pay-item.m-mastercard svg {
    position: relative;
    height: 26px;
    top: 5px; }
    @media only screen and (min-width: 960px) {
      .footer__pay-item.m-mastercard svg {
        height: 34px;
        top: 7px; } }

.footer__copy {
  overflow: hidden; }

.footer__copy-text {
  font-size: 12px;
  line-height: 25px; }
  .footer__copy-text a {
    text-decoration: underline; }
  @media only screen and (min-width: 960px) {
    .footer__copy-text {
      line-height: 18px; } }

.footer__copy-social {
  padding-top: 37px; }

.footer__copy-social-item {
  display: inline-block;
  margin-right: 30px;
  text-decoration: none; }
  @media only screen and (min-width: 960px) {
    .footer__copy-social-item {
      margin-right: 20px; } }
  .footer__copy-social-item:last-child {
    margin-right: 0; }
  .footer__copy-social-item.m-vk svg, .footer__copy-social-item.m-im svg {
    width: 32px;
    height: auto; }
    @media only screen and (min-width: 960px) {
      .footer__copy-social-item.m-vk svg, .footer__copy-social-item.m-im svg {
        width: 20px; } }
  .footer__copy-social-item.m-fb svg {
    width: 16px;
    height: auto; }
    @media only screen and (min-width: 960px) {
      .footer__copy-social-item.m-fb svg {
        width: 10px; } }

.news {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  padding: 18px 20px 0; }
  .m-news-article .news {
    padding: 0; }
    @media only screen and (min-width: 960px) {
      .m-news-article .news {
        padding: 18px 20px 0; } }

.news__in {
  position: relative;
  vertical-align: top;
  padding-top: 20px; }
  .m-news-article .news__in {
    padding-top: 0; }
    @media only screen and (min-width: 960px) {
      .m-news-article .news__in {
        padding-top: 20px; } }

.news__content {
  width: 100%; }
  @media only screen and (min-width: 960px) {
    .news__content {
      width: 80%;
      display: inline-block;
      vertical-align: top; } }

.news__aside {
  margin-bottom: 30px; }
  @media only screen and (min-width: 960px) {
    .news__aside {
      display: inline-block;
      width: 19%;
      padding-right: 16px; } }
  .m-news-article .news__aside {
    display: none; }
    @media only screen and (min-width: 960px) {
      .m-news-article .news__aside {
        display: inline-block; } }

.news__list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%; }

.news__item {
  width: 100%;
  padding-bottom: 20px; }
  @media only screen and (min-width: 720px) {
    .news__item {
      width: 50%;
      padding-left: 20px; }
      .news__item:nth-child(2n) {
        padding-left: 10px;
        padding-right: 0; }
      .news__item:nth-child(2n+1) {
        padding-right: 10px;
        padding-left: 0; } }
  @media only screen and (min-width: 960px) {
    .news__item {
      width: 33%;
      padding-left: 20px !important;
      padding-right: 0 !important; } }
  @media only screen and (min-width: 1600px) {
    .news__item {
      width: 25%; } }

.news__item-in {
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: box-shadow .5s ease;
  width: 100%; }
  .news__item-in img {
    width: 100%;
    height: 100%; }
  .news__item-in:hover {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1); }

.news__item-body {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 30px 20px;
  display: block;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%); }

.news__item-date {
  font-size: 14px;
  line-height: 25px;
  display: block;
  color: #fff; }

.news__item-title {
  display: block;
  font-size: 25px;
  line-height: 25px;
  text-transform: uppercase;
  color: #fff; }

.news__aside-title {
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 20px;
  user-select: none; }
  .news__aside-title svg {
    display: inline-block; }
    .m-open .news__aside-title svg {
      transform: scale(1, -1); }
  @media only screen and (min-width: 960px) {
    .news__aside-title {
      font-size: 25px;
      line-height: 25px;
      margin-bottom: 25px;
      cursor: default; }
      .news__aside-title svg {
        display: none; } }

.news__aside-list {
  display: none; }
  .m-open .news__aside-list {
    display: block; }
  @media only screen and (min-width: 960px) {
    .news__aside-list {
      display: block; } }

.news__aside-item {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 40px;
  font-weight: 800; }
  @media only screen and (min-width: 960px) {
    .news__aside-item.m-active a {
      color: #fff;
      background: #4698E1;
      border-radius: 10px;
      padding: 4px 10px; } }
  .news__aside-item a {
    text-decoration: none; }
    .news__aside-item a:hover {
      text-decoration: underline; }

.news__article {
  padding-bottom: 50px; }
  @media only screen and (min-width: 720px) {
    .news__article {
      padding-bottom: 100px; } }

.news__article-caption {
  position: relative;
  margin-bottom: 30px;
  height: 500px;
  overflow: hidden; }
  @media only screen and (min-width: 960px) {
    .news__article-caption {
      border-radius: 10px;
      height: 350px; } }
  @media only screen and (min-width: 1200px) {
    .news__article-caption {
      margin-bottom: 40px; } }
  .news__article-caption img {
    height: 100%;
    width: auto;
    min-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .news__article-caption:after {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 164px;
    width: 100%; }

.news__article-title {
  font-size: 25px;
  line-height: 25px;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 20px;
  z-index: 2; }

.news__article-date {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 15px; }

.news__article-body {
  font-size: 17px;
  line-height: 30px;
  color: #333333;
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (min-width: 960px) {
    .news__article-body {
      padding-left: 0px;
      padding-right: 0px; } }
  .news__article-body a {
    color: #4698E1; }
  .news__article-body ul {
    padding-left: 10px;
    margin-bottom: 50px; }
    .news__article-body ul:last-child {
      margin-bottom: 0; }
  .news__article-body p {
    margin-bottom: 40px; }
    @media only screen and (min-width: 960px) {
      .news__article-body p {
        margin-bottom: 50px; } }
    .news__article-body p:last-child {
      margin-bottom: 0; }
  .news__article-body .h2 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 50px; }

.news__article-back {
  text-align: center;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (min-width: 720px) {
    .news__article-back {
      padding-top: 50px;
      text-align: left; } }
  @media only screen and (min-width: 960px) {
    .news__article-back {
      padding-top: 40px;
      padding-left: 0px;
      padding-right: 0px; } }
  .news__article-back .btn {
    margin: 0 auto;
    width: 100%; }
    @media only screen and (min-width: 720px) {
      .news__article-back .btn {
        width: 335px; } }
    @media only screen and (min-width: 960px) {
      .news__article-back .btn {
        width: auto; } }

.about__info {
  background-image: url(../i/about_bg.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 auto;
  width: 100%;
  min-height: 526px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column; }
  @media only screen and (min-width: 720px) {
    .about__info {
      min-height: 200px;
      flex-direction: row; } }
  @media only screen and (min-width: 1200px) {
    .about__info {
      min-height: 250px; } }

.about__info-item {
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  line-height: 23px;
  width: 100%; }
  @media only screen and (min-width: 720px) {
    .about__info-item {
      width: 33%;
      max-width: 210px;
      min-height: 150px;
      display: block; } }
  @media only screen and (min-width: 1200px) {
    .about__info-item {
      max-width: 380px;
      min-height: 180px; } }
  .about__info-item > span {
    display: inline-block; }
    .about__info-item > span:nth-child(1) {
      font-weight: 800;
      font-size: 70px;
      line-height: 82px;
      margin-bottom: 10px;
      display: block; }
      @media only screen and (min-width: 1200px) {
        .about__info-item > span:nth-child(1) {
          font-size: 100px;
          line-height: 117px;
          margin-bottom: 20px; } }
    @media only screen and (min-width: 1200px) {
      .about__info-item > span:nth-child(2) {
        font-size: 30px;
        line-height: 35px; } }

.adv {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px; }

.adv__item {
  width: 50%;
  padding: 10px; }
  @media only screen and (min-width: 720px) {
    .adv__item {
      width: 25%; } }
  @media only screen and (min-width: 960px) {
    .adv__item {
      width: 50%; } }
  @media only screen and (min-width: 1200px) {
    .adv__item {
      width: 25%; } }

.adv__item-in {
  border-radius: 10px;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  text-align: center; }
  @media only screen and (min-width: 720px) {
    .adv__item-in {
      height: 404px; } }
  @media only screen and (min-width: 960px) {
    .adv__item-in {
      padding-top: 42px;
      padding-left: 32px;
      padding-right: 32px;
      height: 444px;
      box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1); } }
  @media only screen and (min-width: 1600px) {
    .adv__item-in {
      padding-top: 52px; } }

.adv__item-img {
  display: block;
  margin: 0 auto;
  width: 101px;
  height: 116px;
  margin-bottom: 15px; }
  @media only screen and (min-width: 960px) {
    .adv__item-img {
      width: 164px;
      height: 188px;
      margin-bottom: 50px; } }
  @media only screen and (min-width: 1200px) {
    .adv__item-img {
      margin-bottom: 30px; } }
  .adv__item-img svg {
    max-width: 100%;
    height: auto; }

.adv__item-title {
  display: block;
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 10px; }
  @media only screen and (min-width: 960px) {
    .adv__item-title {
      font-size: 30px;
      line-height: 30px;
      margin-bottom: 25px; } }

.adv__item-desc {
  font-size: 11px;
  line-height: 14px; }
  @media only screen and (min-width: 960px) {
    .adv__item-desc {
      font-size: 17px;
      line-height: 20px; } }
  .adv__item-desc a {
    color: #4698E1; }

.about__subscribe {
  display: inline-block;
  font-size: 11px;
  line-height: 16px;
  vertical-align: top; }

.about__subscribe-item {
  vertical-align: top;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
  width: 290px; }
  @media only screen and (min-width: 960px) {
    .about__subscribe-item {
      margin-right: 44px;
      width: 290px; } }
  .about__subscribe-item svg {
    max-width: 100%; }
  .about__subscribe-item .btn {
    width: 263px;
    margin-top: 10px; }
  .about__subscribe-item.m-email svg {
    max-width: 80%; }
    @media only screen and (min-width: 960px) {
      .about__subscribe-item.m-email svg {
        max-width: 100%; } }
  .about__subscribe-item.m-btn {
    text-align: center; }
    @media only screen and (min-width: 960px) {
      .about__subscribe-item.m-btn {
        text-align: left; } }

.about__slider {
  position: relative; }
  @media only screen and (min-width: 960px) {
    .about__slider {
      padding-left: 75px;
      padding-right: 75px; } }

.about__slider-list {
  overflow: hidden; }

.about__slider-arr {
  border-radius: 50%;
  background-color: #f2f2f2;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  transform: scale(1, 1) translateY(-50%);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  user-select: none; }
  .about__slider-arr:hover {
    background-color: #FFB82F; }
    .about__slider-arr:hover svg path {
      fill: #fff; }
  @media only screen and (min-width: 960px) {
    .about__slider-arr {
      display: flex; } }
  .about__slider-arr.about__slider-arr_left {
    left: 0;
    transform: scale(-1, 1) translateY(-50%); }
  .about__slider-arr.about__slider-arr_right {
    right: 0; }
  .about__slider-arr.m-disabled {
    opacity: .5;
    cursor: default; }
    .about__slider-arr.m-disabled svg path {
      fill: #c4c4c4; }
    .about__slider-arr.m-disabled:hover {
      background-color: #f2f2f2; }
      .about__slider-arr.m-disabled:hover svg path {
        fill: #c4c4c4; }

.about__slider-item {
  width: 250px;
  padding: 25px;
  text-align: center; }
  @media only screen and (min-width: 960px) {
    .about__slider-item {
      width: 290px; } }

.about__slider-item-img {
  margin-bottom: 25px;
  border: 10px #fff solid;
  border-radius: 50%;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden; }
  .about__slider-item-img img {
    width: 100%; }

.about__slider-item-name {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 21px;
  line-height: 25px;
  margin-bottom: 10px; }

.about__slider-item-desc {
  font-size: 17px;
  line-height: 20px; }

.order .tabs__in {
  padding: 0 0 0 10px; }
  @media only screen and (min-width: 960px) {
    .order .tabs__in {
      padding-left: 0; } }
.order .tabs__list {
  justify-content: start; }
@media only screen and (min-width: 960px) {
  .order .tabs__item {
    min-width: 30%; } }

.order__in {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }

.order__list {
  width: 100%; }
  @media only screen and (min-width: 960px) {
    .order__list {
      width: 70%;
      padding-right: 40px; } }

.order__item {
  position: relative;
  padding: 40px 0;
  border-bottom: 1px #f2f2f2 solid; }
  .order__item:first-child {
    padding-top: 0; }

.order__item-in {
  position: relative;
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (min-width: 960px) {
    .order__item-in {
      display: block;
      min-height: 150px; } }

.order__item-title {
  width: 100%;
  font-weight: 800;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  padding-right: 40px;
  margin-bottom: 15px; }
  @media only screen and (min-width: 960px) {
    .order__item-title {
      padding-left: 173px;
      margin-top: 12px;
      margin-bottom: 23px; } }

.order__item-img {
  width: 150px;
  height: 150px; }
  .order__item-img img {
    width: 100%;
    height: auto; }
  @media only screen and (min-width: 960px) {
    .order__item-img {
      position: absolute;
      left: 0;
      top: 0; } }

.order__item-info {
  padding-left: 23px; }
  @media only screen and (min-width: 960px) {
    .order__item-info {
      padding-left: 173px; } }

.order__item-id {
  font-size: 12px;
  line-height: 16px;
  padding-bottom: 12px; }
  @media only screen and (min-width: 960px) {
    .order__item-id {
      padding-bottom: 17px; } }

@media only screen and (min-width: 960px) {
  .order__item-price-wrap {
    display: flex;
    align-items: center;
    position: relative; } }

.order__item-price {
  font-weight: 800;
  font-size: 21px;
  line-height: 30px; }
  @media only screen and (min-width: 960px) {
    .order__item-price {
      right: 40px;
      position: absolute;
      display: flex;
      justify-content: space-between;
      width: 220px;
      white-space: nowrap; } }
  @media only screen and (min-width: 1200px) {
    .order__item-price {
      right: 70px;
      width: 272px; } }
  .order__item-price .m-sale {
    white-space: nowrap; }
  .order__item-price s {
    font-weight: bold;
    font-size: 17px;
    line-height: 30px;
    color: #919191;
    white-space: nowrap; }
  .order__item-price .m-price {
    position: relative;
    display: block;
    padding-top: 10px; }
    .order__item-price .m-price .m-price-count {
      font-weight: normal;
      font-size: 12px;
      line-height: 16px;
      position: absolute;
      right: 0;
      top: -20px;
      display: none; }
      @media only screen and (min-width: 960px) {
        .order__item-price .m-price .m-price-count {
          display: inline-block; } }
    @media only screen and (min-width: 960px) {
      .order__item-price .m-price {
        display: inline-block;
        padding-top: 0; } }
  .order__item-price .m-discount {
    color: #fff;
    font-size: 9px;
    line-height: 9px;
    background: #E88E2E;
    border-radius: 10px;
    display: inline-block;
    margin-right: 11px;
    width: 32px;
    height: 17px;
    text-align: center;
    padding-top: 4px;
    white-space: nowrap;
    vertical-align: middle; }

.order__item-ctrl {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (min-width: 960px) {
    .order__item-ctrl {
      padding-top: 0;
      width: auto; } }
  .order__item-ctrl input {
    border: none;
    display: inline-block;
    width: 30px;
    height: 40px;
    text-align: center;
    margin: 0 15px;
    font-size: 14px;
    line-height: 20px; }
    .order__item-ctrl input:focus {
      outline: none; }
  .order__item-ctrl .order__item-ctrl_item {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: #000;
    background-color: #f2f2f2;
    border-radius: 50%;
    text-align: center;
    padding-top: 10px;
    font-weight: 800;
    font-size: 17px;
    line-height: 20px;
    cursor: pointer;
    border: none; }
    .order__item-ctrl .order__item-ctrl_item[data-count="0"] {
      color: #c4c4c4; }

.order__item-close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  padding: 3px;
  width: 20px;
  height: 20px; }
  .order__item-close svg {
    width: 14px;
    height: 14px;
    transition: transform 0.1s ease; }
  .order__item-close:hover svg {
    transform: rotate(90deg); }
  @media only screen and (min-width: 960px) {
    .order__item-close {
      top: 50%;
      transform: translateY(-50%); } }

.order__calc-wrap {
  position: relative;
  width: 100%;
  padding-top: 40px; }
  @media only screen and (min-width: 960px) {
    .order__calc-wrap {
      width: 30%;
      padding-top: 0; } }

.order__calc {
  position: sticky;
  top: 15px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1); }

.order__calc-in {
  border-radius: 10px;
  overflow: hidden; }

.order__calc-head {
  background-color: #f2f2f2;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center; }

.order__calc-title {
  position: relative;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center; }
  .order__calc-title .tooltip {
    margin-right: 10px; }

.order__calc-body {
  padding-top: 50px;
  padding-bottom: 30px;
  font-size: 14px;
  line-height: 21px; }
  @media only screen and (min-width: 960px) {
    .order__calc-body {
      padding-top: 30px; } }

.order__calc-row {
  margin-bottom: 30px; }
  .order__calc-row:last-child {
    margin-bottom: 0; }
  .order__calc-row.m-summ {
    font-weight: 800;
    font-size: 30px;
    line-height: 21px; }
    .order__calc-row.m-summ s {
      margin-bottom: 20px;
      display: block;
      color: #c4c4c4; }
    .order__calc-row.m-summ .order__summ {
      display: block; }
  .order__calc-row.m-code input {
    width: 150px;
    height: 30px;
    line-height: 30px;
    text-transform: normal; }
  .order__calc-row.m-courier, .order__calc-row.m-discount {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f2f2f2;
    padding: 12px 20px; }
    .order__calc-row.m-courier span, .order__calc-row.m-discount span {
      display: inline-block; }
    .order__calc-row.m-courier .m-check, .order__calc-row.m-discount .m-check {
      background-color: #AADA7B;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px; }
    .order__calc-row.m-courier .m-delivery, .order__calc-row.m-discount .m-delivery {
      width: 20px;
      height: 20px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px; }
      .order__calc-row.m-courier .m-delivery svg, .order__calc-row.m-discount .m-delivery svg {
        width: 20px;
        height: 20px; }
        .order__calc-row.m-courier .m-delivery svg path, .order__calc-row.m-discount .m-delivery svg path {
          fill: #333333; }
    .order__calc-row.m-courier .btn, .order__calc-row.m-discount .btn {
      font-size: 9px;
      height: 16px;
      line-height: 16px;
      background-color: #EB5757;
      padding-left: 7px;
      padding-right: 7px; }
  .order__calc-row.m-btn .btn {
    width: 275px; }
    @media only screen and (min-width: 960px) {
      .order__calc-row.m-btn .btn {
        width: 250px; } }

.order__calc-footer {
  position: relative;
  padding: 22px 30px 30px;
  font-size: 11px;
  line-height: 13px; }
  .order__calc-footer:before {
    content: '';
    display: inline-block;
    background-color: #f2f2f2;
    height: 1px;
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px; }
  .order__calc-footer .order__calc-footer-icon {
    margin-bottom: 30px; }
    .order__calc-footer .order__calc-footer-icon svg {
      width: auto;
      height: 17px;
      margin: 0 6px; }
    .order__calc-footer .order__calc-footer-icon span:nth-child(1) svg {
      position: relative;
      top: 6px;
      height: 25px;
      width: auto; }

.order__delivery {
  width: 100%; }
  @media only screen and (min-width: 960px) {
    .order__delivery {
      width: 70%;
      padding-right: 40px; } }

.order__delivery-row {
  margin-bottom: 30px; }
  .order__delivery-row:last-child {
    margin-bottom: 0; }
  .order__delivery-row .m-region {
    font-size: 14px;
    line-height: 16px; }
  .order__delivery-row.m-pay, .order__delivery-row.m-delivery {
    margin-bottom: 50px; }
  .order__delivery-row .geo {
    top: -1px; }
  .order__delivery-row .geo__title {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    line-height: 20px; }

.order__delivery-del-item {
  display: none; }
  .order__delivery-del-item.m-active-tab {
    display: block; }

.order__delivery-del-line {
  position: relative;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 15px; }
  .order__delivery-del-line:last-child {
    margin-bottom: 0; }
  .order__delivery-del-line .tooltip {
    margin-right: 10px; }
  .order__delivery-del-line.m-postmat {
    padding-left: 28px; }
    .order__delivery-del-line.m-postmat:before {
      content: '';
      background-image: url(../i/icon_postmat.svg);
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: contain;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%); }
  .order__delivery-del-line.m-btn .btn {
    font-size: 10px;
    height: 24px;
    line-height: 24px; }
  .order__delivery-del-line small {
    font-size: 12px;
    line-height: 16px; }

.order__delivery-pay-wrap {
  overflow: hidden;
  margin-right: -20px;
  margin-left: -20px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #f2f2f2; }
  @media only screen and (min-width: 960px) {
    .order__delivery-pay-wrap {
      background-color: #fff;
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      margin-right: 0; } }

.order__delivery-pay {
  white-space: nowrap;
  text-transform: uppercase;
  background-color: #f2f2f2; }
  @media only screen and (min-width: 960px) {
    .order__delivery-pay {
      background-color: #fff;
      display: flex;
      justify-content: start; } }

.order__delivery-pay-item {
  font-weight: 800;
  font-size: 17px;
  line-height: 20px;
  display: inline-block;
  padding: 10px;
  color: #c4c4c4;
  cursor: pointer;
  user-select: none; }
  .order__delivery-pay-item input {
    display: none; }
  .order__delivery-pay-item.m-active {
    color: #000; }
  @media only screen and (min-width: 960px) {
    .order__delivery-pay-item {
      font-size: 14px;
      line-height: 20px;
      color: #000;
      background-color: #f2f2f2;
      border-right: 1px #fff solid;
      min-width: 250px;
      text-align: center; }
      .order__delivery-pay-item.m-active {
        background-color: #4698E1;
        color: #fff; } }
  .order__delivery-pay-item:first-child {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px; }
  .order__delivery-pay-item:last-child {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px; }

.order__delivery-form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 620px; }
  @media only screen and (min-width: 960px) {
    .order__delivery-form-row.m-half .order__delivery-form-item {
      display: inline-block;
      width: 49%; } }
  .order__delivery-form-row.m-w100 {
    justify-content: start; }
    @media only screen and (min-width: 960px) {
      .order__delivery-form-row.m-w100 .order__delivery-form-item {
        display: inline-block;
        width: 100px;
        margin-right: 20px; } }
  .order__delivery-form-row.m-check {
    padding-top: 10px; }

.order__delivery-form-item {
  width: 100%;
  margin-bottom: 20px; }
  .order__delivery-form-item label {
    font-size: 13px;
    line-height: 18px; }
    .order__delivery-form-item label a {
      color: #4698E1; }

.order__slide .slides__list {
  padding: 0; }

.registration {
  padding-top: 20px; }

.registration__list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  flex-direction: row; }

.registration__item {
  padding-bottom: 20px; }
  .registration__item:nth-child(1) {
    width: 100%; }
    @media only screen and (min-width: 1200px) {
      .registration__item:nth-child(1) {
        flex: 1; } }
  .registration__item:nth-child(2) {
    width: 100%; }
    @media only screen and (min-width: 960px) {
      .registration__item:nth-child(2) {
        width: 50%;
        padding-right: 10px; } }
    @media only screen and (min-width: 1200px) {
      .registration__item:nth-child(2) {
        width: 355px;
        padding-right: 0;
        padding-left: 20px; } }
  .registration__item:nth-child(3) {
    width: 100%; }
    @media only screen and (min-width: 960px) {
      .registration__item:nth-child(3) {
        padding-left: 10px;
        width: 50%; } }
    @media only screen and (min-width: 1200px) {
      .registration__item:nth-child(3) {
        padding-left: 20px;
        width: 355px; } }

.registration__item-in {
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 35px 40px; }
  @media only screen and (min-width: 960px) {
    .registration__item-in {
      min-height: 335px; } }

.registration__item-title {
  font-weight: 800;
  font-size: 21px;
  line-height: 22px;
  margin-bottom: 20px; }

.registration__item-body {
  font-size: 14px;
  line-height: 20px; }
  .registration__item-body p {
    margin-bottom: 10px; }

.registration__btn {
  padding-top: 20px;
  position: relative;
  margin-top: auto; }
  .registration__btn .btn {
    width: 100%; }
    @media only screen and (min-width: 480px) {
      .registration__btn .btn {
        max-width: 300px; } }

.registration__link {
  white-space: nowrap;
  display: block;
  padding: 0 0 20px; }
  .registration__link a {
    color: #4698E1; }
  @media only screen and (min-width: 960px) {
    .registration__link {
      display: inline-block;
      position: absolute;
      left: 320px;
      top: 50%;
      padding: 0; } }
  @media only screen and (min-width: 1200px) {
    .registration__link {
      white-space: nowrap;
      display: block;
      padding: 0 0 20px;
      position: relative;
      top: inherit;
      left: inherit; } }
  @media only screen and (min-width: 1280px) {
    .registration__link {
      display: inline-block;
      position: absolute;
      left: 320px;
      top: 50%;
      padding: 0; } }

.registration__form {
  max-width: 620px; }
  @media only screen and (min-width: 480px) {
    .registration__item .registration__form {
      max-width: 300px; } }

.registration__form-row {
  margin-bottom: 20px; }
  .registration__form-row:last-child {
    margin-bottom: 0; }
  @media only screen and (min-width: 960px) {
    .registration__form-row.m-half {
      display: flex;
      justify-content: space-between; } }
  .registration__form-row.m-btn {
    margin-bottom: 30px;
    padding-top: 15px; }
    .registration__form-row.m-btn .btn {
      width: 100%; }
      @media only screen and (min-width: 960px) {
        .registration__form-row.m-btn .btn {
          height: 30px;
          line-height: 30px;
          width: 300px; } }
  .registration__form-row .checkbox-btn {
    font-size: 13px;
    line-height: 18px;
    position: relative;
    padding-left: 20px; }
    .registration__form-row .checkbox-btn input[type="checkbox"] {
      position: absolute;
      left: 0;
      top: 3px; }
  .registration__form-row a {
    color: #4698E1; }

.registration__form-item {
  margin-bottom: 20px; }
  @media only screen and (min-width: 960px) {
    .m-half .registration__form-item {
      margin-bottom: 0;
      width: 48%; } }

.settings {
  padding-top: 30px; }
  @media only screen and (min-width: 960px) {
    .settings {
      padding-top: 40px; } }

.settings__tab {
  display: none;
  margin-bottom: 50px; }
  .settings__tab.m-active-tab {
    display: block; }

.settings__list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  flex-direction: row; }

.settings__item {
  padding-bottom: 20px;
  width: 100%; }
  @media only screen and (min-width: 960px) {
    .settings__item {
      width: 50%; } }
  @media only screen and (min-width: 1200px) {
    .settings__item {
      width: 60%; } }
  .settings__item:nth-child(2n) {
    width: 100%; }
    @media only screen and (min-width: 960px) {
      .settings__item:nth-child(2n) {
        width: 50%;
        padding-left: 20px; } }
    @media only screen and (min-width: 1200px) {
      .settings__item:nth-child(2n) {
        width: 40%; } }

.settings__item-in {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 35px 30px;
  position: relative;
  display: flex;
  flex-direction: column; }
  .m-hint .settings__item-in {
    box-shadow: none;
    align-items: center;
    padding: 0; }
  .m-sale .settings__item-in {
    padding: 0;
    overflow: hidden;
    min-height: 272px; }
    .m-sale .settings__item-in img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      height: auto; }
  @media only screen and (min-width: 960px) {
    .settings__item-in {
      min-height: 300px;
      padding: 35px 20px; } }
  @media only screen and (min-width: 1600px) {
    .settings__item-in {
      min-height: 300px;
      padding: 35px 40px; } }

.settings__item-title {
  font-weight: 800;
  font-size: 21px;
  line-height: 20px;
  margin-bottom: 32px; }

.settings__item-desc {
  font-size: 21px;
  line-height: 25px;
  position: relative; }
  .m-hint .settings__item-desc {
    text-align: center;
    margin: auto;
    margin-right: 0; }
    .m-hint .settings__item-desc:after {
      content: '';
      display: inline-block;
      background-image: url(../i/icon_arr_b.svg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 50% 50%;
      width: 26px;
      height: 42px;
      transform: rotate(90deg) translateX(50%); }
      @media only screen and (min-width: 960px) {
        .m-hint .settings__item-desc:after {
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%); } }
    @media only screen and (min-width: 960px) {
      .m-hint .settings__item-desc {
        text-align: right;
        max-width: 570px;
        padding-right: 45px; } }

.settings__item-body {
  position: relative; }

@media only screen and (min-width: 960px) {
  .settings__item-user {
    padding-left: 120px; } }
@media only screen and (min-width: 1200px) {
  .settings__item-user {
    padding-top: 10px;
    padding-left: 190px; } }

.settings__item-user-item-pic {
  width: 50px;
  height: 50px;
  margin-right: 10px; }
  .settings__item-user-item-pic img {
    width: 100%;
    height: auto; }
  @media only screen and (min-width: 960px) {
    .settings__item-user-item-pic {
      width: 100px;
      height: 100px;
      position: absolute;
      left: 0;
      top: 0px; } }
  @media only screen and (min-width: 1200px) {
    .settings__item-user-item-pic {
      width: 150px;
      height: 150px; } }

.settings__item-order {
  display: flex;
  justify-content: start;
  align-items: top;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 16px; }
  @media only screen and (min-width: 960px) {
    .settings__item-order {
      font-size: 21px;
      line-height: 20px; } }

.settings__item-order-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f2f2f2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center; }
  .settings__item-order-pic img {
    max-width: 70%;
    height: auto; }
  @media only screen and (min-width: 960px) {
    .settings__item-order-pic {
      width: 89px;
      height: 89px; } }

.settings__item-order-info {
  flex: 1;
  padding-left: 10px; }
  @media only screen and (min-width: 960px) {
    .settings__item-order-info {
      padding-left: 30px; } }

.settings__item-order-title {
  margin-bottom: 17px; }

.settings__item-order-count {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 20px; }

.settings__item-order-status {
  font-size: 12px;
  line-height: 16px; }
  .settings__item-order-status i {
    display: inline-block;
    border-radius: 50%;
    background-color: #AADA7B;
    margin-right: 10px;
    width: 10px;
    height: 10px; }

.settings__item-user-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px; }
  .settings__item-user-item:last-child {
    margin-bottom: 0; }
  .settings__item-user-item svg {
    margin-right: 15px; }
  .settings__item-user-item.m-name {
    font-size: 14px;
    line-height: 16px;
    display: flex;
    flex-wrap: wrap; }
    .settings__item-user-item.m-name span {
      flex: 1; }
    @media only screen and (min-width: 960px) {
      .settings__item-user-item.m-name {
        font-size: 21px;
        line-height: 20px; } }
  .settings__item-user-item.m-phone {
    text-decoration: none; }
    .settings__item-user-item.m-phone a {
      text-decoration: none; }
  .settings__item-user-item.m-mail {
    text-decoration: none; }
    .settings__item-user-item.m-mail a {
      text-decoration: none; }
    @media only screen and (min-width: 960px) {
      .settings__item-user-item.m-mail {
        margin-bottom: 0; } }
  .settings__item-user-item.m-stat {
    display: flex;
    font-size: 11px;
    line-height: 20px; }
    @media only screen and (min-width: 960px) {
      .settings__item-user-item.m-stat {
        display: none; } }

.settings__item-footer {
  font-size: 11px;
  line-height: 20px;
  padding-top: 35px;
  margin-top: auto;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center; }
  .settings__item-footer .m-stat {
    align-items: center;
    display: none; }
    @media only screen and (min-width: 960px) {
      .settings__item-footer .m-stat {
        display: flex; } }
  @media only screen and (min-width: 960px) {
    .settings__item-footer {
      padding-top: 27px;
      justify-content: flex-end; } }
  .settings__item-footer span {
    padding: 0 10px;
    display: inline-block; }
  .settings__item-footer .btn {
    width: 100%;
    max-width: 275px; }
    @media only screen and (min-width: 960px) {
      .settings__item-footer .btn {
        width: auto;
        height: 30px;
        line-height: 30px; } }

.settings__icon-profile {
  display: inline-block;
  width: 36px;
  height: 36px; }
  .settings__icon-profile .circle-bg {
    fill: none;
    stroke: #fff;
    stroke-width: 5; }
  .settings__icon-profile .circle {
    fill: none;
    stroke: #CFDC83;
    stroke-width: 4;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards; }
@keyframes progress {
  0% {
    stroke-dasharray: 0 100; } }
  .settings__icon-profile .percentage {
    fill: #666;
    font-family: sans-serif;
    font-size: 9px;
    text-anchor: middle; }

@media only screen and (min-width: 960px) {
  .settings__order {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; } }

.settings__order-list {
  flex: 1; }

.settings__order-item {
  margin-bottom: 30px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 35px 40px;
  position: relative; }
  .settings__order-item:last-child {
    margin-bottom: 0; }

.settings__order-title {
  font-weight: 800;
  font-size: 21px;
  line-height: 20px;
  margin-bottom: 15px; }

.settings__order-status {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 35px;
  vertical-align: middle; }
  .settings__order-status i {
    vertical-align: middle;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: #AADA7B;
    margin-right: 10px; }
    .m-cancel .settings__order-status i {
      background-color: #EB5757; }

.settings__order-row {
  position: relative;
  display: flex;
  justify-content: start;
  flex-direction: row;
  align-items: center;
  padding-left: 60px;
  padding-right: 130px;
  margin-bottom: 20px; }
  .settings__order-row:last-child {
    margin-bottom: 0px; }
  @media only screen and (min-width: 960px) {
    .settings__order-row {
      margin-bottom: 40px; }
      .settings__order-row:last-child {
        margin-bottom: 20px; } }

.settings__order-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  flex: 1;
  position: relative; }
  .settings__order-name:after {
    content: '';
    border-bottom: 1px dotted #ccc;
    bottom: 3px;
    content: '';
    display: block;
    height: 20px;
    left: 0;
    right: 7px;
    position: absolute; }
  .settings__order-name a {
    color: #4698E1;
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding-right: 3px; }

.settings__order-img {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); }
  .settings__order-img img {
    max-width: 100%; }

.settings__order-price {
  font-size: 14px;
  line-height: 20px;
  position: absolute;
  right: 40px;
  bottom: 0; }

.settings__order-icon {
  padding: 0 4px;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0; }
  .settings__order-icon svg path {
    fill: #333333; }

.settings__order-period-title {
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .settings__order-period-title svg {
    display: inline-block; }
  @media only screen and (min-width: 960px) {
    .settings__order-period-title {
      font-size: 25px;
      line-height: 25px;
      margin-bottom: 25px; }
      .settings__order-period-title svg {
        display: none; } }

.settings__order-period {
  width: 100%;
  height: 30px;
  margin-bottom: 30px;
  position: relative; }
  @media only screen and (min-width: 960px) {
    .settings__order-period {
      width: 320px;
      height: auto; } }
  .settings__order-period .dropdown-wrap {
    width: 100%;
    display: block; }
    .settings__order-period .dropdown-wrap .dropdown {
      width: 100%;
      top: inherit;
      transform: translateY(0); }
    @media only screen and (min-width: 960px) {
      .settings__order-period .dropdown-wrap {
        display: none; } }

.settings__order-period-in {
  display: none; }
  @media only screen and (min-width: 960px) {
    .settings__order-period-in {
      display: block; } }

.settings__order-period-list {
  display: none;
  cursor: pointer;
  background-color: #fff; }
  .m-show .settings__order-period-list {
    display: block;
    position: relative;
    z-index: 99; }
  @media only screen and (min-width: 960px) {
    .settings__order-period-list {
      display: block;
      cursor: default; } }

@media only screen and (min-width: 960px) {
  .settings__order-period-item {
    font-size: 14px;
    line-height: 40px;
    font-weight: 800;
    text-transform: uppercase; }
    .settings__order-period-item.m-active a {
      color: #fff;
      background: #4698E1;
      border-radius: 10px;
      padding: 4px 10px; } }
.settings__order-period-item a {
  text-decoration: none; }
  .settings__order-period-item a:hover {
    text-decoration: underline; }
.m-show .settings__order-period-item {
  height: 32px;
  line-height: 32px;
  cursor: pointer;
  white-space: nowrap;
  padding: 0; }

.settings__form-row {
  margin-bottom: 0; }
  @media only screen and (min-width: 960px) {
    .settings__form-row {
      margin-bottom: 20px; }
      .settings__form-row:last-child {
        margin-bottom: 0; } }
  .settings__form-row.m-w100 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media only screen and (min-width: 960px) {
      .settings__form-row.m-w100 {
        justify-content: flex-start; } }
    .settings__form-row.m-w100 .settings__form-item {
      width: 48%; }
      .settings__form-row.m-w100 .settings__form-item:last-child {
        margin-left: 15px; }
      @media only screen and (min-width: 960px) {
        .settings__form-row.m-w100 .settings__form-item {
          width: 100px; } }
  .settings__form-row.m-half {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .settings__form-row.m-half .settings__form-item {
      width: 100%; }
      @media only screen and (min-width: 960px) {
        .settings__form-row.m-half .settings__form-item {
          width: 48%; } }
  .settings__form-row.m-btn {
    text-align: center; }
    @media only screen and (min-width: 960px) {
      .settings__form-row.m-btn {
        text-align: right; } }
  .settings__form-row .btn {
    width: 100%;
    max-width: 275px; }
    @media only screen and (min-width: 960px) {
      .settings__form-row .btn {
        width: auto;
        height: 30px;
        line-height: 30px; } }

.settings__form-item {
  margin-bottom: 20px; }
  .settings__form-item .text-input {
    height: 40px; }
  @media only screen and (min-width: 960px) {
    .settings__form-item {
      margin-bottom: 0; }
      .settings__form-item .text-input {
        height: 30px; } }

.settings__feedback {
  max-width: 680px;
  margin: 0 auto; }
  .settings__feedback textarea {
    min-height: 100px; }

.settings__feedback-title {
  text-align: center; }
[data-fancybox = "img"]{
  position: relative;
}
[data-magnifier = "magnifier"]{
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  transition: all 0.3s linear;
}
.passport__row-info-item--mobile{
  display: none;
}
.response__form-wrapper{
  border-radius: 20px;
  display: none;
}
.response__comment-not-value{
  margin-bottom: 40px;
}
.success-message{
  display:none;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #FFB82F;
  padding: 10px;
  }
.error-message{
  display:none;
  border-radius: 10px;
  margin-bottom: 20px;
  background: rgb(248, 0, 0);
  padding: 10px;
  color: white;
  }
/*# sourceMappingURL=i.css.map */
