/**-------------------------------------------------------------------------------------------*/
/*****     FONTS     *****/
/**-------------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'AvenirNextCyr';
  src: url("../fonts/AvenirNextCyr-Regular.eot");
  src: url("../fonts/AvenirNextCyr-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/AvenirNextCyr-Regular.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Regular.woff") format("woff"), url("../fonts/AvenirNextCyr-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirNextCyr';
  src: url("../fonts/AvenirNextCyr-Medium.eot");
  src: url("../fonts/AvenirNextCyr-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/AvenirNextCyr-Medium.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Medium.woff") format("woff"), url("../fonts/AvenirNextCyr-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirNextCyr';
  src: url("../fonts/AvenirNextCyr-Demi.eot");
  src: url("../fonts/AvenirNextCyr-Demi.eot?#iefix") format("embedded-opentype"), url("../fonts/AvenirNextCyr-Demi.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Demi.woff") format("woff"), url("../fonts/AvenirNextCyr-Demi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirNextCyr';
  src: url("../fonts/AvenirNextCyr-Bold.eot");
  src: url("../fonts/AvenirNextCyr-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/AvenirNextCyr-Bold.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Bold.woff") format("woff"), url("../fonts/AvenirNextCyr-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/**-------------------------------------------------------------------------------------------*/
/*****     CUSTOM PRELOADER     *****/
/**-------------------------------------------------------------------------------------------*/
#loader-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  -webkit-animation: loader 1s linear;
  animation: loader 1s linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes loader {
  0% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    display: none;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
  }
}

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

  70% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    display: none;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* BOOTSTRAP GRID */
/*-------------------------------------------------------------------------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

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

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

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

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  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,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.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-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  max-width: 100%;
}

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

.col-1 {
  -ms-flex: 0 0 8.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  -webkit-box-flex: 0;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

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

.col-4 {
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  -webkit-box-flex: 0;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

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

.col-7 {
  -ms-flex: 0 0 58.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  -webkit-box-flex: 0;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

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

.col-10 {
  -ms-flex: 0 0 83.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  -webkit-box-flex: 0;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

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

.order-first {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  -webkit-box-ordinal-group: 14;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  -webkit-box-ordinal-group: 1;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 3;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  -webkit-box-ordinal-group: 4;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  -webkit-box-ordinal-group: 5;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  -webkit-box-ordinal-group: 6;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  -webkit-box-ordinal-group: 7;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  -webkit-box-ordinal-group: 8;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  -webkit-box-ordinal-group: 9;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  -webkit-box-ordinal-group: 10;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  -webkit-box-ordinal-group: 11;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  -webkit-box-ordinal-group: 12;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  -webkit-box-ordinal-group: 13;
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .order-sm-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .order-sm-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .order-sm-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .order-sm-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .order-sm-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .order-sm-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .order-sm-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .order-sm-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .order-sm-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .order-sm-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .order-sm-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .order-sm-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .order-sm-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .order-sm-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .order-md-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .order-md-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .order-md-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .order-md-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .order-md-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .order-md-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .order-md-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .order-md-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .order-md-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .order-md-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .order-md-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .order-md-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .order-md-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .order-md-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .order-lg-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .order-lg-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .order-lg-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .order-lg-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .order-lg-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .order-lg-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .order-lg-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .order-lg-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .order-lg-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .order-lg-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .order-lg-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .order-lg-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .order-lg-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .order-lg-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .order-xl-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .order-xl-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .order-xl-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .order-xl-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .order-xl-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .order-xl-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .order-xl-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .order-xl-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .order-xl-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .order-xl-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .order-xl-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .order-xl-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .order-xl-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .order-xl-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.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: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: -webkit-inline-box !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .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: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .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: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .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: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .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: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

.w-100 {
  width: 100% !important;
}

/**-------------------------------------------------------------------------------------------*/
/*****     RESET STYLES     *****/
/**-------------------------------------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: scroll;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  color: inherit;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
}

a:link,
a:visited,
a:active,
a:hover {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

iframe {
  border: none;
  outline: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.clear {
  clear: both;
  overflow: hidden;
  height: 0;
  font-size: 0;
  display: block;
}

/**-------------------------------------------------------------------------------------------*/
/*****     RIGHT SCROLL     *****/
/**-------------------------------------------------------------------------------------------*/
html:not(.touch-screen)::-webkit-scrollbar,
html:not(.touch-screen) *::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

html:not(.touch-screen)::-webkit-scrollbar-track,
html:not(.touch-screen) *::-webkit-scrollbar-track {
  background: #fff;
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) *::-webkit-scrollbar-thumb {
  background: #3DAE2B;
}

:focus,
:hover,
:active,
:visited {
  outline: none;
}

/**-------------------------------------------------------------------------------------------*/
/*****     TYPOGRAPHY     *****/
/**-------------------------------------------------------------------------------------------*/
body {
  font-family: "AvenirNextCyr", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25em;
  color: #585858;
}

b,
strong {
  font-weight: bold;
}

h1,
.h1 {
  font-size: 50px;
  line-height: 1.1em;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 1.1em;
}

h3,
.h3 {
  font-size: 25px;
  line-height: 1.2em;
}

h4,
.h4 {
  font-size: 18px;
  line-height: 1.25em;
}

h5,
.h5 {
  font-size: 16px;
  line-height: 1.25em;
}

h6,
.h6 {
  font-size: 14px;
  line-height: 1.2em;
}

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

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text {
  font-size: 16px;
  line-height: 1.5em;
}

.text-sm {
  font-size: 12px;
  line-height: 1.5em;
}

.text-lg {
  font-size: 18px;
  line-height: 1.5em;
}

.text>* {
  margin-bottom: 20px;
}

.text>*:last-child {
  margin-bottom: 0;
}

.text ol li,
.text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 5px;
  font-family: 'AvenirNextCyr', sans-serif;
}

.text ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3DAE2B;
}

.text ol {
  counter-reset: number;
}

.text ol li {
  padding-left: 50px;
}

