@charset "UTF-8";

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

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

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

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

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

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

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

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

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

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

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

/*!
 * Bootstrap Grid v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@-webkit-keyframes pulse {
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}

@-moz-keyframes pulse {
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}

@-ms-keyframes pulse {
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes pulse {
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}

@-webkit-keyframes pulse2 {
  to {
    opacity: 0;
    transform: scale(1.35);
  }
}

@-moz-keyframes pulse2 {
  to {
    opacity: 0;
    transform: scale(1.35);
  }
}

@-ms-keyframes pulse2 {
  to {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes pulse2 {
  to {
    opacity: 0;
    transform: scale(1.35);
  }
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("ProximaNova-Regular.eot");
  src: local("Proxima Nova Regular"), local("ProximaNova-Regular"), url("../fonts/ProximaNova/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova/ProximaNova-Regular.woff") format("woff"), url("../fonts/ProximaNova/ProximaNova-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("ProximaNova-Semibold.eot");
  src: local("Proxima Nova Semibold"), local("ProximaNova-Semibold"), url("../fonts/ProximaNova/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova/ProximaNova-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/fonts/icomoon.eot?oeuf3z");
  src: url("../fonts/icomoon/fonts/icomoon.eot?oeuf3z#iefix") format("embedded-opentype"), url("../fonts/icomoon/fonts/icomoon.ttf?oeuf3z") format("truetype"), url("../fonts/icomoon/fonts/icomoon.woff?oeuf3z") format("woff"), url("../fonts/icomoon/fonts/icomoon.svg?oeuf3z#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

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

* {
  outline: none;
  -webkit-appearance: none;
}

body {
  font-family: 'Proxima Nova';
  font-size: 16px;
  background: #fff;
}

body.overhidden {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #209BFC;
  transition: all ease-in-out .3s;
}

a:hover {
  color: #FF5D29;
}

.rub {
  /*font-family: "Lucida Console", Monaco, monospace !important;*/
  font-style: normal !important;
}

.rub {
    /*font-family: monospace;*/
    font-family: sans-serif;
}

.dragscroll {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

.dragscroll::-webkit-scrollbar {
  display: none;
}

.green {
  color: #23C367;
}

.orange {
  color: #FF5D29;
}

button,
input {
  border: none;
}

input[type="search"],
input[type="tel"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea {
  height: 56px;
  border-radius: 4px;
  margin-bottom: 24px;
  background-color: #F7F8FA;
  padding: 0 16px;
  font-family: 'Proxima Nova';
  font-size: 12px;
  line-height: 15px;
  width: 100%;
}

input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="date"]::placeholder,
textarea::placeholder {
  color: #a7a7a7;
  text-transform: uppercase;
}

textarea {
  padding: 20px 16px;
  height: 170px;
  border: 0;
}

input[type="checkbox"] {
  border: 1px solid #1C1E23;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  margin: 0;
}

input[type="checkbox"]:checked {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMSAxLjE2NjAyTDQuMTI1IDcuODMyNjhMMSA0LjgwMjM4IiBzdHJva2U9IiMxQzFFMjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
  background-size: 12px;
  background-position: center center;
  background-repeat: no-repeat;
}

label.checkbox {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  min-height: 44px;
  padding-left: 80px;
  align-items: center;
  font-size: 18px;
  line-height: 21px;
  cursor: pointer;
}

label.checkbox input[type="checkbox"],
label.checkbox input[type="radio"] {
  width: 0;
  height: 0;
  opacity: 1;
  flex: 0 0 0;
  overflow: hidden;
  margin: 0;
}

label.checkbox input[type="checkbox"]:checked + span,
label.checkbox input[type="radio"]:checked + span {
  background: #FC6703;
  color: #fff;
}

label.checkbox input[type="checkbox"] + span,
label.checkbox input[type="radio"] + span {
  width: 44px;
  height: 44px;
  background: #E6E6E6;
  border-radius: 50%;
  display: flex;
  position: absolute;
  left: 20px;
  top: 0;
  align-items: center;
  justify-content: center;
  color: #bfbfbf;
  transition: all ease-in-out .3s;
}

label.checkbox input[type="checkbox"] + span:before,
label.checkbox input[type="radio"] + span:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e907";
  font-size: 14px;
  padding-left: 3px;
}

.contact-form {
  max-width: 660px;
  margin: 70px auto 0 auto;
}

.contact-form p.heading {
  text-align: left;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 30px;
}

.contact-form textarea,
.contact-form input {
  margin-bottom: 24px;
  background: #fff;
}

.contact-form form > div {
  display: flex;
  align-items: center;
}

.contact-form form > div input {
  margin-bottom: 24px;
}

.contact-form form > div input,
.contact-form form > div p,
.contact-form form > div button {
  flex: 0 0 calc(50% - 12px);
}

.contact-form form > div p,
.contact-form form > div input:first-of-type {
  margin-right: 24px;
}

.contact-form form > div p {
  line-height: 1.3;
}

.contact-form form > div p a {
  color: #7b48f8;
  text-decoration: underline;
}

.contact-form form > div .button {
  height: 80px;
  border-radius: 40px;
  width: 230px;
}

.contact-form form > div .button:before,
.contact-form form > div .button:after {
  border-radius: 40px;
}

.contact-form form > div .button span {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.contact-form form > div .button span:after {
  border-radius: 40px;
}

.fancybox-bg {
  background-color: rgba(0, 0, 0, 0.55);
}

.fancybox-image {
  box-shadow: 0 24px 80px 0 rgba(0, 0, 0, 0.74);
  background: #F0F0F0;
}

.fancybox-button svg path {
  fill: #fff;
}

.fancybox-close-small {
  opacity: 1;
}

p.checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

p.checkbox input[type="checkbox"] {
  flex: 0 0 20px;
  margin-right: 16px;
  pointer-events: none;
}

.mdl {
  width: 400px;
  padding: 20px;
  display: none;
}

.mdl p:nth-of-type(1) {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mdl p:nth-of-type(2) {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}

.mdl .buttons {
  display: flex;
  justify-content: space-between;
}

.mdl .buttons .btn {
  flex: 0 0 calc(50% - 5px);
  height: 53px;
  border-radius: 2px;
}

.mdl .fancybox-close-small {
  width: 24px;
  height: 24px;
  right: 10px;
  top: 10px;
  margin: 0;
  padding: 0;
}

.mdl .fancybox-close-small svg {
  display: none;
}

.mdl .fancybox-close-small:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e904";
  font-size: 24px;
}

#modal-size {
  width: 100%;
  max-width: 960px;
  height: auto;
}

#modal-size img {
  width: 100%;
  height: 484px;
  object-fit: cover;
}

.modal-cert {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.modal-cert .btn {
  height: 56px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 2px;
}

.modal-cert .radio-blocks .radio-block {
  height: 44px;
  margin-bottom: 10px;
}

.modal-cert .row p {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #1C1E23;
  margin-bottom: 10px;
}

.modal-cert .row p.checkbox {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}

.modal-cert img {
  max-width: 100%;
}

.modal-cert__current {
  border-radius: 20px;
  margin-bottom: 11px;
}

.modal-cert__select {
  display: flex;
  justify-content: space-between;
}

.modal-cert__select img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 4px solid #EFEFEF;
  border-radius: 1px;
  box-sizing: content-box;
}

.modal-text {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.modal-text .btn {
  height: 53px;
  width: 173px;
  background: #1C1E23;
  border-radius: 2px;
}

.modal-text div p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}

.modal-address {
  width: 100%;
  max-width: 600px;
  height: auto;
}

#modal-zakaz {
  width: 100%;
  max-width: 700px;
  height: auto;
}

#modal-namek {
  padding: 0;
}

.modal-namek__inner {
  display: flex;
}

.modal-namek__inner .btn {
  height: 53px;
  border-radius: 2px;
  width: 100%;
  margin: 0;
}

.modal-namek__inner img {
  width: 340px;
  height: 450px;
  object-fit: contain;
  background: #F0F0F0;
}

.modal-namek__inner > div {
  padding: 20px;
  width: 360px;
}

.modal-namek__inner > div > p {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.modal-namek__inner > div > p + p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
}

.modal {
  display: none;
  padding: 20px;
}

.modal .fancybox-close-small {
  width: 56px;
  height: 56px;
  top: 20px;
  background: #FFF;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  position: fixed;
  right: 20px;
  top: 20px;
}

.modal .fancybox-close-small svg {
  display: none;
}

.modal .fancybox-close-small:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e904";
  font-size: 24px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.modal-footer .btn {
  width: 160px;
  margin-right: 20px;
  height: 53px;
  border-radius: 2px;
}

.modal-footer p {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.modal .input-block {
  margin-bottom: 20px;
}

.modal .input-block input {
  height: 43px;
}

.modal .input-block input.placeholder-top + span.placeholder,
.modal .input-block input:focus + span.placeholder,
.modal .input-block textarea.placeholder-top + span.placeholder,
.modal .input-block textarea:focus + span.placeholder {
  top: 4px;
}

.modal .input-block span.placeholder {
  top: 14px;
}

.modal > p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.modal .cart-row {
  padding-top: 0;
  border-top: 0;
}

.subscribe {
  padding: 32px 0;
}

.subscribe-form {
  padding: 40px 24px;
  background: #F4E5D4;
  display: flex;
  max-width: 1048px;
  margin: auto;
}

.subscribe-form p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin-right: 20px;
  width: 100%;
}

.subscribe-form p br {
  display: none;
}

.subscribe input,
.subscribe .input-block {
  margin: 0;
  background: transparent;
  height: 43px;
  padding: 0;
  border-bottom: 1px solid #1C1E23;
  border-radius: 0;
  margin-right: 20px;
  width: 100%;
}

.subscribe .input-block input.placeholder-top + span.placeholder,
.subscribe .input-block input:focus + span.placeholder,
.subscribe .input-block textarea.placeholder-top + span.placeholder,
.subscribe .input-block textarea:focus + span.placeholder {
  top: 3px;
}

.subscribe .input-block {
  padding-bottom: 5px;
  margin-top: 3px;
}

.subscribe .input-block span.placeholder {
  top: 14px;
}

.subscribe .input-block input {
  border: 0;
  text-transform: none;
  padding-bottom: 7px;
}

.subscribe .btn {
  width: 100%;
  height: 53px;
}

.noUi-target:after {
  content: "";
  display: block;
  height: 4px;
  width: 20px;
  position: absolute;
  top: 0;
  right: -20px;
  background: #dbdee6;
}

.noUi-horizontal {
  margin-bottom: 30px;
  width: calc(100% - 12px);
}

.noUi-horizontal .noUi-handle {
  border-radius: 0;
  width: 20px;
  height: 20px;
  border: none;
  box-shadow: none;
  top: -8px;
  background: #1C1E23;
  border: 4px solid #fff;
}

.noUi-horizontal .noUi-handle:after {
  content: "";
  display: none;
  position: absolute;
  width: 14px;
  height: 14px;
  background: #1C1E23;
  border: 4px solid #fff;
  box-sizing: content-box;
  top: 3px;
  left: 3px;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.noUi-connects {
  height: 4px;
  border-radius: 1px;
  border-radius: 0px;
  background: #dbdee6;
}

.noUi-target {
  box-shadow: none;
  border: none;
  background: none;
  height: 3px;
}

.noUi-horizontal {
  height: 1px;
  border-radius: 0;
}

.noUi-connect {
  background: #000;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -16px;
}

.prices {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.prices > div {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
}

.prices > div p {
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  color: #a4a5a7;
}

.prices input {
  border-bottom: 1px solid #1C1E23;
  width: 100%;
  height: 26px;
  font-family: 'Proxima Nova';
  font-size: 14px;
  line-height: 17px;
}

.number-wrapper {
  position: relative;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  width: 37px;
  height: 27px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Proxima Nova';
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  border: none;
  color: #1C1E23;
}

.quantity-button {
  width: 10px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 17px;
  transition: all ease-in-out .3s;
  user-select: none;
  color: #8F98B1;
}

.quantity-up {
  right: 0;
}

.quantity-down {
  left: 0;
}

.radio-blocks {
  display: flex;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}

.radio-blocks .radio-block {
  padding: 0 10px;
  height: 64px;
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
}

.radio-blocks .radio-block > span {
  position: absolute;
  left: 10px;
  top: 0;
  right: 10px;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-left: 56px;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all ease-in-out .3s;
}

.radio-blocks .radio-block input[type="radio"]:checked + span {
  border: 1px solid #1C1E23;
}

.radio-blocks .radio-block input[type="radio"] {
  left: 10px;
  top: 0;
  right: 10px;
  bottom: 0;
  display: block;
  position: absolute;
  cursor: pointer;
  z-index: 2;
  margin: 0;
}

.radio-blocks .radio-block input[type="radio"]:before {
  top: 50%;
  margin-top: -10px;
  left: 20px;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #FFF;
  border: 1px solid #B9BFCD;
  border-radius: 100px;
  position: absolute;
  transition: all ease-in-out .3s;
}

.radio-blocks .radio-block input[type="radio"]:checked:before {
  border: 6px solid #1C1E23;
}

.radio-blocks.radio-blocks__payment {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

.radio-blocks.radio-blocks__payment input[type="radio"] + span {
  border: 1px solid #ededee;
}

.radio-blocks.radio-blocks__payment .radio-block {
  max-width: 100%;
  flex: 0 0 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.radio-blocks.radio-blocks__payment .radio-block__svg input[type="radio"] + span {
  background: #ededee;
  padding-right: 56px;
  justify-content: center;
}

.radio-blocks.radio-blocks__delivery {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.radio-blocks.radio-blocks__delivery .radio-block {
  max-width: 100%;
  flex: 0 0 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.radio-blocks.radio-blocks__delivery .radio-block input[type="radio"] {
  border: 1px solid #E4E5E6;
  border-radius: 2px;
}

.radio-blocks.radio-blocks__delivery .radio-block input[type="radio"]:checked {
  border: 1px solid #1C1E23;
}

.radio-blocks.radio-blocks__delivery .radio-block > div:nth-of-type(2) {
  padding-right: 16px;
}

.radio-blocks.radio-blocks__delivery .radio-block > div:nth-of-type(2) a {
  font-size: 14px;
  line-height: 18px;
  color: #1C1E23;
  border-bottom: 1px solid #bbbcbd;
  margin-top: 10px;
  pointer-events: all;
  position: relative;
  z-index: 3;
}

.radio-blocks.radio-blocks__delivery .radio-block > div:nth-of-type(2) p {
  font-size: 12px;
  line-height: 16px;
  text-align: right;
}

.radio-blocks.radio-blocks__delivery .radio-block > div:nth-of-type(2) p span:not(.rub) {
  color: #8F98B1;
  margin-left: 8px;
}

.radio-blocks.radio-blocks__delivery .radio-block > div:nth-of-type(1) {
  padding-left: 56px;
}

.radio-blocks.radio-blocks__delivery .radio-block > div:nth-of-type(1) img {
  display: block;
  margin-bottom: 4px;
}

.radio-blocks.radio-blocks__delivery .radio-block > div:nth-of-type(1) span {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.input-blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
}

.input-blocks .input-block {
  width: calc(50% - 10px);
}

.input-blocks .input-block-w100 {
  width: 100%;
}

.input-blocks .btn {
  height: 53px;
  width: 100%;
  border-radius: 2px;
}

.input-block {
  position: relative;
}

.input-block .input-block__info {
  margin-top: 20px;
}

.input-block__info {
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #8F98B1;
  display: block;
  margin-bottom: 40px;
}

.input-block__error {
  font-size: 10px;
  line-height: 12px;
  color: #FF5D29;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: -34px;
  display: block;
}

.input-block .input-block__error {
  margin-bottom: unset;
  margin-top: unset;
  position: absolute;
  margin-top: 6px;
}

.input-block input,
.input-block textarea {
  background: none;
  font-size: 14px;
  line-height: 17px;
  color: #1C1E23;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 0;
  padding: 12px 0 7px 0;
  margin: 0;
}

.input-block input.error + span.placeholder,
.input-block textarea.error + span.placeholder {
  color: #FF5D29;
}

.input-block input.success + span.placeholder,
.input-block textarea.success + span.placeholder {
  color: #23C367;
}

.input-block textarea {
  padding-top: 20px;
  height: 94px;
}

.input-block.success:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90d";
  position: absolute;
  right: 0;
  top: 22px;
  font-size: 10px;
  color: #27AE60;
}

.input-block span.placeholder {
  position: absolute;
  font-size: 14px;
  line-height: 17px;
  transition: all ease-in-out .3s;
  text-transform: uppercase;
  top: 19px;
  left: 0px;
  color: #a4a5a7;
  pointer-events: none;
}

.input-block span.placeholder em {
  color: #fb4c41;
}

.input-block input.placeholder-top + span.placeholder,
.input-block input:focus + span.placeholder,
.input-block textarea.placeholder-top + span.placeholder,
.input-block textarea:focus + span.placeholder {
  font-size: 10px;
  line-height: 12px;
  top: 7px;
  left: 0;
}

.policy {
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #8F98B1;
}

.policy a {
  color: #1C1E23;
  text-decoration: underline;
}

.nice-select.delivery-select {
  height: 44px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.nice-select.delivery-select:after {
  border-bottom: 1px solid #a4a5a7;
  border-right: 1px solid #a4a5a7;
  height: 10px;
  width: 10px;
  top: 18px;
}

.nice-select.delivery-select.open .list {
  width: 100%;
  border: 1px solid rgba(28, 30, 35, 0.04);
  filter: drop-shadow(0px 15px 30px rgba(28, 30, 35, 0.16));
  border-radius: 4px;
}

.nice-select.delivery-select span.current {
  font-size: 14px;
  line-height: 17px;
  color: #a4a5a7;
}

.delivery-select__outter {
  height: 64px;
}

label.radio {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

label.radio p {
  font-size: 14px;
  line-height: 17px;
}

label.radio input[type="radio"] {
  width: 20px;
  height: 20px;
  background: #FFF;
  border: 1px solid #B9BFCD;
  border-radius: 100px;
  margin-right: 8px;
  flex: 0 0 20px;
}

label.radio input[type="radio"]:checked {
  border: 6px solid #1C1E23;
}

.modal.modal-promo_01 {
  max-width: 678px;
  padding: 70px 85px;
  background: url(../images/modal01.png) center center no-repeat;
  background-size: cover;
}

.modal.modal-promo_01 > div > div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.modal.modal-promo_01 > div > div span {
  color: #F0F0F0;
  text-align: center;
  background: #D2AD4F;
  font-size: 96px;
  line-height: normal;
  text-transform: uppercase;
  margin-right: 18px;
  white-space: nowrap;
}

.modal.modal-promo_01 > div > div p {
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.12px;
  text-transform: uppercase;
}

.modal.modal-promo_01 > div > div + p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: none;
  margin-bottom: 30px;
}

.modal.modal-promo_01 .btn {
  height: 53px;
  width: 100%;
  margin-bottom: 20px;
}

.modal.modal-promo_01 input {
  height: 53px;
}

.modal.modal-promo_02 {
  max-width: 700px;
  overflow: hidden;
  padding: 0;
  background: #F0F0F0;
}

.modal.modal-promo_02 form {
  padding: 20px;
  background: #fff;
}

.modal.modal-promo_02 form > div {
  display: flex;
  justify-content: space-between;
}

.modal.modal-promo_02 form > div .btn {
  height: 53px;
  flex: 0 0 calc(50% - 10px);
  margin-bottom: 20px;
}

.modal.modal-promo_02 form > div input {
  height: 53px;
}

.modal.modal-promo_02 form > div .input-block {
  flex: 0 0 calc(50% - 10px);
}

.modal.modal-promo_02 > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal.modal-promo_02 > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}

.modal.modal-promo_02 > div > div + img {
  margin-bottom: 20px;
}

.modal.modal-promo_02 > div > div > p {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.6px;
  margin-bottom: 15px;
}

.modal.modal-promo_02 > div > div > div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.modal.modal-promo_02 > div > div > div span {
  text-align: center;
  color: #D2AD4F;
  font-size: 72px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-right: 18px;
  white-space: nowrap;
}

.modal.modal-promo_02 > div > div > div p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.84px;
  text-transform: uppercase;
}

.modal.modal-promo_03 {
  width: 100%;
  max-width: 678px;
  overflow: hidden;
  padding: 0;
  background: #F0F0F0 url(../images/modal03.png) top right no-repeat;
}

.modal.modal-promo_03 > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding-left: 40px;
}

.modal.modal-promo_03 > div p.medium {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal.modal-promo_03 > div p.big {
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.modal.modal-promo_03 > div p.big + .btn {
  margin-top: 64px;
}

.modal.modal-promo_03 > div p.small {
  color: #8F98B1;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.modal.modal-promo_03 > div span {
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  background: #D2AD4F;
  width: fit-content;
  margin-bottom: 30px;
}

.modal.modal-promo_03 > div .btn {
  height: 53px;
  margin-bottom: 30px;
  width: fit-content;
  padding: 0 32px;
}

.modal.modal-promo_04 {
  width: 100%;
  max-width: 678px;
  overflow: hidden;
  padding: 0;
  background: #F0F0F0 url(../images/modal01.png) center center no-repeat;
}

.modal.modal-promo_04 > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding-left: 113px;
}

.modal.modal-promo_04 > div p.medium {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal.modal-promo_04 > div p.big {
  font-size: 96px;
  line-height: 88px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.modal.modal-promo_04 > div p.small {
  color: #8F98B1;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.modal.modal-promo_04 > div span {
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  background: #D2AD4F;
  width: fit-content;
  margin-bottom: 30px;
}

.modal.modal-promo_04 > div .btn {
  height: 53px;
  margin-bottom: 30px;
  margin-top: 30px;
  width: fit-content;
  padding: 0 32px;
}

.modal.modal-promo_05 {
  width: 100%;
  max-width: 678px;
  overflow: hidden;
  padding: 0;
  background: #1C1E23 radial-gradient(74.57% 65.16% at 64.6% 54.91%, #222834 0%, rgba(38, 44, 58, 0) 100%);
}

.modal.modal-promo_05 > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  align-items: center;
  color: #fff;
}

.modal.modal-promo_05 > div p.medium {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.12px;
  text-transform: uppercase;
  margin-bottom: 0px;
  text-align: center;
}

.modal.modal-promo_05 > div p.big {
  font-size: 64px;
  line-height: normal;
  max-width: 452px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 18px;
  text-transform: uppercase;
  text-align: center;
}

.modal.modal-promo_05 > div p.small {
  color: #8F98B1;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  position: absolute;
  bottom: 20px;
}

.modal.modal-promo_05 > div span {
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  background: #D2AD4F;
  width: fit-content;
  margin-bottom: 30px;
}

.modal.modal-promo_05 > div .btn {
  height: 53px;
  margin-bottom: 30px;
  margin-top: 30px;
  width: fit-content;
  padding: 0 32px;
  background: #fff;
  color: #000;
}

.modal.modal-promo_06 {
  width: 100%;
  max-width: 678px;
  overflow: hidden;
  padding: 0;
  background: #F0F0F0 url(../images/modal04.png) center right no-repeat;
}

.modal.modal-promo_06 > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding-left: 50px;
}

.modal.modal-promo_06 > div p.medium {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.12px;
  text-transform: uppercase;
}

.modal.modal-promo_06 > div p.big {
  font-size: 64px;
  line-height: normal;
  max-width: 450px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.modal.modal-promo_06 > div p.big + .btn {
  margin-top: 12px;
}

.modal.modal-promo_06 > div p.small {
  color: #8F98B1;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  position: absolute;
  bottom: 50px;
}

.modal.modal-promo_06 > div span {
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  background: #D2AD4F;
  width: fit-content;
  margin-bottom: 30px;
}

.modal.modal-promo_06 > div .btn {
  height: 53px;
  margin-top: 30px;
  width: fit-content;
  padding: 0 32px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  background: #FFF;
  border: 1px solid #F1F1F6;
  border-radius: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  height: 44px;
  color: #1C1E23;
  font-family: 'Proxima Nova';
}

.btn-dark {
  color: #fff;
  background: #1C1E23;
}

.btn-grey {
  background: rgba(28, 30, 35, 0.08);
}

.btn-center {
  margin: auto;
}

.menuright-visible .header.multi,
.menu-visible .header.multi {
  mix-blend-mode: unset;
  filter: unset;
}

.header {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  transition: background ease-in-out .3s;
}

.header.fixed {
  background: #fff;
}

.header.multi {
  mix-blend-mode: difference;
  filter: invert(1);
}

.header.multi.fixed {
  mix-blend-mode: unset;
  filter: unset;
}

.header a {
  color: #1C1E23;
}

.header .hamburger .line {
  background: #1C1E23;
}

.header.light:not(.fixed) .header-container a {
  color: #fff;
}

.header.light:not(.fixed) .hamburger .line {
  background: #fff;
}

.header.dark {
  color: #1C1E23;
}

.header.dark .header-container a {
  color: #1C1E23;
}

.header.dark .hamburger .line {
  background: #1C1E23;
}

.header.white-section {
  color: #1C1E23;
}

.header.white-section .header-container a {
  color: #1C1E23;
}

.header.white-section .hamburger .line {
  background: #1C1E23;
}

.header.dark-section {
  color: #fff;
}

.header.dark-section .header-container a {
  color: #fff;
}

.header.dark-section .hamburger .line {
  background: #fff;
}

.header-container {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container > div {
  width: 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.header-logo {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all ease-in-out .2s;
}

.header-logo:hover {
  transform: scale(1.25);
}

.header-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
}

.header-icon {
  margin-left: 12px;
  position: relative;
  transition: all ease-in-out .3s;
}

.header-icon:hover {
  transform: scale(1.25);
}

.header-icon span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1C1E23;
  font-weight: 600;
  font-size: 7px;
  line-height: 7px;
  top: -2px;
  right: -2px;
  color: #fff;
  transition: all ease-in-out;
}

.header-icon:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e900";
  font-size: 24px;
}

.header-icon_search:before {
  content: "\e901";
}

.header-icon_profile:before {
  content: "\e903";
}

.header-icon_favorite:before {
  content: "\e902";
}

.header-search {
  position: absolute;
  right: 100px;
  top: -10px;
  overflow: hidden;
  max-width: 0;
  width: 0;
  transition: all ease-in-out .3s;
}

.header-search.active {
  max-width: 468px;
  width: 468px;
  overflow: visible;
}

.header-search.active input[type="text"] {
  box-shadow: 0px 30px 60px rgba(28, 30, 35, 0.12);
}

.header-search button[type="submit"] {
  position: absolute;
  right: 8px;
  top: 10px;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.header-search button[type="submit"]:hover {
  transform: scale(1);
}

.header-search button[type="submit"]:before {
  position: absolute;
  top: 0;
  right: 0;
}

.header-search input[type="text"] {
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1C1E23;
  background: #FFF;
  box-shadow: none;
  border-radius: 6px;
}

.header-search input[type="text"]::placeholder {
  text-transform: uppercase;
  color: rgba(28, 30, 35, 0.4);
}

.menuright-visible .header-menuright {
  pointer-events: all;
}

.menuright-visible .header-menuright .header-menuright__wrap {
  right: 0;
}

.menuright-visible .header-menuright:before {
  opacity: 1;
}

.header-menuright {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  pointer-events: none;
  color: #1C1E23;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh) * 100);
  overflow: hidden;
}

.header-menuright__module {
  display: none;
}

.header-menuright__module.active {
  display: block;
}

.header-menuright .see-carousel .catalog-item {
  flex: unset;
  max-width: 154px;
}

.header-menuright .see-carousel + .see-carousel__heading {
  margin-top: 80px;
}

.header-menuright .see-carousel.owl-carousel .owl-nav {
  top: -32px;
  width: 56px;
  left: 0;
  margin-left: 412px;
}

.header-menuright .see-carousel.owl-carousel .owl-nav button {
  width: 24px;
  height: 24px;
  margin: 0;
}

.header-menuright .see-carousel.owl-carousel .owl-nav button.disabled {
  opacity: .3;
  pointer-events: none;
}

.header-menuright .see-carousel.owl-carousel .owl-nav button:hover {
  background: transparent;
}

.header-menuright .see-carousel.owl-carousel .owl-nav button:after {
  color: #1C1E23;
  right: 0;
  font-size: 16px;
}

.header-menuright .see-carousel__heading {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.header-menuright .see-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.header-menuright .cart-total p.cart-total__heading {
  margin-bottom: 16px;
}

.header-menuright .cart-total {
  margin-bottom: 40px;
}

.header-menuright a {
  color: #1C1E23;
}

.header-menuright__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.header-menuright__close:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e904";
  font-size: 24px;
}

.header-menuright:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh) * 100);
  background: rgba(28, 30, 35, 0.3);
  opacity: 0;
  transition: all ease-in-out .3s;
}

.header-menuright__wrap {
  position: absolute;
  z-index: 1;
  background: #fff;
  padding: 0 20px 120px 20px;
  height: 100vh;
  height: calc(var(--vh) * 100);
  width: 542px;
  transition: all ease-in-out .3s;
  overflow: auto;
  overflow-x: hidden;
  right: -542px;
}

.header-menuright__wrap::-webkit-scrollbar {
  display: none;
}

.menu-visible .header-menu {
  pointer-events: all;
}

.menu-visible .header-menu .header-menu__wrap {
  margin-left: 0;
}

.menu-visible .header-menu:before {
  opacity: 1;
}

.header-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  pointer-events: none;
  color: #1C1E23;
}

.header-menu__top {
  height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.header-menu__top span {
  display: none;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.header-menu a {
  color: #1C1E23;
}

.header-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.header-menu__close:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e904";
  font-size: 24px;
}

.header-menu:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 30, 35, 0.3);
  opacity: 0;
  transition: all ease-in-out .3s;
}

.header-menu__wrap {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 20px;
  height: 100vh;
  width: 542px;
  margin-left: -542px;
  transition: all ease-in-out .3s;
  overflow: auto;
}

.header-menu__wrap::-webkit-scrollbar {
  width: 4px;
}

.header-menu__wrap::-webkit-scrollbar-track {
  background: #fff;
}

.header-menu__wrap::-webkit-scrollbar-thumb {
  background-color: blue;
  border-radius: 20px;
  background: #ddd;
}

.header-menu__wrap .header-search {
  position: relative;
  border-bottom: 1px solid #E4E5E6;
  max-width: 100%;
  width: 100%;
  right: unset;
  top: unset;
  display: none;
}

.header-menu__wrap .header-search input[type="text"],
.header-menu__wrap .header-search input[type="search"] {
  margin-bottom: 0;
  box-shadow: none;
  padding: 0;
}

.header-menu__wrap .header-search .header-icon_search {
  display: block;
  right: 0;
}

.header-menu__wrap > span {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
  margin-bottom: 26px;
}

.header-menu__wrap > p {
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
}

.header-menu__wrap > ul {
  padding: 0 20px;
}

.header-menu__wrap > ul > li {
  border-bottom: 1px solid #E4E5E6;
}

.header-menu__wrap > ul > li.parent > a {
  position: relative;
  padding-left: 28px;
}

.header-menu__wrap > ul > li.parent > a:before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #1C1E23;
  position: absolute;
  top: 32px;
  left: 0;
  transition: all ease-in-out .3s;
}

.header-menu__wrap > ul > li.parent > a:after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #1C1E23;
  position: absolute;
  top: 32px;
  left: 0;
  transform: rotate(90deg);
  transition: all ease-in-out .3s;
}

.header-menu__wrap > ul > li.parent ul {
  max-height: 0px;
  overflow: hidden;
  transition: all ease-in-out .3s;
}

.header-menu__wrap > ul > li.parent.active.parent > a:before {
  transform: rotate(90deg);
  opacity: 0;
}

.header-menu__wrap > ul > li.parent.active.parent > a:after {
  transform: rotate(180deg);
}

.header-menu__wrap > ul > li.parent.active.parent ul {
  max-height: 2000px;
}

.header-menu__wrap > ul > li.sale a {
  color: #FF5D29;
}

.header-menu__wrap > ul > li > a {
  display: flex;
  padding: 20px 0;
  align-items: center;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
}

.header-menu__wrap > ul > li ul {
  padding-left: 28px;
}

.header-menu__wrap > ul > li ul li a {
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  padding: 0 0 20px 0;
  display: flex;
  align-items: center;
}

.white .hamburger .line {
  background-color: #1C1E23;
}

.hamburger {
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 4;
  opacity: 1;
  transition: all ease .3s;
  z-index: 10;
  width: 24px;
  height: 24px;
  padding: 5px 4px;
  cursor: pointer;
}

.hamburger .line {
  width: 16px;
  height: 1px;
  border-radius: 50px;
  background-color: #fff;
  display: block;
  margin: 0px auto 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.auth > p {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin-top: -40px;
  margin-bottom: 40px;
}

.auth .policy {
  margin: 20px 0 40px 0;
}

.auth-columns {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}

.auth-columns > div {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
}

.auth-columns > div span.placeholder {
  padding-left: 10px;
}

.auth-socials {
  margin-top: 40px;
}

.auth-socials p {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.auth-socials ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-socials ul a {
  margin: 0 15px;
}

.auth-socials ul a:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  font-size: 24px;
}

.auth-socials ul a.auth-social_vk:before {
  content: "\e90a";
}

.auth-socials ul a.auth-social_ya:before {
  content: "\e90d";
  font-size: 20px;
}

.auth-block {
  display: none;
}

.auth-block.active {
  display: block;
}

.auth-block[data-block="3"] p {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin-top: -40px;
  margin-bottom: 40px;
}

.auth .btn {
  height: 54px;
  margin-bottom: 20px;
  width: 100%;
}

.auth .btn + .policy {
  margin-top: 40px;
}

.auth .input-block {
  margin-bottom: 40px;
}

.auth-tab {
  display: none;
}

.auth-tab.active {
  display: block;
}

.auth-tabs {
  display: flex;
  margin-top: -40px;
  margin-bottom: 40px;
}

.auth-tabs li {
  flex: 0 0 50%;
  max-width: 50%;
}

.auth-tabs li a {
  display: flex;
  height: 53px;
  position: relative;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  color: #1C1E23;
}

.auth-tabs li a.active:after {
  height: 3px;
}

.auth-tabs li a:after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  bottom: 0;
  width: 100%;
  background: #1C1E23;
  transition: all ease-in-out .3s;
}