.text ol li::before {
  color: #fff;
  font-family: "AvenirNextCyr", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  padding: 4px 8px;
  background: #3DAE2B;
  border-radius: 2px;
  counter-increment: number;
  content: "1."counter(number) "";
  position: absolute;
  top: 3px;
  left: 10px;
}

.text ol li:last-child,
.text ul li:last-child {
  margin-bottom: 0;
}

.text ol li span,
.text ul li span {
  color: #3DAE2B;
  font-weight: 600;
}

.text a,
.text span.open-popup {
  position: relative;
  color: #3DAE2B;
  cursor: pointer;
  white-space: nowrap;
}

.text a::before,
.text span.open-popup::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3DAE2B;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}

@media (hover: hover),
(-ms-high-contrast: none) {

  .text a:hover::before,
  .text span.open-popup:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

html {
  height: 100%;
}

body {
  height: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

html.overflow-hidden body {
  overflow: hidden;
}

@media (max-width: 340px) {

  h1,
  .h1 {
    font-size: 32px;
  }
}

/**-------------------------------------------------------------------------------------------*/
/*****     SPACER     *****/
/**-------------------------------------------------------------------------------------------*/
.spacer {
  clear: both;
}

.spacer-xl {
  height: 100px;
}

.spacer-lg {
  height: 80px;
}

.spacer-md {
  height: 60px;
}

.spacer-sm {
  height: 40px;
}

.spacer-xs {
  height: 20px;
}

.spacer-ss {
  height: 10px;
}

.container {
  max-width: 1690px;
}

@media (max-width: 768px) {
  .spacer-sm {
    height: 30px;
  }

  .spacer-md {
    height: 30px;
  }
}

/**-------------------------------------------------------------------------------------------*/
/*****     Icons     *****/
/**-------------------------------------------------------------------------------------------*/
.icon {
  fill: #3DAE2B;
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.icon-2 {
  fill: transparent;
  stroke: #3DAE2B;
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.icon-3 {
  fill: #FFC700;
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.title {
  font-size: 36px;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.title-2 {
  color: #3DAE2B;
  font-weight: 600;
  margin-bottom: 5px;
}

@media (max-width: 600px) {
  .title {
    font-size: 28px;
  }
}

/**-------------------------------------------------------------------------------------------*/
/*****     BTN STYLES     *****/
/**-------------------------------------------------------------------------------------------*/
.btn {
  display: inline-block;
  vertical-align: bottom;
  text-align: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding: 17px 0;
  line-height: 1em;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.btn-primary {
  background: #3DAE2B;
  border: 1px solid #3DAE2B;
  color: #FFF;
  border-radius: 5px;
  position: relative;
}

.btn-secondary {
  border: 1px solid #3DAE2B;
  background: #fff;
  border-radius: 5px;
  color: #3DAE2B;
}

.btn-3 {
  color: #585858;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
}

.btn-optional {
  background: #E5E5E5;
  border: 1px solid #E5E5E5;
  color: #fff;
  border-radius: 5px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-fix {
  padding: 12px 35px;
  border-radius: 5px;
}

.btn-back {
  background-color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding: 18px 20px;
  border-radius: 5px;
}

.btn-back .icon {
  fill: #202020;
  width: 11px;
  height: 11px;
  margin-top: -2px;
  margin-right: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-detail {
  border: 1px solid #3DAE2B;
  background: #fff;
  border-radius: 5px;
  color: #3DAE2B;
  font-size: 12px;
  font-weight: 600;
  padding: 13px 30px;
}

.btn-detail .icon {
  width: 8px;
  height: 8px;
  margin-left: 4px;
  margin-top: -3px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-fix-2 {
  padding: 17px 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-close {
  padding: 0;
  width: 20px;
  height: 20px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-close .icon-2 {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-close-2 {
  padding: 0;
  width: 11px;
  height: 11px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-close-2 .icon-2 {
  width: 11px;
  height: 11px;
  stroke: #D5D5D5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (hover: hover),
(-ms-high-contrast: none) {
  .btn-primary:hover {
    background: #FFF;
    color: #3DAE2B;
  }

  .btn-secondary:hover {
    background: #3DAE2B;
    color: #FFF;
  }

  .btn-3:hover {
    color: #3DAE2B;
    border: 1px solid #3DAE2B;
    border-radius: 5px;
  }

  .btn-back:hover {
    color: #3DAE2B;
  }

  .btn-back:hover .icon {
    fill: #3DAE2B;
  }

  .btn-detail:hover {
    background: #3DAE2B;
    color: #FFF;
  }

  .btn-detail:hover .icon {
    fill: #fff;
  }

  .btn-close:hover .icon-2 {
    height: 17px;
    width: 17px;
  }

  .btn-close-2:hover .icon-2 {
    stroke: #3DAE2B;
  }

  .btn-optional:hover {
    cursor: unset;
  }
}

@media (max-width: 1200px) {
  .btn-back {
    padding: 10px;
    font-size: 12px;
  }

  .btn-back .icon {
    width: 9px;
    height: 8px;
  }
}

@media (max-width: 767px) {
  .btn {
    padding: 15px 10px;
  }

  .btn-back {
    padding: 10px;
  }
}


/**-------------------------------------------------------------------------------------------*/
/*****     CART ITEM     *****/
/**-------------------------------------------------------------------------------------------*/
.cart-item {
  max-width: 532px;
  height: 142px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-item:last-child {
  margin-bottom: 0;
}

.cart-item-img {
  max-width: 142px;
  overflow: hidden;
  width: 100%;
}

.cart-item-img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.cart-item-info {
  width: 100%;
  padding-left: 18px;
  position: relative;
}

.cart-item-title {
  color: #202020;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25em;
  max-width: 320px;
  padding-top: 13px;
  margin-bottom: 10px;
}

.cart-item-btn {
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  width: 96px;
  height: 32px;
}

.cart-item-info .cart-item-btn {
  position: absolute;
  bottom: 18px;
  left: 19px;
}

.cart-item-btn .input-field[type=number],
.cart-item-btn .input-field[type=number]::-webkit-inner-spin-button,
.cart-item-btn .input-field[type=number]::-webkit-outer-spin-button {
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  position: absolute;
  top: 0;
  left: 30px;
  line-height: 30px;
  height: 30px;
  width: 32px;
}

.cart-item-info .price {
  position: absolute;
  right: 20px;
  bottom: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-item-info .price span {
  font-size: 16px;
}

.cart-item-info .price.cost-total {
  bottom: 25px;
}

.btn-left,
.btn-right {
  width: 32px;
  height: 32px;
  cursor: pointer;
  outline: none;
  position: absolute;
}

.btn-right {
  border-radius: 0 5px 5px 0;
  bottom: -1px;
  right: -1px;
}

.btn-left {
  border-radius: 5px 0 0 5px;
  left: -1px;
  top: -1px;
}

.btn-left::before,
.btn-right::before {
  content: "";
  background-color: #585858;
  height: 1px;
  width: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-right::after {
  content: "";
  background-color: #585858;
  height: 12px;
  width: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (hover: hover),
(-ms-high-contrast: none) {

  .btn-right:hover.btn-right::before,
  .btn-right:hover.btn-right::after {
    background-color: #000;
  }

  .btn-left:hover.btn-left::before {
    background-color: #000;
  }
}

.cart-item-info .btn-close-2 {
  position: absolute;
  right: 20px;
  top: 20px;
}

.cart-item-quantity {
  font-size: 14px;
  position: absolute;
  bottom: 18px;
}

.cart-item-quantity span {
  font-weight: 600;
  color: #202020;
}

@media (max-width: 480px) {
  .cart-item-info .cart-item-title {
    max-width: 160px;
  }
}

@media (max-width: 410px) {
  .cart-item {
    height: 200px;
    margin-bottom: 10px;
  }

  .cart-item.cart-item-2 {
    height: 110px;
  }

  .cart-item.cart-item-2 .cart-item-img {
    max-width: 110px;
    width: 100%;
  }

  .cart-item.cart-item-2 .cart-item-img img {
    max-width: 110px;
    width: 100%;
  }

  .cart-item-img {
    height: 142px;
  }

  .cart-item-info {
    padding-left: 10px;
  }

  .cart-item-info .cart-item-btn {
    bottom: 15px;
    left: -120px;
  }

  .cart-item-quantity {
    bottom: 10px;
  }
  .cart-item-info .price {
    bottom: 10px;
  }

  .cart-item-info h5 {
    margin-top: 30px;
  }

  .cart-item-info .btn-close-2 {
    position: absolute;
    right: 10px;
    top: 10px;
  }
}

/**-------------------------------------------------------------------------------------------*/
/*****     PRODUCT ITEM     *****/
/**-------------------------------------------------------------------------------------------*/
.product-item {
  max-width: 392px;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto 20px;
}

.product-item:hover {
  z-index: 2;
}

.product-item .bottom-hover {
  position: absolute;
  color: #8A8A8A;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  left: -1px;
  right: -1px;
  top: 100%;
  margin-top: -5px;
  padding: 5px 15px 20px;
  text-align: center;
  font-size: 14px;
}

@media (min-width: 992px) {
  .fast-order:hover {
    color: #3DAE2B;
  }

  .product-item:hover .bottom-hover {
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    border: 1px solid #E5E5E5;
    border-top: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}

@media (max-width: 992px) {
  .product-item .bottom-hover {
    opacity: 1;
    visibility: visible;
    position: unset;
  }
}

.product-item-img {
  max-height: 325px;
  overflow: hidden;
  border-radius: 5px 0 0 0;
}

.product-item-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.product-item-ad-box {
  position: absolute;
  left: 10px;
  top: 10px;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
}

.product-item-ad-box div+div {
  margin-top: 5px;
}

.product-item-action {
  background: #EF3F34;
  padding: 5px 10px;
}

.product-item-discount {
  background: #3DAE2B;
  padding: 5px 20px;
  display: inline-block;
}

.product-item-info {
  padding: 20px;
  position: relative;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.product-item-info.not-available-item {
  min-height: 222px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-item-info .info-title {
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 18px;
  color: #202020;
}

.product-item-text {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 22px;
  padding-right: 20px;
  position: relative;
}

.product-item-text .text-cut {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-item-info .price {
  margin-bottom: 34px;
  margin-top: 11px;
  display: inline-block;
}

.product-item-info .price span {
  font-size: 16px;
}

.product-item-info .price-old {
  color: #8A8A8A;
  text-decoration: line-through;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 34px;
  margin-top: 11px;
  margin-right: 10px;
  font-size: 12px;
}

.product-item-info .price-old span {
  color: #8A8A8A;
  font-size: 16px;
  font-weight: 600;
}

.product-item-info .icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 24px;
  right: 5px;
}

.product-item-info .icon .icon-inner {
  display: block;
  width: 16px;
  height: 16px;
  fill: #3DAE2B;
}

.product-item-info .product-tooltip {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 350px;
  background-color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0 0 10px rgba(0, 4, 12, 0.2);
  box-shadow: 0 0 10px rgba(0, 4, 12, 0.2);
  padding: 10px 15px;
  right: -5px;
  bottom: 100%;
  z-index: 10;
  border-radius: 5px;
  margin-bottom: 10px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.product-item-info .product-tooltip:after {
  content: '';
  position: absolute;
  top: 100%;
  height: 10px;
  left: 0;
  width: 100%;
}

.product-item-info .icon:hover .product-tooltip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* @media (max-width: 425px) {
  .product-item-info .product-tooltip {
    width: 310px;
  }
}

@media (max-width: 374px) {
  .product-item-info .product-tooltip {
    width: 260px;
  }
} */
.weight button {
  padding: 11px 15px;
  border: 1px solid #E5E5E5;
  font-size: 14px;
  font-weight: 400;
  background-color: #fff;
  cursor: pointer;
}

.weight .active {
  color: #3DAE2B;
  border-color: #3DAE2B;
  z-index: 2;
}

.weight-left {
  border-radius: 5px 0 0 5px;
  z-index: 1;
  position: relative;
}

.weight-middle {
  margin-left: -3px;
  z-index: 1;
  position: relative;
}

.weight-right {
  border-radius: 0 5px 5px 0;
  margin-left: -3px;
  z-index: 1;
  position: relative;
}

.product-item-info .cart-item-btn {
  position: relative;
  width: 120px;
  height: 40px;
}

.product-item-info .cart-item-btn .btn-left,
.product-item-info .cart-item-btn .btn-right {
  width: 40px;
  height: 40px;
}

.product-item-info .input-field[type=number],
.product-item-info .input-field[type=number]::-webkit-inner-spin-button,
.product-item-info .input-field[type=number]::-webkit-outer-spin-button {
  pointer-events: none;
  left: 39px;
  line-height: 40px;
  height: 38px;
  padding: 0 2px;
  width: 40px;
}

.not-available {
  text-transform: uppercase;
  text-align: right;
  font-weight: 500;
  font-size: 14px;
  color: #585858;
  margin-bottom: 9px;
  margin-top: auto;
}

@media (min-width: 1461px) and (max-width: 1660px) {
  .weight button {
    padding: 8px 9px;
  }
}

@media (min-width: 1200px) and (max-width: 1460px) {
  .product-item-img {
    height: unset;
  }

  .weight button {
    padding: 5px 7px;
    font-size: 12px;
  }

  .product-item-info {
    padding: 15px;
  }

  .product-item-info .cart-item-btn .btn-left,
  .product-item-info .cart-item-btn .btn-right {
    width: 32px;
    height: 32px;
  }

  .product-item-info .cart-item-btn {
    width: 96px;
    height: 32px;
  }

  .product-item-info .input-field[type=number],
  .product-item-info .input-field[type=number]::-webkit-inner-spin-button,
  .product-item-info .input-field[type=number]::-webkit-outer-spin-button {
    pointer-events: none;
    left: 31px;
    line-height: 30px;
    height: 30px;
    padding: 0;
    width: 32px;
  }

  .product-item-info .btn-fix {
    padding: 9px 24px;
    border-radius: 5px;
    font-size: 12px;
  }

  .product-item-info .price,
  .product-item-info .price-old {
    margin-bottom: 20px;
    margin-top: 11px;
  }

  .product-item-info .price-old {
    margin-right: 5px;
  }

  .product-item-info .price span,
  .product-item-info .price-old span {
    font-size: 14px;
  }

  .product-item-info.not-available-item {
    min-height: 199px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .weight button {
    padding: 8px 9px;
  }
}

@media (max-width: 992px) {
  .product-item-info.not-available-item {
    min-height: 257px;
  }
}

@media (max-width: 767px) {
  .product-item-info .btn-fix {
    padding: 12px 35px;
    font-size: 14px;
  }

  .product-item-info .product-item-text .icon {
    display: none;
  }

  .product-item-info .product-item-text .text-cut {
    display: block;
  }

  .product-item-info .product-item-text {
    margin-bottom: 10px;
    padding-right: 0;
  }
}

@media (max-width: 420px) {
  .weight button {
    padding: 8px 9px;
  }
}

@media (max-width: 375px) {
  .product-item-img {
    height: unset;
  }

  .weight button {
    padding: 7px 10px;
    font-size: 12px;
  }

  .weight-middle {
    display: inline-block;
  }

  .product-item-info .cart-item-btn .btn-left,
  .product-item-info .cart-item-btn .btn-right {
    width: 32px;
    height: 32px;
  }

  .product-item-info .cart-item-btn {
    width: 96px;
    height: 32px;
  }

  .product-item-info .input-field[type=number],
  .product-item-info .input-field[type=number]::-webkit-inner-spin-button,
  .product-item-info .input-field[type=number]::-webkit-outer-spin-button {
    pointer-events: none;
    left: 31px;
    line-height: 30px;
    height: 30px;
    padding: 0;
    width: 32px;
  }

  .product-item-info .product-tooltip {
    right: -9px;
  }

  .product-item.alternative {
    position: relative;
  }

  .product-item.alternative .product-item-img {
    position: absolute;
    width: 120px;
    left: 0;
    top: 0;
    z-index: 5;
  }

  .product-item.alternative .product-item-info {
    padding: 10px;
  }

  .product-item.alternative .product-item-info .info-title {
    margin-left: 120px;
  }

  .product-item.alternative .product-item-text {
    margin-left: 120px;
    margin-bottom: 10px;
  }

  .product-item.alternative .product-item-text .text-cut {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-item.alternative .product-item-info .icon {
    top: 45px;
  }

  .product-item-info.not-available-item {
    min-height: unset;
    display: block;
  }

  .product-item-info .btn-fix {
    padding: 9px 24px;
    border-radius: 5px;
    font-size: 12px;
  }

  .product-item-info .price,
  .product-item-info .price-old {
    margin-bottom: 20px;
  }

  .product-item-info .price span,
  .product-item-info .price-old span {
    font-size: 14px;
  }
}

/**-------------------------------------------------------------------------------------------*/
/*****     MENU GLOBAL  *****/
/**-------------------------------------------------------------------------------------------*/
.menu__inner {
  position: relative;
}

.menu__item {
  max-width: 393px;
  width: 100%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.menu__item img {
  display: block;
  border-radius: 5px;
  width: 100%;
  height: auto;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media (hover: hover),
(-ms-high-contrast: none) {
  .menu__item:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.menu__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15.25deg, #000 0.21%, rgba(0, 0, 0, 0) 61.97%);
  background: -o-linear-gradient(74.75deg, #000 0.21%, rgba(0, 0, 0, 0) 61.97%);
  z-index: 1;
}

.menu__title {
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  line-height: 1.3em;
  font-weight: 500;
  padding: 16px 15px;
  width: 100%;
  text-align: center;
}

@media (max-width: 1200px) {
  .global-menu .row {
    margin-right: -7.5px;
    margin-left: -7.5px;
  }

  .global-menu .menu__inner [class^="col"] {
    padding-right: 7.5px;
    padding-left: 7.5px;
  }

  .menu__item {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .menu-inner .no-gutters {
    display: block;
  }

  .menu__title {
    font-size: 10px;
    margin-top: 10px;
    position: relative;
    padding: 0 10px 10px;
    color: #202020;
  }

  .menu__item::after {
    background: unset;
  }
}


/**-------------------------------------------------------------------------------------------*/
/*****     Category MENU     *****/
/**-------------------------------------------------------------------------------------------*/
.category-menu {
  text-align: left;
  margin: 0 auto;
  max-width: 270px;
}

.category-drop-title {
  display: none;
}

.category-item {
  border-bottom: 1px solid #E5E5E5;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-left: 35px;
  position: relative;
}

@media (hover: hover),
(-ms-high-contrast: none) {
  .category-item:hover a {
    color: #3DAE2B;
  }
}

.category-item a {
  padding: 20px 0 20px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3em;
  color: #585858;
  position: relative;
}

.category-item.active a {
  color: #3DAE2B;
}

.category-item:last-child {
  border-bottom: none;
}

.category-item:last-child a {
  padding-bottom: 0;
}

.category-item:first-child a {
  padding-top: 0;
}

.category-item .icon {
  position: absolute;
  left: -35px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.category-item:first-child a .icon {
  top: 8px;
}

.category-item:last-child a .icon {
  top: 27px;
}

.tab-title .category-item .icon.icon-2 {
  fill: #3DAE2B;
}

.tax-product_cat .hide{display:none;}

@media (max-width: 991px) {
  .tax-product_cat .header{
    box-shadow:none;
  }

  .category-menu-wrap{
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    z-index:9;
  }

  .tax-product_cat .margin-header{
    height:129px;
  }

  .category-menu {
    max-width: unset;
    width: auto;
  }

  .category-drop-title {
    display: none;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    border: 1px solid #3DAE2B;
    border-radius: 5px;
    padding: 15px 20px;
    position: relative;
  }

  .category-drop-title::before {
    content: "";
    position: absolute;
    right: 17px;
    top: 17px;
    width: 8px;
    height: 8px;
    border-left: 1px solid #3DAE2B;
    border-bottom: 1px solid #3DAE2B;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  .category-menu.active .category-drop-title::before {
    top: 20px;
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    border-color: #3DAE2B;
  }

  .category-menu.active {
    position: relative;
  }

  .category-menu .category-list {
    display: flex;
    justify-content: flex-start;
    position: relative;
    left: auto;
    padding-left: 20px;
    top: auto;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 3;
    padding:10px 15px 5px;
    background: #fff;
  }

  .category-item a {
    padding: 0;
    font-size: 11px;
  }

  .category-item {
    border-bottom: none;
    display:flex;
    align-items:center;
    margin-left:12px;
    padding: 8px 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
  }

  .category-item:first-child{
    margin-left:0;
  }

  .category-item.active{
    background-color: #3DAE2B;
  }

  .category-item.active a{
    color: #fff;
  }

  .category-item span{
    white-space:nowrap;
  }

  .category-item .icon {
    display:none;
  }

  .category-menu.active .category-list {
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: 0;
    width: 100%;
    border-radius: 0 0 5px 5px;
    padding-left: 20px;
  }
  .tax-product_cat .hide-sm{display:none;}
  .tax-product_cat .hide.visible-sm{display:block;}
  .tax-product_cat .title.visible-sm{margin: 20px auto;}
}

@media (max-width: 575px) {
  .category-menu-wrap{
    top: 55px;
  }

  .tax-product_cat .margin-header{
    height:110px;
  }
}

/**-------------------------------------------------------------------------------------------*/
/*****     COLORS     *****/
/**-------------------------------------------------------------------------------------------*/
.color-primary {
  color: #3DAE2B;
}

.color-black {
  color: #202020;
}

.color-white {
  color: #fff;
}

.color-grey {
  color: #585858;
}

.color-yellow {
  color: #FFC700;
}

.color-blue {
  color: #217AFF;
}

.color-red {
  color: #EF3F34;
}

.color-red-2 {
  color: #C13127;
}

.bg-color-green {
  background: #3DAE2B;
}

.bg-color-yellow {
  background: #FFC700;
}

.bg-color-blue {
  background: #217AFF;
}

.bg-color-red {
  background: #EF3F34;
}

/**-------------------------------------------------------------------------------------------*/
/*****     Content Block      *****/
/**-------------------------------------------------------------------------------------------*/
.content-block {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}

footer {
  margin-top: auto;
}

/**-------------------------------------------------------------------------------------------*/
/*****     HEADER     *****/
/**-------------------------------------------------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.margin-header {
  height: 100px;
}

.header-inner {
  padding: 18px 0 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-logo {
  display: block;
}

.header-logo img {
  max-width: 252px;
}

.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.user-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 400px;
}

.header-address {
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.header-address.in-header {
  display: none;
}

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

.header-address .icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.header-address i {
  width: 26px;
  height: 26px;
  border: 2px solid #3DAE2B;
  border-radius: 2px;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  margin-left: 14px;
}

.header-address .icon-2 {
  fill: transparent;
  stroke: #3DAE2B;
  width: 10px;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header-address.active .icon-2 {
  -webkit-transform: matrix(-1, 0, 0, -1, 0, 0);
  transform: matrix(-1, 0, 0, -1, 0, 0);
  top: -2px;
  left: 5px;
}

.header-address .address-input {
  width: 255px;
  position: absolute;
  left: -17px;
  top: -19px;
  z-index: -1;
  padding: 60px 15px 10px 15px;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header-address.active .address-input {
  width: 490px;
  cursor: default;
  opacity: 1;
  visibility: visible;
  padding: 85px 15px 10px 15px;
}

.address-input .input__big-2 .icon {
  width: 22px;
  height: 22px;
  margin-right: 0;
}

.address-actual {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #202020;
}

.address-delivery {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: #585858;
  margin-top: 5px;
}

.header-address .address-delivery {
  max-width: 200px;
}

.phone,
.phone-2 {
  font-weight: 600;
  font-size: 14px;
  color: #202020;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.phone-2 {
  display: none;
}

@media (hover: hover),
(-ms-high-contrast: none) {
  .phone:hover {
    color: #3DAE2B;
  }
}


.phone .icon,
.phone-2 .icon {
  width: 27px;
  height: 27px;
}

.pay-delivery {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #202020;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.pay-delivery .icon {
  width: 30px;
  height: 29px;
  margin-right: 10px;
}

@media (hover: hover),
(-ms-high-contrast: none) {
  .pay-delivery:hover {
    color: #3DAE2B;
  }
}

.work-time {
  font-size: 14px;
  position: relative;
}

.work-time-box {
  vertical-align: middle;
  display: inline-block;
}

.work-time .icon {
  width: 23px;
  height: 23px;
  margin-right: 10px;
}

.work-time span+span {
  margin-top: 4px;
}

.work-time-box span {
  display: block;
}

.work-time-box span b {
  color: #202020;
  font-weight: 600;
}

.work-time .holiday {
  margin-left: 20px;
}

.burger-info {
  width: 32px;
  height: 32px;
  z-index: 21;
  cursor: pointer;
  display: none;
  position: relative;
  -webkit-transition: -webkit-transform .4s ease-in-out .1s;
  transition: -webkit-transform .4s ease-in-out .1s;
}

.burger-info span {
  width: 30px;
  height: 2px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  background-color: #3DAE2B;
  -webkit-transition: background .4s ease-in-out .4s, -webkit-transform .4s ease-in-out;
  transition: background .4s ease-in-out .4s, -webkit-transform .4s ease-in-out;
}

.burger-info span::before,
.burger-info span::after {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #3DAE2B;
  position: absolute;
  -webkit-transition: background .4s ease-in-out .4s, -webkit-transform .4s ease-in-out;
  transition: background .4s ease-in-out .4s, -webkit-transform .4s ease-in-out;
}

.burger-info span::before {
  left: 0;
  -webkit-transform: translateY(-7px);
  transform: translateY(-7px);
}

.burger-info span::after {
  left: 0;
  -webkit-transform: translateY(7px);
  transform: translateY(7px);
}

.burger-info.active {
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
  -webkit-transition: background .4s ease-in-out, -webkit-transform .4s ease-in-out;
  transition: background .4s ease-in-out, transform .4s ease-in-out;
}

.burger-info.active span::before {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: background .1s ease-in-out, -webkit-transform .1s ease-in-out;
  transition: background .1s ease-in-out, transform .1s ease-in-out;
}

.burger-info.active span::after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transform: rotate(-90deg);
  -webkit-transition: background .1s ease-in-out, -webkit-transform .1s ease-in-out;
  transition: background .1s ease-in-out, -webkit-transform .1s ease-in-out;
}

.order {
  padding: 12px 13px;
  border: 1px solid #EBEBEB;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.order .icon {
  width: 21px;
  height: 27px;
  margin-right: 10px;
  position: relative;
  stroke: #3DAE2B;
}

.order-item {
  font-family: "AvenirNextCyr-bold", sans-serif;
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  top: 11px;
  left: 28px;
}

.price {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
}

.price span {
  font-size: 14px;
  font-weight: 600;
  color: #202020;
}

.user,
.user-login {
  font-size: 14px;
  color: #202020;
  position: relative;
  font-weight: 600;
  background: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 10;
}

.user-click {
  cursor: pointer;
}

.user span,
.user-login span {
  vertical-align: middle;
  text-transform: uppercase;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (hover: hover),
(-ms-high-contrast: none) {

  .user:hover span,
  .user-login:hover span {
    color: #3DAE2B;
  }
}


.user .icon,
.user-login .icon {
  width: 22px;
  height: 23px;
  margin-right: 10px;
}

.user .icon-2 {
  fill: transparent;
  stroke: #202020;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (hover: hover),
(-ms-high-contrast: none) {
  .user:hover .icon-2 {
    stroke: #3DAE2B;
  }
}

.user-list {
  height: 101px;
  color: #585858;
  font-weight: 400;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  width: 136px;
  padding-top: 7px;
  padding-left: 50px;
  position: absolute;
  left: -15px;
  top: -24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s;
  transition: all .2s;
  z-index: -1;
}

.user-list li+li {
  margin-top: 17px;
}

.user-list li a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (hover: hover),
(-ms-high-contrast: none) {
  .user-list li a:hover {
    color: #3DAE2B;
  }
}

.user.active .user-list {
  height: 161px;
  padding-top: 64px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.user.active .icon-2 {
  -webkit-transform: matrix(-1, 0, 0, -1, 0, 0);
  transform: matrix(-1, 0, 0, -1, 0, 0);
  top: 42%;
}

.user-login .icon-2 {
  display: none;
}

.order.empty .order-item {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1800px) {
  .user-list {
    padding-left: 15px;
  }
}

@media (max-width: 1380px) {
  .header-inner {
    padding: 16px 0 17px 0;
  }

  .margin-header {
    height: 90px;
  }

  .header-logo img {
    width: 190px;
  }

  .address-actual,
  .phone,
  .phone-2,
  .pay-delivery,
  .work-time {
    font-size: 12px;
  }

  .work-time .holiday {
    margin-left: 17px;
  }

  .address-delivery {
    font-size: 10px;
  }

  .header-address {
    padding: 0;
  }

  .header-address .icon {
    width: 24px;
    height: 24px;
  }

  .header-address i {
    width: 20px;
    height: 20px;
  }

  .header-address .icon-2 {
    width: 7px;
  }

  .header-address.active .icon-2 {
    top: -4px;
  }

  .phone .icon,
  .phone-2 .icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 1200px) {
  .burger-info {
    display: block;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .header-info {
    position: fixed;
    right: 0;
    top: 80px;
    width: 40%;
    background: #fff;
    height: calc(100vh - 80px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 40px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08), inset 0 8px 10px -8px rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08), inset 0 8px 10px -8px rgba(0, 0, 0, 0.08);
    z-index: 20;
    visibility: hidden;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  .header-info.active {
    visibility: visible;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  .header-address {
    margin-top: 30px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .header-info.active .address-box {
    max-width: 85%;
  }

  .header-info.active .header-address .icon {
    margin-right: 10px;
  }

  .header-address.in-header {
    display: none;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-top: 0;
    z-index: 40;
  }

  .header-address.in-header .address-actual {
    font-size: 12px;
  }

  .header-address.in-header .address-delivery {
    font-size: 10px;
  }

  .address-actual,
  .phone,
  .phone-2,
  .pay-delivery,
  .work-time {
    font-size: 16px;
  }

  .address-delivery {
    font-size: 14px;
  }

  .header-address i {
    display: none;
  }

  .header-address .icon {
    width: 27px;
    height: 27px;
  }

  .phone-2 {
    display: block;
    margin-top: 0;
    font-size: 12px;
  }

  .phone .icon,
  .phone-2 .icon {
    width: 30px;
    height: 30px;
  }

  .header-inner {
    padding: 12px 0 11px 0;
  }

  .margin-header {
    height: 80px;
  }

  .header-inner .phone {
    margin-top: 30px;
  }

  .pay-delivery {
    margin-top: 30px;
  }

  .pay-delivery .icon {
    width: 30px;
    height: 30px;
  }

  .work-time {
    margin-top: 30px;
  }

  .work-time .icon {
    width: 27px;
    height: 27px;
  }

  .user-menu {
    width: unset;
  }

  .user-menu .order {
    margin-right: 20px;
  }

  .header-address.active .address-input {
    width: 400px;
  }
}

@media (max-width: 1024px) {
  .header-info.active {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .header-info{
    top:121px;
  }
}

@media (max-width: 900px) {
  .phone-2 {
    display: none;
  }

  .header-address.in-header .address-box {
    display: none;
  }

  .header-address.in-header .address-box .icon {
    margin-left: 10px;
    z-index: 35;
  }

  .header-address.in-header.active .address-box {
    display: inline-block;
    position: absolute;
    left: 35px;
    top: 0;
    width: 200px;
  }
}

@media (max-width: 800px) {
  .header-info {
    width: 320px;
    padding: 0 25px;
  }

  .header-info.active {
    width: 320px;
  }
}

@media (max-width: 767px) {
  .header-address{display:none;}
  .header-address.in-header .address-box {
    position: fixed;
    left: 45px;
    top: -35px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
  }

  .header-address.in-header.active .address-box {
    position: fixed;
    left: 45px;
    top: 15px;
    width: 200px;
  }

  .header-address.in-header.active .icon.icon-btn {
    position: fixed;
    left: 15px;
    top: 16px;
  }
}

@media (max-width: 600px) {
  .header-address .icon {
    margin-right: 35px;
  }

  .header-inner .user {
    padding: 16px 15px 16px 13px;
  }

  .user .icon,
  .user-login .icon {
    left: 0;
  }

  .header-inner .order {
    width: unset;
    border: none;
    padding: 14px 2px;
  }

  .header-inner .order .icon {
    left: 0;
  }

  .header-inner .order-item {
    top: 11px;
    left: 14px;
  }

  .user.active .user-list {
    height: 110px;
    padding-top: 14px;
  }

  .user-list {
    text-align: left;
    padding-left: 14px;
    left: -74px;
    top: 11px;
    width: 123px;
  }

  .user span,
  .user-login span,
  .user .icon-2,
  .user-menu .price {
    display: none;
  }

  .header-logo {
    width: 37px;
    height: 36px;
    overflow: hidden;
    position: relative;
  }

  .header-logo img {
    width: 150px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 22;
  }

  .header-inner {
    padding: 0;
  }

  .margin-header {
    height: 55px;
  }

  .header-info.active {
    height: calc(100vh - 100px);
  }

  .header-info {
    top: 100px;
  }

/*  .user-menu {
    margin-right: auto;
  }*/

  .header-address.in-header {
    margin-left: auto;
  }

  .header-address.in-header.active .address-input {
    width: 310px;
    padding: 60px 5px 0 5px;
    left: -159px;
    top: -5px;
  }

  .header-address.in-header.active .address-input .input__big-2 .input-3 {
    padding: 13px 60px 13px 10px;
    font-size: 12px;
  }

  .header-address.in-header.active .address-input .input__big-2::before {
    height: 28px;
    right: 53px;
    top: 8px;
  }

  .header-address.in-header.active .address-input .input__big-2 button {
    width: 50px;
    height: 37px;
  }
}

@media (min-width: 1200px) {
  .header .order:hover {
    border: 1px solid #3DAE2B;
  }
}

/* --------------    HEADER-2         ----------------- */
.header-inner-2 {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-date div .icon {
  width: 18px;
  height: 18px;
  fill: #202020;
  margin-right: 10px;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.header-date div span {
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  color: #585858;
}

.day-date {
  margin-right: 20px;
}

.day-time {
  margin-left: 20px;
  position: relative;
}

.day-time::before {
  content: "";
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: -20px;
  top: -5px;
}

.header-inner-2 .header-address {
  padding: 0 0 0 38px;
  margin-top: 0;
}

@media (max-width: 1200px) {
  .header-inner-2 .header-address {
    font-size: 12px;
  }
}

@media (max-width: 800px) {
  .header-inner-2 {
    padding: 8px 0;
  }

  .header-inner-2 .header-logo img {
    width: 160px;
  }

  .header-date div span,
  .header-inner-2 .header-address .address-actual {
    font-size: 12px;
  }

  .header-date div .icon {
    width: 15px;
    height: 15px;
  }

  .header-inner-2 .header-address .icon {
    width: 22px;
    height: 22px;
  }

  .header-inner-2 .header-address {
    padding: 0 0 0 24px;
  }
}

@media (max-width: 620px) {
  .header-inner-2 .header-logo {
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: relative;
  }

  .header-inner-2 .header-logo img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 22;
  }

  .header-date {
    margin-top: 3px;
  }

  .header-inner-2 .header-address .icon {
    margin-right: 0;
  }

  .header-inner-2 .header-address {
    margin-top: 10px;
  }

  .day-time::before {
    height: 18px;
    top: 0;
  }
}

@media (max-width: 475px) {
  .header-inner-2 {
    padding: 8px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header-inner-2 .header-address {
    margin-top: 0;
    text-align: center;
    width: 100%;
  }
}

/* ------------------------------------------------------------ */
.public-inner {
  max-width: 815px;
  margin: 0 auto;
}

/* SIMPLE PAGE */
.simple-page {
  position: relative;
  margin: 0 auto;
}

.simple-page p {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #585858;
  margin-bottom: 15px;
}

.simple-page p span {
  color: #3DAE2B;
  font-weight: 500;
}

.simple-page h1 {
  padding: 40px 0;
  color: #3DAE2B;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}

.simple-page h2 {
  padding: 43px 0 35px 0;
  color: #3DAE2B;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .simple-page h1 {
    padding: 20px 0;
    font-size: 36px;
  }

  .simple-page h2 {
    padding: 30px 0 20px;
    font-size: 28px;
  }
}

.simple-page h3 {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.simple-page h4,
.simple-page h5,
.simple-page h6 {
  color: #3DAE2B;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: none !important;
}

.simple-page a {
  position: relative;
  color: #3DAE2B;
}

.simple-page>*:last-child {
  margin-bottom: 0;
}

.simple-page ol li,
.simple-page ul li {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 24px;
  margin-bottom: 10px;
  font-family: 'AvenirNextCyr', sans-serif;
}

.simple-page ul li {
  margin-bottom: 3px;
}

.simple-page ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3DAE2B;
}

.simple-page ol {
  counter-reset: number;
}

.simple-page ol li {
  padding-left: 50px;
}

.simple-page ol li::before {
  color: #fff;
  font-family: "AvenirNextCyr", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  padding: 4px 8px;
  background: #3DAE2B;
  border-radius: 2px;
  counter-increment: number;
  content: "1."counter(number) "";
  position: absolute;
  top: 3px;
  left: 10px;
}

.simple-page ol li:last-child,
.simple-page ul li:last-child {
  margin-bottom: 17px;
}

.simple-page ol li span,
.simple-page ul li span {
  color: #3DAE2B;
  font-weight: 600;
}

.simple-page a {
  position: relative;
  color: #3DAE2B;
  cursor: pointer;
  white-space: nowrap;
}

.simple-page a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3DAE2B;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}

@media (hover: hover),
(-ms-high-contrast: none) {
  .simple-page a:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.simple-page li a {
  color: #3DAE2B;
}

.simple-page>*:last-child {
  margin-bottom: 0;
}

/**-------------------------------------------------------------------------------------------*/
/*****     Category Menu     *****/
/**-------------------------------------------------------------------------------------------*/
@media (min-width: 1200px) and (max-width: 1650px) {

  .category-wrapper .col-lg-3,
  .category-product-wrap .col-xl-4 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .category-wrapper .col-lg-3 {
    -ms-flex: 0 0 23%;
    -webkit-box-flex: 0;
    flex: 0 0 23%;
    max-width: 23%;
  }

  .category-wrapper .col-lg-9 {
    -ms-flex: 0 0 77%;
    -webkit-box-flex: 0;
    flex: 0 0 77%;
    max-width: 77%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .category-wrapper .col-lg-3,
  .category-product-wrap .col-md-4 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .category-wrapper .col-lg-3 {
    -ms-flex: 0 0 30%;
    -webkit-box-flex: 0;
    flex: 0 0 30%;
    max-width: 30%;
  }

  .category-wrapper .col-lg-9 {
    -ms-flex: 0 0 70%;
    -webkit-box-flex: 0;
    flex: 0 0 70%;
    max-width: 70%;
  }
}

@media (min-width: 992px) and (max-width: 1010px) {
  .category-product-wrap .product-item .btn {
    font-size: 12px;
  }
}

.product-item-img {
  position: relative;
  padding-bottom: 80%;
  max-height: unset;
}

.product-item-img img {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.address-input-btn {
  background: transparent;
  padding: 5px 5px 0;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3em;
  color: #585858;
  position: relative;
  color: #3dae2b;
  cursor: pointer;
}

@media (hover: hover) and (min-width: 992px),
(-ms-high-contrast: none) {
  .address-input-btn:hover {
    text-decoration: underline;
  }
}

.header-mobile-location {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 5px 15px;
  background: #3dae2b;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: none;
}

.header-mobile-location .address-actual {
  color: #fff;
  display: inline;
}

@media (max-width: 900px) {
/*  .header-mobile-location {
    display: block;
  }*/
  .margin-header {
    height: 76px;
  }
}

@media (max-width: 600px) {
  .margin-header {
    height: 55px;
  }
}
.btn.btn-done,
.btn.btn-done-all{margin-top: 20px;}
.ordering-system .new .btn-done,
.ordering-system .making .btn-done,
/*.ordering-system .tab.ready .btn-done,*/
.ordering-system .canceled .btn-done,
.ordering-system .done .btn-done,
.ordering-system .all .btn-done{
  display: none;
}
.ordering-system .new .btn-done-all,
.ordering-system .making .btn-done-all,
/*.ordering-system .tab.ready .btn-done-all,*/
.ordering-system .canceled .btn-done-all,
.ordering-system .done .btn-done-all,
.ordering-system .all .btn-done-all{
	display: none;
}

/* cart bread / plastic */

.bread .cart-item-btn, .plastic .cart-item-btn{
  position: absolute;
}

/* change 04.10 */
.h-select-delivery{font-weight:500;text-transform:capitalize;}