.cookie {
  position: fixed;
  bottom: 40px;
  width: 500px;
  height: 74px;
  box-shadow: 0px 10px 60px rgba(28, 30, 35, 0.16);
  border-radius: 8px;
  left: 50%;
  margin-left: -250px;
  display: flex;
  align-items: center;
  padding-left: 72px;
  padding-right: 20px;
  background: #fff url(../images/cookie.svg) 20px center no-repeat;
  z-index: 9999;
  display: none;
}

.cookie.show {
  display: flex;
}

.cookie p {
  font-size: 16px;
  line-height: 24px;
}

.cookie-close {
  background: rgba(28, 30, 35, 0.06);
  border-radius: 100px;
  color: #1C1E23;
  font-size: 16px;
  line-height: 24px;
  margin-left: auto;
  height: 44px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.cookie-close:hover {
  background: #1C1E23;
  color: #fff;
}

.fixed .background-check.background--dark {
  color: #fff !important;
}

.fixed .background-check.background--dark span.line {
  background: #fff !important;
}

.fixed .background-check.background--dark .header-icon:before {
  color: #fff !important;
}

.fixed .background-check.background--light {
  color: #1C1E23 !important;
}

.fixed .background-check.background--light span.line {
  background: #1C1E23 !important;
}

.fixed .background-check.background--light .header-icon:before {
  color: #1C1E23 !important;
}

.footer {
  background: #F7F7F7;
}

.footer-logo {
  font-weight: 600;
  font-size: 40px;
  line-height: 49px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1C1E23;
  margin-bottom: 2px;
}

.footer-slogan {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.03em;
  color: rgba(28, 30, 35, 0.75);
  width: 245px;
  margin-bottom: 20px;
}

.footer-top {
  padding: 40px 0;
}

.footer-top .container {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.footer-middle .container {
  display: flex;
}

.footer-nav {
  flex: 0 0 350px;
  max-width: 350px;
}

.footer-nav p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav ul li {
  margin-bottom: 20px;
}

.footer-nav ul li:last-of-type {
  margin-bottom: 0px;
}

.footer-nav ul li a {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #1C1E23;
}

.footer-phone {
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  text-align: right;
  display: block;
  color: #1C1E23;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-socials a {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 32px;
}

.footer-socials a:last-of-type {
  margin-right: 0px;
}

.footer-socials a:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  position: relative;
  z-index: 1;
  color: #1C1E23;
  font-size: 24px;
}

.footer-socials__fb:after {
  content: "\e906";
}

.footer-socials__in:after {
  content: "\e907";
}

.footer-socials__tw:after {
  content: "\e909";
}

.footer-socials__yo:after {
  content: "\e90b";
}

.footer-socials__vk:after {
  content: "\e90a";
}

.footer-socials__tt:after {
  content: "\e908";
}

.footer-socials__tg:after {
  content: "\e917";
}

.footer-socials__wa:after {
  content: "\e916";
}

.footer-socials a.footer-socials__tg:after {
  font-size: 20px;
}

.footer-bottom {
  padding: 40px 0 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .container div:last-of-type {
  position: relative;
}

.footer-bottom .container div:last-of-type p {
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer-bottom .container div {
  width: 10px;
  height: 15px;
}

.footer-bottom .container div p {
  white-space: nowrap;
}

.footer-bottom .container div p a {
  text-decoration: underline;
}

.footer-bottom .container p,
.footer-bottom .container a {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
}

.footer-bottom .container p br,
.footer-bottom .container a br {
  display: none;
}

.footer-bottom .container a {
  color: #1C1E23;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-carousel .owl-nav button {
  width: 70px;
  height: 70px;
  margin-top: -25px;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .3s;
  position: relative;
  transition: background .0s ease-in-out;
}

.owl-carousel .owl-nav button span {
  z-index: 5;
}

.owl-carousel .owl-nav button span:before,
.owl-carousel .owl-nav button span:after {
  border-radius: inherit;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .3s;
}

.owl-carousel .owl-nav button span:before {
  background: #FC6703;
  z-index: 1;
  border-radius: 35px;
}

.owl-carousel .owl-nav button span:after {
  background: #FC6703;
  z-index: 2;
  opacity: 0;
  border-radius: 50%;
}

.owl-carousel .owl-nav button:hover span:after {
  opacity: 1;
}

.owl-carousel .owl-nav button:hover span:before {
  animation: pulse2 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  background: #FC6703;
}

.owl-carousel .owl-nav button span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.owl-carousel .owl-nav button:hover > span:after {
  animation: pulse2 1.25s 0.3s infinite cubic-bezier(0.66, 0, 0, 1);
  background: #FC6703;
  border-radius: 35px;
}

.owl-carousel .owl-nav button:hover:after {
  color: #fff;
}

.owl-carousel .owl-nav button:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e905";
  font-size: 20px;
  transition: all ease-in-out .3s;
  color: #fff;
  z-index: 5;
}

.owl-carousel .owl-nav button.owl-next {
  background: transparent;
  transition: all ease-in-out .3s;
  margin-right: 30px;
}

.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #1C1E23;
}

.owl-carousel .owl-nav button.owl-prev {
  margin-left: 30px;
  transform: rotate(180deg);
  background: transparent;
  transition: all ease-in-out .3s;
}

.owl-carousel .owl-nav button.owl-prev:hover {
  background-color: #1C1E23;
}

.owl-carousel .owl-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.owl-carousel .owl-dots button.owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0 5px;
  transition: all ease-in-out .3s;
}

.owl-carousel .owl-dots button.owl-dot.active {
  background-color: #000;
}

.pagination {
  margin-bottom: 80px;
  width: fit-content;
  margin: 60px auto;
}

.pagination ul {
  display: flex;
  align-items: flex-end;
}

.pagination ul li {
  margin: 0 5px;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.pagination ul li:before {
  display: none !important;
}

.pagination ul li a,
.pagination ul li span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
}

.pagination ul li a {
  color: #737373;
}

.pagination ul li a:hover {
  color: #1C1E23;
}

.pagination ul li span {
  background: #1C1E23;
  color: #fff;
}

.pagination ul li.prev a:before,
.pagination ul li.prev span:before,
.pagination ul li.next a:before,
.pagination ul li.next span:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e905";
  font-size: 8px;
}

.pagination ul li.prev a:before,
.pagination ul li.prev span:before {
  transform: rotate(-180deg);
}

.pagination ul li.next a:before,
.pagination ul li.next span:before {
  transform: rotate(0deg);
}

.pagination ul li.edge {
  width: auto;
  white-space: nowrap;
}

.pagination ul li.edge a:hover {
  color: #1C1E23;
}

.pagination ul li.edge.inactive {
  pointer-events: none;
  opacity: .24;
}

.pagination ul li.edge a,
.pagination ul li.edge span {
  font-size: 14px;
  color: #000;
  width: auto;
}

.catalog-banner {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.catalog-banner + .catalog-page {
  padding-top: 40px;
}

.catalog-banner__heading {
  font-weight: 400;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FFF;
  position: relative;
  text-align: center;
}

.catalog-banner img {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  object-fit: cover;
}

.catalog-folders .btn {
  margin: 20px auto;
}

.catalog-folder {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.catalog-folder > a {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.catalog-folder:hover img {
  transform: scale(1.1);
}

.catalog-folder img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: all ease-in-out .3s;
}

.catalog-folder__content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-folder__content a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  text-decoration: underline;
  display: inline-block;
}

.catalog-folder__content p {
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
}

.catalog-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
  margin-right: -2px;
}

.catalog-list .btn,
.catalog-list + .btn {
  margin: 20px auto;
}

.catalog-list .catalog-item.w-1-4 img,
.catalog-list .catalog-item.w-1-2 img,
.catalog-list .catalog-item.w-1-1 img {
  height: 350px;
}

.catalog-list.set-list .catalog-item.w-1-4 img,
.catalog-list.set-list .catalog-item.w-1-2 img,
.catalog-list.set-list .catalog-item.w-1-1 img {
  height: 220px;
}

.catalog-item {
  position: relative;
}

.catalog-item > a.catalog-link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.catalog-item__promotext {
  margin-bottom: 10px;
}

.catalog-item__promotext > p {
  margin-bottom: 8px;
}

.catalog-item__promotext > p:nth-of-type(1) {
  text-transform: uppercase;
}

.catalog-item__price {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.catalog-item__price span {
  text-transform: uppercase;
  margin-right: 5px;
}

.catalog-item__price span.orange {
  color: #FF5D29;
}

.catalog-item__price span.green {
  color: #23C367;
}

.catalog-item__price span.old-price {
  font-size: 12px;
  line-height: 15px;
  text-decoration-line: line-through;
  text-transform: uppercase;
  color: #8F98B1;
}

.catalog-item__price span.discount {
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  height: 16px;
  background: #FF5D29;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 4px;
  margin-left: 8px;
  color: #fff;
}

.catalog-item__name {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #1C1E23;
  display: block;
}

.catalog-item__material {
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #8F98B1;
}

.catalog-item-carousel {
  cursor: pointer;
}

.catalog-item-carousel.owl-carousel {
  background: #F0F0F0;
  margin-bottom: 10px;
}

.catalog-item-carousel.owl-carousel img {
  width: 100%;
  height: 240px;
  object-fit: contain;
}

.catalog-item-carousel.owl-carousel .owl-dots {
  justify-content: flex-start;
  padding: 20px;
  position: absolute;
  bottom: 0;
}

.catalog-item-carousel.owl-carousel .owl-dots .owl-dot {
  width: 4px;
  height: 4px;
  border-radius: 8px;
  background-color: #fff;
  margin: 0 2px;
  opacity: .5;
  pointer-events: none;
}

.catalog-item-carousel.owl-carousel .owl-dots .owl-dot.active {
  background-color: #fff;
  opacity: 1;
}

.catalog-item__favorite {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}

.catalog-item__favorite:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e902";
  font-size: 24px;
  color: #1C1E23;
}

.catalog-item__favorite.active:before {
  content: "\e90e";
}

.catalog-item__inner {
  position: relative;
}

.catalog-item__badges {
  position: absolute;
  top: 15px;
  left: 10px;
  z-index: 2;
}

.catalog-item__badges span {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  margin-right: 5px;
}

.catalog-item__badges span.orange {
  color: #FF5D29;
}

.catalog-item__badges span.green {
  color: #23C367;
}

.catalog-item__badges span.blue {
  color: #209BFC;
}

.catalog-heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-heading a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1C1E23;
  display: inline-block;
  border-bottom: 1px solid rgba(28, 30, 35, 0.3);
}

.catalog-heading a:hover {
  color: #FF5D29;
  border-bottom: 1px solid rgba(255, 93, 41, 0.3);
}

.catalog-setoftheday {
  position: relative;
  overflow: hidden;
}

.catalog-setoftheday__badge {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF5D29;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50%;
}

.catalog-setoftheday__name {
  font-size: 44px;
  line-height: 54px;
  letter-spacing: -2px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.catalog-setoftheday__price {
  display: flex;
  align-items: center;
}

.catalog-setoftheday__price p {
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
}

.catalog-setoftheday__price p.catalog-setoftheday__oldprice {
  text-decoration: line-through;
  font-size: 16px;
  line-height: 19px;
  color: rgba(255, 255, 255, 0.75);
  margin-left: 7px;
}

.catalog-setoftheday__discount {
  font-size: 12px;
  line-height: 16px;
  display: inline-flex;
  height: 22px;
  background: #FF5D29;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  padding: 0 6px;
  margin-left: 14px;
  color: #fff;
}

.catalog-setoftheday__description {
  margin-bottom: 20px;
}

.catalog-setoftheday__description p {
  font-size: 14px;
  line-height: 17px;
}

.catalog-setoftheday__content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.catalog-setoftheday__content > p:nth-of-type(1) {
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.catalog-setoftheday__content p {
  color: #fff;
}

.catalog-setoftheday:hover img {
  transform: scale(1.1);
}

.catalog-setoftheday img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: all ease-in-out .3s;
}

.catalog-setoftheday a {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.catalog-tags {
  display: flex;
  margin-top: 26px;
}

.catalog-tags li {
  margin-right: 8px;
}

.catalog-tags li:last-of-type {
  margin-right: 0px;
}

.catalog-tags li a {
  display: flex;
  height: 30px;
  padding: 0 12px;
  background: rgba(28, 30, 35, 0.08);
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 18px;
  color: #1C1E23;
}

.catalog-filters {
  width: calc(100% + 30px);
  overflow: auto;
}

.catalog-filters__footer {
  display: flex;
  padding: 12px 0;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  background: #fff;
  margin-left: -100vw;
  transition: all ease-in-out .3s;
}

.catalog-filters__footer .btn {
  height: 56px;
  flex: 0 0 calc(50% - 2px);
  border: none;
  background: #ededed;
}

.catalog-filters__footer .btn-dark {
  color: #fff;
  background: #1C1E23;
}

.catalog-filters__head > span {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 26px;
}

.catalog-filters__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.catalog-filters__close:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e904";
  font-size: 24px;
}

.catalog-filters a {
  color: #1C1E23;
}

.catalog-filters > ul {
  padding: 0 20px;
}

.catalog-filters > ul > li {
  border-bottom: 1px solid #E4E5E6;
}

.catalog-filters > ul > li.parent > a {
  position: relative;
  padding-left: 28px;
}

.catalog-filters > ul > li.parent > a:before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #1C1E23;
  position: absolute;
  top: 22px;
  left: 0;
  transition: all ease-in-out .3s;
}

.catalog-filters > ul > li.parent > a:after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #1C1E23;
  position: absolute;
  top: 22px;
  left: 0;
  transform: rotate(90deg);
  transition: all ease-in-out .3s;
}

.catalog-filters > ul > li.parent ul {
  max-height: 0px;
  overflow: hidden;
  transition: all ease-in-out .3s;
}

.catalog-filters > ul > li.parent.active.parent > a:before {
  transform: rotate(90deg);
  opacity: 0;
}

.catalog-filters > ul > li.parent.active.parent > a:after {
  transform: rotate(180deg);
}

.catalog-filters > ul > li.parent.active.parent ul {
  max-height: 2000px;
  padding-bottom: 8px;
}

.catalog-filters > ul > li > a {
  display: flex;
  height: 45px;
  align-items: center;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
}

.catalog-filters > ul > li ul {
  padding-left: 28px;
}

.catalog-filters > ul > li ul li a {
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  height: 45px;
  display: flex;
  align-items: center;
}

.catalog-filters > ul > li ul.pricesrange {
  padding: 0;
}

.catalog-filters > ul > li ul.checkboxes {
  padding: 0;
}

.catalog-filters > ul > li ul.checkboxes li {
  display: flex;
  align-items: center;
  height: 45px;
  cursor: pointer;
}

.catalog-filters > ul > li ul.checkboxes li input {
  margin-right: 8px;
  flex: 0 0 20px;
}

.catalog-filters > ul > li ul.checkboxes li span {
  margin-left: 8px;
  color: #8F98B1;
}

.catalog-filters > ul > li ul.checkboxes li input[type="checkbox"] {
  pointer-events: none;
}

.catalog-filters > ul > li ul.checkboxes2 {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.catalog-filters > ul > li ul.checkboxes2 li {
  display: flex;
  align-items: center;
  height: 45px;
  position: relative;
  width: 60px;
  height: 37px;
  margin-right: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
  cursor: pointer;
}

.catalog-filters > ul > li ul.checkboxes2 li.few {
  margin-bottom: 16px;
}

.catalog-filters > ul > li ul.checkboxes2 li.few:after {
  content: "мало";
  display: block;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  width: 100%;
  margin-top: 4px;
}

.catalog-filters > ul > li ul.checkboxes2 li input[type="checkbox"] {
  width: 60px;
  height: 37px;
  background: transparent;
  border: 1px solid #1C1E23;
  border-radius: 0;
  cursor: pointer;
  transition: all ease-in-out .3s;
}

.catalog-filters > ul > li ul.checkboxes2 li input[type="checkbox"]:checked {
  background: #1C1E23;
}

.catalog-filters > ul > li ul.checkboxes2 li input[type="checkbox"]:checked + span {
  color: #fff;
}

.catalog-filters > ul > li ul.checkboxes2 li input[type="checkbox"] + span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  font-size: 14px;
  line-height: 17px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: all ease-in-out .3s;
}

.catalog-page {
  padding: 96px 0 40px 0;
  overflow: hidden;
}

.catalog-page .catalog-item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 2px;
  margin-bottom: 20px;
}

.catalog-page .catalog-item.w-1-5 {
  flex: 0 0 20%;
  max-width: 20%;
}

.catalog-page .catalog-item.w-2-5 {
  flex: 0 0 40%;
  max-width: 40%;
}

.catalog-page .catalog-item.w-1-2 {
  flex: 0 0 50%;
  max-width: 50%;
}

.catalog-page .catalog-item.w-1-3 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.catalog-page .catalog-item.w-1-3 .catalog-item-carousel.owl-carousel img {
  height: 468px;
}

.catalog-page .catalog-item.w-1-1 {
  flex: 0 0 100%;
  max-width: 100%;
}

.catalog-page .dragscroll {
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
}

.catalog-page .dragscroll-inner {
  box-sizing: content-box;
  padding-left: calc((100vw - 1330px)/2);
  padding-right: calc((100vw - 1330px)/2);
  width: fit-content;
}

.catalog-page__sort {
  max-height: 38px;
  overflow: hidden;
  transition: all ease-in-out .3s;
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid transparent;
  padding-top: 38px;
  width: 240px;
  z-index: 3;
}

.catalog-page__sort li {
  border-top: 1px solid #E4E5E6;
}

.catalog-page__sort li.active {
  position: absolute;
  top: 0;
  border-top: 0;
  left: 0;
  right: -16px;
  text-align: right;
  margin-right: 0;
  justify-content: flex-end;
  transition: none;
  transition: all ease-in-out .3s;
}

.catalog-page__sort:hover {
  max-height: 520px;
  filter: drop-shadow(0px 30px 60px rgba(28, 30, 35, 0.12));
  border: 1px solid #E4E5E6;
  border-radius: 4px;
}

.catalog-page__sort:hover li.active {
  margin-right: 100%;
  transition: none;
}

.catalog-page__sort-outter {
  height: 40px;
}

.catalog-page__sort a {
  font-size: 14px;
  line-height: 17px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
  color: #1C1E23;
  padding: 0 8px;
  transition: none;
  width: 240px;
}

.catalog-page__sort li.active a {
  padding: 0 16px;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  width: fit-content;
}

.catalog-page__sort li.active a:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90c";
  font-size: 24px;
  margin-right: 4px;
}

.catalog-page__filter {
  pointer-events: none;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #1C1E23;
  font-weight: 600;
}

.catalog-page__top {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

.catalog-page__heading {
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
}

.catalog-page__heading + p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #8F98B1;
  margin-top: 7px;
}

.catalog-main {
  padding: 40px 0;
  overflow: hidden;
}

.catalog-main .catalog-item {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 2px;
  margin-bottom: 20px;
}

.catalog-main .catalog-item__price {
  font-size: 18px;
  line-height: 22px;
}

.catalog-main .catalog-item.w2 {
  flex: 0 0 40%;
  max-width: 40%;
}

.catalog-main .row {
  margin-left: -20px;
  margin-right: -20px;
}

.catalog-main .row > div {
  padding-left: 20px;
  padding-right: 20px;
}

.catalog-main__heading {
  font-weight: 600;
  font-size: 44px;
  line-height: 54px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.catalog-main__heading + p,
.catalog-main__heading + h1 {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}

.filter-visible {
  overflow: hidden;
}

.filter-visible .catalog-filters {
  margin-left: 0;
}

.filter-visible .catalog-filters__footer {
  margin-left: 0;
}

.set-carousel {
  margin-top: 56px;
}

.catalog-favorite .heading {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.catalog-favorite .see-carousel .catalog-item {
  flex: unset;
  max-width: 172px;
}

.catalog-favorite .see-carousel .catalog-item img {
  height: 240px;
}

.catalog-favorite .see-carousel + .see-carousel__heading {
  margin-top: 80px;
}

.catalog-favorite .see-carousel.owl-carousel .owl-nav {
  top: -37px;
  width: 56px;
  right: 0;
}

.catalog-favorite .see-carousel.owl-carousel .owl-nav button {
  width: 24px;
  height: 24px;
  margin: 0;
}

.catalog-favorite .see-carousel.owl-carousel .owl-nav button.disabled {
  opacity: .3;
  pointer-events: none;
}

.catalog-favorite .see-carousel.owl-carousel .owl-nav button:hover {
  background: transparent;
}

.catalog-favorite .see-carousel.owl-carousel .owl-nav button:after {
  color: #1C1E23;
  right: 0;
  font-size: 16px;
}

.catalog-favorite .see-carousel__heading {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.catalog-favorite .see-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.catalog-favorite__empty {
  text-align: center;
  margin-bottom: 80px;
}

.catalog-favorite__empty .btn {
  margin: auto;
}

.catalog-favorite__empty > p:first-of-type {
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.catalog-favorite__empty > p:first-of-type + p {
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
  color: #8F98B1;
  margin-bottom: 40px;
}

.catalog-favorite .catalog-item img {
  height: 350px;
}

.catalog-favorite .catalog-item.w-1-4 img {
  height: 468px;
}

.catalog-favorite .catalog-page__heading {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-favorite .catalog-page__heading a {
  font-size: 14px;
  line-height: 20px;
  text-transform: none;
  color: #1C1E23;
  border-bottom: 1px solid #bbbcbd;
}

.product-carousel.hero-carousel.owl-carousel .owl-dots button.owl-dot span {
  background: #1C1E23;
}

.product-carousel.hero-carousel.owl-carousel .owl-dots button.owl-dot {
  background: #a6a5a8;
}

.product-carousel.hero-carousel.owl-carousel .owl-dots button.owl-dot.skipped {
  background: #1C1E23;
}

.product {
  padding: 56px 0 40px 0;
  position: relative;
  z-index: 2;
}

.product-carousel {
  margin-top: -56px;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
}

.product-carousel .product-gallery__zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.product-carousel img {
  height: 968px;
  object-fit: cover;
  background: #f0f0f0;
}

.product__accordion {
  margin-top: 40px;
  border-top: 1px solid #e4e5e6;
}

.product__accordion li {
  border-bottom: 1px solid #e4e5e6;
}

.product__accordion li div {
  max-height: 0px;
  overflow: hidden;
  transition: all ease-in-out .3s;
}

.product__accordion li div > p:first-of-type {
  margin-top: 16px;
}

.product__accordion li div > p {
  margin-bottom: 20px;
}

.product__accordion li div > p.article {
  margin-bottom: 6px;
  text-transform: uppercase;
  color: #8F98B1;
}

.product__accordion li a {
  display: flex;
  align-items: center;
  height: 44px;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #1C1E23;
  position: relative;
  padding-left: 28px;
}

.product__accordion li a em {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #8F98B1;
  text-transform: none;
}

.product__accordion li a:before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #1C1E23;
  position: absolute;
  top: 22px;
  left: 0;
  transition: all ease-in-out .3s;
}

.product__accordion li a:after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #1C1E23;
  position: absolute;
  top: 22px;
  left: 0;
  transform: rotate(90deg);
  transition: all ease-in-out .3s;
}

.product__accordion li a.active:before {
  transform: rotate(90deg);
  opacity: 0;
}

.product__accordion li a.active:after {
  transform: rotate(180deg);
}

.product__accordion li a.active + div {
  max-height: 2000px;
}

.product__buttons {
  display: flex;
  z-index: 3;
  position: relative;
}

.product__buttons > div {
  flex: 0 0 calc(50% + 96px / 2);
}

.product__buttons > div .btn-dark {
  flex: 0 0 calc(100% - 96px);
}

.product__buttons > div > div {
  display: flex;
  z-index: 6;
}

.product__buttons > .btn {
  flex: 0 0 calc(50% - 96px / 2);
}

.product__buttons .btn {
  height: 56px;
  font-size: 14px;
  line-height: 17px;
  border-radius: 2px;
  margin-right: 4px;
}

.product__buttons .btn-dark {
  border: 1px solid #1C1E23;
}

.product__buttons .btn-heart {
  width: 86px;
  border: 1px solid #1C1E23;
}

.product__buttons .btn-heart:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e902";
  font-size: 24px;
  margin-right: 4px;
}

.product__buttons .btn-heart.active:before {
  content: "\e90e";
}

.product-checkboxes2 {
  display: flex;
}

.product-checkboxes2 li {
  position: relative;
  margin-right: 12px;
}

.product-checkboxes2 li:before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #CD972D 16.15%, #F0BA30 42.71%, #FEF18E 67.19%, #C88F36 100%);
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -18px;
  border-radius: 50%;
  z-index: 1;
}

.product-checkboxes2 li.product__material_whiterodiy:before {
  background: linear-gradient(134.22deg, #E6E6E6 -0.7%, #FFFFFF 42.61%, #F2F2F2 62.68%, #6D6D6D 100.7%);
}

.product-checkboxes2 li.product__material_blackrodiy:before {
  background: linear-gradient(135deg, #919191 9.56%, #B4B4B4 24.2%, #DCDCDC 33.49%, #A8A8A8 40.36%, #6B6B6B 47.71%, #878787 60.22%, #DDDDDD 73.22%, #9A9A9A 84.93%, #000000 100%);
}

.product-checkboxes2 li.product__material_nanofuchsia:before {
  background: linear-gradient(135deg, #FFBFE7 9.56%, #FFD1F7 24.2%, #FFE6FD 33.49%, #FFBEF7 40.36%, #993D89 47.71%, #FF5EE3 60.22%, #EDEDED 73.22%, #BFBFBF 84.93%, #000000 100%);
}

.product-checkboxes2 li.product__material_black:before {
  background: linear-gradient(110.82deg, #8F98B1 0%, #424448 100%);
}

.product-checkboxes2 li.product__material_whitegold:before {
  background: linear-gradient(135deg, #D0D0D0 9.56%, #E3E3E3 24.2%, #FFFFFF 33.49%, #CDCDCD 40.36%, #9C9C9C 47.71%, #B1B1B1 60.22%, #E8E8E8 73.22%, #BDBDBD 84.93%, #000000 100%);
}

.product-checkboxes2 li.product__material_redgold:before {
  background: linear-gradient(0deg, #AD6108, #AD6108), linear-gradient(135deg, #D0D0D0 9.56%, #E3E3E3 24.2%, #FFFFFF 33.49%, #CDCDCD 40.36%, #9C9C9C 47.71%, #B1B1B1 60.22%, #E8E8E8 73.22%, #BDBDBD 84.93%, #000000 100%);
  background-blend-mode: overlay, normal;
}

.product-checkboxes2 li.product__material_yellowgold:before {
  background: linear-gradient(135deg, #D6B662 9.56%, #E9C870 24.2%, #FCF5B3 33.49%, #E6D181 40.36%, #BE8F39 47.71%, #D6B165 60.05%, #F8EFAC 73.22%, #DBBE6C 84.93%, #BB9440 100%);
  background-blend-mode: overlay, normal;
}

.product-checkboxes2 li input[type="radio"],
.product-checkboxes2 li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
}

.product-checkboxes2 li input[type="radio"]:checked,
.product-checkboxes2 li input[type="radio"].active,
.product-checkboxes2 li a:checked,
.product-checkboxes2 li a.active {
  border: 1px solid #1C1E23;
}

.product-checkboxes2 li span,
.product-checkboxes2 li a span {
  display: block;
  font-size: 10px;
  line-height: 12px;
  margin-top: 4px;
  white-space: nowrap;
}

.product-checkboxes {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-checkboxes li {
  display: flex;
  align-items: center;
  position: relative;
  width: 60px;
  height: 37px;
  margin-right: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.product-checkboxes li.inactive {
  pointer-events: none;
}

.product-checkboxes li.inactive input[type="radio"] {
  border: 1px solid #8F98B1;
}

.product-checkboxes li.inactive span {
  color: #8F98B1;
}

.product-checkboxes li:last-of-type {
  margin-right: 0;
}

.product-checkboxes li.few {
  margin-bottom: 16px;
}

.product-checkboxes li.few:after {
  content: "мало";
  display: block;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  width: 100%;
  margin-top: 4px;
}

.product-checkboxes li input[type="radio"] {
  width: 60px;
  height: 37px;
  background: transparent;
  border: 1px solid #1C1E23;
  border-radius: 0;
  cursor: pointer;
  transition: all ease-in-out .3s;
  margin: 0;
}

.product-checkboxes li input[type="radio"]:checked {
  background: #1C1E23;
}

.product-checkboxes li input[type="radio"]:checked + span {
  color: #fff;
}

.product-checkboxes li input[type="radio"] + span {
  position: absolute;
  width: 100%;
  display: flex;
  font-size: 14px;
  line-height: 17px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: all ease-in-out .3s;
}

.product-checkboxes3 {
  max-width: 440px;
}

.product-checkboxes3 li {
  width: fit-content;
}

.product-checkboxes3 li input[type="radio"] {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.product-checkboxes3 li input[type="radio"] + span {
  width: auto;
  padding: 0 16px;
  display: block;
  height: 37px;
  display: flex;
  align-items: center;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.product__set-products {
  margin-top: 40px;
}

.product__set-products .product__set-title {
  margin-bottom: 20px;
}

.product__set-products .catalog-item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 2px;
  margin-bottom: 20px;
}

.product__set-products .catalog-item img {
  height: 220px;
}

.product__set-products .catalog-item.w-1-2 {
  flex: 0 0 50%;
  max-width: 50%;
}

.product__set-title {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product__set-list {
  display: flex;
  margin-bottom: 10px;
}

.product__set-list > div {
  margin-right: 10px;
}

.product__set-list > div:last-of-type {
  margin-right: 0px;
}

.product__cert {
  padding: 16px 24px 8px;
  gap: 10px;
  background: #FFF;
  border: 1px solid #F1F1F6;
  border-radius: 24px;
  width: fit-content;
  font-size: 14px;
  line-height: 17px;
  position: relative;
  margin-bottom: 20px;
}

.product__cert a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.product__cert p {
  text-transform: uppercase;
  margin-top: 10px;
}

.product__cert ul {
  display: flex;
}

.product__cert ul li {
  display: inline-block;
  margin: 0 -8px;
}

.product__cert ul li span {
  border: 4px solid #FFFFFF;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F0F0F0;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #8F98B1;
}

.product__cert ul li img {
  border: 4px solid #FFFFFF;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  background: #F0F0F0;
}

.product-favorite {
  overflow: hidden;
  margin-bottom: 40px;
}

.product-favorite + .subscribe {
  margin-bottom: 52px;
}

.product-heading {
  font-weight: 400;
  font-size: 32px;
  line-height: 39px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-main {
  padding: 0px 0 0px 40px;
  position: sticky;
  top: 80px;
  z-index: 3;
}

.product__meta {
  margin-bottom: 20px;
}

.product__meta p {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product__srok {
  margin-top: 10px;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #8F98B1;
}

.product__material {
  margin-bottom: 20px;
}

.product__material p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product__sizes {
  width: fit-content;
}

.product__sizes p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product__sizes p a {
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  border-bottom: 1px solid #bbbcbd;
  color: #1C1E23;
  text-transform: none;
}

.product__price {
  font-size: 32px;
  line-height: 39px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.product__price-parts {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.product__price-parts a {
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  border-bottom: 1px solid #bbbcbd;
  color: #1C1E23;
}

.product__price-parts p {
  padding: 0 8px;
  height: 25px;
  border: 1px solid #209BFC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #209BFC;
  margin-right: 8px;
}

.product__price-parts p .rub {
  margin: 0 2px;
  position: relative;
  top: 1px;
}

.product__price span {
  text-transform: uppercase;
  margin-right: 5px;
}

.product__price span.orange {
  color: #FF5D29;
}

.product__price span.green {
  color: #23C367;
}

.product__price span.old-price {
  font-size: 20px;
  line-height: 24px;
  text-decoration-line: line-through;
  text-transform: uppercase;
  color: #8F98B1;
  margin-left: 5px;
}

.product__price span.discount {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  height: 22px;
  background: #FF5D29;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  padding: 0 6px;
  margin-left: 8px;
  color: #fff;
}

.product-gallery__zoom {
  width: 56px;
  height: 56px;
  background: #FFF;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.product-gallery__zoom:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90f";
  font-size: 24px;
  color: #1C1E23;
}

.product-gallery__row {
  width: 50vw;
  position: relative;
  left: 100%;
  margin-left: -50vw;
}

.product-gallery__row img {
  width: 100%;
  object-fit: cover;
}

.product-gallery__row .row img {
  height: 900px;
  display: block;
  line-height: 0;
}

.product-gallery__row .col-6 img {
  height: 480px;
}

.product-gallery__main {
  position: relative;
}

.product-gallery__main .product-gallery__zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.product-gallery__main-meta {
  position: absolute;
  bottom: 34px;
  width: 50vw;
  left: 100%;
  margin-left: -50vw;
  z-index: 1;
}

.product-gallery__main-meta p {
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: #8F98B1;
  width: 50vw;
}

.product-gallery__main-meta p:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e905";
  display: block;
  margin: 0 auto;
  transform: rotate(90deg);
  font-size: 18px;
}

.product-gallery__main img {
  height: 900px;
  object-fit: contain;
  background: #F0F0F0;
  width: 50vw;
  position: relative;
  left: 100%;
  margin-left: -50vw;
}

.product-gallery__main-cert img {
  height: auto;
}

.sets {
  padding: 56px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
  margin-right: -2px;
}

.sets-outter {
  overflow: hidden;
}

.sets .btn {
  margin: 40px auto 0 auto;
}

.sets .catalog-setoftheday img {
  line-height: 0;
  display: block;
}

.sets > div {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 2px;
  padding-right: 2px;
  margin-bottom: 4px;
}

.products-mobiles {
  display: none;
}

.product-story {
  position: fixed;
  top: 0;
  width: 100%;
  transform: scale(0);
  pointer-events: none;
  transition: all ease-in-out .3s;
  margin-top: 0;
}

.product-story video {
  height: calc(var(--vh) * 100);
  width: 100%;
  object-fit: cover;
  background: red;
}

.product-story.active {
  transform: scale(1);
  pointer-events: all;
}

.product-story__zoom {
  position: absolute;
  bottom: 100px;
  right: 0px;
}

.product-story__zoom.close:before {
  content: "\e904";
}

.cart {
  padding: 72px 0 120px 0;
  position: relative;
}

.cart .order-block + .order-block {
  margin-top: 40px;
}

.cart .cart-total {
  margin-bottom: 20px;
}

.cart__status {
  text-align: center;
  margin-top: 20px;
}

.cart__status > img {
  height: 35px;
  margin-bottom: 20px;
}

.cart__status > p {
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  text-transform: uppercase;
  margin-bottom: 64px;
}

.cart__status > p + p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  margin-top: -54px;
  margin-bottom: -16px;
}

.cart__status .btn {
  margin: 56px auto 0 auto;
  height: 53px;
  border-radius: 2px;
}

.cart__status .btn-pay {
  margin: -16px auto 64px auto;
  height: 53px;
  border-radius: 2px;
}

.cart__status > div {
  max-width: 763px;
  margin: auto;
  text-align: left;
}

.cart__status > div.large {
  max-width: 1024px;
}

.cart__status > div > p {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.cart__status > div div img {
  margin-bottom: 16px;
}

.cart__status > div div p:nth-of-type(1) {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.cart__status > div div p:nth-of-type(2) {
  font-size: 14px;
  line-height: 20px;
}

.cart-sticky {
  position: sticky;
  top: 80px;
}

.cart-delivery__notify {
  display: flex;
  padding: 0 10px;
  background: #F4E5D4;
  border-radius: 4px;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  margin-bottom: 20px;
}

.cart-delivery__notify p {
  font-size: 12px;
  line-height: 15px;
}

.cart-delivery__notify a {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.cart-delivery__notify a:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e910";
  font-size: 14px;
  color: #1C1E23;
}

.cart-delivery__notify a:hover div {
  opacity: 1;
  pointer-events: all;
}

.cart-delivery__notify a div {
  position: absolute;
  top: 30px;
  right: -22px;
  padding: 10px;
  width: 360px;
  background: #209BFC;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  opacity: 0;
  transition: all ease-in-out .3s;
  pointer-events: none;
}

.cart-delivery__notify a div:before {
  content: "";
  display: block;
  width: 29px;
  height: 14px;
  top: -12px;
  right: 16px;
  background: url(../images/tooltip.svg) center center no-repeat;
  position: absolute;
}

.cart-notify {
  margin-top: -14px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 12px;
  color: #8F98B1;
}

.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

.cart-footer .btn {
  flex: 0 0 calc(50% - 8px);
  height: 53px;
}

.cart-footer-big + p {
  font-size: 14px;
  line-height: 20px;
  color: #8F98B1;
  margin: 16px 0 20px 0;
}

.cart-footer-big .btn {
  flex: 0 0 100%;
}

.cart-level > p:first-of-type {
  padding: 8px 0;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.cart-level > p:nth-of-type(2) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  color: #8F98B1;
}

.cart-level > p:nth-of-type(2) > span:last-of-type {
  color: #1C1E23;
}

.cart-level > p:nth-of-type(3) {
  font-size: 12px;
  line-height: 16px;
  color: #8F98B1;
  margin-top: 8px;
}

.cart-level > p:nth-of-type(3) a {
  display: table;
  color: #8F98B1;
  text-decoration: underline;
}

.cart-level div {
  background: #F1F1F6;
  height: 6px;
}

.cart-level div span {
  display: block;
  background: #23C367;
  height: 6px;
}

.cart-balls {
  display: flex;
  background: #F4E5D4;
  border-radius: 2px;
  height: 53px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 20px;
}

.cart-balls.disabled input[type="checkbox"] {
  opacity: .5;
  pointer-events: none;
}

.cart-balls p {
  font-size: 14px;
}

.cart-balls div {
  display: flex;
}

.cart-balls div span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 0 8px;
  height: 21px;
  background: linear-gradient(135deg, #CD972D 16.15%, #F0BA30 42.71%, #FEF18E 67.19%, #C88F36 100%);
  border-radius: 100px;
  font-weight: 600;
  font-size: 12px;
  margin-right: 8px;
  padding-top: 4px;
}

.cart-balls div input[type="checkbox"] {
  width: 46px;
  height: 24px;
  border: none;
  background: #fff;
  border-radius: 17px;
  position: relative;
  cursor: pointer;
}

.cart-balls div input[type="checkbox"]:before {
  content: "";
  width: 18px;
  height: 18px;
  background: #1C1E23;
  display: block;
  border-radius: 17px;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: all ease-in-out .3s;
}

.cart-balls div input[type="checkbox"]:checked:before {
  left: 24px;
}

.cart-promocode {
  display: flex;
}

.cart-promocode.disabled {
  pointer-events: none;
  opacity: .5;
}

.cart-promocode .input-block {
  width: 100%;
}

.cart-promocode__info {
  margin: 16px auto 20px auto;
  display: table;
  font-size: 12px;
  border-bottom: 1px solid #1C1E23;
  color: #1C1E23;
}

.cart-promocode__info:hover {
  border-bottom: 1px solid #fb4c41;
}

.cart-promocode + .message {
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  color: #23C367;
}

.cart-promocode + .message.error {
  color: #FF5D29;
}

.cart-promocode button {
  flex: 0 0 44px;
  max-width: 44px;
  height: 44px;
  width: 44px;
  background: rgba(28, 30, 35, 0.08);
  border-radius: 2px;
  border: none;
  margin-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease-in-out .3s;
}

.cart-promocode button:hover {
  background: #1C1E23;
}

.cart-promocode button:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e905";
  font-size: 16px;
}

.cart-promocode button:hover:before {
  color: #ededde;
}

.cart-promocode button .input-block {
  width: 100%;
}

.cart .input-block {
  margin-bottom: 20px;
}

.cart .input-block input {
  height: 43px;
}

.cart .input-block input.placeholder-top + span.placeholder,
.cart .input-block input:focus + span.placeholder,
.cart .input-block textarea.placeholder-top + span.placeholder,
.cart .input-block textarea:focus + span.placeholder {
  top: 2px;
}

.cart .input-block span.placeholder {
  top: 14px;
}

.cart .row {
  margin-right: -20px;
  margin-left: -20px;
}

.cart .row > div {
  padding-right: 20px;
  padding-left: 20px;
}

.cart .container > a {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #1C1E23;
  display: inline-block;
  border-bottom: 1px solid #bbbcbd;
  margin-bottom: 36px;
}

.cart-empty {
  text-align: center;
  margin-bottom: 50px;
}

.cart-empty p {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  color: #8F98B1;
}

.cart-empty p + p {
  text-transform: none;
  font-size: 12px;
  line-height: 15px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.cart-empty .btn {
  margin: auto;
}

.cart-more {
  height: 36px;
  background: #F4E5D4;
  border-radius: 4px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.cart-more p {
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: center;
}

.cart-more p strong {
  font-weight: 700;
  margin: 0 3px;
}

.cart-more p img {
  width: 14px;
  margin: 0 3px;
}

.cart-total p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 20px;
}

.cart-total p:last-of-type {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  padding-top: 8px;
  border-top: 1px solid #E4E5E6;
}

.cart-total p.cart-total__heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cart-menuright__footer {
  display: flex;
  padding: 12px 0;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  width: 542px;
  padding: 12px 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  background: #fff;
  margin-left: -20px;
  transition: all ease-in-out .3s;
}

.cart-menuright__footer .btn {
  height: 56px;
  flex: 0 0 calc(50% - 8px);
  border: none;
  background: #ededed;
}

.cart-menuright__footer .btn-dark {
  color: #fff;
  background: #1C1E23;
}

.cart-menuright__clear {
  font-size: 12px;
  line-height: 16px;
  color: #1C1E23;
  border-bottom: 1px solid rgba(28, 30, 35, 0.3);
  display: inline-block;
}

.cart-menuright__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cart-menuright__heading p {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
}

.cart-menuright__heading p span {
  color: #8F98B1;
}

.cart-row {
  padding-top: 12px;
  border-top: 1px solid #E4E5E6;
  display: flex;
  position: relative;
  margin-bottom: 24px;
}

.cart-row .catalog-item__price {
  margin-bottom: 3px;
}

.cart-row__notice {
  font-size: 9px;
  line-height: 11px;
  text-transform: uppercase;
  color: #8F98B1;
  display: inline-flex;
  height: 23px;
  padding: 0 6px;
  border: 1px solid #F1F1F6;
  align-items: center;
}

.cart-row__gift {
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 4px;
  display: inline-flex;
  height: 23px;
  padding: 0 8px;
  background: #F4E5D4;
  border-radius: 4px;
  align-items: center;
}

.cart-row__del {
  position: absolute;
  right: 0;
  top: 12px;
}

.cart-row__del button {
  cursor: pointer;
  background: none;
  padding: 0;
  margin: 0;
}

.cart-row__del button:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e904";
  font-size: 24px;
}

.cart-row__bottom {
  display: flex;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 1px;
}

.cart-row__bottom .number-wrapper {
  margin-right: 24px;
}

.cart-row__bottom > span {
  font-size: 14px;
  line-height: 17px;
  margin-right: -10px;
}

.cart-row .nice-select {
  background: none;
  border: none;
  height: 27px;
  line-height: 27px;
}

.cart-row .nice-select:after {
  border-bottom: 1px solid #8F98B1;
  border-right: 1px solid #8F98B1;
  width: 7px;
  height: 7px;
  margin-top: -6px;
}

.cart-row__name {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 3px;
}

.cart-row__material {
  font-size: 12px;
  line-height: 15px;
  color: #8F98B1;
  margin-bottom: 3px;
}

.cart-row__img {
  margin-right: 8px;
}

.cart-row__img + div {
  padding: 8px 0;
}

.cart-row__img img {
  width: 107px;
  height: 140px;
  object-fit: cover;
  background: #F0F0F0;
}

.personal {
  padding: 76px 0 60px 0;
  overflow: hidden;
}

.personal .btn {
  height: 53px;
  border-radius: 2px;
  letter-spacing: 2px;
  cursor: pointer;
  /*width: 100%;*/
}

.personal-notify {
  display: flex;
  align-items: center;
  height: 52px;
  cursor: pointer;
}

.personal-notify input {
  pointer-events: none;
}

.personal-notify input[type="checkbox"] {
  flex: 0 0 20px;
  margin-right: 16px;
}

.personal-notify div p:nth-of-type(1) {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.personal-notify div p:nth-of-type(2) {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #8F98B1;
}

.personal-cert {
  max-width: 678px;
}

.personal-cert__text {
  margin-top: 40px;
}

.personal-cert__text > p:nth-of-type(1) {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.personal-cert__text div {
  margin-bottom: 20px;
}

.personal-cert__text div p {
  font-size: 14px;
  line-height: 20px;
}

.personal-cert__text div p strong {
  font-weight: 700;
}

.personal-cert__form {
  display: flex;
  justify-content: space-between;
}

.personal-cert__form + p,
.personal-cert__form + p + p {
  font-size: 12px;
  line-height: 16px;
  color: #8F98B1;
  margin-top: 20px;
}

.personal-cert__form .btn {
  width: 180px;
}

.personal .personal-cert .input-block {
  flex: 0 0 calc(100% - 196px);
}

.personal .personal-cert .input-block input {
  height: 53px !important;
}

.personal .personal-cert .input-block span.placeholder {
  padding-top: 10px;
}

.personal .personal-cert .input-block input.placeholder-top + span.placeholder,
.personal .personal-cert .input-block input:focus + span.placeholder,
.personal .personal-cert .input-block .personal .input-block textarea.placeholder-top + span.placeholder {
  padding-top: 0px;
}

.personal-bonuses {
  display: flex;
  margin-bottom: 16px;
}

.personal-bonuses__history > p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.personal-bonuses__history div + .btn {
  width: 178px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.personal-bonuses__history div p:nth-of-type(1) {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}

.personal-bonuses__history div p:nth-of-type(1) span {
  color: #8F98B1;
}

.personal-bonuses__history div p:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  border-bottom: 1px solid #e4e5e6;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.personal-bonuses__history div p:nth-of-type(2) span {
  margin-left: 40px;
  white-space: nowrap;
}

.personal-bonuses > div {
  margin-right: 40px;
}

.personal-bonuses > div:last-of-type {
  margin-right: 0px;
}

.personal-bonus {
  margin-bottom: 20px;
}

.personal-bonus__info {
  margin-bottom: 20px;
}

.personal-bonus__info p,
.personal-bonus__info a {
  font-size: 12px;
  line-height: 16px;
  color: #8F98B1;
}

.personal-bonus__info a {
  display: block;
  text-decoration: underline;
}

.personal-bonus__line {
  height: 6px;
  background: #F1F1F6;
  margin-bottom: 8px;
}

.personal-bonus__line + p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.personal-bonus__line span {
  display: block;
  background: #23C367;
  height: 6px;
}

.personal-bonus__card.inactive {
  opacity: .5;
}

.personal-bonus__card div {
  width: 50px;
  background: linear-gradient(110.6deg, #E0E0E0 0.65%, #F8F8F8 36.3%, #F8F8F8 47.1%, #F8F8F8 58.98%, #C9C9C9 104.35%);
  border-radius: 4px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 14px;
}

.personal-bonus__card div + p {
  font-size: 10px;
  line-height: 12px;
}

.personal-bonus__card_gold div {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), linear-gradient(135deg, #CD972D 16.15%, #F0BA30 42.71%, #FEF18E 67.19%, #C88F36 100%);
}

.personal-bonus__card_platinum div {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), linear-gradient(135deg, #D0D0D0 9.56%, #E3E3E3 24.2%, #FFFFFF 33.49%, #CDCDCD 40.36%, #9C9C9C 47.71%, #B1B1B1 60.22%, #E8E8E8 73.22%, #BDBDBD 84.93%, #000000 100%);
}

.personal-bonus__card:nth-of-type(2) div {
  margin: auto;
}

.personal-bonus__card:nth-of-type(3) div {
  margin-left: auto;
}

.personal-bonus__cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.personal-bonus p:nth-of-type(1) {
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #8F98B1;
  margin-bottom: 2px;
}

.personal-bonus p:nth-of-type(2) {
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
}

.personal-account {
  display: flex;
  margin-bottom: 40px;
}

.personal-account__text > p {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.personal-account__text p {
  font-size: 14px;
  line-height: 20px;
}

.personal-account__text p strong {
  font-weight: 600;
}

.personal-account .btn {
  flex: 0 0 200px;
  margin-left: 40px;
}

.personal-account div p:nth-of-type(1) {
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #8F98B1;
}

.personal-account div p:nth-of-type(2) {
  font-size: 32px;
  line-height: 39px;
  text-transform: uppercase;
}

.personal-history {
  border: 1px solid #E4E5E6;
  padding: 20px;
  margin-bottom: 20px;
}

.personal-history + .btn {
  margin: auto;
  width: 178px;
}

.personal-history__dates {
  margin-bottom: 16px;
}

.personal-history__dates p {
  font-size: 12px;
  line-height: 16px;
  color: #8F98B1;
  margin-bottom: 5px;
}

.personal-history__address p:nth-of-type(1) {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.personal-history__address p:nth-of-type(2) {
  font-size: 16px;
  line-height: 24px;
}

.personal-history__heading {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  align-items: center;
  display: flex;
  margin-bottom: 16px;
}

.personal-history__heading span.status {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-transform: none;
  margin-left: 16px;
}

.personal-history__heading span.status.green:before {
  background: #23C367;
}

.personal-history__heading span.status.blue:before {
  background: #209BFC;
}

.personal-history__heading span.status.red:before {
  background: #FF5D29;
}

.personal-history__heading span.status:before {
  content: "";
  direction: block;
  width: 8px;
  height: 8px;
  background: #8F98B1;
  border-radius: 100%;
  margin-right: 8px;
}

.personal-history__cost {
  border-top: 1px solid #E4E5E6;
}

.personal-history__cost + .btn {
  margin-top: 20px;
}

.personal-history__cost p {
  padding-top: 12px;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.personal-history__cost p:last-of-type {
  font-weight: 600;
}

.personal-history__product {
  display: flex;
  margin-bottom: 16px;
}

.personal-history__product img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #f0f0f0;
  flex: 0 0 48px;
  margin-right: 10px;
}

.personal-history__product > div > span {
  display: block;
  font-size: 10px;
  line-height: 14px;
  color: #8F98B1;
  margin-bottom: 4px;
}

.personal-history__product > div p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
}

.personal .address .btn {
  width: fit-content;
  padding: 0 32px;
  display: inline-flex;
}

.personal .address .btn:nth-of-type(1) {
  margin-left: 32px;
}

.personal .btn-vk:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90a";
  font-size: 24px;
  margin-right: 16px;
}

.personal .btn-vk.active:before {
  content: "\e911";
}

.personal .btn-ya:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90d";
  font-size: 20px;
  margin-right: 16px;
}

.personal .btn-ya.active:before {
  content: "\e912";
}

.personal-profile .input-blocks {
  max-width: 678px;
}

.personal-profile .input-blocks.soc {
  margin-top: 20px;
}

.personal .input-block {
  margin-bottom: 20px;
}

.personal .input-block input {
  height: 43px;
}

.personal .input-block input.placeholder-top + span.placeholder,
.personal .input-block input:focus + span.placeholder,
.personal .input-block textarea.placeholder-top + span.placeholder,
.personal .input-block textarea:focus + span.placeholder {
  top: 2px;
}

.personal .input-block span.placeholder {
  top: 14px;
}

.personal-heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.personal-heading-dop {
  margin-top: 12px;
  margin-bottom: 32px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 17px;
}

.personal-subheading {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.personal-nav-dragscroll {
  position: relative;
}

.personal-nav li {
  margin-bottom: 20px;
}

.personal-nav a {
  font-size: 14px;
  line-height: 17px;
  color: #1C1E23;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.personal-nav a:hover {
  border-bottom: 1px solid #1C1E23;
}

.personal-nav .active a {
  font-weight: 700;
}

.profile-menuright {
  margin-top: -20px;
}

.profile-menuright li:last-of-type a {
  color: #EB3834;
}

.profile-menuright li:last-of-type a:after {
  display: none;
}

.profile-menuright li a {
  text-transform: uppercase;
  height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.profile-menuright li a:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e905";
  font-size: 20px;
  position: absolute;
  right: 5px;
  color: #8F98B1;
}

.profile-menuright li a span {
  display: block;
  text-transform: none;
  color: #8F98B1;
}

.address {
  margin-bottom: 32px;
}

.address .radio {
  margin-bottom: 10px;
}

.address .btn {
  width: auto;
}

.hero-carousel.owl-carousel .owl-dots {
  margin-top: 0px;
  top: -22px;
  position: relative;
}

.hero-carousel.owl-carousel .owl-dots button.owl-dot {
  width: 78.5px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin: 0 1px;
  position: relative;
}

.hero-carousel.owl-carousel .owl-dots button.owl-dot span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  bottom: 0;
  background: #fff;
}

.hero-carousel.owl-carousel .owl-dots button.owl-dot.skipped {
  background: #fff;
}

.hero-carousel.owl-carousel .owl-dots button.owl-dot.skippedforward span {
  opacity: 0;
}

.hero-carousel__slide {
  height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-carousel__slide_gradient {
  position: relative;
}

.hero-carousel__slide_gradient:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(28, 30, 35, 0) 0%, rgba(28, 30, 35, 0.7) 100%);
  z-index: 1;
}

.hero-carousel__slide span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-carousel__slide p {
  color: #fff;
  font-size: 44px;
  line-height: 54px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  max-width: 668px;
}

.hero-carousel__slide p + a:not(.button) {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
}

.hero-carousel__slide p + p {
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px;
  letter-spacing: normal;
}

.hero-carousel__slide a.button {
  display: flex;
  width: 166px;
  height: 56px;
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(16px);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1C1E23;
  transition: all ease-in-out .3s;
}

.hero-carousel__slide a.button:hover {
  background: white;
}

.hero-carousel__slide > * {
  position: relative;
  z-index: 1;
}

.hero-carousel__slide img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  object-fit: cover;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-position: center top;
}

.advantages {
  margin-bottom: 40px;
  overflow: hidden;
}

.advantages-heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.advantages-items {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
}

.advantages-item {
  width: 238px;
  padding: 16px 0;
}

.advantages-item img {
  display: block;
  margin: 0 auto 8px auto;
}

.advantages-item p {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.seo {
  padding: 40px 0 20px 0;
}

.seo .seo-heading {
  font-size: 44px;
  line-height: 54px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.seo p {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}

.story-carousel.owl-carousel .owl-dots {
  margin-top: 0px;
  top: -22px;
  position: relative;
}

.story-carousel.owl-carousel .owl-dots button.owl-dot {
  width: 78.5px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin: 0 1px;
  position: relative;
}

.story-carousel.owl-carousel .owl-dots button.owl-dot span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  bottom: 0;
  background: #fff;
}

.story-carousel.owl-carousel .owl-dots button.owl-dot.skipped {
  background: #fff;
}

.story-carousel.owl-carousel .owl-dots button.owl-dot.skippedforward span {
  opacity: 0;
}

.story-carousel__slide {
  height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.story-carousel__slide_gradient {
  position: relative;
}

.story-carousel__slide_gradient:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(28, 30, 35, 0) 0%, rgba(28, 30, 35, 0.7) 100%);
  z-index: 1;
}

.story-carousel__slide span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.story-carousel__slide p {
  color: #fff;
  font-size: 44px;
  line-height: 54px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  max-width: 668px;
}

.story-carousel__slide p + p {
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px;
  letter-spacing: normal;
}

.story-carousel__slide a.button {
  display: flex;
  width: 166px;
  height: 56px;
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(16px);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1C1E23;
  transition: all ease-in-out .3s;
}

.story-carousel__slide a.button:hover {
  background: white;
}

.story-carousel__slide > * {
  position: relative;
  z-index: 1;
}

.story-carousel__slide img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  object-fit: cover;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-position: center top;
}

.app-carousel .hero-carousel__slide {
  height: 100vh;
}

.app-menu {
  position: fixed;
  padding: 0 20px;
  background: #fff;
  height: 60px;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}


.app-menu_home:before {
    content: "\e918";
}

.app-menu_catalog:before {
  content: "\e915";
}

.app-menu_favorite:before {
  content: "\e902";
}

.app-menu_cart:before {
  content: "\e900";
}

.app-menu_chat:before {
  content: "\e914";
  font-size: 18px !important;
  height: 24px;
  position: relative;
  top: 4px;
}

.app-menu_personal:before {
  content: "\e903";
}

.app-menu li {
  flex: 0 0 20%;
}

.app-menu li a {
  font-size: 12px;
  line-height: 15px;
  color: #8F98B1;
  display: block;
  text-align: center;
}

.app-menu li a:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  display: block;
  margin: auto;
  font-size: 24px;
}

.app-menu li a.active,
.app-menu li a:hover {
  color: #1C1E23;
}

.hero-carousel img,
.hero-carousel video,
.story-carousel img,
.story-carousel video {
  pointer-events: none;
}

.img-fluid {
  max-width: 100%;
}

.row-gallery {
  margin-left: -2px;
  margin-right: -2px;
}

.row-gallery > div {
  padding-left: 2px;
  padding-right: 2px;
  margin-bottom: 4px;
}

.img-full {
  width: 100%;
  margin-bottom: 80px;
}

p.file {
  display: flex;
  align-items: center;
}

p.file img {
  margin-right: 8px;
}

p.file a {
  color: #000;
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 1px solid #ececec;
}

p.file a:hover {
  color: #ff930b;
}

.video {
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
  display: block;
  overflow: hidden;
  line-height: 0;
}

.video img {
  width: 100%;
}

.video:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: all ease-in-out .3s;
}

.video:hover:after {
  background-color: rgba(0, 0, 0, 0.5);
}

.video:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  background: url(../images/play.svg) center center no-repeat;
  background-size: 92px;
  z-index: 1;
  transition: all ease-in-out .3s;
}

.video:hover:after {
  background-size: 120px;
}

.center-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 40px;
}

.padding-content {
  max-width: 890px;
  margin: auto;
}

.round-img {
  position: relative;
  background: #f5f5f5;
  border-radius: 50%;
  overflow: hidden;
  margin: 80px 0;
}

.round-img:after {
  content: "";
  padding-bottom: 100%;
  display: block;
}

.round-img img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-link {
  display: block;
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.zoom-link:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.5) url(../images/zoom1.svg) center center no-repeat;
  background-size: 10px;
  z-index: 1;
  transition: all ease-in-out .3s;
  opacity: 0;
}

.zoom-link:hover:after {
  background-size: 48px;
  opacity: 1;
}

.owl-carousel3 {
  max-width: 535px;
  margin: 0 auto 80px auto;
}

.owl-carousel3 .owl-stage-outer {
  overflow: visible;
}

.owl-carousel3.owl-carousel .owl-nav button.owl-next {
  margin-right: -35px;
}

.owl-carousel3.owl-carousel .owl-nav button.owl-prev {
  margin-left: -35px;
}

.owl-carousel3 .owl-nav {
  margin-top: -10px;
}

.owl-carousel4 {
  max-width: 890px;
  margin: 0 auto 80px auto;
}

.owl-carousel4 .owl-stage-outer {
  overflow: visible;
}

.owl-carousel4.owl-carousel .owl-nav button.owl-next {
  margin-right: -40px;
}

.owl-carousel4.owl-carousel .owl-nav button.owl-prev {
  margin-left: -40px;
}

.owl-carousel4 .owl-nav {
  margin-top: -10px;
}

.text-middle {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-middle p:last-of-type {
  margin-bottom: 0;
}

.text-center {
  text-align: center !important;
}

.textpage {
  overflow: hidden;
  background: #fff;
  padding: 76px 0 120px 0;
}

.textpage h1,
.textpage h2,
.textpage h3,
.textpage h4 {
  font-family: 'Proxima Nova';
  font-weight: normal;
  text-align: left;
}

.textpage .product__accordion li a {
  height: 54px;
}

.textpage .product__accordion li a:before,
.textpage .product__accordion li a:after {
  margin-top: 3px;
}

.textpage h1 {
  font-family: 'Proxima Nova';
  font-weight: normal;
  font-size: 44px;
  line-height: 54px;
  margin-bottom: 20px;
}

.textpage h2 {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}

.textpage h3 {
  font-size: 32px;
  line-height: 44px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.textpage h4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.textpage h5 {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.textpage h6 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.textpage .button {
  height: 60px;
  border-radius: 30px;
  font-size: 20px;
  letter-spacing: -0.6px;
  padding: 0 60px;
}

.textpage .row {
  margin-bottom: 40px;
}

.textpage p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #000000;
  margin-bottom: 15px;
}

.textpage p strong {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.66px;
}

.textpage blockquote {
  padding: 20px 20px 20px 20px;
  position: relative;
  background: #F4E5D4;
  overflow: hidden;
  position: relative;
  margin: 70px 0;
  border-radius: 10px;
}

.textpage blockquote:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e913";
  font-size: 116px;
  position: absolute;
  right: 40px;
  bottom: 0px;
  color: rgba(28, 30, 35, 0.06);
}

.textpage blockquote p {
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 0px;
  max-width: 774px;
}

.textpage blockquote p.blockquote-author {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  margin: 20px 0 2px 0;
  text-transform: none;
}

.textpage blockquote p.blockquote-author__status {
  text-transform: none;
  font-size: 14px;
  line-height: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #8F98B1;
  margin-bottom: 0;
}

.textpage ul:not(.product__accordion) li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.textpage ul:not(.product__accordion) li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 0;
  height: 0;
  border-radius: 0;
  background: none;
}

.textpage ol {
  counter-reset: myCounter;
}

.textpage ol li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.textpage ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ".";
  font-size: 16px;
  font-weight: 800;
  position: absolute;
  top: 0px;
  left: 0;
}

.textpage .img-title {
  margin-top: 24px;
  font-size: 20px;
}

.textpage table {
  margin-bottom: 30px;
  width: 100%;
}

.textpage table th {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding: 25px 16px 20px 16px;
  text-align: left;
  border-bottom: 1px solid #ececec;
}

.textpage table td {
  padding: 16px 16px 16px 16px;
  line-height: 1;
  min-width: 150px;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #ececec;
}

.textpage table td span {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 100px;
}

.textpage table tr:hover td {
  background-color: #F7F8FA;
}

.textpage .one-line__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.textpage .one-line__heading .button {
  font-size: 16px;
  white-space: nowrap;
}

.textpage .one-line__heading > * {
  margin-bottom: 0 !important;
}

.accordion {
  margin-bottom: 80px;
}

.accordion-item {
  border-bottom: solid 1px #eaeaea;
}

.accordion-item > a {
  display: flex;
  min-height: 56px;
  padding: 10px 30px 10px 24px;
  align-items: center;
  text-decoration: none;
  position: relative;
  justify-content: space-between;
  transition: all ease-in-out .3s;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.accordion-item > a:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e908";
  font-size: 20px;
  transition: all ease-in-out .3s;
  transform: rotate(90deg);
  width: 36px;
  height: 36px;
  color: #FC6703;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-item > a.active {
  background: #F7F8FA;
}

.accordion-item > a.active:after {
  transform: rotate(-90deg);
}

.accordion-item > a.active + div {
  max-height: 500px;
  background: #f8f7fc;
}

.accordion-item > a.active + div div {
  border-top: solid 1px #f8f7fc;
}

.accordion-item > div {
  transition: all ease-in-out .3s;
  max-height: 0;
  overflow: hidden;
}

.accordion-item > div div {
  padding: 0 24px;
  border-top: solid 1px #eaeaea;
}

.accordion-item > div p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.accordion-item:last-of-type {
  border-bottom: none;
}

.reviews {
  margin-bottom: 80px;
}

.reviews-item > div:first-of-type {
  display: flex;
  align-items: center;
}

.reviews-item > div:first-of-type img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex: 0 0 90px;
  margin-right: 24px;
  border-radius: 50%;
}

.reviews-item > div:first-of-type p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  width: 10px;
  line-height: 1.2;
}

.reviews-content {
  background: #209BFC;
  padding: 16px;
  border-radius: 12px;
  position: relative;
  margin-top: 16px;
}

.reviews-content:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #209BFC;
  top: -4px;
  left: 33px;
  transform: rotate(45deg);
  position: absolute;
}

.reviews-content p {
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.8);
}

.reviews-content p:last-of-type {
  margin-bottom: 0;
}

.reviews2 {
  padding: 0 114px;
}

.reviews2-item {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.04);
  padding: 16px;
  margin-bottom: 30px;
}

.reviews2-item__content p,
.reviews2-item__content a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0px;
}

.reviews2-item__content a {
  color: rgba(0, 0, 0, 0.55);
  margin-top: 15px;
  display: block;
}

.reviews2-item__content a:hover {
  color: #7b48f8;
}

.reviews2-item__heading {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.reviews2-item__heading:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  color: rgba(0, 0, 0, 0.24);
  margin-left: auto;
}

.reviews2-item__heading_vk:after {
  content: "\e904";
}

.reviews2-item__heading_fb:after {
  content: "\e906";
  font-size: 20px;
}

.reviews2-item__heading_in:after {
  content: "\e905";
  font-size: 20px;
}

.reviews2-item__heading img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  margin-right: 8px;
  border-radius: 50%;
}

.reviews2-item__heading p {
  margin-bottom: 0;
}

.reviews2__heading {
  margin-bottom: 50px;
}

.reviews2__heading p:first-of-type {
  font-family: 'TT Travels';
  font-size: 60px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 0;
}

.reviews2 .product-soc {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 60px;
}

.reviews2 .product-socials a {
  margin-right: 10px;
}

.post-meta {
  background-color: #f8f7fc;
  border-top: 1px solid #ececec;
}

.post-meta span.date {
  padding-right: 32px;
  border-right: 1px solid #ececec;
  display: flex;
  align-items: center;
  height: 30px;
  margin-right: 32px;
}

.post-meta span.views {
  padding-right: 32px;
  border-right: 1px solid #ececec;
  display: flex;
  align-items: center;
  height: 30px;
  margin-right: 32px;
}

.post-meta span.views:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90d";
  color: #7b48f8;
  margin-right: 10px;
  font-size: 10px;
}

.post-meta .container {
  display: flex;
  align-items: center;
  height: 80px;
}

.post-meta__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-meta__share > span {
  display: flex;
  align-items: center;
  letter-spacing: -0.32px;
  color: #020202;
  margin-right: 22px;
}

.post-meta__share > span:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e90a";
  margin-right: 15px;
  font-size: 18px;
}

.text-container {
  max-width: 1018px;
  margin: auto;
}

.product__accordion li a span {
  display: block;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }

  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }

  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }

  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media only screen and (min-width: 992px) {
  .hero-carousel.owl-carousel .owl-dots button.owl-dot span {
    opacity: 0;
  }

  .hero-carousel.owl-carousel .owl-dots button.owl-dot.skipped {
    background: rgba(255, 255, 255, 0.35);
  }

  .hero-carousel.owl-carousel .owl-dots button.owl-dot.active {
    background: #fff;
  }

  .story-carousel.owl-carousel .owl-dots button.owl-dot span {
    opacity: 0;
  }

  .story-carousel.owl-carousel .owl-dots button.owl-dot.skipped {
    background: rgba(255, 255, 255, 0.35);
  }

  .story-carousel.owl-carousel .owl-dots button.owl-dot.active {
    background: #fff;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }

  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

@media (max-width: 1399px) {
  .header-search.active {
    max-width: 358px;
    width: 358px;
  }
}

@media only screen and (max-width: 1399px) {
  .catalog-page .dragscroll-inner {
    padding-left: calc((100vw - 1110px)/2);
    padding-right: calc((100vw - 1110px)/2);
  }
}

@media only screen and (max-width: 1199px) {
  .dragscroll {
    cursor: grab;
  }

  .subscribe {
    padding: 0;
  }

  .subscribe-form {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .subscribe-form p {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 17px;
  }

  .subscribe-form p br {
    display: block;
  }

  .subscribe input,
  .subscribe .input-block {
    flex: 0 0 calc(50% - 10px);
    margin-right: 0;
  }

  .subscribe .btn {
    flex: 0 0 calc(50% - 10px);
  }

  .header-icon_search {
    display: none;
  }

  .menuright-visible {
    overflow: hidden;
  }

  .header-menuright .see-carousel.owl-carousel .owl-nav {
    margin-left: calc(100vw - 96px);
  }

  .header-menuright .cart-total p.cart-total__heading {
    display: none;
  }

  .header-menuright .cart-total {
    margin-bottom: 16px;
  }

  .header-menuright__close {
    margin-right: 0px !important;
  }

  .header-menuright__wrap {
    padding: 0 20px 40px 20px !important;
    width: 100vw;
    right: -100vw;
  }

  .menu-visible {
    overflow: hidden;
  }

  .header-menu__top span {
    display: block;
  }

  .header-menu__wrap {
    width: 100vw;
    margin-left: -100vw;
  }

  .header-menu__wrap .header-search {
    display: block;
  }

  .header-menu__wrap > span {
    display: block;
  }

  .header-menu__wrap > p {
    display: none;
  }

  .header-menu__wrap > ul {
    padding: 0;
  }

  .auth > p {
    margin-top: 0px;
  }

  .auth-block[data-block="3"] p {
    margin-top: 0px;
  }

  .footer {
    overflow: hidden;
  }

  .footer-nav {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .footer-bottom {
    padding: 20px 0 20px 0;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom .container div:last-of-type p {
    position: static;
    margin-top: 40px;
  }

  .footer-bottom .container div:first-of-type p {
    margin-bottom: 40px;
  }

  .footer-bottom .container div {
    width: 100%;
    text-align: center;
    height: unset;
  }

  .footer-bottom .container div p {
    font-size: 12px;
    line-height: 20px;
  }

  .footer-bottom .container p br,
  .footer-bottom .container a br {
    display: block;
  }

  .catalog-banner + .catalog-page {
    padding-top: 20px;
  }

  .catalog-folder {
    height: 384px;
  }

  .catalog-folder img {
    height: 384px;
  }

  .catalog-folder__content a {
    display: none;
  }

  .catalog-list .catalog-item.w-1-4 img,
  .catalog-list .catalog-item.w-1-2 img,
  .catalog-list .catalog-item.w-1-1 img {
    height: 250px;
  }

  .catalog-list.set-list .catalog-item.w-1-4 img,
  .catalog-list.set-list .catalog-item.w-1-2 img,
  .catalog-list.set-list .catalog-item.w-1-1 img {
    height: 220px;
  }

  .catalog-heading {
    font-size: 14px;
    line-height: 17px;
  }

  .catalog-heading a {
    line-height: 17px;
    text-transform: none;
  }

  .catalog-setoftheday img {
    height: 970px;
  }

  .catalog-filters {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 10;
    transition: all ease-in-out .3s;
    padding: 20px 20px 100px 20px;
    margin-left: -100vw;
  }

  .catalog-filters > ul {
    padding: 0;
  }

  .catalog-page .catalog-item.w-1-3 .catalog-item-carousel.owl-carousel img {
    height: 240px;
  }

  .catalog-page .dragscroll-inner {
    padding-left: calc((100vw - 930px)/2);
    padding-right: calc((100vw - 930px)/2);
  }

  .catalog-page__filter {
    pointer-events: all;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
  }

  .catalog-page__filter:before {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background: #1C1E23;
    position: absolute;
    top: 8px;
    left: 4px;
    transition: all ease-in-out .3s;
  }

  .catalog-page__filter:after {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background: #1C1E23;
    position: absolute;
    top: 8px;
    left: 4px;
    transform: rotate(90deg);
    transition: all ease-in-out .3s;
  }

  .catalog-main .catalog-list {
    flex-wrap: nowrap;
  }

  .catalog-main .catalog-item {
    flex: 0 0 158px;
    max-width: 158px;
  }

  .catalog-main .catalog-item.w2 {
    flex: 0 0 158px;
    max-width: 158px;
  }

  .catalog-main .dragscroll {
    position: relative;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
  }

  .catalog-main .dragscroll-inner {
    box-sizing: content-box;
    padding-left: calc((100vw - 930px)/2);
    padding-right: calc((100vw - 930px)/2);
    width: fit-content;
  }

  .catalog-main {
    padding: 20px 0;
  }

  .catalog-main__heading + p,
  .catalog-main__heading + h1 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 40px;
  }

  .set-carousel .catalog-setoftheday img {
    height: 600px;
  }

  .catalog-favorite {
    padding-top: 76px;
  }

  .catalog-favorite .catalog-item img {
    height: 250px;
  }

  .catalog-favorite .catalog-item.w-1-4 img {
    height: 250px;
  }

  .catalog-favorite .catalog-page__heading {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .product__buttons > div {
    position: fixed;
    background: #fff;
    padding: 12px 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .product__buttons > div .btn-dark {
    flex: 0 0 calc(100% - 92px);
  }

  .product__buttons > div > div {
    max-width: 960px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .product__buttons > .btn {
    flex: 0 0 100%;
  }

  .product__buttons .btn-heart {
    margin: 0;
  }

  .product-heading {
    margin-bottom: 16px;
  }

  .sets .catalog-setoftheday img {
    height: 400px;
  }

  .cart-empty p {
    text-align: left;
  }

  .cart-empty .btn {
    width: 100%;
  }

  .cart-menuright__footer {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 0 !important;
    margin-bottom: 70px;
    margin-left: 0px;
  }

  .advantages {
    padding-top: 40px;
  }

  .advantages .dragscroll {
    position: relative;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
  }

  .advantages .dragscroll-inner {
    box-sizing: content-box;
    padding-left: calc((100vw - 930px)/2);
    padding-right: calc((100vw - 930px)/2);
    width: fit-content;
  }
}

@media (max-width: 1199px) {
  .footer-top .container {
    flex-direction: column;
    align-items: center;
  }
}

@media only screen and (max-width: 991px) {
  label.checkbox {
    padding-left: 60px;
  }

  label.checkbox input[type="checkbox"] + span,
  label.checkbox input[type="radio"] + span {
    left: 0;
  }

  .contact-form {
    max-width: 100%;
  }

  .fancybox-slide--html {
    padding: 0;
  }

  .mdl {
    width: 320px;
  }

  #modal-size {
    height: 100vh;
    max-width: unset;
    overflow: auto;
  }

  #modal-size img {
    height: auto;
  }

  .modal-cert__select {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .modal-cert__select li {
    margin-right: 10px;
  }

  .modal-cert__select li:last-of-type {
    margin-right: 0px;
  }

  .modal-cert {
    height: 100vh;
    max-width: unset;
    overflow: auto;
  }

  .modal-text {
    height: 100vh;
    max-width: unset;
    overflow: auto;
  }

  .modal-address {
    height: 100vh;
    max-width: unset;
    overflow: auto;
  }

  #modal-zakaz {
    height: 100vh;
    max-width: unset;
    overflow: auto;
  }

  #modal-namek:before {
    padding-left: 20px;
  }

  .modal-namek__inner {
    flex-wrap: wrap;
  }

  .modal-namek__inner img {
    width: 100%;
    height: 600px;
    margin-left: 0px;
    margin-top: -20px;
  }

  .modal-namek__inner > div {
    width: 100%;
  }

  .modal {
    width: 100%;
    height: 100vh;
    overflow: auto;
    padding: 0px 20px 20px 20px;
    max-width: auto;
  }

  .modal::-webkit-scrollbar {
    display: none;
  }

  .modal:before {
    content: "goldengal";
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding: 0 0px;
    background: #fff;
    height: 56px;
    margin-bottom: 20px;
  }

  .modal .fancybox-close-small {
    box-shadow: none;
    background: none;
    width: 24px;
    height: 24px;
    top: 15px;
    padding: 0;
    right: 15px;
  }

  .subscribe {
    background: #F4E5D4;
  }

  .subscribe-form {
    padding: 40px 0px;
  }
  
  .modal.modal-promo_01 form {
    max-width: 598px;
    margin: 0 auto;
  }

  .modal.modal-promo_01 {
    max-width: unset;
    width: 100%;
    padding: 0px;
    background: #f0f0f0 url(../images/modal01-mob1.png) 0 50px no-repeat;
  }

  .modal.modal-promo_01:before {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 0 20px;
  }

  .modal.modal-promo_01 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    background: url(../images/modal01-mob2.png) 100% 100% no-repeat;
  }

  .modal.modal-promo_02 {
    max-width: unset;
    width: 100%;
    padding: 0px;
  }

  .modal.modal-promo_02:before {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 0 20px;
  }

  .modal.modal-promo_02 form {
    position: absolute;
    bottom: 0;
  }

  .modal.modal-promo_02 form:before {
    content: "";
    display: block;
    left: -1000px;
    right: -1000px;
    top: 0;
    bottom: 0;
    background: #fff;
    position: absolute;
  }

  .modal.modal-promo_02 form > * {
    position: relative;
  }

  .modal.modal-promo_03 {
    max-width: unset;
    width: 100%;
    padding: 0px;
    background: #F0F0F0 url(../images/modal03-m.png) top right no-repeat;
    background-size: contain;
  }

  .modal.modal-promo_03:before {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 0 20px;
  }

  .modal.modal-promo_03 > div {
    padding-left: 50px;
    height: 100%;
  }

  .modal.modal-promo_04 {
    max-width: unset;
    width: 100%;
    padding: 0px;
    background: #f0f0f0 url(../images/modal01-mob1.png) 0 50px no-repeat;
  }

  .modal.modal-promo_04:before {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 0 20px;
  }

  .modal.modal-promo_04 > div {
    background: url(../images/modal01-mob2.png) 100% 100% no-repeat;
    height: 100%;
    padding: 0 150px;
  }

  .modal.modal-promo_05 {
    max-width: unset;
    width: 100%;
    padding: 0px;
  }

  .modal.modal-promo_05:before {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 0 20px;
  }

  .modal.modal-promo_05 > div {
    height: 100%;
  }

  .modal.modal-promo_06 {
    max-width: unset;
    width: 100%;
    padding: 0px;
    background: #F0F0F0 url(../images/modal06-t.png) center right no-repeat;
    background-size: contain;
  }

  .modal.modal-promo_06:before {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 0 20px;
  }

  .modal.modal-promo_06 > div {
    min-height: 100%;
  }

  .footer-logo {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 4px;
    width: 100%;
    display: block;
    text-align: center;
  }

  .footer-slogan {
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: rgba(28, 30, 35, 0.65);
  }

  .footer-top {
    padding: 20px 0 40px 0;
  }

  .footer-top .container {
    flex-wrap: wrap;
    padding: 0 15px;
  }

  .footer-middle .container {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .footer-nav p {
    display: none;
  }

  .footer-nav ul {
    margin-bottom: 20px;
  }

  .footer-nav ul li {
    width: 100%;
  }

  .footer-nav ul li a {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 14px;
    line-height: 17px;
  }

  .footer-phone {
    font-size: 24px;
    line-height: 29px;
    text-align: center;
  }

  .pagination ul {
    justify-content: center;
  }

  .catalog-folders .container {
    padding: 0;
    max-width: 100%;
  }

  .catalog-page .catalog-item.w-1-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .catalog-page .catalog-item.w-2-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .catalog-page .dragscroll-inner {
    padding-left: calc((100vw - 690px)/2);
    padding-right: calc((100vw - 690px)/2);
  }

  .catalog-main .dragscroll-inner {
    padding-left: calc((100vw - 690px)/2);
    padding-right: calc((100vw - 690px)/2);
  }

  .set-carousel {
    margin-top: 0;
  }

  .set-carousel .catalog-setoftheday img {
    height: 100vh;
  }

  .catalog-favorite .see-carousel + .see-carousel__heading {
    margin-top: 30px;
  }

  .catalog-favorite .see-carousel.owl-carousel .owl-nav {
    top: -32px;
  }

  .catalog-favorite .see-carousel__heading {
    font-size: 14px;
    line-height: 17px;
  }

  .catalog-favorite__empty {
    text-align: left;
    margin-bottom: 60px;
  }

  .catalog-favorite__empty .btn {
    width: 100%;
  }

  .catalog-favorite__empty > p:first-of-type {
    text-align: left;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #8F98B1;
    margin-bottom: 7px;
  }

  .catalog-favorite__empty > p:first-of-type + p {
    text-align: left;
    margin-bottom: 20px;
  }

  .catalog-favorite .catalog-item.w-1-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product {
    overflow: hidden;
    padding: 56px 0 20px 0;
  }

  .product-carousel .product-gallery__zoom {
    bottom: 100px;
  }

  .product-carousel img {
    height: calc(var(--vh) * 100);
  }

  .product__buttons > div > div {
    max-width: 720px;
  }

  .product__set-products .catalog-item.w-1-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product__set-dragscroll {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px;
  }

  .product-favorite {
    margin-top: 20px;
    padding-top: 0;
  }

  .product-favorite + .subscribe {
    margin-bottom: 20px;
  }

  .product-main {
    padding: 20px 0 0 0;
  }

  .product__price span.old-price {
    font-size: 12px;
    line-height: 15px;
    margin-left: 2px;
  }

  .product__price span.discount {
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    margin-left: 4px;
  }

  .product-gallery {
    display: none;
  }

  .sets {
    padding: 0 0 40px 0;
  }

  .sets .catalog-setoftheday img {
    height: calc(var(--vh) * 100);
  }

  .sets > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .set-carousel .catalog-setoftheday__badge {
    top: 76px;
  }

  .cart__status .row > div {
    margin-bottom: 30px;
  }

  .cart__status {
    margin-top: 0px;
    text-align: left;
  }

  .cart__status > img {
    height: 30px;
    margin-bottom: 10px;
  }

  .cart__status > p {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 40px;
  }

  .cart__status > p + p {
    text-align: left;
    margin-top: -24px;
    margin-bottom: 20px;
  }

  .cart__status .btn {
    margin: 0;
  }

  .cart__status .btn-pay {
    margin: -20px 0 44px 0;
  }

  .cart__status > div > p {
    margin-bottom: 28px;
  }

  .personal-cert {
    max-width: 100%;
  }

  .personal-account {
    display: block;
    margin-bottom: 20px;
  }

  .personal-account__text > p {
    margin-bottom: 10px;
  }

  .personal-account .btn {
    margin-left: 0px;
    width: 320px;
  }

  .personal-history__address {
    margin-bottom: 20px;
  }

  .personal-history__heading {
    justify-content: space-between;
  }

  .personal .input-blocks {
    flex-wrap: wrap;
  }

  .personal .input-block {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .personal .input-block-w100 {
    flex-wrap: wrap;
  }

  .personal .input-block-w100 .btn {
    background: #ededed;
  }

  .personal .input-block-w100 .input-block {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .personal-heading {
    display: none;
  }

  .personal-nav {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4e5e6;
    justify-content: space-between;
    margin-bottom: 32px;
  }

  .personal-nav li {
    margin-bottom: 0px;
  }

  .hero-carousel.owl-carousel .owl-dots {
    position: absolute;
    top: 56px;
    max-width: 690px;
    left: 50%;
    margin-left: -345px;
  }

  .hero-carousel.owl-carousel .owl-dots button.owl-dot {
    width: 100%;
  }

  .advantages .dragscroll-inner {
    padding-left: calc((100vw - 690px)/2);
    padding-right: calc((100vw - 690px)/2);
  }

  .story-carousel.owl-carousel .owl-dots {
    position: absolute;
    top: 56px;
    max-width: 690px;
    left: 50%;
    margin-left: -345px;
  }

  .story-carousel.owl-carousel .owl-dots button.owl-dot {
    width: 100%;
  }

  .textpage {
    padding: 76px 0;
  }

  .reviews .dragscroll-outter {
    width: 100%;
  }

  .reviews-content {
    margin-bottom: 40px;
  }

  .reviews2 {
    padding: 0;
  }

  .reviews2 .grid-sizer {
    display: none;
  }

  .reviews2__heading {
    margin-bottom: 0px;
  }

  .reviews2 .product-soc {
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 767px) {
  label.checkbox {
    width: fit-content;
    padding-left: 53px;
    min-height: 36px;
    margin-bottom: 30px;
    font-size: 14px;
  }

  label.checkbox input[type="checkbox"] + span,
  label.checkbox input[type="radio"] + span {
    width: 36px;
    height: 36px;
  }

  .contact-form {
    max-width: 100%;
    margin: 0px auto;
  }

  .contact-form p.heading {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .contact-form form > div {
    flex-wrap: wrap;
  }

  .contact-form form > div input,
  .contact-form form > div p,
  .contact-form form > div button {
    flex: 0 0 100%;
  }

  .contact-form form > div p {
    margin-bottom: 24px;
  }

  .contact-form form > div .button {
    height: 50px;
    width: 100%;
  }

  .modal-text .btn {
    width: 100%;
  }

  .modal-address .input-blocks {
    flex-wrap: wrap;
  }

  .modal-address .input-blocks .input-block {
    width: 100%;
  }

  .modal-namek__inner img {
    height: 360px;
  }

  input[type=number] {
    width: 100%;
    height: 30px;
    font-size: 16px;
  }

  .quantity-button {
    height: 30px;
    width: 30px;
  }

  .radio-blocks.radio-blocks__delivery .radio-block {
    display: block;
    height: fit-content;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .radio-blocks.radio-blocks__delivery .radio-block > div:nth-of-type(2) p {
    text-align: left;
    padding-left: 56px;
  }
  
  .modal.modal-promo_01 > div > div {
    justify-content: center;
  }

  .modal.modal-promo_01 > div > div span {
    font-size: 60px;
  }

  .modal.modal-promo_01 > div > div p {
    font-size: 20px;
  }

  .modal.modal-promo_01 > div > div + p {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .modal.modal-promo_02 form > div {
    display: block;
  }

  .modal.modal-promo_02 form > div .btn {
    width: 100%;
  }

  .modal.modal-promo_02 > div {
    padding-bottom: 140px;
  }

  .modal.modal-promo_02 > div > div > div {
    flex-direction: column;
  }

  .modal.modal-promo_02 > div > div > div p {
    text-align: center;
  }

  .modal.modal-promo_02 > div > div > div p br {
    display: none;
  }

  .modal.modal-promo_03 {
    background: #F0F0F0;
  }
  
  .modal.modal-promo_03.modal-promo_03_alt {
    background: #F0F0F0 url(../images/modal03-m2.png) 100% 170px no-repeat;
  }

  .modal.modal-promo_03.modal-promo_03_alt > div {
    padding-bottom: 144px;
  }

  .modal.modal-promo_03 > div {
    padding: 20px;
    align-items: center;
  }

  .modal.modal-promo_03 > div p.medium {
    font-size: 24px;
  }

  .modal.modal-promo_03 > div p.big {
    font-size: 56px;
  }

  .modal.modal-promo_03 > div span {
    font-size: 63px;
  }

  .modal.modal-promo_04 > div {
    padding: 20px;
    min-height: 350px;
    align-items: center;
    text-align: center;
  }

  .modal.modal-promo_04 > div p.medium {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .modal.modal-promo_04 > div p.big {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 18px;
  }

  .modal.modal-promo_04 > div span {
    font-size: 56px;
  }

  .modal.modal-promo_04 > div .btn {
    margin: 0 0 30px 0;
  }

  .modal.modal-promo_05 > div {
    padding: 20px;
    min-height: 350px;
  }

  .modal.modal-promo_05 > div p.medium {
    font-size: 32px;
    margin: 0 0 30px 0;
  }

  .modal.modal-promo_05 > div p.big {
    font-size: 64px;
    line-height: normal;
    margin-bottom: 18px;
  }

  .modal.modal-promo_05 > div span {
    font-size: 56px;
  }

  .modal.modal-promo_05 > div .btn {
    margin: 10px 0 20px 0;
  }

  .modal.modal-promo_06 {
    background: #F0F0F0 url(../images/modal06-m-1.png) top left no-repeat;
    background-size: contain;
  }

  .modal.modal-promo_06 > div {
    padding: 20px;
    align-items: center;
    text-align: center;
    background: url(../images/modal06-m-2.png) bottom left no-repeat;
    background-size: contain;
  }

  .modal.modal-promo_06 > div p.medium {
    font-size: 24px;
    margin: 0 0 30px 0;
  }

  .modal.modal-promo_06 > div p.big + .btn {
    margin-top: 30px;
  }

  .modal.modal-promo_06 > div p.big {
    font-size: 64px;
    line-height: normal;
    margin-bottom: 18px;
  }

  .modal.modal-promo_06 > div span {
    font-size: 56px;
  }

  .modal.modal-promo_06 > div .btn {
    margin: 10px 0 20px 0;
  }

  .hamburger {
    display: block;
  }

  .auth-columns {
    flex-wrap: wrap;
  }

  .auth-columns > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .auth-tabs {
    margin-bottom: 20px;
  }

  .cookie {
    width: 320px;
    margin-left: -160px;
    padding-left: 52px;
    padding-right: 10px;
    background: #fff url(../images/cookie.svg) 10px center no-repeat;
  }

  .cookie p {
    font-size: 14px;
    line-height: 17px;
  }

  .footer-top .container {
    padding-bottom: 0px;
  }

  .footer-top .container > div:first-of-type {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .owl-carousel .owl-nav button {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .owl-carousel .owl-nav button.owl-next {
    margin-right: -6px;
  }

  .owl-carousel .owl-nav button.owl-prev {
    margin-left: -6px;
  }

  .pagination {
    margin-bottom: 40px;
    position: relative;
  }

  .pagination ul li:first-of-type a:before,
  .pagination ul li:first-of-type span:before {
    transform: rotate(180deg);
  }

  .catalog-banner {
    height: 240px;
  }

  .catalog-folder {
    height: 180px;
  }

  .catalog-folder img {
    height: 180px;
  }

  .catalog-setoftheday img {
    height: 538px;
  }

  .catalog-page {
    padding: 76px 0 20px 0;
  }

  .catalog-page .catalog-item {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .catalog-page .catalog-item.w-1-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .catalog-page .dragscroll-inner {
    padding-left: calc((100vw - 510px)/2);
    padding-right: calc((100vw - 510px)/2);
  }

  .catalog-page__sort {
    left: -5px;
  }

  .catalog-page__top {
    margin-top: 20px;
  }

  .catalog-main .dragscroll-inner {
    padding-left: calc((100vw - 510px)/2);
    padding-right: calc((100vw - 510px)/2);
  }

  .product {
    padding: 56px 0 20px 0;
  }

  .product__accordion {
    margin-top: 20px;
  }

  .product__set-products .catalog-item {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-heading {
    font-size: 16px;
    line-height: 19px;
  }

  .product__material > div {
    padding: 0 20px;
    width: calc(100% + 40px);
    margin-left: -20px;
    overflow: auto;
  }

  .product__material > div .product-checkboxes2 {
    width: fit-content;
  }

  .product__material > div::-webkit-scrollbar {
    display: none;
  }

  .product__sizes {
    width: 100%;
  }

  .product__sizes > div {
    padding: 0 20px;
    width: calc(100% + 40px);
    margin-left: -20px;
    overflow: auto;
  }

  .product__sizes > div .product-checkboxes {
    width: fit-content;
    flex-wrap: nowrap;
  }

  .product__sizes > div::-webkit-scrollbar {
    display: none;
  }

  .product__price {
    font-size: 20px;
    line-height: 24px;
  }

  .cart {
    padding: 72px 0 20px 0;
  }

  .cart .order-block .input-blocks {
    flex-wrap: wrap;
  }

  .cart .order-block .input-blocks .input-block {
    flex: 0 0 100%;
  }

  .cart__status .btn {
    width: 100%;
  }

  .cart__status .btn-pay {
    width: 100%;
  }

  .cart-footer {
    display: block;
  }

  .cart-footer .btn {
    width: 100%;
    margin-bottom: 16px;
  }

  .personal .row .col-lg-4:before {
    content: "";
    display: block;
    position: absolute;
    left: 15px;
    right: 15px;
    background: #e4e5e6;
    top: 30px;
    height: 1px;
  }

  .personal-notify {
    height: auto;
    padding: 16px 0;
  }

  .personal-cert__form {
    display: block;
  }

  .personal .personal-cert .btn {
    width: 100%;
  }

  .personal .personal-cert .input-block {
    flex: 0 0 100%;
  }

  .personal-account .btn {
    width: 100%;
  }

  .personal .address-last .btn,
  .personal .address-last .btn:nth-of-type(1) {
    width: 100%;
    margin-left: 0;
  }

  .personal-nav {
    padding-bottom: 10px;
    border-bottom: 0;
    margin-bottom: 0px;
  }

  .personal-nav a {
    white-space: nowrap;
  }

  .personal-nav li {
    margin-right: 16px;
  }

  .personal-nav li:last-of-type {
    margin-right: 0px;
  }

  .personal-nav-dragscroll {
    width: calc(100% + 40px) !important;
    margin-left: -20px;
    padding: 0 20px;
    overflow: auto;
    margin-bottom: 30px;
  }

  .personal-nav-dragscroll::-webkit-scrollbar {
    display: none;
  }

  .personal-nav-dragscroll .personal-nav {
    width: fit-content;
  }

  .hero-carousel.owl-carousel .owl-dots {
    max-width: 510px;
    margin-left: -255px;
  }

  .hero-carousel__slide {
    height: 596px;
  }

  .hero-carousel__slide p {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-carousel__slide p + p {
    padding: 0 15px;
  }

  .advantages .dragscroll-inner {
    padding-left: calc((100vw - 510px)/2);
    padding-right: calc((100vw - 510px)/2);
  }

  .seo {
    padding: 20px 0 0px 0;
  }

  .seo .seo-heading {
    font-size: 14px;
    line-height: 17px;
  }

  .seo p {
    font-size: 12px;
    line-height: 15px;
  }

  .story-carousel.owl-carousel .owl-dots {
    max-width: 510px;
    margin-left: -255px;
  }

  .story-carousel__slide {
    height: 596px;
  }

  .story-carousel__slide p {
    font-size: 22px;
    line-height: 30px;
  }

  .story-carousel__slide p + p {
    padding: 0 15px;
  }

  .app-carousel .hero-carousel__slide p {
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .img-fluid {
    margin-bottom: 20px;
  }

  .row-gallery .img-fluid {
    margin-bottom: 0px;
  }

  .video {
    margin-bottom: 20px;
  }

  .video:after {
    background-size: 30px;
  }

  .video:hover:after {
    background-size: 30px;
  }

  .center-middle {
    padding: 0px;
  }

  .round-img {
    margin: 20px 0;
  }

  .zoom-link:after {
    background-size: 10px;
  }

  .zoom-link:hover:after {
    background-size: 16px;
  }

  .owl-carousel3 {
    margin: 0 auto 20px auto;
  }

  .owl-carousel3.owl-carousel .owl-nav button.owl-next {
    margin-right: -15px;
  }

  .owl-carousel3.owl-carousel .owl-nav button.owl-prev {
    margin-left: -15px;
  }

  .owl-carousel3 .owl-nav {
    margin-top: -30px;
  }

  .owl-carousel4 {
    margin: 0 auto 20px auto;
  }

  .owl-carousel4.owl-carousel .owl-nav button.owl-next {
    margin-right: -15px;
  }

  .owl-carousel4.owl-carousel .owl-nav button.owl-prev {
    margin-left: -15px;
  }

  .owl-carousel4 .owl-nav {
    margin-top: -25px;
  }

  .textpage {
    padding: 56px 0;
  }

  .textpage h1 {
    font-size: 30px;
    line-height: 42px;
  }

  .textpage h1 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 39px;
  }

  .textpage h2 {
    font-size: 24px;
    font-size: 23px;
  }

  .textpage h3 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 20px;
  }

  .textpage h4 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.4px;
  }

  .textpage h5 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
  }

  .textpage h6 {
    font-size: 14px;
    line-height: 20px;
  }

  .textpage .button {
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .textpage .row {
    margin-bottom: 0px;
  }

  .textpage blockquote {
    margin: 40px 0;
    border-radius: 4px;
  }

  .textpage blockquote:before {
    display: none;
  }

  .textpage blockquote p {
    font-size: 16px;
    line-height: 24px;
    z-index: 2;
  }

  .textpage blockquote p.blockquote-author {
    font-size: 14px;
    font-weight: 400;
  }

  .textpage blockquote p.blockquote-author__status {
    font-size: 12px;
    line-height: 16px;
  }

  .textpage .img-title {
    font-size: 16px;
    margin-top: 0px;
  }

  .textpage table {
    width: 100%;
    min-width: 600px;
  }

  .textpage table th {
    font-size: 18px;
  }

  .textpage table td {
    min-width: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .accordion {
    margin-bottom: 20px;
  }

  .accordion {
    width: calc(100% - 30px);
    margin-left: 15px;
  }

  .accordion-item > a {
    padding: 10px 30px 10px 15px;
  }

  .accordion-item > div div {
    padding: 0 15px;
  }

  .accordion-item > div p {
    font-size: 14px;
  }

  .reviews {
    margin-bottom: 20px;
  }

  .reviews .row {
    margin-right: -6px;
    margin-left: -6px;
  }

  .reviews .row > div {
    padding-right: 6px;
    padding-left: 6px;
  }

  .reviews-item {
    min-width: 320px;
  }

  .reviews2 {
    padding: 40px 0;
  }

  .reviews2 .dragscroll {
    margin-left: -21px;
    width: calc(100% + 36px);
  }

  .reviews2-items {
    margin-right: -6px;
    margin-left: -6px;
  }

  .reviews2-items > div {
    padding-right: 6px;
    padding-left: 6px;
  }

  .reviews2-item {
    min-width: 320px;
  }

  .reviews2__heading p:first-of-type {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.2px;
  }

  .reviews2 .product-socials {
    justify-content: space-evenly;
  }

  .post-meta span.date {
    flex: 0 0 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    justify-content: center;
  }

  .post-meta span.views {
    flex: 0 0 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    justify-content: center;
    border-right: 0;
  }

  .post-meta .container {
    flex-wrap: wrap;
    height: 11	0px;
  }

  .post-meta__share {
    justify-content: space-between;
    width: 100%;
  }

  .dragscroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: 0;
    margin-left: 0;
    cursor: grab;
    width: 100%;
  }

  .dragscroll::-webkit-scrollbar {
    display: none;
  }
}

@media only screen and (max-width: 565px) {
  .subscribe .container {
    padding: 0;
  }

  .subscribe-form {
    padding: 32px 20px;
  }

  .subscribe input,
  .subscribe .input-block {
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .subscribe .input-block .input-block__error {
    margin-top: -17px;
  }

  .subscribe .btn {
    flex: 0 0 100%;
  }

  .footer-contacts {
    width: 100%;
  }

  .footer-socials {
    justify-content: space-evenly;
    width: 100%;
  }

  .footer-socials a {
    margin-right: 0px;
  }

  .catalog-list .btn,
  .catalog-list + .btn {
    width: 100%;
  }

  .catalog-page .dragscroll-inner {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .catalog-main .dragscroll-inner {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .cart-menuright__footer {
    flex-direction: column;
  }

  .cart-menuright__footer .btn {
    flex: unset;
    width: 100%;
  }

  .cart-menuright__footer .btn-dark {
    margin-top: 16px;
  }

  .hero-carousel.owl-carousel .owl-dots {
    margin-left: 15px;
    left: 0;
    width: calc(100% - 30px);
  }

  .hero-carousel__slide a.button {
    width: calc(100% - 30px);
  }

  .advantages .dragscroll-inner {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .story-carousel.owl-carousel .owl-dots {
    margin-left: 15px;
    left: 0;
    width: calc(100% - 30px);
  }

  .story-carousel__slide a.button {
    width: calc(100% - 30px);
  }

  .accordion {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}