@charset "UTF-8";
/* 1. Settings
=========================*/
/* 2. Font family
=========================*/
/* 3. Font sizes
=========================*/
/* 4. Colors
=========================*/
/* 39. Tooltips
=========================*/
/* Default */
/* Sizes */
/* Styling */
/* Default Buttons
============================*/
/* Outline Buttons
============================*/
/* Inverted Buttons
============================*/
/* Gradient Buttons
============================*/
/* --------------- Font Choice --------------- */
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
.container {
  width: 100%; }

html {
  font-size: 10px; }

html,
body {
  -webkit-overflow-scrolling: touch; }
  html.fixed,
  body.fixed {
    overflow: hidden;
    touch-action: none; }

body {
  font-family: 'Archivo', sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  background-color: #000;
  overflow-x: hidden;
  font-size: 1.8rem; }
  body.fixed {
    overflow: hidden;
    position: fixed;
    width: 100%; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit; }

a {
  color: #F5852A;
  text-decoration: none;
  transition: 0.3s; }
  a:hover {
    color: #f47712;
    text-decoration: none; }
  a:focus {
    outline: 0;
    text-decoration: none; }

p {
  margin: 0 0 .5em; }

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

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

::-webkit-scrollbar {
  width: 5px; }

::-webkit-scrollbar-track {
  background: #1F2730; }

::-webkit-scrollbar-thumb {
  background: #F5852A; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative; }
  .page:before {
    content: '';
    width: 100%;
    height: 112rem;
    background-image: url("../../userfiles/intro_bg.jpg");
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; }

.page__wrapper {
  padding-top: 15rem; }

.mask {
  position: fixed;
  height: 100%;
  background: #000000;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s; }
  .mask.active {
    opacity: 0.7;
    visibility: visible; }

/* Vendor libs

==========================*/
/* Slider */
.slick-loading .slick-list {
  background: #ffffff "/images/ajax-loader.gif" center center no-repeat; }

/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  height: 20px;
  width: 20px;
  padding: 0;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: calc(50% - 7px);
  transform: translate(0, -50%); }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: fontAwesome;
    font-size: 30px;
    line-height: 1;
    color: #808080;
    opacity: 0.75;
    transition: opacity .1s linear; }

.slick-prev {
  left: -25px; }
  .slick-prev:before {
    content: ""; }

.slick-next {
  right: -25px; }
  .slick-next:before {
    content: ""; }

/* Dots */
.slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 100%;
  margin: 2.5rem -0.5rem 0;
  padding: 0;
  list-style: none; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    cursor: pointer; }
    .slick-dots li:last-child {
      margin-right: 0; }
    .slick-dots li button {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 1.2rem;
      width: 1.2rem;
      border-radius: 50%;
      outline: none;
      line-height: 0;
      padding: 0;
      font-size: 0;
      color: transparent;
      cursor: pointer;
      outline: 0;
      margin: 0;
      border: .2rem solid transparent;
      background-color: #262E3D; }
    .slick-dots li.slick-active button {
      border-color: #71A773; }

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

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

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

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

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
  height: auto;
  padding: 0 0.5px; }
  .slick-slide:focus {
    outline: 0; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

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

.js-intro-slider .slick-next {
  right: 2rem;
  z-index: 2; }
  .js-intro-slider .slick-next:before {
    color: #000; }

.js-intro-slider .slick-prev {
  left: 2rem;
  z-index: 2; }
  .js-intro-slider .slick-prev:before {
    color: #000; }

/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
/* 34. Modals
=========================*/
/* Overlay */
/* Animation */
/* Wrapper */
/* Close Btn */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; }
  html.remodal-is-locked body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%; }

.remodal-is-initialized {
  display: inline-block; }

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(0, 0, 0, 0.7); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 1.5rem; }

/* Default theme styles of the modal dialog */
.remodal {
  width: 100%;
  padding: 35px;
  transform: translate3d(0, 0, 0);
  color: #000000;
  background-color: #FFFFFF; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0; }
  to {
    transform: none;
    opacity: 1; } }

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0; }
  to {
    transform: none;
    opacity: 1; } }

@-webkit-keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1; }
  to {
    transform: scale(0.95);
    opacity: 0; } }

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1; }
  to {
    transform: scale(0.95);
    opacity: 0; } }

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 540px; } }

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #000000; }

.lt-ie9 .remodal {
  width: 540px; }

.remodal-close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  overflow: visible;
  width: 1.4rem;
  height: 1.4rem;
  z-index: 4;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.744 0.256009C13.4026 -0.0853364 12.8551 -0.0853364 12.5137 0.256009L7 5.76906L1.48631 0.256009C1.14493 -0.0853364 0.597424 -0.0853364 0.256039 0.256009C-0.0853462 0.597355 -0.0853462 1.1448 0.256039 1.48614L5.76973 6.9992L0.256039 12.5123C-0.0853462 12.8536 -0.0853462 13.401 0.256039 13.7424C0.42351 13.9098 0.648953 14 0.867955 14C1.08696 14 1.3124 13.9163 1.47987 13.7424L6.99356 8.22933L12.5072 13.7424C12.6747 13.9098 12.9002 14 13.1192 14C13.3446 14 13.5636 13.9163 13.7311 13.7424C14.0725 13.401 14.0725 12.8536 13.7311 12.5123L8.23028 6.9992L13.744 1.48614C14.0853 1.1448 14.0853 0.597355 13.744 0.256009Z' fill='white'/%3e%3c/svg%3e ");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition: 0.3s; }
  .remodal-close:hover {
    transform: rotate(90deg); }

.remodal {
  padding: 7rem;
  text-align: left;
  overflow: hidden;
  background-color: #000000; }
  .remodal .form__block {
    margin-bottom: 2rem; }
  .remodal .btn {
    min-width: 15rem; }

.remodal__title {
  margin-bottom: 3rem;
  font-weight: 800;
  font-size: 3.6rem;
  letter-spacing: -1.8px;
  color: #000000; }

.remodal__block-footer {
  position: absolute;
  bottom: 4.8rem;
  left: 0;
  width: 100%;
  padding: 0 7rem;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  color: #000000; }
  .remodal__block-footer .form__link {
    color: #F5852A; }
    .remodal__block-footer .form__link:hover {
      color: #FEC007; }

.remodal__footer {
  margin-bottom: 2rem;
  text-align: center; }

.remodal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -1rem; }
  .remodal-footer .btn {
    margin: 0 1rem; }

/* Import blocks
==========================*/
/* 51. Bootstrap 4 Grid
=========================*/
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px; }

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px; }

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

.error__page-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: calc(100vh - 13rem);
  padding: 4rem 0; }
  .error__page-wrapper .btn {
    color: #FFFFFF;
    min-width: 15rem; }

.error__title {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 26rem;
  line-height: 1;
  letter-spacing: -6.4px;
  color: #FFFFFF; }
  .error__title span {
    display: block;
    margin-left: 3rem;
    font-weight: 500;
    font-size: 20rem;
    letter-spacing: -10px; }

.error__text {
  margin-bottom: 3rem;
  font-weight: 800;
  font-size: 3.6rem;
  letter-spacing: -1.8px;
  color: #FFFFFF; }

.closed__page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  perspective: 1000px; }

.closed__container {
  width: 400px;
  height: 300px;
  margin: 0 auto;
  position: relative;
  transform: scale(1) rotateZ(7deg) rotateY(14deg);
  transform-origin: center 12px;
  animation: 2s init, 0.7s aa 1s, 3s ab 1.7s infinite; }

@keyframes aa {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1) rotateZ(7deg) rotateY(14deg); } }

@keyframes ab {
  0% {
    transform: rotateZ(7deg) rotateY(14deg); }
  50% {
    transform: rotateZ(-7deg) rotateY(-14deg); }
  100% {
    transform: rotateZ(7deg) rotateY(14deg); } }

.closed__box {
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
  background: #F5852A;
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0;
  border-radius: 20px;
  text-shadow: 0 2px #F5852A;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center; }

.rope {
  width: 150px;
  height: 150px;
  border: solid 5px #B4B4B4;
  border-bottom: none;
  border-right: none;
  position: absolute;
  top: 38px;
  left: 122px;
  transform: rotatez(45deg); }

.pin {
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 25px;
  background: #000000; }
  .pin--first {
    top: 0;
    left: 187px; }
  .pin--second {
    top: 110px;
    left: 80px; }
  .pin--third {
    top: 110px;
    right: 80px; }

@keyframes init {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }

/* Sticker */
.sticker {
  position: relative;
  display: block;
  font-weight: 700;
  background-color: #fcf59b;
  border-radius: 0px 10px 250px / 0 200px 55px 250px;
  -webkit-box-shadow: -3px 5px 12px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -3px 5px 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: -3px 5px 12px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 1em; }
  .sticker:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    width: 90%;
    height: 20px;
    -webkit-box-shadow: 3px 17px 6px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 3px 17px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 17px 6px rgba(0, 0, 0, 0.3);
    bottom: 15px;
    right: 5px;
    -ms-transform: skew(-10deg, 2deg);
    -webkit-transform: skew(-10deg, 2deg);
    transform: skew(-10deg, 2deg); }
  .sticker:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    right: 8px;
    bottom: 1px;
    border-top: 10px solid #9ca63d;
    border-right: 10px solid transparent;
    -webkit-transform: skew(-55deg, 10deg);
    transform: skew(-55deg, 10deg); }

/* Text on the sticker*/
.sticker__text {
  text-align: center;
  display: block;
  padding: 1em;
  font-size: 1.3em;
  color: #000000; }

body.inside .header .header__wrapper {
  border-bottom: 1px solid #FFFFFF33; }

.header {
  position: absolute;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%; }

.header__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
  gap: 2rem; }

.header__block {
  display: flex;
  align-items: center;
  min-width: 20rem;
  gap: 2rem; }
  .header__block.center {
    justify-content: center; }
  .header__block.right {
    justify-content: flex-end; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 2rem; }

.header__action {
  display: flex;
  align-items: center;
  height: 8rem; }
  .header__action .btn {
    height: 4.4rem; }

.logo {
  display: flex;
  height: 4.4rem;
  align-items: center;
  font-size: 2.4rem;
  color: #FFFFFF; }
  .logo b {
    margin-right: .4rem; }
  .logo svg {
    margin-right: 1rem;
    display: block;
    height: 100%;
    transition: 0.3s; }

.header__search form {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%; }

.header__search .input {
  border-radius: 0;
  border: none;
  background-color: transparent;
  font-weight: 400;
  font-size: 1.6rem;
  color: #FFFFFF;
  height: 4.4rem;
  padding-left: 1rem;
  padding-right: 0; }
  .header__search .input::placeholder {
    color: #fff;
    font-size: 1.6rem; }

.header__search .btn--icon .icon {
  fill: #FFFFFF;
  width: 1.8rem;
  height: 1.8rem; }

.header__search-input {
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid #0D1119; }

.header__search-select {
  width: 13rem;
  padding-right: 2rem; }
  .header__search-select:focus-visible {
    outline: none; }

.header__search-btn {
  display: flex;
  align-items: center; }
  .header__search-btn .btn {
    height: 3.8rem;
    width: 3.8rem;
    border-radius: 50%;
    background-color: #F5852A; }
    .header__search-btn .btn:hover {
      background: #71A773; }
    .header__search-btn .btn .icon {
      fill: #1D232F; }

.header__cart {
  position: relative; }
  .header__cart .icon {
    fill: #F5852A; }
  .header__cart .count {
    position: absolute;
    top: -.2rem;
    right: -1.2rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F5852A;
    font-weight: 800;
    font-size: 1.3rem;
    text-align: center;
    color: #0D1119; }
  .header__cart .icon {
    fill: #F5852A !important; }

.lng {
  position: relative;
  height: 100%;
  z-index: 10; }
  .lng .lng__sub-item.active a {
    color: #0D1119; }
  .lng .lng__sub-item:hover a {
    color: #0D1119; }
  .lng--users .lng__wrapper-container {
    padding: 1.5rem 0 2rem; }
  .lng--users .lng__sub-item:last-child:hover a {
    color: #F12711; }
  .lng--cart .lng__wrapper {
    width: 59rem; }
  .lng--cart .cart {
    margin-bottom: 0; }
  .lng--cart .cart__item {
    padding: 3rem;
    border-bottom: solid 1px #2c353f; }
    .lng--cart .cart__item:first-child {
      border-top: none; }
  .lng--cart .cart__block:first-child {
    width: 30rem; }
  .lng--cart .cart__block:last-child {
    justify-content: space-between;
    width: 12rem; }
  .lng--cart .cart__img {
    width: 9.5rem;
    height: 14rem; }
  .lng--cart .cart__title {
    color: #FFFFFF; }
  .lng--cart .cart__total {
    color: #FFFFFF; }
    .lng--cart .cart__total .btn {
      min-width: 12rem;
      height: 4.4rem; }
  .lng--cart .cart__popup-empty {
    padding: 3rem;
    font-weight: 800;
    font-size: 1.8rem;
    color: #FFFFFF; }
  .lng--sorting {
    width: 100%; }
    .lng--sorting .lng__item {
      width: 100%;
      padding: 1rem 3.5rem;
      cursor: pointer; }
    .lng--sorting .lng__link {
      display: flex;
      align-items: center;
      font-size: 1.6rem;
      font-weight: 400;
      color: #FFFFFF; }
      .lng--sorting .lng__link:after {
        content: '';
        display: block;
        width: 0.8rem;
        height: 1.2rem;
        margin-left: 1rem;
        margin-top: .8rem;
        border: .4rem solid transparent;
        border-top-color: #F5852A; }
    .lng--sorting .lng__wrapper {
      width: 100%; }
    .lng--sorting .lng__wrapper-container {
      max-height: 26.8rem;
      padding: 1.5rem 0 2rem;
      overflow-y: auto; }
    .lng--sorting .lng__sub-item a {
      height: auto;
      padding: 0 3.5rem;
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 2.5; }
  .lng--currency .lng__link {
    position: relative;
    padding-right: 1.5rem; }
    .lng--currency .lng__link:after {
      top: 50%;
      transform: translateY(-50%) rotateZ(45deg);
      right: 0;
      border-width: 0 2px 2px 0;
      border-style: solid;
      border-color: #F5852A;
      padding: .3rem;
      position: absolute;
      content: '';
      margin-top: -.2rem; }

.lng__item {
  display: flex;
  align-items: center;
  height: 100%; }
  .lng__item:hover .lng__link:before {
    transform: translateY(-50%) rotate(180deg); }
  .lng__item:hover .lng__wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

.lng__link {
  position: relative;
  font-weight: 700;
  font-size: 1.3rem;
  color: #FFFFFF; }

.lng__wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  width: 21.5rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translateY(1rem); }

.lng__wrapper-container {
  background-color: #F5852A;
  border-radius: .5rem;
  overflow: hidden; }

.lng__sub-item a {
  position: relative;
  display: flex;
  align-items: center;
  height: 5rem;
  padding: 0 3rem;
  font-weight: 800;
  font-size: 1.6rem;
  color: #0D1119;
  transition: 0.3s; }

.lng__sub-item.gift_active a:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #F5852A; }

.header__nav {
  display: flex;
  gap: 3rem;
  align-items: center; }

.nav {
  display: flex;
  gap: 3rem; }

.nav__item.active > a {
  color: #F5852A; }

.nav__item:hover > a {
  color: #F5852A; }

.nav__item:hover .nav__submenu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }

.nav__item a {
  position: relative;
  display: flex;
  align-items: center;
  height: 5rem;
  font-weight: 800;
  font-size: 1.6rem;
  color: #FFFFFF;
  transition: 0.3s; }

.nav__submenu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: #0D1119;
  transition: 0.3s;
  transform: translateY(1rem); }

.nav__submenu-container {
  display: flex;
  padding: 2.5rem 0 5rem; }

.nav__submenu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding-right: 3rem; }

.nav__submenu-item.active > a {
  color: #F5852A; }

.nav__submenu-item a:hover {
  color: #F5852A; }

.nav__submenu-item a .count {
  margin-left: 0.8rem;
  margin-bottom: -0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #5f666e; }

.header__btn a {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  transition: 0.3s; }
  .header__btn a:hover {
    opacity: 0.7; }
  .header__btn a svg {
    display: block;
    width: 100%; }
    .header__btn a svg.mode-night {
      display: none; }

/* 7. Switcher
=========================*/
/* Before element */
/* After element */
/* Outline */
/* Thin */
/* Label */
.switcher__input {
  opacity: 0;
  position: absolute;
  /* Default */ }
  .switcher__input:checked + .switcher__label:after {
    transform: translate(-5rem, -50%); }
  .switcher__input:checked + .switcher__label .no {
    color: #333; }
  .switcher__input:checked + .switcher__label .yes {
    color: #FFFFFF; }

.switcher__label {
  width: 10rem;
  height: 50px;
  padding: 0 1.6rem 0 1.3rem;
  border-radius: 2.2rem;
  border: 1px solid #315ED2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  user-select: none; }
  .switcher__label:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 40px;
    right: .4rem;
    background-color: #315ED2;
    border-radius: 2.2rem;
    transition: transform .2s ease; }
  .switcher__label span {
    color: #333;
    position: relative;
    z-index: 2;
    transition: color .2s ease; }
  .switcher__label .no {
    color: #FFFFFF; }

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

/* 8. Checkbox
=========================*/
.checkbox {
  position: relative;
  display: block; }
  .checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 4rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    cursor: pointer;
    user-select: none; }
    .checkbox label:before {
      content: '';
      position: absolute;
      top: calc(50% - 1.4rem);
      left: 0;
      display: block;
      width: 3.2rem;
      height: 3.2rem;
      background-color: #222222;
      border-radius: 0;
      z-index: 1; }
    .checkbox label:after {
      content: '';
      position: absolute;
      top: calc(50% - 1.4rem);
      left: 0;
      display: block;
      width: 3.2rem;
      height: 3.2rem;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.9519 0.39409C14.4279 0.919297 14.4279 1.76824 13.9519 2.29369L6.03655 11.0262C5.79908 11.2881 5.48737 11.42 5.17565 11.42C4.86393 11.42 4.55222 11.2881 4.31475 11.0262L0.357203 6.65992C-0.119068 6.13472 -0.119068 5.28553 0.357203 4.76032C0.83325 4.23487 1.60273 4.23487 2.079 4.76032L5.17565 8.17675L12.2301 0.39409C12.7061 -0.131363 13.4756 -0.131363 13.9519 0.39409Z' fill='%23F5852A'/%3e%3c/svg%3e ");
      background-repeat: no-repeat;
      background-position: center;
      background-size: auto;
      z-index: 1;
      opacity: 0;
      transition: 0.3s; }
    .checkbox label a {
      color: #F5852A;
      transition: 0.3s;
      font-weight: 700; }
      .checkbox label a:hover {
        color: #f47712; }
  .checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
  .checkbox input:checked + label:after {
    opacity: 1; }

/* 9. Radio Buttons
=========================*/
/* Disabled */
/* Error */
.radio {
  display: block;
  height: 2.6rem;
  margin-bottom: 1rem;
  overflow: hidden; }
  .radio--inline {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px; }

.radio__input {
  display: none; }
  .radio__input:checked + .radio__label {
    color: #000000; }
    .radio__input:checked + .radio__label--disabled {
      color: #B4B4B4; }
  .radio__input:checked + .radio__label:after {
    opacity: 1;
    background-color: #FEC007; }
  .radio__input:checked + .radio__label:hover:after {
    opacity: 1; }
  .radio__input:checked + .radio__label--not-active {
    user-select: auto;
    color: #B4B4B4; }
    .radio__input:checked + .radio__label--not-active:before {
      border-color: white; }
    .radio__input:checked + .radio__label--not-active:after {
      opacity: 1;
      background-color: #B4B4B4; }
    .radio__input:checked + .radio__label--not-active:hover {
      cursor: auto; }
  .radio__input--square:checked + .radio__label--square:before {
    content: "\f00c"; }
  .radio__input--square:checked + .radio__label--text {
    border-color: #315ED2; }
  .radio__input--square:checked + .radio__label--square {
    border-color: #315ED2; }
  .radio__input--cart:checked + .radio__label--cart {
    border-color: #60A2AB !important; }

.radio__label {
  position: relative;
  display: flex;
  align-items: center;
  vertical-align: top;
  height: 2.6rem;
  padding-left: 3.8rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.4rem;
  white-space: nowrap;
  color: #000000;
  user-select: none;
  transition: 0.3s; }
  .radio__label:before {
    content: "";
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: 0.3s; }
  .radio__label:after {
    content: "";
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    background-color: #FEC007;
    border-radius: 50%;
    opacity: 0;
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 1;
    transition: 0.3s; }
  .radio__label:hover:not(.radio__label--disabled):after {
    opacity: 0.5; }
  .radio__label--error {
    color: #F12711; }
    .radio__label--error:before {
      border-color: #F12711; }
  .radio__label--disabled {
    color: #B4B4B4; }
    .radio__label--disabled:before {
      border-color: white; }
    .radio__label--disabled:hover {
      cursor: not-allowed; }
  .radio__label--not-active {
    user-select: auto;
    color: #B4B4B4; }
    .radio__label--not-active:before {
      border-color: white; }
    .radio__label--not-active:after {
      opacity: 0; }
    .radio__label--not-active:hover {
      cursor: pointer; }
  .radio__label--square {
    min-width: 75px;
    height: 40px;
    padding-left: 0;
    transition: all .1s ease;
    border: 2px solid #333; }
    .radio__label--square:hover {
      border-color: #315ED2; }
      .radio__label--square:hover:before {
        content: '\f00c';
        opacity: .4; }
    .radio__label--square:after {
      display: none; }
    .radio__label--square:before {
      content: '';
      margin: auto;
      border-radius: 0;
      font-family: FontAwesome;
      font-size: 16px;
      z-index: 4;
      color: #fff;
      border: 0;
      background-color: transparent;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
  .radio__label--text {
    padding: 10px 3px;
    background-color: #fff;
    color: #333;
    border: 2px solid #333;
    transition: all .1s ease; }
    .radio__label--text:hover {
      border-color: #315ED2; }
    .radio__label--text:before {
      display: none; }
    .radio__label--text .radio__span {
      width: auto;
      height: auto;
      text-align: center; }
  .radio__label--cart {
    padding: 0;
    display: block;
    border: 1px solid #ddd;
    transition: all .1s ease-in;
    text-align: center;
    border-radius: 0; }
    .radio__label--cart:before {
      display: none; }
    .radio__label--cart:after {
      display: none; }
    .radio__label--cart .radio__label-img,
    .radio__label--cart .radio__label-time {
      display: block;
      margin-bottom: 10px; }
    .radio__label--cart .radio__label-cost {
      display: block;
      margin-bottom: 10px;
      color: #60A2AB;
      font-weight: 600;
      font-size: 1.3em; }
    .radio__label--cart img {
      max-width: 100%;
      display: block;
      margin: 0 auto 10px;
      max-height: 45px; }

.radio__span {
  display: block;
  width: inherit;
  height: 100%;
  position: relative;
  z-index: 3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }
  .radio__span--text {
    background-color: #fff;
    color: #fff; }

.about__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7rem; }

.about__block {
  padding: 0 7rem;
  width: 50%;
  margin-bottom: 7rem;
  text-align: center; }

.about__title {
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.03em; }

.about__text {
  color: #FFFFFF;
  text-align: center;
  line-height: 1.8; }
  .about__text.main {
    max-width: 80rem;
    width: 100%;
    margin: 0 auto 7rem; }

/* 11. Buttons
=========================*/
/* Sizes */
/* Styling */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5.4rem;
  padding: 0 2rem 0;
  border: 0;
  background-color: #D9D9D9;
  text-decoration: none;
  color: #000000;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  /* Colors */
  /* Outline */
  /* Inverted Outline */
  /* Vertical Gradient */
  /* Horizontal Gradient */
  /* Sizes */
  /* Styling */ }
  .btn:hover, .btn:focus {
    text-decoration: none; }
  .btn:focus {
    outline: 0; }
  .btn:focus-visible {
    outline: none; }
  .btn:hover {
    background-color: #cccccc; }
  .btn:active {
    background-color: #c7c7c7; }
  .btn--gray {
    background-color: #B4B4B4;
    color: #000000; }
    .btn--gray:focus {
      background-color: #acacac; }
    .btn--gray:hover {
      background-color: #a7a7a7; }
    .btn--gray:active {
      background-color: #a2a2a2; }
  .btn--dark-blue {
    background-color: #1437CC;
    color: #FFFFFF; }
    .btn--dark-blue:focus {
      background-color: #1333be; }
    .btn--dark-blue:hover {
      background-color: #1231b5; }
    .btn--dark-blue:active {
      background-color: #112eab; }
  .btn--red {
    background-color: #F12711;
    color: #FFFFFF; }
    .btn--red:focus {
      background-color: #e5230d; }
    .btn--red:hover {
      background-color: #dc210d; }
    .btn--red:active {
      background-color: #d2200c; }
  .btn--rblack {
    background-color: #000;
    color: #FFFFFF; }
    .btn--rblack:focus {
      background-color: black; }
    .btn--rblack:hover {
      background-color: black; }
    .btn--rblack:active {
      background-color: black; }
  .btn--white {
    background-color: #FFFFFF;
    color: #000000; }
    .btn--white:focus {
      background-color: #f7f7f7; }
    .btn--white:hover {
      background-color: #f2f2f2; }
    .btn--white:active {
      background-color: #ededed; }
  .btn--pink {
    background-color: #EBDDDD;
    color: #000000; }
    .btn--pink:focus {
      background-color: #e5d3d3; }
    .btn--pink:hover {
      background-color: #e2cdcd; }
    .btn--pink:active {
      background-color: #dec7c7; }
  .btn--deep-pink {
    background-color: #DCC9C3;
    color: #000000; }
    .btn--deep-pink:focus {
      background-color: #d6c0b9; }
    .btn--deep-pink:hover {
      background-color: #d3bbb3; }
    .btn--deep-pink:active {
      background-color: #cfb5ac; }
  .btn--purple {
    background-color: #A08CA7;
    color: #FFFFFF; }
    .btn--purple:focus {
      background-color: #9983a0; }
    .btn--purple:hover {
      background-color: #947e9c; }
    .btn--purple:active {
      background-color: #8f7898; }
  .btn--deep-purple {
    background-color: #673ab7;
    color: #FFFFFF; }
    .btn--deep-purple:focus {
      background-color: #6036ab; }
    .btn--deep-purple:hover {
      background-color: #5c34a4; }
    .btn--deep-purple:active {
      background-color: #58319c; }
  .btn--dark-pink {
    background-color: #BC9999;
    color: #000000; }
    .btn--dark-pink:focus {
      background-color: #b69090; }
    .btn--dark-pink:hover {
      background-color: #b28a8a; }
    .btn--dark-pink:active {
      background-color: #ae8383; }
  .btn--blue {
    background-color: #315ED2;
    color: #FFFFFF; }
    .btn--blue:focus {
      background-color: #2c57c8; }
    .btn--blue:hover {
      background-color: #2a54c0; }
    .btn--blue:active {
      background-color: #2850b7; }
  .btn--cyan {
    background-color: #60A2AB;
    color: #FFFFFF; }
    .btn--cyan:focus {
      background-color: #579ba5; }
    .btn--cyan:hover {
      background-color: #53959e; }
    .btn--cyan:active {
      background-color: #508f97; }
  .btn--green {
    background-color: #34A853;
    color: #FFFFFF; }
    .btn--green:focus {
      background-color: #309c4d; }
    .btn--green:hover {
      background-color: #2e9549; }
    .btn--green:active {
      background-color: #2c8d46; }
  .btn--yellow {
    background-color: #F0B83B;
    color: #FFFFFF; }
    .btn--yellow:focus {
      background-color: #efb32d; }
    .btn--yellow:hover {
      background-color: #eeaf23; }
    .btn--yellow:active {
      background-color: #edac1a; }
  .btn--main {
    background-color: #F5852A;
    color: #FFFFFF; }
    .btn--main:focus {
      background-color: #f47d1b; }
    .btn--main:hover {
      background-color: #f47712; }
    .btn--main:active {
      background-color: #f0720b; }
  .btn--moicvet {
    background-color: #000;
    color: #FFFFFF; }
    .btn--moicvet:focus {
      background-color: black; }
    .btn--moicvet:hover {
      background-color: black; }
    .btn--moicvet:active {
      background-color: black; }
  .btn--secondary {
    background-color: #00C04D;
    color: #FFFFFF; }
    .btn--secondary:focus {
      background-color: #00b147; }
    .btn--secondary:hover {
      background-color: #00a743; }
    .btn--secondary:active {
      background-color: #009c3f; }
  .btn--brown {
    background-color: #94816C;
    color: #FFFFFF; }
    .btn--brown:focus {
      background-color: #8b7965; }
    .btn--brown:hover {
      background-color: #857461; }
    .btn--brown:active {
      background-color: #7f6f5d; }
  .btn--black {
    background-color: #000000;
    color: #FFFFFF; }
    .btn--black:focus {
      background-color: black; }
    .btn--black:hover {
      background-color: black; }
    .btn--black:active {
      background-color: black; }
  .btn--gray {
    background-color: #B4B4B4;
    color: #000000; }
    .btn--gray:focus {
      background-color: #acacac; }
    .btn--gray:hover {
      background-color: #a7a7a7; }
    .btn--gray:active {
      background-color: #a2a2a2; }
  .btn--peach {
    background-color: #916868;
    color: #FFFFFF; }
    .btn--peach:focus {
      background-color: #886262; }
    .btn--peach:hover {
      background-color: #825d5d; }
    .btn--peach:active {
      background-color: #7c5959; }
  .btn--o-gray {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #B4B4B4; }
    .btn--o-gray:focus {
      background-color: transparent;
      color: #B4B4B4;
      border-color: #afafaf; }
    .btn--o-gray:hover {
      border-color: #B4B4B4;
      background-color: #B4B4B4;
      color: #FFFFFF; }
    .btn--o-gray:active {
      border-color: #acacac;
      background-color: #acacac; }
  .btn--o-dark-blue {
    background-color: transparent;
    border: 1px solid #1437CC;
    color: #1437CC; }
    .btn--o-dark-blue:focus {
      background-color: transparent;
      color: #1437CC;
      border-color: #1334c3; }
    .btn--o-dark-blue:hover {
      border-color: #1437CC;
      background-color: #1437CC;
      color: #FFFFFF; }
    .btn--o-dark-blue:active {
      border-color: #1333be;
      background-color: #1333be; }
  .btn--o-red {
    background-color: transparent;
    border: 1px solid #F12711;
    color: #F12711; }
    .btn--o-red:focus {
      background-color: transparent;
      color: #F12711;
      border-color: #ea230e; }
    .btn--o-red:hover {
      border-color: #F12711;
      background-color: #F12711;
      color: #FFFFFF; }
    .btn--o-red:active {
      border-color: #e5230d;
      background-color: #e5230d; }
  .btn--o-rblack {
    background-color: transparent;
    border: 1px solid #000;
    color: #000; }
    .btn--o-rblack:focus {
      background-color: transparent;
      color: #000;
      border-color: black; }
    .btn--o-rblack:hover {
      border-color: #000;
      background-color: #000;
      color: #FFFFFF; }
    .btn--o-rblack:active {
      border-color: black;
      background-color: black; }
  .btn--o-white {
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF; }
    .btn--o-white:focus {
      background-color: transparent;
      color: #FFFFFF;
      border-color: #fafafa; }
    .btn--o-white:hover {
      border-color: #FFFFFF;
      background-color: #FFFFFF;
      color: #FFFFFF; }
    .btn--o-white:active {
      border-color: #f7f7f7;
      background-color: #f7f7f7; }
  .btn--o-pink {
    background-color: transparent;
    border: 1px solid #EBDDDD;
    color: #EBDDDD; }
    .btn--o-pink:focus {
      background-color: transparent;
      color: #EBDDDD;
      border-color: #e7d7d7; }
    .btn--o-pink:hover {
      border-color: #EBDDDD;
      background-color: #EBDDDD;
      color: #FFFFFF; }
    .btn--o-pink:active {
      border-color: #e5d3d3;
      background-color: #e5d3d3; }
  .btn--o-deep-pink {
    background-color: transparent;
    border: 1px solid #DCC9C3;
    color: #DCC9C3; }
    .btn--o-deep-pink:focus {
      background-color: transparent;
      color: #DCC9C3;
      border-color: #d8c3bd; }
    .btn--o-deep-pink:hover {
      border-color: #DCC9C3;
      background-color: #DCC9C3;
      color: #FFFFFF; }
    .btn--o-deep-pink:active {
      border-color: #d6c0b9;
      background-color: #d6c0b9; }
  .btn--o-purple {
    background-color: transparent;
    border: 1px solid #A08CA7;
    color: #A08CA7; }
    .btn--o-purple:focus {
      background-color: transparent;
      color: #A08CA7;
      border-color: #9b86a3; }
    .btn--o-purple:hover {
      border-color: #A08CA7;
      background-color: #A08CA7;
      color: #FFFFFF; }
    .btn--o-purple:active {
      border-color: #9983a0;
      background-color: #9983a0; }
  .btn--o-deep-purple {
    background-color: transparent;
    border: 1px solid #673ab7;
    color: #673ab7; }
    .btn--o-deep-purple:focus {
      background-color: transparent;
      color: #673ab7;
      border-color: #6338af; }
    .btn--o-deep-purple:hover {
      border-color: #673ab7;
      background-color: #673ab7;
      color: #FFFFFF; }
    .btn--o-deep-purple:active {
      border-color: #6036ab;
      background-color: #6036ab; }
  .btn--o-dark-pink {
    background-color: transparent;
    border: 1px solid #BC9999;
    color: #BC9999; }
    .btn--o-dark-pink:focus {
      background-color: transparent;
      color: #BC9999;
      border-color: #b89393; }
    .btn--o-dark-pink:hover {
      border-color: #BC9999;
      background-color: #BC9999;
      color: #FFFFFF; }
    .btn--o-dark-pink:active {
      border-color: #b69090;
      background-color: #b69090; }
  .btn--o-blue {
    background-color: transparent;
    border: 1px solid #315ED2;
    color: #315ED2; }
    .btn--o-blue:focus {
      background-color: transparent;
      color: #315ED2;
      border-color: #2d59cc; }
    .btn--o-blue:hover {
      border-color: #315ED2;
      background-color: #315ED2;
      color: #FFFFFF; }
    .btn--o-blue:active {
      border-color: #2c57c8;
      background-color: #2c57c8; }
  .btn--o-cyan {
    background-color: transparent;
    border: 1px solid #60A2AB;
    color: #60A2AB; }
    .btn--o-cyan:focus {
      background-color: transparent;
      color: #60A2AB;
      border-color: #599ea7; }
    .btn--o-cyan:hover {
      border-color: #60A2AB;
      background-color: #60A2AB;
      color: #FFFFFF; }
    .btn--o-cyan:active {
      border-color: #579ba5;
      background-color: #579ba5; }
  .btn--o-green {
    background-color: transparent;
    border: 1px solid #34A853;
    color: #34A853; }
    .btn--o-green:focus {
      background-color: transparent;
      color: #34A853;
      border-color: #32a04f; }
    .btn--o-green:hover {
      border-color: #34A853;
      background-color: #34A853;
      color: #FFFFFF; }
    .btn--o-green:active {
      border-color: #309c4d;
      background-color: #309c4d; }
  .btn--o-yellow {
    background-color: transparent;
    border: 1px solid #F0B83B;
    color: #F0B83B; }
    .btn--o-yellow:focus {
      background-color: transparent;
      color: #F0B83B;
      border-color: #efb532; }
    .btn--o-yellow:hover {
      border-color: #F0B83B;
      background-color: #F0B83B;
      color: #FFFFFF; }
    .btn--o-yellow:active {
      border-color: #efb32d;
      background-color: #efb32d; }
  .btn--o-main {
    background-color: transparent;
    border: 1px solid #F5852A;
    color: #F5852A; }
    .btn--o-main:focus {
      background-color: transparent;
      color: #F5852A;
      border-color: #f57f20; }
    .btn--o-main:hover {
      border-color: #F5852A;
      background-color: #F5852A;
      color: #FFFFFF; }
    .btn--o-main:active {
      border-color: #f47d1b;
      background-color: #f47d1b; }
  .btn--o-moicvet {
    background-color: transparent;
    border: 1px solid #000;
    color: #000; }
    .btn--o-moicvet:focus {
      background-color: transparent;
      color: #000;
      border-color: black; }
    .btn--o-moicvet:hover {
      border-color: #000;
      background-color: #000;
      color: #FFFFFF; }
    .btn--o-moicvet:active {
      border-color: black;
      background-color: black; }
  .btn--o-secondary {
    background-color: transparent;
    border: 1px solid #00C04D;
    color: #00C04D; }
    .btn--o-secondary:focus {
      background-color: transparent;
      color: #00C04D;
      border-color: #00b649; }
    .btn--o-secondary:hover {
      border-color: #00C04D;
      background-color: #00C04D;
      color: #FFFFFF; }
    .btn--o-secondary:active {
      border-color: #00b147;
      background-color: #00b147; }
  .btn--o-brown {
    background-color: transparent;
    border: 1px solid #94816C;
    color: #94816C; }
    .btn--o-brown:focus {
      background-color: transparent;
      color: #94816C;
      border-color: #8e7c68; }
    .btn--o-brown:hover {
      border-color: #94816C;
      background-color: #94816C;
      color: #FFFFFF; }
    .btn--o-brown:active {
      border-color: #8b7965;
      background-color: #8b7965; }
  .btn--o-black {
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000; }
    .btn--o-black:focus {
      background-color: transparent;
      color: #000000;
      border-color: black; }
    .btn--o-black:hover {
      border-color: #000000;
      background-color: #000000;
      color: #FFFFFF; }
    .btn--o-black:active {
      border-color: black;
      background-color: black; }
  .btn--o-gray {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #B4B4B4; }
    .btn--o-gray:focus {
      background-color: transparent;
      color: #B4B4B4;
      border-color: #afafaf; }
    .btn--o-gray:hover {
      border-color: #B4B4B4;
      background-color: #B4B4B4;
      color: #FFFFFF; }
    .btn--o-gray:active {
      border-color: #acacac;
      background-color: #acacac; }
  .btn--o-peach {
    background-color: transparent;
    border: 1px solid #916868;
    color: #916868; }
    .btn--o-peach:focus {
      background-color: transparent;
      color: #916868;
      border-color: #8b6464; }
    .btn--o-peach:hover {
      border-color: #916868;
      background-color: #916868;
      color: #FFFFFF; }
    .btn--o-peach:active {
      border-color: #886262;
      background-color: #886262; }
  .btn--i-gray {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-gray:focus {
      background-color: transparent;
      color: #B4B4B4;
      border-color: #afafaf; }
    .btn--i-gray:hover {
      border-color: #B4B4B4;
      background-color: transparent;
      color: #B4B4B4; }
    .btn--i-gray:active {
      border-color: #acacac;
      background-color: transparent; }
  .btn--i-dark-blue {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-dark-blue:focus {
      background-color: transparent;
      color: #1437CC;
      border-color: #1334c3; }
    .btn--i-dark-blue:hover {
      border-color: #1437CC;
      background-color: transparent;
      color: #1437CC; }
    .btn--i-dark-blue:active {
      border-color: #1333be;
      background-color: transparent; }
  .btn--i-red {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-red:focus {
      background-color: transparent;
      color: #F12711;
      border-color: #ea230e; }
    .btn--i-red:hover {
      border-color: #F12711;
      background-color: transparent;
      color: #F12711; }
    .btn--i-red:active {
      border-color: #e5230d;
      background-color: transparent; }
  .btn--i-rblack {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-rblack:focus {
      background-color: transparent;
      color: #000;
      border-color: black; }
    .btn--i-rblack:hover {
      border-color: #000;
      background-color: transparent;
      color: #000; }
    .btn--i-rblack:active {
      border-color: black;
      background-color: transparent; }
  .btn--i-white {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-white:focus {
      background-color: transparent;
      color: #FFFFFF;
      border-color: #fafafa; }
    .btn--i-white:hover {
      border-color: #FFFFFF;
      background-color: transparent;
      color: #FFFFFF; }
    .btn--i-white:active {
      border-color: #f7f7f7;
      background-color: transparent; }
  .btn--i-pink {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-pink:focus {
      background-color: transparent;
      color: #EBDDDD;
      border-color: #e7d7d7; }
    .btn--i-pink:hover {
      border-color: #EBDDDD;
      background-color: transparent;
      color: #EBDDDD; }
    .btn--i-pink:active {
      border-color: #e5d3d3;
      background-color: transparent; }
  .btn--i-deep-pink {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-deep-pink:focus {
      background-color: transparent;
      color: #DCC9C3;
      border-color: #d8c3bd; }
    .btn--i-deep-pink:hover {
      border-color: #DCC9C3;
      background-color: transparent;
      color: #DCC9C3; }
    .btn--i-deep-pink:active {
      border-color: #d6c0b9;
      background-color: transparent; }
  .btn--i-purple {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-purple:focus {
      background-color: transparent;
      color: #A08CA7;
      border-color: #9b86a3; }
    .btn--i-purple:hover {
      border-color: #A08CA7;
      background-color: transparent;
      color: #A08CA7; }
    .btn--i-purple:active {
      border-color: #9983a0;
      background-color: transparent; }
  .btn--i-deep-purple {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-deep-purple:focus {
      background-color: transparent;
      color: #673ab7;
      border-color: #6338af; }
    .btn--i-deep-purple:hover {
      border-color: #673ab7;
      background-color: transparent;
      color: #673ab7; }
    .btn--i-deep-purple:active {
      border-color: #6036ab;
      background-color: transparent; }
  .btn--i-dark-pink {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-dark-pink:focus {
      background-color: transparent;
      color: #BC9999;
      border-color: #b89393; }
    .btn--i-dark-pink:hover {
      border-color: #BC9999;
      background-color: transparent;
      color: #BC9999; }
    .btn--i-dark-pink:active {
      border-color: #b69090;
      background-color: transparent; }
  .btn--i-blue {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-blue:focus {
      background-color: transparent;
      color: #315ED2;
      border-color: #2d59cc; }
    .btn--i-blue:hover {
      border-color: #315ED2;
      background-color: transparent;
      color: #315ED2; }
    .btn--i-blue:active {
      border-color: #2c57c8;
      background-color: transparent; }
  .btn--i-cyan {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-cyan:focus {
      background-color: transparent;
      color: #60A2AB;
      border-color: #599ea7; }
    .btn--i-cyan:hover {
      border-color: #60A2AB;
      background-color: transparent;
      color: #60A2AB; }
    .btn--i-cyan:active {
      border-color: #579ba5;
      background-color: transparent; }
  .btn--i-green {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-green:focus {
      background-color: transparent;
      color: #34A853;
      border-color: #32a04f; }
    .btn--i-green:hover {
      border-color: #34A853;
      background-color: transparent;
      color: #34A853; }
    .btn--i-green:active {
      border-color: #309c4d;
      background-color: transparent; }
  .btn--i-yellow {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-yellow:focus {
      background-color: transparent;
      color: #F0B83B;
      border-color: #efb532; }
    .btn--i-yellow:hover {
      border-color: #F0B83B;
      background-color: transparent;
      color: #F0B83B; }
    .btn--i-yellow:active {
      border-color: #efb32d;
      background-color: transparent; }
  .btn--i-main {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-main:focus {
      background-color: transparent;
      color: #F5852A;
      border-color: #f57f20; }
    .btn--i-main:hover {
      border-color: #F5852A;
      background-color: transparent;
      color: #F5852A; }
    .btn--i-main:active {
      border-color: #f47d1b;
      background-color: transparent; }
  .btn--i-moicvet {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-moicvet:focus {
      background-color: transparent;
      color: #000;
      border-color: black; }
    .btn--i-moicvet:hover {
      border-color: #000;
      background-color: transparent;
      color: #000; }
    .btn--i-moicvet:active {
      border-color: black;
      background-color: transparent; }
  .btn--i-secondary {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-secondary:focus {
      background-color: transparent;
      color: #00C04D;
      border-color: #00b649; }
    .btn--i-secondary:hover {
      border-color: #00C04D;
      background-color: transparent;
      color: #00C04D; }
    .btn--i-secondary:active {
      border-color: #00b147;
      background-color: transparent; }
  .btn--i-brown {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-brown:focus {
      background-color: transparent;
      color: #94816C;
      border-color: #8e7c68; }
    .btn--i-brown:hover {
      border-color: #94816C;
      background-color: transparent;
      color: #94816C; }
    .btn--i-brown:active {
      border-color: #8b7965;
      background-color: transparent; }
  .btn--i-black {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-black:focus {
      background-color: transparent;
      color: #000000;
      border-color: black; }
    .btn--i-black:hover {
      border-color: #000000;
      background-color: transparent;
      color: #000000; }
    .btn--i-black:active {
      border-color: black;
      background-color: transparent; }
  .btn--i-gray {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-gray:focus {
      background-color: transparent;
      color: #B4B4B4;
      border-color: #afafaf; }
    .btn--i-gray:hover {
      border-color: #B4B4B4;
      background-color: transparent;
      color: #B4B4B4; }
    .btn--i-gray:active {
      border-color: #acacac;
      background-color: transparent; }
  .btn--i-peach {
    background-color: transparent;
    border: 1px solid #B4B4B4;
    color: #FFFFFF; }
    .btn--i-peach:focus {
      background-color: transparent;
      color: #916868;
      border-color: #8b6464; }
    .btn--i-peach:hover {
      border-color: #916868;
      background-color: transparent;
      color: #916868; }
    .btn--i-peach:active {
      border-color: #886262;
      background-color: transparent; }
  .btn--xs {
    min-height: 0;
    font-size: 0.7em; }
  .btn--s {
    min-height: 0;
    font-size: 0.8em; }
  .btn--m {
    font-size: 1.2em; }
  .btn--l {
    font-size: 1.4em; }
  .btn--xl {
    font-size: 1.6em; }
  .btn--xxl {
    font-size: 1.8em; }
  .btn--full {
    width: 100%; }
  .btn--rounded {
    border-radius: .2rem; }
  .btn--ellipse {
    border-radius: 2.6em; }
  .btn--shadow {
    box-shadow: 1px 1px 0.3em rgba(0, 0, 0, 0.3); }
  .btn--icon-before i {
    margin-right: 0.5em; }
  .btn--icon-after i {
    margin-left: 0.5em; }
  .btn--orange {
    background-color: #F5852A;
    color: #FFFFFF; }
    .btn--orange:hover {
      background-color: #f47712;
      color: #FFFFFF; }
  .btn--o-orange {
    border: solid 1px #F5852A;
    background-color: transparent;
    color: #F5852A; }
    .btn--o-orange:hover {
      border-color: #F5852A;
      background-color: #F5852A;
      color: #FFFFFF; }
  .btn--main {
    color: #FFFFFF; }
  .btn--o-main {
    background-color: #1D232F;
    color: #F5852A; }
    .btn--o-main:hover {
      color: #FFFFFF; }
  .btn--icon {
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 50%;
    background-color: transparent; }
    .btn--icon:hover {
      background: none; }
    .btn--icon .icon {
      display: block;
      width: 2.7rem;
      height: 2rem;
      fill: #F5852A;
      transition: 0.3s; }
      .btn--icon .icon--active {
        display: none; }
    .btn--icon.btn--orange {
      width: 4.4rem;
      height: 4.4rem;
      border-radius: 50%;
      background-color: #F5852A; }
      .btn--icon.btn--orange .icon {
        filter: none;
        fill: #0c1218; }
      .btn--icon.btn--orange:hover {
        background-color: #f47712; }
    .btn--icon.active .icon--active, .btn--icon.added .icon--active {
      display: block; }
    .btn--icon.active .icon--noactive, .btn--icon.added .icon--noactive {
      display: none; }

/* 12. Dropdown
=========================*/
.dropdown-wrapper {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-right: .7rem;
  line-height: 1; }
  .dropdown-wrapper .btn.opened i {
    transform: rotate(-180deg); }
  .dropdown-wrapper .btn i {
    transition: transform .2s ease; }
  .dropdown-wrapper--cabinet {
    display: block;
    width: 230px; }

.dropdown__block {
  display: block;
  margin-bottom: 10px; }

.dropdown {
  width: auto;
  margin: 0;
  padding: 0;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.11);
  border: 1px solid #D9D9D9;
  list-style: none;
  position: absolute;
  top: 101%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: none; }
  .dropdown--right {
    left: auto;
    right: 0;
    text-align: right; }
  .dropdown--full {
    width: 100%; }
  .dropdown--nowrap {
    white-space: nowrap; }
  .dropdown--lng {
    color: #000000; }
    .dropdown--lng .dropdown__link {
      color: #000000;
      font-weight: 700; }

.dropdown__link {
  display: block;
  padding: 0.4em 0.6em;
  color: #916868;
  font-size: 1em;
  line-height: 1.2;
  background-color: #FFFFFF;
  transition: background-color .1s linear; }
  .dropdown__link:hover {
    background-color: #D9D9D9;
    text-decoration: none; }
  .dropdown__link:focus {
    text-decoration: none; }

.dropdown__arrow {
  cursor: pointer;
  border: 0;
  padding: 0;
  background: none; }

form {
  width: 100%; }

.login__title {
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2rem; }

.form__line {
  margin-bottom: 2rem; }
  .form__line.right {
    text-align: right; }

.form__group {
  position: relative; }
  .form__group .input {
    padding-right: 8.8rem; }
  .form__group .form__link {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%); }

.form__link {
  padding: 0;
  font-weight: 600;
  font-size: 1.4rem;
  color: #F5852A;
  transition: 0.3s; }
  .form__link:hover {
    color: #FFFFFF; }

.form__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -1.75rem; }

.form__block {
  flex: 1;
  margin-bottom: 3.5rem;
  padding: 0 1.75rem; }
  .form__block.right {
    text-align: right; }

/* 10. Inputs & textarea
=========================*/
/* Styling */
/* States */
.input {
  width: 100%;
  height: 5rem;
  padding: 0 2rem;
  border: 1px solid #E9E9E9;
  background-color: #222222;
  vertical-align: middle;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: inherit;
  color: #FFFFFF;
  transition: 0.3s;
  /* Styling */
  /* States */ }
  .input:focus {
    outline: 0; }
  .input::placeholder {
    color: #757575; }
  .input--rounded {
    border-radius: 0.4rem; }
  .input--ellipse {
    border-radius: 2.4rem; }
  .input--shadow {
    box-shadow: 1px 1px 0.3em rgba(0, 0, 0, 0.2); }
  .input--slide::placeholder {
    transition: padding-left .3s linear; }
  .input--slide:focus::placeholder {
    padding-left: 150%; }
  .input--fade::placeholder {
    transition: opacity .2s linear; }
  .input--fade:focus::placeholder {
    opacity: 0; }
  .input--error {
    border-color: #F12711;
    color: #F12711;
    background-color: rgba(241, 39, 17, 0.05); }
    .input--error::placeholder {
      color: #F12711; }
    .input--error:focus {
      background-color: rgba(241, 39, 17, 0.05); }
  .input--success {
    border-color: #34A853;
    color: #34A853;
    background-color: rgba(52, 168, 83, 0.05); }
    .input--success::placeholder {
      color: #34A853; }
    .input--success:focus {
      background-color: rgba(52, 168, 83, 0.05); }
  .input.error {
    border-color: #F12711;
    color: #F12711;
    background-color: rgba(241, 39, 17, 0.05); }
    .input.error::placeholder {
      color: #F12711; }
    .input.error:focus {
      background-color: rgba(241, 39, 17, 0.05); }
  .input.success {
    border-color: #F12711;
    color: #F12711;
    background-color: rgba(241, 39, 17, 0.05); }
    .input.success::placeholder {
      color: #F12711; }
    .input.success:focus {
      background-color: rgba(241, 39, 17, 0.05); }
  .input--inline {
    display: inline-block;
    vertical-align: top;
    width: 49%; }
  .input--number {
    width: 8rem; }

.input__block {
  width: 25%;
  padding: 0 1.75rem; }

.input__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 5.4rem;
  padding: 0 0 0 2rem;
  overflow: hidden;
  background-color: #222222; }
  .input__wrapper .label {
    width: auto;
    margin-bottom: 0;
    white-space: nowrap;
    font-size: 1.6rem;
    color: #B4B4B4; }
  .input__wrapper .input {
    height: 5.2rem;
    border-radius: 0;
    border: none; }

/* Textarea */
/* Styling */
/* States */
.textarea {
  display: block;
  width: 100%;
  height: 16.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid #D9D9D9;
  background-color: #FFFFFF;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.7px;
  color: #000000;
  resize: none;
  transition: 0.3s;
  /* Styling */
  /* States */ }
  .textarea--small {
    height: 11.5rem; }
  .textarea:focus {
    outline: 0; }
  .textarea::placeholder {
    color: #B4B4B4; }
  .textarea--rounded {
    border-radius: 1.5rem; }
  .textarea--shadow {
    box-shadow: 1px 1px 0.3em rgba(0, 0, 0, 0.2); }
  .textarea--slide::placeholder {
    transition: padding-left .3s linear; }
  .textarea--slide:focus::placeholder {
    padding-left: 150%; }
  .textarea--ellipse {
    border-radius: 1.6rem; }
  .textarea--fade::placeholder {
    transition: opacity .2s linear; }
  .textarea--fade:focus::placeholder {
    opacity: 0; }
  .textarea--error {
    border-color: #F12711;
    color: #F12711;
    background-color: rgba(241, 39, 17, 0.05); }
    .textarea--error::placeholder {
      color: #F12711; }
    .textarea--error:focus {
      background-color: rgba(241, 39, 17, 0.05); }
  .textarea--success {
    border-color: #34A853;
    color: #34A853;
    background-color: rgba(52, 168, 83, 0.05); }
    .textarea--success::placeholder {
      color: #34A853; }
    .textarea--success:focus {
      background-color: rgba(52, 168, 83, 0.05); }
  .textarea.error {
    border-color: #F12711;
    color: #F12711;
    background-color: rgba(241, 39, 17, 0.05); }
    .textarea.error::placeholder {
      color: #F12711; }
    .textarea.error:focus {
      background-color: rgba(241, 39, 17, 0.05); }
  .textarea.success {
    border-color: #34A853;
    color: #34A853;
    background-color: rgba(52, 168, 83, 0.05); }
    .textarea.success::placeholder {
      color: #34A853; }
    .textarea.success:focus {
      background-color: rgba(52, 168, 83, 0.05); }

/* 6. Label
=========================*/
.label {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: baseline;
  font-weight: 700;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1.3rem;
  z-index: 1; }
  .label.field__file-wrapper {
    border-radius: 14px;
    border: 1px solid #EDEDED;
    overflow: hidden; }

/* 19. Select
=========================*/
.select {
  position: relative;
  color: #000000;
  font-family: inherit;
  /* Styling */
  /* Types */
  /* States */ }
  .select:after {
    content: '';
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #F0B83B;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    margin-top: -.15rem;
    padding: .4rem;
    right: 2.4rem;
    pointer-events: none; }
  .select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: .5rem 2rem;
    border-radius: 14px;
    border: 1px solid #D9D9D9;
    font-family: inherit;
    color: #000000;
    height: 5.4rem;
    font-size: 1.5rem;
    transition: 0.3s; }
    .select select::-ms-expand {
      display: none; }
    .select select:focus {
      outline: 0;
      background-color: white; }
    .select select:hover {
      cursor: pointer; }
    .select select.error {
      border-color: #F12711;
      color: #F12711;
      background-color: rgba(241, 39, 17, 0.05); }
      .select select.error::placeholder {
        color: #F12711; }
      .select select.error:focus {
        background-color: rgba(241, 39, 17, 0.05); }
  .select--sort {
    height: 60px; }
    .select--sort:before {
      display: none; }
    .select--sort select {
      box-shadow: none;
      padding-right: 31px; }
  .select--rounded select {
    border-radius: 0.3em; }
  .select--ellipse select {
    border-radius: 2.4rem; }
  .select--shadow select {
    box-shadow: 1px 1px 0.3em rgba(0, 0, 0, 0.2); }
  .select--multiple {
    height: 100px; }
    .select--multiple:before, .select--multiple:after {
      display: none; }
    .select--multiple select {
      padding: 0.8em; }
  .select--error:before, .select--error:after {
    color: #F12711; }
  .select--success:before, .select--success:after {
    color: #34A853; }
  .select--error select {
    color: #F12711;
    border-color: #F12711;
    color: #F12711;
    background-color: rgba(241, 39, 17, 0.05); }
    .select--error select::placeholder {
      color: #F12711; }
    .select--error select:focus {
      background-color: rgba(241, 39, 17, 0.05); }
  .select--success select {
    color: #34A853;
    border-color: #34A853;
    color: #34A853;
    background-color: rgba(52, 168, 83, 0.05); }
    .select--success select::placeholder {
      color: #34A853; }
    .select--success select:focus {
      background-color: rgba(52, 168, 83, 0.05); }
  .select--border select {
    box-shadow: none;
    border: 1px solid #ddd;
    color: #000000;
    transition: all .1s ease; }
    .select--border select:hover {
      border-color: #c4c4c4; }
  .select--users {
    width: 100%; }
    .select--users select {
      width: 100%; }

.reviews__container {
  display: flex;
  gap: 7rem;
  align-items: flex-end;
  margin-bottom: 7rem; }

.reviews__wrapper {
  display: flex;
  justify-content: center;
  width: 100%; }

.reviews__block {
  width: 34rem;
  flex-grow: 0;
  margin: 0 -6.5rem;
  position: relative; }
  .reviews__block:first-child {
    margin-top: 13.2rem; }
  .reviews__block:nth-child(2) {
    margin-top: 6.6rem;
    z-index: 3; }
  .reviews__block:nth-child(3) {
    z-index: 4; }
  .reviews__block:nth-child(4) {
    margin-top: 6.6rem;
    z-index: 3; }
  .reviews__block:last-child {
    margin-top: 13.2rem; }

.reviews__item {
  background-color: #222222;
  padding: 2.4rem;
  height: 31.5rem;
  box-shadow: 0 0 3.5rem rgba(0, 0, 0, 0.5); }

.reviews__title {
  margin-bottom: 1.4rem;
  color: #FFFFFF;
  font-weight: 700; }

.reviews__text {
  color: #FFFFFF;
  font-size: 1.6rem; }

.reviews__footer {
  text-align: right; }
  .reviews__footer .title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF; }

/* 13. Breadcrumbs
=========================*/
.breadcrumbs {
  position: relative;
  margin-bottom: 2rem; }

.breadcrumbs__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: #FFFFFF;
  transition: 0.3s;
  line-height: 1; }
  .breadcrumbs__item:not(.current):after {
    content: '';
    display: inline-block;
    margin: 0 2rem;
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    background-color: #F5852A;
    pointer-events: none; }
  .breadcrumbs__item:hover:not(.current) {
    color: #FFFFFF; }
  .breadcrumbs__item:last-child {
    color: #B4B4B4;
    pointer-events: none; }
    .breadcrumbs__item:last-child:after {
      display: none; }

/* 14. Pagination
=========================*/
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -1px;
  text-align: center;
  gap: .5rem; }

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  color: #F5852A;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.9px;
  text-align: center;
  transition: 0.3s;
  background-color: #222222; }
  .pagination__item:focus {
    text-decoration: none; }
  .pagination__item:hover {
    color: #FFFFFF;
    text-decoration: none; }
  .pagination__item--disabled {
    color: #B0B0B0;
    pointer-events: none; }
  .pagination__item--current {
    color: #FFFFFF; }
  .pagination__item--left, .pagination__item--right {
    position: relative; }
  .pagination__item--left:before {
    content: '';
    border-width: 2px 0 0 2px;
    border-style: solid;
    border-color: #F5852A;
    padding: .3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateZ(-45deg); }
  .pagination__item--right:after {
    content: '';
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #F5852A;
    padding: .3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateZ(-45deg); }

/* 17. Alerts
=========================*/
/* Styling */
.alert {
  padding: 1em 1.5em;
  margin-bottom: 1rem;
  font-size: 0.9em;
  line-height: 1.2;
  position: relative;
  background-color: #FFFFFF;
  color: #000000;
  font-family: "Open Sans", sans-serif;
  /* Colors */
  /* Border */
  /* Styling */ }
  .alert p:last-of-type {
    margin-bottom: 0; }
  .alert p.alert__text {
    margin-bottom: 20px; }
  .alert--gray {
    background-color: #B4B4B4;
    color: #000000; }
  .alert--dark-blue {
    background-color: #1437CC;
    color: #FFFFFF; }
  .alert--red {
    background-color: #F12711;
    color: #FFFFFF; }
  .alert--rblack {
    background-color: #000;
    color: #FFFFFF; }
  .alert--white {
    background-color: #FFFFFF;
    color: #000000; }
  .alert--pink {
    background-color: #EBDDDD;
    color: #000000; }
  .alert--deep-pink {
    background-color: #DCC9C3;
    color: #000000; }
  .alert--purple {
    background-color: #A08CA7;
    color: #FFFFFF; }
  .alert--deep-purple {
    background-color: #673ab7;
    color: #FFFFFF; }
  .alert--dark-pink {
    background-color: #BC9999;
    color: #000000; }
  .alert--blue {
    background-color: #315ED2;
    color: #FFFFFF; }
  .alert--cyan {
    background-color: #60A2AB;
    color: #FFFFFF; }
  .alert--green {
    background-color: #34A853;
    color: #FFFFFF; }
  .alert--yellow {
    background-color: #F0B83B;
    color: #FFFFFF; }
  .alert--main {
    background-color: #F5852A;
    color: #FFFFFF; }
  .alert--moicvet {
    background-color: #000;
    color: #FFFFFF; }
  .alert--secondary {
    background-color: #00C04D;
    color: #FFFFFF; }
  .alert--brown {
    background-color: #94816C;
    color: #FFFFFF; }
  .alert--black {
    background-color: #000000;
    color: #FFFFFF; }
  .alert--gray {
    background-color: #B4B4B4;
    color: #000000; }
  .alert--peach {
    background-color: #916868;
    color: #FFFFFF; }
  .alert--o-gray {
    background: transparent;
    color: #B4B4B4;
    border: 1px solid #B4B4B4; }
  .alert--o-dark-blue {
    background: transparent;
    color: #1437CC;
    border: 1px solid #1437CC; }
  .alert--o-red {
    background: transparent;
    color: #F12711;
    border: 1px solid #F12711; }
  .alert--o-rblack {
    background: transparent;
    color: #000;
    border: 1px solid #000; }
  .alert--o-white {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF; }
  .alert--o-pink {
    background: transparent;
    color: #EBDDDD;
    border: 1px solid #EBDDDD; }
  .alert--o-deep-pink {
    background: transparent;
    color: #DCC9C3;
    border: 1px solid #DCC9C3; }
  .alert--o-purple {
    background: transparent;
    color: #A08CA7;
    border: 1px solid #A08CA7; }
  .alert--o-deep-purple {
    background: transparent;
    color: #673ab7;
    border: 1px solid #673ab7; }
  .alert--o-dark-pink {
    background: transparent;
    color: #BC9999;
    border: 1px solid #BC9999; }
  .alert--o-blue {
    background: transparent;
    color: #315ED2;
    border: 1px solid #315ED2; }
  .alert--o-cyan {
    background: transparent;
    color: #60A2AB;
    border: 1px solid #60A2AB; }
  .alert--o-green {
    background: transparent;
    color: #34A853;
    border: 1px solid #34A853; }
  .alert--o-yellow {
    background: transparent;
    color: #F0B83B;
    border: 1px solid #F0B83B; }
  .alert--o-main {
    background: transparent;
    color: #F5852A;
    border: 1px solid #F5852A; }
  .alert--o-moicvet {
    background: transparent;
    color: #000;
    border: 1px solid #000; }
  .alert--o-secondary {
    background: transparent;
    color: #00C04D;
    border: 1px solid #00C04D; }
  .alert--o-brown {
    background: transparent;
    color: #94816C;
    border: 1px solid #94816C; }
  .alert--o-black {
    background: transparent;
    color: #000000;
    border: 1px solid #000000; }
  .alert--o-gray {
    background: transparent;
    color: #B4B4B4;
    border: 1px solid #B4B4B4; }
  .alert--o-peach {
    background: transparent;
    color: #916868;
    border: 1px solid #916868; }
  .alert--rounded {
    border-radius: 0.3em; }
  .alert--shadow {
    box-shadow: 0 0 0.3em currentColor; }

.alert__button {
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  line-height: 1;
  font-size: 1em;
  position: absolute;
  top: 0.3em;
  right: 0.5em;
  z-index: 1; }
  .alert__button:focus {
    outline: 0; }

.content__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem; }
  .content__wrapper.quad .content__block {
    width: 25%; }
  .content__wrapper.half .content__block {
    width: 50%; }

.content__block {
  width: 33.33333%;
  padding: 0 1rem;
  margin-bottom: 2rem; }

.content__item {
  display: block;
  color: #000; }
  .content__item:hover {
    text-decoration: none; }
    .content__item:hover .content__img {
      transform: scale(1.2); }

.content__img-wrapper {
  height: 19rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden; }

.content__img {
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .2s ease; }

.content__block-title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: inherit; }

.content__block-text {
  margin-bottom: 1rem;
  font-size: 1rem; }

.content__block-link {
  color: #F12711;
  font-size: 1.2rem; }

.content__slider {
  height: 36rem;
  overflow: hidden; }
  .content__slider .slick-dots {
    bottom: 2rem;
    z-index: 2; }

.content__slide {
  height: 36rem;
  padding: 6rem;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: flex-end; }
  .content__slide:after {
    background: linear-gradient(200.86deg, rgba(196, 196, 196, 0) 35.86%, rgba(0, 0, 0, 0.54) 80.41%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .content__slide:hover {
    text-decoration: none; }

.content__slide-item {
  position: relative;
  z-index: 2; }
  .content__slide-item .title {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #FFFFFF; }
  .content__slide-item .text {
    font-size: 1rem;
    color: #FFFFFF; }

.news {
  margin-bottom: 7rem; }
  .news .text__page .block__text {
    font-size: 1.8rem; }
    .news .text__page .block__text h2 {
      letter-spacing: -1.2px; }
    .news .text__page .block__text h3 {
      letter-spacing: -1.2px; }
    .news .text__page .block__text h4 {
      letter-spacing: -1.2px; }

.news__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -.25rem; }

.news__block {
  width: 50%;
  padding: 0 .25rem;
  margin-bottom: .5rem; }

.news__item {
  margin-bottom: .5rem;
  width: 100%;
  background-color: #222222;
  display: flex; }
  .news__item .date {
    font-size: 1.4rem; }

.news__item-wrapper {
  display: flex; }

.news__img {
  position: relative;
  width: 50%;
  min-height: 24rem;
  overflow: hidden; }
  .news__img img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s; }

.news__content {
  width: 50%;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.news__title {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: 0.3s; }

.news__except {
  max-width: 82.6rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #FFFFFF; }

.news__content-footer {
  padding-top: 2rem;
  text-align: center; }

.news__link {
  color: #F5852A;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.8px; }

.news__img-single {
  position: relative;
  width: 100%;
  max-width: 106.5rem;
  max-height: 43rem;
  margin-bottom: 3rem;
  overflow: hidden; }
  .news__img-single img {
    display: block;
    width: 100%; }

.news__text {
  color: #FFFFFF; }

/* 20. Table
=========================*/
/* On Dark Bg */
.table__wrapper {
  min-height: .01%;
  overflow-x: auto; }
  .table__wrapper::-webkit-scrollbar {
    background-color: #0D1119;
    -webkit-appearance: none; }
  .table__wrapper::-webkit-scrollbar:vertical {
    background-color: #0D1119;
    width: 15px; }
  .table__wrapper::-webkit-scrollbar:horizontal {
    background-color: #0D1119;
    height: 15px; }
  .table__wrapper::-webkit-scrollbar-thumb {
    background-color: #F5852A; }
  .table__wrapper::-webkit-scrollbar-track {
    background-color: #0D1119; }
  .table__wrapper--header {
    padding-top: 10px;
    background-color: #ffffff; }
    .table__wrapper--header .table {
      margin-bottom: 0; }

.table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.9em;
  line-height: 1.2;
  color: #000000;
  /* Table Head */
  /* Table Body */
  /* Styling */
  /* Row Colors */ }
  .table thead tr {
    background-color: #D9D9D9;
    border-bottom: 2px solid #B4B4B4; }
  .table th {
    padding: 0.5em 1em;
    color: #000000;
    font-weight: normal;
    text-align: left; }
  .table tbody tr {
    border-bottom: 1px solid #D9D9D9; }
  .table td {
    padding: 0.5em 1em; }
  .table--striped-odd tbody tr:nth-child(odd) {
    background-color: #d4d4d4; }
  .table--striped-even tbody tr:nth-child(even) {
    background-color: #d4d4d4; }
  .table--hover {
    /* Row Colors */ }
    .table--hover tbody tr {
      transition: background-color .1s linear; }
      .table--hover tbody tr:hover {
        background-color: #dedede; }
    .table--hover tbody tr.row--gray {
      background-color: #B4B4B4;
      color: #000000; }
      .table--hover tbody tr.row--gray:hover {
        color: #FFFFFF;
        background-color: #a7a7a7; }
    .table--hover tbody tr.row--dark-blue {
      background-color: #1437CC;
      color: #FFFFFF; }
      .table--hover tbody tr.row--dark-blue:hover {
        color: #FFFFFF;
        background-color: #1231b5; }
    .table--hover tbody tr.row--red {
      background-color: #F12711;
      color: #FFFFFF; }
      .table--hover tbody tr.row--red:hover {
        color: #FFFFFF;
        background-color: #dc210d; }
    .table--hover tbody tr.row--rblack {
      background-color: #000;
      color: #FFFFFF; }
      .table--hover tbody tr.row--rblack:hover {
        color: #FFFFFF;
        background-color: black; }
    .table--hover tbody tr.row--white {
      background-color: #FFFFFF;
      color: #000000; }
      .table--hover tbody tr.row--white:hover {
        color: #FFFFFF;
        background-color: #f2f2f2; }
    .table--hover tbody tr.row--pink {
      background-color: #EBDDDD;
      color: #000000; }
      .table--hover tbody tr.row--pink:hover {
        color: #FFFFFF;
        background-color: #e2cdcd; }
    .table--hover tbody tr.row--deep-pink {
      background-color: #DCC9C3;
      color: #000000; }
      .table--hover tbody tr.row--deep-pink:hover {
        color: #FFFFFF;
        background-color: #d3bbb3; }
    .table--hover tbody tr.row--purple {
      background-color: #A08CA7;
      color: #FFFFFF; }
      .table--hover tbody tr.row--purple:hover {
        color: #FFFFFF;
        background-color: #947e9c; }
    .table--hover tbody tr.row--deep-purple {
      background-color: #673ab7;
      color: #FFFFFF; }
      .table--hover tbody tr.row--deep-purple:hover {
        color: #FFFFFF;
        background-color: #5c34a4; }
    .table--hover tbody tr.row--dark-pink {
      background-color: #BC9999;
      color: #000000; }
      .table--hover tbody tr.row--dark-pink:hover {
        color: #FFFFFF;
        background-color: #b28a8a; }
    .table--hover tbody tr.row--blue {
      background-color: #315ED2;
      color: #FFFFFF; }
      .table--hover tbody tr.row--blue:hover {
        color: #FFFFFF;
        background-color: #2a54c0; }
    .table--hover tbody tr.row--cyan {
      background-color: #60A2AB;
      color: #FFFFFF; }
      .table--hover tbody tr.row--cyan:hover {
        color: #FFFFFF;
        background-color: #53959e; }
    .table--hover tbody tr.row--green {
      background-color: #34A853;
      color: #FFFFFF; }
      .table--hover tbody tr.row--green:hover {
        color: #FFFFFF;
        background-color: #2e9549; }
    .table--hover tbody tr.row--yellow {
      background-color: #F0B83B;
      color: #FFFFFF; }
      .table--hover tbody tr.row--yellow:hover {
        color: #FFFFFF;
        background-color: #eeaf23; }
    .table--hover tbody tr.row--main {
      background-color: #F5852A;
      color: #FFFFFF; }
      .table--hover tbody tr.row--main:hover {
        color: #FFFFFF;
        background-color: #f47712; }
    .table--hover tbody tr.row--moicvet {
      background-color: #000;
      color: #FFFFFF; }
      .table--hover tbody tr.row--moicvet:hover {
        color: #FFFFFF;
        background-color: black; }
    .table--hover tbody tr.row--secondary {
      background-color: #00C04D;
      color: #FFFFFF; }
      .table--hover tbody tr.row--secondary:hover {
        color: #FFFFFF;
        background-color: #00a743; }
    .table--hover tbody tr.row--brown {
      background-color: #94816C;
      color: #FFFFFF; }
      .table--hover tbody tr.row--brown:hover {
        color: #FFFFFF;
        background-color: #857461; }
    .table--hover tbody tr.row--black {
      background-color: #000000;
      color: #FFFFFF; }
      .table--hover tbody tr.row--black:hover {
        color: #FFFFFF;
        background-color: black; }
    .table--hover tbody tr.row--gray {
      background-color: #B4B4B4;
      color: #000000; }
      .table--hover tbody tr.row--gray:hover {
        color: #FFFFFF;
        background-color: #a7a7a7; }
    .table--hover tbody tr.row--peach {
      background-color: #916868;
      color: #FFFFFF; }
      .table--hover tbody tr.row--peach:hover {
        color: #FFFFFF;
        background-color: #825d5d; }
  .table--separate-cols th {
    border: 1px solid #B4B4B4; }
  .table--separate-cols td {
    border: 1px solid #D9D9D9; }
  .table--dark {
    color: #FFFFFF; }
    .table--dark thead th {
      color: #F5852A; }
    .table--dark thead tr {
      border-color: #F5852A;
      background-color: transparent; }
    .table--dark.table--striped-odd tbody tr:nth-child(odd) {
      background-color: #040608;
      color: #FFFFFF; }
    .table--dark.table--striped-even tbody tr:nth-child(even) {
      background-color: #040608;
      color: #FFFFFF; }
    .table--dark.table--separate-cols th {
      border: 1px solid #F5852A; }
    .table--dark.table--separate-cols td {
      border: 1px solid #FFFFFF; }
    .table--dark.table--hover tbody tr {
      /* Row Colors */ }
      .table--dark.table--hover tbody tr:hover {
        background-color: #080a0f;
        color: #FFFFFF; }
      .table--dark.table--hover tbody tr.row--gray {
        background-color: #B4B4B4;
        color: #000000; }
        .table--dark.table--hover tbody tr.row--gray:hover {
          color: #FFFFFF;
          background-color: #a7a7a7; }
      .table--dark.table--hover tbody tr.row--dark-blue {
        background-color: #1437CC;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--dark-blue:hover {
          color: #FFFFFF;
          background-color: #1231b5; }
      .table--dark.table--hover tbody tr.row--red {
        background-color: #F12711;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--red:hover {
          color: #FFFFFF;
          background-color: #dc210d; }
      .table--dark.table--hover tbody tr.row--rblack {
        background-color: #000;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--rblack:hover {
          color: #FFFFFF;
          background-color: black; }
      .table--dark.table--hover tbody tr.row--white {
        background-color: #FFFFFF;
        color: #000000; }
        .table--dark.table--hover tbody tr.row--white:hover {
          color: #FFFFFF;
          background-color: #f2f2f2; }
      .table--dark.table--hover tbody tr.row--pink {
        background-color: #EBDDDD;
        color: #000000; }
        .table--dark.table--hover tbody tr.row--pink:hover {
          color: #FFFFFF;
          background-color: #e2cdcd; }
      .table--dark.table--hover tbody tr.row--deep-pink {
        background-color: #DCC9C3;
        color: #000000; }
        .table--dark.table--hover tbody tr.row--deep-pink:hover {
          color: #FFFFFF;
          background-color: #d3bbb3; }
      .table--dark.table--hover tbody tr.row--purple {
        background-color: #A08CA7;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--purple:hover {
          color: #FFFFFF;
          background-color: #947e9c; }
      .table--dark.table--hover tbody tr.row--deep-purple {
        background-color: #673ab7;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--deep-purple:hover {
          color: #FFFFFF;
          background-color: #5c34a4; }
      .table--dark.table--hover tbody tr.row--dark-pink {
        background-color: #BC9999;
        color: #000000; }
        .table--dark.table--hover tbody tr.row--dark-pink:hover {
          color: #FFFFFF;
          background-color: #b28a8a; }
      .table--dark.table--hover tbody tr.row--blue {
        background-color: #315ED2;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--blue:hover {
          color: #FFFFFF;
          background-color: #2a54c0; }
      .table--dark.table--hover tbody tr.row--cyan {
        background-color: #60A2AB;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--cyan:hover {
          color: #FFFFFF;
          background-color: #53959e; }
      .table--dark.table--hover tbody tr.row--green {
        background-color: #34A853;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--green:hover {
          color: #FFFFFF;
          background-color: #2e9549; }
      .table--dark.table--hover tbody tr.row--yellow {
        background-color: #F0B83B;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--yellow:hover {
          color: #FFFFFF;
          background-color: #eeaf23; }
      .table--dark.table--hover tbody tr.row--main {
        background-color: #F5852A;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--main:hover {
          color: #FFFFFF;
          background-color: #f47712; }
      .table--dark.table--hover tbody tr.row--moicvet {
        background-color: #000;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--moicvet:hover {
          color: #FFFFFF;
          background-color: black; }
      .table--dark.table--hover tbody tr.row--secondary {
        background-color: #00C04D;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--secondary:hover {
          color: #FFFFFF;
          background-color: #00a743; }
      .table--dark.table--hover tbody tr.row--brown {
        background-color: #94816C;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--brown:hover {
          color: #FFFFFF;
          background-color: #857461; }
      .table--dark.table--hover tbody tr.row--black {
        background-color: #000000;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--black:hover {
          color: #FFFFFF;
          background-color: black; }
      .table--dark.table--hover tbody tr.row--gray {
        background-color: #B4B4B4;
        color: #000000; }
        .table--dark.table--hover tbody tr.row--gray:hover {
          color: #FFFFFF;
          background-color: #a7a7a7; }
      .table--dark.table--hover tbody tr.row--peach {
        background-color: #916868;
        color: #FFFFFF; }
        .table--dark.table--hover tbody tr.row--peach:hover {
          color: #FFFFFF;
          background-color: #825d5d; }
  .table tbody tr.row--gray {
    background-color: #B4B4B4;
    color: #000000; }
  .table tbody tr.row--dark-blue {
    background-color: #1437CC;
    color: #FFFFFF; }
  .table tbody tr.row--red {
    background-color: #F12711;
    color: #FFFFFF; }
  .table tbody tr.row--rblack {
    background-color: #000;
    color: #FFFFFF; }
  .table tbody tr.row--white {
    background-color: #FFFFFF;
    color: #000000; }
  .table tbody tr.row--pink {
    background-color: #EBDDDD;
    color: #000000; }
  .table tbody tr.row--deep-pink {
    background-color: #DCC9C3;
    color: #000000; }
  .table tbody tr.row--purple {
    background-color: #A08CA7;
    color: #FFFFFF; }
  .table tbody tr.row--deep-purple {
    background-color: #673ab7;
    color: #FFFFFF; }
  .table tbody tr.row--dark-pink {
    background-color: #BC9999;
    color: #000000; }
  .table tbody tr.row--blue {
    background-color: #315ED2;
    color: #FFFFFF; }
  .table tbody tr.row--cyan {
    background-color: #60A2AB;
    color: #FFFFFF; }
  .table tbody tr.row--green {
    background-color: #34A853;
    color: #FFFFFF; }
  .table tbody tr.row--yellow {
    background-color: #F0B83B;
    color: #FFFFFF; }
  .table tbody tr.row--main {
    background-color: #F5852A;
    color: #FFFFFF; }
  .table tbody tr.row--moicvet {
    background-color: #000;
    color: #FFFFFF; }
  .table tbody tr.row--secondary {
    background-color: #00C04D;
    color: #FFFFFF; }
  .table tbody tr.row--brown {
    background-color: #94816C;
    color: #FFFFFF; }
  .table tbody tr.row--black {
    background-color: #000000;
    color: #FFFFFF; }
  .table tbody tr.row--gray {
    background-color: #B4B4B4;
    color: #000000; }
  .table tbody tr.row--peach {
    background-color: #916868;
    color: #FFFFFF; }
  .table--contacts {
    width: 100%;
    font-size: .8rem;
    color: #769FF5; }
    .table--contacts thead tr {
      background: none;
      border-bottom: 1px solid #ededed; }
    .table--contacts thead th {
      color: #555555;
      font-weight: 600;
      padding: .6rem 1rem; }
    .table--contacts tbody td {
      padding: .8em 1em; }
      .table--contacts tbody td.date {
        color: #555555; }
      .table--contacts tbody td a {
        color: #769FF5; }
  .table--cabinet {
    font-size: 1.5rem; }
    .table--cabinet thead tr {
      border-bottom: 0;
      background-color: transparent; }
      .table--cabinet thead tr th {
        padding: 1rem .5rem;
        font-weight: 700; }
        .table--cabinet thead tr th:first-child {
          padding-left: 0; }
        .table--cabinet thead tr th:last-child {
          padding-right: 0; }
    .table--cabinet tbody tr {
      border-bottom: 1px solid #ccc; }
      .table--cabinet tbody tr:first-child {
        border-top: 1px solid #ccc; }
      .table--cabinet tbody tr td {
        padding: 1rem .5rem; }
        .table--cabinet tbody tr td:first-child {
          padding-left: 0; }
        .table--cabinet tbody tr td:last-child {
          padding-right: 0; }

/* 21. Tabs
=========================*/
/* Nav Item */
/* Content */
/* Content with border and bg */
/* Dark theme */
/* Styling */
.tabs--details {
  display: flex;
  align-items: flex-start; }

.tabs__item:not(.active) {
  display: none; }

.tabs__nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
  border-bottom: solid 1px #FFFFFF26;
  /* Styling */ }
  .tabs__nav--fill .tabs__nav-item {
    position: relative;
    top: 0;
    border: 1px solid transparent;
    border-bottom: 0; }
    .tabs__nav--fill .tabs__nav-item:not(.active):hover {
      color: #1437CC; }
  .tabs__nav--rounded .tabs__nav-item.active {
    border-radius: 0.3em 0.3em 0 0; }
  .tabs__nav--shadow .tabs__nav-item.active {
    box-shadow: 0 -0.15em 0.15em rgba(0, 0, 0, 0.1); }
  .tabs__nav--dark .tabs__nav-item {
    color: #B4B4B4; }
    .tabs__nav--dark .tabs__nav-item.active {
      color: #F0B83B;
      background-color: #000000;
      border-color: #000000; }
    .tabs__nav--dark .tabs__nav-item:not(.active):hover {
      color: #000000; }
  .tabs__nav--details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start; }
    .tabs__nav--details .tabs__nav-item {
      padding: 0;
      display: flex;
      flex: auto;
      align-items: center;
      justify-content: center;
      width: 2.6rem;
      height: 2.6rem;
      border: 1px solid #D9D9D9;
      font-size: 1.8rem;
      color: #315ED2;
      opacity: .5;
      transition: all .2s ease; }
      .tabs__nav--details .tabs__nav-item.active {
        opacity: 1; }
      .tabs__nav--details .tabs__nav-item:hover {
        opacity: 1;
        border: 1px solid #D9D9D9; }
  .tabs__nav--lead .tabs__nav-item {
    border-bottom: 1px solid #D9D9D9; }
    .tabs__nav--lead .tabs__nav-item.active {
      border-bottom: 0; }

.tabs__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.4rem;
  padding: 0;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  color: #B4B4B4;
  padding-right: 6.5rem; }
  .tabs__nav-item:last-child {
    margin-right: 0; }
  .tabs__nav-item:hover {
    color: #FFFFFF; }
  .tabs__nav-item:focus {
    text-decoration: none; }
  .tabs__nav-item:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: .1rem;
    background-color: #F5852A;
    opacity: 0; }
  .tabs__nav-item.active {
    color: #FFFFFF; }
    .tabs__nav-item.active:before {
      opacity: 1; }

.tabs__content {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: -0.9px;
  color: #000000;
  /* Styling */ }
  .tabs__content .block__text {
    padding: 3rem 6rem 3rem 0;
    font-weight: 500; }
  .tabs__content ul {
    padding-left: 2.5rem;
    list-style: initial; }
    .tabs__content ul li {
      margin-bottom: 0.5rem; }
      .tabs__content ul li:last-child {
        margin-bottom: 0; }
  .tabs__content h1,
  .tabs__content h2,
  .tabs__content h3,
  .tabs__content h4,
  .tabs__content h5,
  .tabs__content h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.8rem; }
  .tabs__content p:last-of-type {
    margin-bottom: 0; }
  .tabs__content--fill {
    color: #000000;
    background-color: #FFFFFF;
    border: 1px solid #e7e7e7; }
  .tabs__content--rounded {
    border-radius: 0 0 0.3em 0.3em; }
  .tabs__content--shadow {
    box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.2); }
  .tabs__content--dark {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF; }
  .tabs__content--lead {
    max-height: calc(100vh - 200px);
    overflow-y: auto; }

.tabs__item-wrapper {
  display: flex;
  flex-wrap: wrap; }

.tabs__item-block.large {
  width: calc(70% - 3.5rem); }

.tabs__item-block.small {
  width: calc(30% + 3.5rem); }
  .tabs__item-block.small .block__text {
    font-weight: 800;
    line-height: 1.45; }
    .tabs__item-block.small .block__text ul {
      margin-top: 1rem;
      margin-left: 0;
      padding-left: 0; }
    .tabs__item-block.small .block__text li {
      margin-bottom: 1rem;
      list-style: none; }
    .tabs__item-block.small .block__text span {
      color: #B4B4B4; }

.tabs__item-block.full {
  width: 100%;
  border-right: none; }

/* 22. Accordion
=========================*/
/* Title */
/* Title Icon */
/* Content */
/* Dark theme */
/* Styling */
.accordion--fill {
  border: 1px solid #e7e7e7;
  background-color: #FFFFFF; }
  .accordion--fill .accordion__item {
    border-bottom: 1px solid #e7e7e7; }
    .accordion--fill .accordion__item:last-child {
      border-bottom: 0; }

.accordion--rounded {
  border-radius: 0.3em; }

.accordion--shadow {
  box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.3); }

.accordion--dark {
  background-color: #000000;
  border-color: #000000; }
  .accordion--dark .accordion__title {
    color: #B4B4B4; }
    .accordion--dark .accordion__title:hover {
      color: #FFFFFF; }
      .accordion--dark .accordion__title:hover:before {
        color: inherit; }
  .accordion--dark .accordion__item {
    border-bottom-color: #000; }
  .accordion--dark .accordion__item.active .accordion__title {
    color: #F0B83B; }
  .accordion--dark .accordion__content {
    color: #FFFFFF; }

.accordion__item {
  margin-bottom: 2.5rem;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .accordion__item.active .accordion__title a:before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.6707 1.13326L1.1357 6.54226C0.954459 6.71948 0.954763 7.0064 1.13664 7.18333C1.31849 7.36011 1.61307 7.35965 1.79446 7.18241L7.00002 2.09537L12.2056 7.1826C12.387 7.35981 12.6814 7.36027 12.8632 7.18351C12.9544 7.09482 13 6.97863 13 6.86244C13 6.74655 12.9547 6.63081 12.8642 6.54228L7.32932 1.13326C7.24218 1.0479 7.12358 1.00001 7.00002 1.00001C6.87646 1.00001 6.75801 1.04804 6.6707 1.13326Z' fill='%23F5852A' stroke='%23F5852A'/%3e%3c/svg%3e ");
    background-color: transparent; }

.accordion__title {
  margin-bottom: 3rem; }
  .accordion__title a {
    position: relative;
    display: flex;
    align-items: center;
    height: 4.4rem;
    padding: 0 10rem 0 0;
    font-weight: 700;
    font-size: 2rem;
    color: #FFFFFF; }
    .accordion__title a:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 4.4rem;
      height: 4.4rem;
      border-radius: 0;
      border: 2px solid #F5852A;
      background-color: #F5852A;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.3293 7.18254L12.8643 1.77353C13.0455 1.59632 13.0452 1.30939 12.8634 1.13247C12.6815 0.955684 12.3869 0.956141 12.2055 1.13338L6.99998 6.22043L1.79443 1.1332C1.61303 0.955981 1.31863 0.955524 1.13676 1.13229C1.04559 1.22098 1 1.33717 1 1.45336C1 1.56925 1.04528 1.68498 1.13582 1.77351L6.67068 7.18254C6.75782 7.26789 6.87642 7.31579 6.99998 7.31579C7.12354 7.31579 7.24199 7.26775 7.3293 7.18254Z' fill='white' stroke='white'/%3e%3c/svg%3e ");
      background-repeat: no-repeat;
      background-position: center;
      z-index: 1;
      transition: 0.3s; }
  .accordion__title:hover:before {
    color: inherit; }

.accordion__content {
  padding: 0 10rem 3rem 0;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #FFFFFF; }
  .accordion__content p:last-of-type {
    margin-bottom: 0; }

.footer {
  padding-top: 5rem;
  background-color: #222222; }

.footer__wrapper {
  display: flex; }

.footer__block {
  width: 50%; }

.footer__nav-wrapper {
  display: flex; }
  .footer__nav-wrapper .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem; }
  .footer__nav-wrapper .nav__item a {
    height: auto;
    font-size: 1.4rem;
    font-weight: 400; }

.footer__nav {
  flex: 1; }

.footer__title {
  margin-bottom: 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #F5852A;
  letter-spacing: initial; }

.footer__info {
  margin-left: auto;
  color: #FFFFFF;
  max-width: 32rem;
  font-size: 1.4rem;
  letter-spacing: -.03em; }

.footer__line {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.footer__logos {
  display: flex;
  align-items: center;
  gap: 3rem; }
  .footer__logos img {
    display: block;
    max-height: 2.6rem; }

.copyright {
  color: #B4B4B4;
  font-size: 1.4rem;
  letter-spacing: -0.03em; }

.category__wrapper {
  display: flex;
  margin: 0 -.25rem; }

.category__block {
  width: calc(100% / 6);
  padding: 0 .25rem; }

.category__item {
  position: relative;
  display: block; }
  .category__item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); }

.category__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem; }

.category__arrow {
  position: absolute;
  background-color: #F5852A;
  width: 4.4rem;
  height: 4.4rem;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center; }

.category__title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 2.4rem; }

.category__img-wrapper {
  height: 28.8rem; }
  .category__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.category__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; }

.products__nav {
  display: flex;
  margin-bottom: 5rem; }
  .products__nav a {
    flex: 1;
    height: 4.4rem;
    color: #535d70;
    border-bottom: 1px solid #535d70;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; }
    .products__nav a.active {
      color: #F5852A;
      border-bottom-color: #F5852A; }

.products {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 6rem; }

.products__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2.5px; }
  .products__list .products__item {
    width: calc(100% / 8);
    padding: 0 2.5px;
    margin-bottom: 5px; }

.js-product {
  width: 100%; }

.products__item {
  position: relative;
  padding: 0 .2rem; }
  .products__item .btn.add-wishlist {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 3; }
  .products__item .btn--icon .icon {
    filter: none;
    fill: #FFFFFF; }
  .products__item .btn--icon:hover {
    filter: drop-shadow(0px 0px 4px #FFFFFF); }
  .products__item .btn--icon.added .icon--noactive {
    display: none; }
  .products__item .btn--icon.added .icon--active {
    display: block; }

.products__item-wrapper {
  display: block;
  height: 100%; }
  .products__item-wrapper:hover .products__title {
    color: #FFFFFF; }
  .products__item-wrapper:hover .products__img img {
    transform: scale(1.05); }

.products__img {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 145%;
  overflow: hidden; }
  .products__img img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s; }

.products__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 14rem;
  padding: 2rem 2rem 2rem;
  background-color: #222222; }

.products__title {
  max-width: 20.2rem;
  height: 4.6rem;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.6rem;
  color: #FFFFFF;
  transition: 0.3s; }

.products__category {
  display: inline-flex;
  align-items: center;
  height: 2.1rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  border-radius: 0.4rem;
  background-color: #F5852A;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #FFFFFF; }

.products__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.products__price {
  font-weight: 600;
  font-size: 1.4rem;
  color: #B4B4B4; }
  .products__price del {
    margin-right: 1rem;
    color: #F12711;
    text-decoration-color: #F12711; }

.products__link {
  font-size: 14px;
  font-weight: 700;
  color: #849A85; }

.products__sale-wrapper {
  display: flex;
  margin: 0 -.1rem; }

.products__sale-block {
  width: 50%; }
  .products__sale-block .products__item {
    width: 100%;
    position: relative; }
  .products__sale-block .products__img {
    padding-top: 0;
    height: auto;
    border-radius: .6rem; }
    .products__sale-block .products__img img {
      display: block;
      position: static;
      height: 38rem;
      width: 100%;
      object-fit: cover; }
  .products__sale-block .products__content {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%; }
  .products__sale-block .products__title {
    margin-bottom: .4rem;
    font-size: 2.4rem;
    width: 100%;
    height: auto;
    max-width: 100%; }

.products__time {
  position: absolute;
  z-index: 2;
  top: 2.5rem;
  right: 2.5rem;
  display: flex; }

.products__time-block {
  margin-right: .5rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 5rem;
  padding: .9rem 0;
  border-radius: .6rem;
  background-color: #0D1119; }
  .products__time-block:last-child {
    margin-right: 0; }
  .products__time-block .count {
    line-height: 1;
    font-size: 2.4rem;
    font-weight: 700; }
  .products__time-block .text {
    line-height: 1;
    font-weight: 700;
    font-size: 1.2rem; }

.product {
  margin-bottom: 6rem; }

.product__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -.25rem 5rem; }

.product__block {
  padding: 0 .25rem; }
  .product__block:first-child {
    width: 35%; }
  .product__block:last-child {
    width: 65%; }

.product__block-item {
  background-color: #222222;
  padding: 4rem;
  min-height: 100%; }

.product__img {
  position: relative;
  max-width: 100%;
  height: 79.5rem;
  overflow: hidden; }
  .product__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.product__item {
  padding: 3.5rem 0;
  border-bottom: solid 1px #D9D9D9;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.15;
  color: #FFFFFF; }
  .product__item:last-child {
    border-bottom: none; }
  .product__item .lng--sorting {
    height: 5.4rem; }
    .product__item .lng--sorting .lng__link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      font-weight: 500;
      font-size: 1.4rem;
      letter-spacing: -0.7px; }
      .product__item .lng--sorting .lng__link:after {
        filter: none; }
    .product__item .lng--sorting .lng__wrapper-container {
      border: solid 1px #D9D9D9;
      border-top: none;
      background-color: #FFFFFF; }
    .product__item .lng--sorting .lng__sub-item a {
      padding: 0 2rem;
      font-weight: 500;
      font-size: 1.4rem;
      letter-spacing: -0.7px;
      color: #000000; }
      .product__item .lng--sorting .lng__sub-item a:hover {
        color: #F5852A; }
  .product__item .lng__item {
    width: 25rem;
    max-width: 100%;
    height: 5.4rem;
    padding: 0 2rem;
    border: 1px solid #d9d9d9; }
  .product__item .btn {
    width: 100%; }

.product__item-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -1.5rem; }

.product__item-block {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 1.5rem; }

.product__item-title {
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF; }

.product__price {
  display: flex;
  align-items: center;
  margin-right: 3rem;
  font-weight: 600;
  font-size: 2.4rem;
  white-space: nowrap; }
  .product__price del {
    margin-right: 3rem;
    text-decoration-color: #F12711;
    color: #F12711; }

.product__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%; }

.product__action {
  margin-right: 3rem; }
  .product__action:last-child {
    margin-right: 0; }
  .product__action .btn {
    min-width: 22rem; }
    .product__action .btn--icon {
      min-width: auto;
      width: 3.1rem;
      height: 3.1rem; }
      .product__action .btn--icon.active .icon, .product__action .btn--icon.added .icon {
        fill: #F5852A; }
      .product__action .btn--icon .icon {
        width: 3.1rem;
        height: 3.1rem; }

.product__table table {
  width: 100%; }

.product__table tr:last-child td {
  padding-bottom: 0; }

.product__table td {
  width: 50%;
  font-weight: 700;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  vertical-align: top; }
  .product__table td:first-child {
    padding-right: 3.5rem;
    color: #B4B4B4; }

.product__tabs {
  width: 100%;
  padding-bottom: 6rem; }

.intro {
  margin-top: 1px;
  margin-bottom: 6rem; }
  .intro--about {
    margin: 0; }
    .intro--about .breadcrumbs .container {
      padding: 0; }
    .intro--about .intro__wrapper {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      overflow: hidden;
      height: auto; }
    .intro--about .intro__row {
      display: flex;
      align-items: center;
      justify-content: space-between; }
    .intro--about .page__title {
      color: #FFFFFF; }
    .intro--about .intro__img {
      position: static;
      align-items: flex-end;
      justify-content: flex-end;
      display: none; }
      .intro--about .intro__img img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 100%; }
  .intro--account {
    background-color: #0D1119; }
    .intro--account .intro__row {
      margin-bottom: 3.5rem; }
      .intro--account .intro__row:last-child {
        margin-bottom: 0; }
    .intro--account .breadcrumbs .container {
      padding: 0; }
    .intro--account .page__title {
      color: #FFFFFF; }
  .intro .products__title {
    max-width: 100%;
    font-size: 2.8rem;
    letter-spacing: -1.4px;
    color: #FFFFFF; }

.intro__item {
  position: relative;
  display: block;
  overflow: hidden; }
  .intro__item:hover .intro__img {
    transform: scale(1.05); }

.intro__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 3.5rem 3.5rem 3rem;
  z-index: 1; }

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

.intro__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between; }

.intro__img {
  height: 25rem;
  transition: 0.3s; }
  .intro__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.intro__block.full {
  width: 100%; }

.intro__row {
  margin-bottom: 12rem;
  padding: 0 3.5rem; }

.intro__title {
  width: 49rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: 700; }

.intro__text {
  width: 49rem;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-align: right; }

.intro__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1.75rem; }

.intro__icon {
  width: 16.5rem;
  height: 13rem;
  margin-bottom: 3.5rem;
  padding: 0 1.75rem; }
  .intro__icon img {
    display: block;
    width: 100%; }

.intro__bg {
  padding-top: 15rem;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative; }
  .intro__bg:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 10rem;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black 50%); }

.gift {
  margin-bottom: 10rem; }
  .gift--cards {
    margin-bottom: 0; }

.gift__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3.5rem;
  padding-top: 3rem; }

.gift__block {
  padding: 3rem 3.5rem 3.5rem;
  border-top: solid 1px #d9d9d9;
  border-right: solid 1px #d9d9d9; }
  .gift__block:last-child {
    border-right: none; }
  .gift__block--small {
    width: 40%; }
    .gift__block--small .gift__card {
      width: 100%; }
  .gift__block--large {
    width: 60%; }
    .gift__block--large .gift__card {
      width: 100%; }
  .gift__block--full {
    width: 100%;
    padding-top: 0;
    border-top: none;
    border-right: none; }
    .gift__block--full .gift__card-wrapper {
      width: 100%;
      padding: 0; }
      .gift__block--full .gift__card-wrapper--middle {
        width: auto;
        max-width: calc(100% + 3.5rem);
        padding: 0 1.75rem; }

.gift__block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem; }

.gift__block-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.35; }

.gift__block-link {
  text-align: right;
  font-size: 1.6rem;
  font-weight: 800;
  color: #F5852A; }

.gift__list {
  display: flex;
  flex-wrap: wrap;
  min-width: 100%;
  margin: 0 -1.75rem; }
  .gift__list.center {
    justify-content: center; }
  .gift__list:not(.gift__list.center) .gift__card {
    justify-content: flex-end;
    height: 28rem;
    padding: 3rem 3.5rem; }
  .gift__list:not(.gift__list.center) .gift__img {
    width: 12.5rem;
    height: 9.5rem; }

.gift__card-wrapper {
  width: 50%;
  padding: 0 1.75rem; }

.gift__card-content {
  position: relative;
  margin-bottom: 4rem;
  z-index: 1; }

.gift__card-price {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF; }

.gift__card-text {
  font-size: 1.7rem;
  font-weight: 800;
  color: #F5852A; }

.gift__card-link {
  margin-right: 3rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.7px;
  text-transform: uppercase; }
  .gift__card-link:last-child {
    margin-right: 0; }
  .gift__card-link.noactive {
    color: #292c30;
    pointer-events: none; }

.gift__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 56rem;
  max-width: 100%;
  height: 34rem;
  margin: 0 auto 3.5rem;
  padding: 4rem 0;
  border-radius: 2rem;
  background: #0D1119;
  overflow: hidden; }

.gift__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 19rem;
  height: 16.5rem;
  z-index: 0; }
  .gift__img--bow {
    right: auto;
    left: 0;
    width: 11.5rem;
    height: 11.5rem; }
  .gift__img img {
    display: block;
    width: 100%; }

.gift__title {
  padding-left: 4rem;
  font-size: 3.6rem;
  font-weight: 800;
  color: #FFFFFF;
  z-index: 1; }
  .gift__title--result {
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }

.gift__input {
  position: absolute;
  bottom: 7rem;
  left: 0;
  width: 100%;
  padding: 0.8rem 4rem;
  background-color: #1f2730; }
  .gift__input .input__wrapper {
    justify-content: space-between;
    width: 100%;
    border-color: #48515b; }
  .gift__input .label {
    color: #FFFFFF; }
  .gift__input .input {
    background-color: transparent;
    color: #FFFFFF; }
    .gift__input .input::placeholder {
      color: #FFFFFF; }
  .gift__input .btn {
    width: 12.5rem;
    border-radius: 0; }

.gift__input-wrapper {
  display: flex;
  align-items: center; }

.gift__footer {
  padding: 0 4rem;
  color: #FFFFFF; }

.gift__value {
  font-size: 4rem;
  font-weight: 800; }

.gift__text {
  font-size: 1.9rem;
  font-weight: 800; }

.orders {
  margin-bottom: 3.5rem; }

.order__wrapper {
  margin-bottom: 11rem; }
  .order__wrapper:last-child {
    margin-bottom: 7rem; }

.order__item {
  display: flex;
  flex-wrap: wrap; }
  .order__item:first-child {
    border-top: solid 1px #d9d9d9; }

.order__block {
  display: flex;
  width: 50%;
  padding-right: 3.5rem;
  border-bottom: solid 1px #d9d9d9; }
  .order__block:first-child {
    align-items: center;
    border-right: solid 1px #d9d9d9; }
  .order__block:last-child {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3rem 3.5rem; }

.order__img {
  width: 28rem;
  max-width: 100%;
  overflow: hidden; }
  .order__img:hover img {
    transform: scale(1.05); }
  .order__img img {
    display: block;
    width: 100%;
    transition: 0.3s; }

.order__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 28rem);
  padding-left: 4rem; }

.order__table {
  width: 100%; }
  .order__table table {
    width: 58rem;
    max-width: 100%; }
  .order__table td {
    width: 50%;
    padding-right: 3.5rem;
    padding-bottom: 1.3rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000; }
    .order__table td:first-child {
      color: #B4B4B4; }

.order__link {
  margin-top: 2rem;
  border-bottom: dashed 1px #F5852A;
  font-size: 1.8rem;
  font-weight: 800;
  color: #F5852A; }
  .order__link.noactive {
    border-bottom: none;
    color: #dedede;
    pointer-events: none; }

.account {
  margin-bottom: 7rem; }
  .account .block__title {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    font-weight: 700;
    font-size: 3rem;
    position: relative; }
  .account .btn {
    height: 4.4rem;
    padding: 0 3rem; }

.account__wrapper {
  padding: 3.5rem 0;
  display: flex;
  margin: 0 -.25rem; }

.account__block {
  width: 50%;
  padding: 0 .25rem; }

.account__item {
  background-color: #000000;
  padding: 8rem; }
  .account__item .account__form {
    max-width: 38rem;
    margin: 0 auto; }
    .account__item .account__form .form__group {
      margin-bottom: 2.5rem; }
    .account__item .account__form .input__wrapper {
      background-color: #222222;
      border: 0; }
      .account__item .account__form .input__wrapper .input {
        color: #FFFFFF; }

.balance {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #000000; }
  .balance img {
    display: block;
    width: 5.4rem;
    margin-right: 2rem; }

.block__actions {
  display: flex;
  align-items: center; }

.block__action {
  margin-right: 3.5rem; }
  .block__action:last-child {
    margin-right: 0; }
  .block__action .btn {
    width: 23rem;
    max-width: 100%; }

.table__title {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: #000000; }

.account__table .table__wrapper {
  margin-bottom: 2rem; }
  .account__table .table__wrapper::-webkit-scrollbar {
    height: 5px; }

.account__table .table {
  min-width: 70rem;
  font-size: 1.6rem; }
  .account__table .table thead tr {
    background-color: transparent;
    border-bottom: solid 4px #d9d9d9; }
  .account__table .table th {
    height: 5rem;
    padding: 0 3.5rem 0 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000; }
  .account__table .table td {
    height: 5.3rem;
    padding: 0 3.5rem 0 0;
    font-weight: 500; }

.account__table .btn {
  min-width: 11rem;
  height: 4.4rem; }

.sign_in {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

.sign_in__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 8rem 0; }
  .sign_in__container .logo {
    position: absolute;
    top: 2.5rem;
    left: 0; }
  .sign_in__container .copyright {
    position: absolute;
    bottom: 3.5rem;
    left: 0; }

.sign_in__wrapper {
  max-width: 100%; }

.sign_in__header {
  margin-bottom: 3rem; }

.sign_in__title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #FFFFFF; }

.sign_in__form {
  margin-bottom: 1.5rem; }
  .sign_in__form .form__block {
    margin-bottom: 2rem; }
  .sign_in__form .form__link {
    font-weight: 800; }
  .sign_in__form .btn {
    min-width: 15rem; }

.connect__title {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF; }

.connect__wrapper {
  display: flex;
  margin: 0 -1.2rem; }

.connect__item {
  width: calc(100% / 3);
  margin-bottom: 2.4rem;
  padding: 0 1.2rem; }

.connect__item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.4rem;
  padding: 1.3rem 1.2rem;
  border-radius: 3rem;
  background-color: #1D232F;
  transition: 0.3s; }
  .connect__item-wrapper:hover {
    background-color: #13171f; }

.connect__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem; }
  .connect__img img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%; }

.connect__name {
  margin-left: 1rem;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  line-height: 1; }

.sign_in__footer {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #FFFFFF;
  margin: 6rem -7rem 0;
  padding: 3rem 0 0; }
  .sign_in__footer a {
    font-weight: 700;
    color: #F5852A; }

.login__form .input__wrapper {
  border: 0;
  background-color: #222222;
  border-radius: 0; }
  .login__form .input__wrapper .input {
    background: none;
    border: 0;
    color: #FFFFFF; }

.cabinet__form .label {
  color: #B4B4B4; }

.profile__wrapper {
  display: flex;
  margin: 0 -.2rem; }

.profile__block {
  width: 50%;
  padding: 0 .2rem; }

.profile__item {
  padding: 5.5rem 0;
  background-color: #181E2A;
  border-radius: .5rem; }
  .profile__item .form__group {
    margin-bottom: 3rem; }

.profile__form {
  max-width: 50rem;
  margin: 0 auto; }

.touch .breadcrumbs__wrapper {
  justify-content: center; }

.touch__form {
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
  padding: 8rem 9rem;
  background-color: #000000; }
  .touch__form .form__group {
    margin-bottom: 2.5rem; }
  .touch__form .textarea {
    background-color: #222222;
    color: #FFFFFF;
    border: 0;
    border-radius: 0; }
    .touch__form .textarea::placeholder {
      color: #B4B4B4; }

.cookie-window-block {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  width: 38rem;
  background-color: #222;
  z-index: 200;
  padding: 4rem; }
  .cookie-window-block.closed {
    display: none; }

.cookie-window-text {
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 1.6rem;
  color: #FFFFFF; }
  .cookie-window-text a {
    color: #F5852A; }
    .cookie-window-text a:hover {
      color: #f47712; }

.cookie_btn {
  border-radius: 0; }

.page__text-wrapper {
  margin: 0 -1rem;
  font-size: 1rem; }
  .page__text-wrapper:before, .page__text-wrapper:after {
    content: "";
    display: table; }
  .page__text-wrapper:after {
    clear: both; }
  .page__text-wrapper ul {
    list-style: disc;
    margin-left: 1em;
    margin-bottom: .5em; }
  .page__text-wrapper h2 {
    font-size: 1.6rem;
    margin-bottom: .5em; }
  .page__text-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: .5em; }
  .page__text-wrapper h4 {
    font-size: 1.2rem;
    margin-bottom: .5em; }
  .page__text-wrapper p {
    margin-bottom: .5em; }

.page__text-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700; }

.page__text-block {
  width: 50%;
  padding: 0 1rem; }
  .page__text-block.full {
    width: 100%; }

.page__text-date {
  margin-bottom: 1rem; }

.text__img {
  width: 20rem;
  height: 20rem;
  margin-bottom: 0;
  margin-right: 1rem;
  float: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.text__page-footer {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .text__page-footer .title {
    font-weight: 700;
    color: #FFFFFF; }

.text__page-soc {
  display: flex;
  gap: 1.5rem; }

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5px;
  padding: 3.5rem 0; }

.gallery__item {
  display: block;
  width: 50%;
  margin-bottom: 1px;
  padding: 0 0.5px;
  overflow: hidden; }
  .gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.contacts__wrapper {
  display: flex;
  flex-wrap: wrap; }

.contacts__block {
  width: 50%; }

.contacts__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: #000000; }

.contacts__text {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.88;
  color: #000000; }
  .contacts__text a {
    color: #FEC007; }
    .contacts__text a:hover {
      color: #F5852A; }

.block__form {
  padding: 5rem 7rem;
  border-radius: 1rem;
  background-color: #F5F4F4; }
  .block__form .contacts__title {
    margin-bottom: 2.5rem; }
  .block__form .btn {
    width: 18rem; }

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

.dropzone {
  box-sizing: border-box;
  min-height: 90px;
  padding: 20px 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 1rem;
  background-color: #F1F1F1; }
  .dropzone * {
    box-sizing: border-box; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message {
      cursor: pointer; }
      .dropzone.dz-clickable .dz-message * {
        cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    color: #cacaca;
    font-size: .8rem;
    font-weight: 600; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        -webkit-transition: opacity 0.2s linear;
        -moz-transition: opacity 0.2s linear;
        -ms-transition: opacity 0.2s linear;
        -o-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none;
      position: absolute;
      top: 105%;
      pointer-events: auto; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
        .dropzone .dz-preview .dz-details .dz-filename span {
          background-color: rgba(255, 255, 255, 0.4);
          padding: 0 0.4em;
          border-radius: 3px; }
      .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      -webkit-transform: scale(1.05, 1.05);
      -moz-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
      -o-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05);
      -webkit-filter: blur(8px);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
    .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
      display: block;
      width: 54px;
      height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in;
      -moz-transition: opacity 0.4s ease-in;
      -ms-transition: opacity 0.4s ease-in;
      -o-transition: opacity 0.4s ease-in;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      -webkit-animation: pulse 6s ease infinite;
      -moz-animation: pulse 6s ease infinite;
      -ms-animation: pulse 6s ease infinite;
      -o-animation: pulse 6s ease infinite;
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        -webkit-transition: width 300ms ease-in-out;
        -moz-transition: width 300ms ease-in-out;
        -ms-transition: width 300ms ease-in-out;
        -o-transition: width 300ms ease-in-out;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: none;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease;
      -moz-transition: opacity 0.3s ease;
      -ms-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }

.dz-preview-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center; }

.select2-container {
  box-sizing: border-box;
  display: block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  width: 100% !important; }
  .select2-container .selection {
    display: block;
    height: 100%; }
  .select2-container.select2 {
    height: 8rem; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single:focus-visible {
      outline: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: #1F2730;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: calc(100vw / 6) !important;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 2.5;
  letter-spacing: -0.8px;
  user-select: none;
  -webkit-user-select: none;
  transition: 0.3s; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open {
  width: calc(100vw / 6) !important; }
  .select2-container--open .select2-dropdown {
    left: auto;
    right: 0; }
  .select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.select2-container--focus {
  width: 100% !important; }

.select2-search--dropdown {
  display: none;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #FFFFFF; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 26.8rem;
  padding: 1.5rem 3.5rem 2rem 3rem;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: transparent;
  color: #F5852A; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 1;
    height: 40px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

.select2-selection__arrow {
  width: 0.8rem;
  height: 1.2rem;
  margin-left: 1rem;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='6' height='12' viewBox='0 0 6 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3 0L5.59808 4.5H0.401924L3 0Z' fill='%23ECA456'/%3e%3cpath d='M3 12L0.401925 7.5L5.59808 7.5L3 12Z' fill='%23ECA456'/%3e%3c/svg%3e ");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0px 0px 4px #FBB318); }

.banner {
  position: relative;
  height: 47rem;
  margin-bottom: 6rem; }

.banner__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .banner__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
  .banner__img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.4; }

.banner__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%; }

.banner__content .products__title {
  max-width: 50rem;
  height: auto;
  margin-bottom: 2.5rem;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -3.5px;
  color: #FFFFFF; }

.banner__content .btn {
  min-width: 15rem;
  text-transform: uppercase; }

.banner__subtitle {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF; }

.info .info__container:nth-child(2n) {
  background-color: #FFFFFF; }
  .info .info__container:nth-child(2n) .info__block {
    flex-direction: row-reverse; }
  .info .info__container:nth-child(2n) .info__item {
    padding-right: 10rem;
    padding-left: 0; }

.info__container {
  padding: 6rem 0;
  background-color: #F1F1F1; }

.info__block {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.info__img {
  width: 50%;
  height: 40rem;
  object-fit: cover; }

.info__item {
  padding-left: 8rem;
  max-width: 50%; }
  .info__item .block__title {
    line-height: 1;
    max-width: 40rem; }
  .info__item .block__text {
    margin-bottom: 3rem; }

@media (max-width: 992px) {
  .info .info__container:nth-child(2n) .info__block {
    flex-direction: column; }
  .info .info__container:nth-child(2n) .info__item {
    padding-right: 0;
    padding-left: 0; }
  .info__block {
    flex-direction: column; }
  .info__img {
    max-width: 100%;
    height: auto;
    margin-bottom: 4rem; }
  .info__item {
    max-width: 100%;
    padding-left: 0; } }

.text__page {
  margin-bottom: 7rem;
  max-width: 108.5rem; }
  .text__page .page__title {
    margin-bottom: 1.5rem; }
  .text__page .block__text {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5; }
    .text__page .block__text li {
      margin-bottom: 2rem; }

.block__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem; }
  .block__row .block__title {
    margin-bottom: 0; }
  .block__row .page__title {
    margin-bottom: 0; }
  .block__row .lng--sorting .lng__wrapper {
    width: 21.5rem; }
  .block__row .lng--sorting .lng__item {
    padding: 0; }

.block__title {
  max-width: 80rem;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 3.2rem;
  color: #FFFFFF; }

.block__text {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  color: #FFFFFF; }
  .block__text ul {
    list-style: disc;
    margin-left: 1em;
    margin-bottom: .5em; }
  .block__text h2 {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.33;
    margin-bottom: .5em; }
  .block__text h3 {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.33;
    margin-bottom: .5em; }
  .block__text h4 {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.33;
    margin-bottom: .5em; }
  .block__text p {
    margin-bottom: .5em; }

.block__link {
  font-weight: 600;
  font-size: 1.4rem;
  text-align: right;
  color: #F5852A; }
  .block__link:hover {
    color: #FEC007; }

.page__title {
  margin-bottom: 3.5rem;
  font-weight: 700;
  font-size: 3rem;
  color: #FFFFFF; }

.block__tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem;
  border-radius: 1.2rem;
  background: #F5F4F4; }

.block__tabs-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  padding: 0 2rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  color: #757575; }
  .block__tabs-item:hover {
    color: #000000; }
  .block__tabs-item.active {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    background-color: #FFFFFF;
    color: #000000; }

.layout__wrapper {
  display: flex;
  margin-top: 3rem; }
  .layout__wrapper .products {
    margin-bottom: 0; }

.sidebar {
  width: 20rem;
  padding-right: 2rem; }
  .sidebar form {
    width: 100%; }

.layout__main {
  width: calc(100% - 20rem); }
  .layout__main.full {
    width: 100%; }

.js-filter-toggle {
  display: block;
  width: 1.6rem;
  margin: 1rem 0 2rem; }
  .js-filter-toggle img {
    display: block;
    width: 100%; }

.sorting {
  display: flex;
  align-items: center; }
  .sorting--filter {
    margin: 0 -0.5px 2rem; }
    .sorting--filter .sorting__item {
      position: relative;
      display: flex;
      align-items: center;
      width: calc(100% / 6);
      margin-right: 0;
      padding: 0 0.5px;
      border-top: solid 1px #D9D9D9;
      border-bottom: solid 1px #D9D9D9; }
      .sorting--filter .sorting__item:before {
        content: '';
        position: absolute;
        top: 0;
        right: -0.5px;
        width: 1px;
        height: 100%;
        background-color: #D9D9D9; }
      .sorting--filter .sorting__item .select2-container {
        height: 7rem;
        padding: 1rem 3.5rem; }
  .sorting .select2-container {
    display: flex;
    align-items: center;
    height: auto; }
    .sorting .select2-container--default .select2-selection--single .select2-selection__rendered {
      color: #000000; }

.sorting__item {
  margin-right: 4rem; }
  .sorting__item:last-child {
    margin-right: 0; }

.sorting__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 7rem;
  padding: 1rem 3.5rem; }
  .sorting__btns .sorting__link {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    outline: none;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 800;
    color: #F5852A;
    cursor: pointer;
    transition: 0.3s; }
    .sorting__btns .sorting__link:hover {
      color: #f47712; }
  .sorting__btns .btn {
    width: 10rem;
    height: 4.4rem; }

.price__slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 1.4rem;
  color: #FFFFFF; }
  .price__slider-nav span {
    color: #FFFFFF; }

.date {
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #B0B0B0; }

.block__form-title {
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: #000000; }

.modal__page .remodal__body {
  width: 80rem;
  max-width: 100%;
  margin: 10rem auto 0;
  border-radius: 1rem;
  border: solid 1px #D9D9D9;
  overflow: hidden; }

.logos .slick-list {
  margin: 0; }

.logos__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -2.5rem; }

.logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.4rem;
  margin-bottom: 5rem;
  padding: 0 2.5rem; }
  .logos__item.slick-slide {
    display: flex; }
  .logos__item img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%; }

.price__slider {
  padding: 1rem 3.5rem 0; }

.green {
  color: #34A853; }

.red {
  color: #F12711; }

.manufactures {
  margin-bottom: 5rem; }

.manufactures__wrapper {
  display: flex;
  margin: 0 -.2rem; }

.manufactures__block {
  width: 25%;
  padding: 0 .2rem;
  margin-bottom: .4rem; }

.manufactures__item {
  background-color: #181e2a;
  border-radius: .6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  text-align: center; }
  .manufactures__item:hover {
    text-decoration: none; }
  .manufactures__item .title {
    color: #FFFFFF; }
  .manufactures__item .manufactures__img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
    margin-bottom: 2rem; }
  .manufactures__item img {
    display: block;
    max-width: 100%;
    margin: 0 auto; }

.live_stream {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 7rem; }

.live_stream-block {
  width: 50%;
  padding: 0 10rem; }

.live_stream-content {
  display: flex;
  flex-direction: column;
  gap: 5rem; }

.live_stream-title {
  margin-bottom: 0.5rem;
  font-size: 2.4rem;
  color: #FFFFFF; }

.live_stream-text {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #FFFFFF; }

.live_stream-video {
  border: solid 5px #71A773; }
  .live_stream-video iframe {
    display: block;
    aspect-ratio: 16/9; }

.line {
  background-color: #F5852A;
  padding: 2.4rem 0;
  margin: 4.5rem 0 8rem; }

.line__wrapper {
  display: flex;
  gap: 7rem;
  align-items: center;
  animation: kb linear infinite 40s; }

.line__icon {
  height: 5.6rem; }
  .line__icon img {
    height: 100%; }

.line__item {
  display: flex;
  align-items: center; }
  .line__item img {
    height: 7.2rem;
    display: block;
    margin-right: 1.5rem; }
  .line__item .title {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap; }

@keyframes kb {
  from {
    transform: translateX(100%); }
  to {
    transform: translateX(-150%); } }

.faq__wrapper {
  display: flex;
  gap: 7rem; }

.faq__block {
  flex: 1; }
  .faq__block:first-child {
    width: 46rem;
    flex: unset; }
    .faq__block:first-child .block__title {
      font-size: 3rem;
      font-weight: 700;
      max-width: 25rem; }

.faq__img {
  height: 46rem;
  display: block; }

.contacts__wrapper {
  display: flex;
  flex-wrap: wrap; }

.contacts__block {
  width: 50%; }

.contacts__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: #000000; }

.contacts__text {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.88;
  color: #000000; }
  .contacts__text a {
    color: #FEC007; }
    .contacts__text a:hover {
      color: #F5852A; }

.block__form {
  padding: 5rem 7rem;
  border-radius: 1rem;
  background-color: #F5F4F4; }
  .block__form .contacts__title {
    margin-bottom: 2.5rem; }
  .block__form .btn {
    width: 18rem; }

.cart {
  width: 100%;
  margin-bottom: 10rem; }

.cart__item {
  display: flex;
  justify-content: space-between;
  padding-right: 3.5rem;
  background-color: #222222;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: .5rem; }

.cart__block {
  display: flex;
  align-items: center; }
  .cart__block:first-child {
    min-width: 50%; }

.cart__block-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 3rem;
  color: #FFFFFF; }
  .cart__block-item:last-child {
    margin-right: 0; }
  .cart__block-item a {
    padding: 0; }

.cart__img {
  display: flex;
  width: 16rem;
  height: 25rem;
  overflow: hidden;
  object-fit: cover;
  transition: 0.3s; }
  .cart__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s; }
  .cart__img:hover img {
    transform: scale(1.05); }

.cart__title {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.9px;
  color: #FFFFFF;
  transition: 0.3s; }
  .cart__title:hover {
    color: #F5852A; }

.cart__price {
  font-weight: 600;
  font-size: 2rem;
  color: #B4B4B4; }

.cart__remove {
  display: block;
  width: 1rem;
  height: 1rem;
  margin: -0.5rem 0 0 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer; }
  .cart__remove svg {
    display: block;
    width: 100%;
    transition: 0.3s; }
  .cart__remove:hover svg {
    transform: rotate(90deg); }

.cart__total {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-weight: 800;
  font-size: 1.8rem;
  color: #FFFFFF; }
  .cart__total .btn {
    min-width: 20rem; }

.count__block {
  display: flex; }

.count__btn {
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border-width: 0.4rem; }
  .count__btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.2rem;
    height: 0.2rem;
    background-color: #FFFFFF; }
  .count__btn.plus:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 2.2rem;
    width: 0.2rem;
    background-color: #FFFFFF; }

.count__input {
  width: 6rem;
  height: 4.4rem;
  padding: 0 1rem;
  border: none;
  font-weight: 800;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: -0.9px;
  color: #FFFFFF;
  outline: none;
  background: none; }

.empty__cart-container {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .empty__cart-container .icon {
    margin-bottom: 3rem;
    margin-left: -2.5%; }
  .empty__cart-container .empty__cart-title {
    margin-bottom: 2rem; }

.search__page {
  padding-bottom: 10rem; }

.search__page-wrapper {
  margin-bottom: 3.5rem;
  padding-top: 3rem; }

.search__item {
  display: flex;
  margin-bottom: 2.5rem;
  padding: 3rem;
  border-radius: 14px;
  background: #FFFFFF;
  font-weight: 600;
  font-size: 1.5rem;
  color: #000000; }
  .search__item:last-child {
    margin-bottom: 0; }
  .search__item:hover {
    text-decoration: none; }
    .search__item:hover .search__title {
      color: #F0B83B; }

.search__number {
  width: 5rem; }

.search__title {
  width: calc(100% - 20rem);
  transition: 0.3s; }
  .search__title span {
    display: block;
    color: rgba(0, 0, 0, 0.3); }

.search__price {
  width: 15rem;
  text-align: center; }

.search__text {
  font-weight: 500;
  font-size: 1.5rem;
  color: #000000; }

.categories {
  margin-bottom: 3.5rem; }

.categories__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 14rem;
  padding: 3rem 1.5rem 2rem;
  border-radius: 1rem;
  background-color: #FEC007;
  transition: 0.3s; }
  .categories__item-wrapper:hover {
    background-color: #F5852A; }
    .categories__item-wrapper:hover .categories__icon img {
      filter: invert(1); }
    .categories__item-wrapper:hover .categories__title {
      color: #FFFFFF; }

.categories__icon {
  height: 3.2rem; }
  .categories__icon img {
    display: block;
    height: 100%;
    transition: 0.3s; }

.categories__title {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
  color: #0D1119;
  transition: 0.3s; }

.sale {
  margin-bottom: 6rem; }

.sale__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5px; }

.sale__block {
  width: 33.33%;
  padding: 0 0.5px; }

.sale__block-wrapper {
  position: relative;
  display: block;
  height: 0;
  padding-top: 55%;
  overflow: hidden; }
  .sale__block-wrapper:hover .sale__img {
    transform: scale(1.05); }

.sale__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s; }
  .sale__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.sale__content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 3.5rem 3.5rem 3rem; }

.sale__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between; }

.sale__footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between; }
  .sale__footer:before {
    content: '';
    position: absolute;
    top: -3.5rem;
    left: -3.5rem;
    right: -3.5rem;
    bottom: -3.5rem;
    background-color: #000000;
    opacity: 0.5;
    z-index: 0; }
  .sale__footer .products__title {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    height: auto;
    font-size: 2.8rem;
    letter-spacing: -1.4px;
    color: #FFFFFF; }
  .sale__footer .products__price {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    letter-spacing: -1.4px;
    text-align: right;
    color: #FFFFFF; }
    .sale__footer .products__price del {
      color: #F12711; }

.time {
  display: flex;
  justify-content: flex-end; }

.time__block {
  width: 4.5rem;
  margin-right: 1.5rem; }
  .time__block:last-child {
    margin-right: 0; }

.time__value {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 2.8rem;
  border-radius: 0;
  background-color: #F5852A;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  text-align: center;
  color: #FFFFFF;
  z-index: 1; }

.time__label {
  margin-top: 0.4rem;
  font-size: 1.0rem;
  font-weight: 800;
  letter-spacing: -0.55px;
  text-align: center;
  color: #FFFFFF; }

/* Helpers (must be as last import to override rules when use)
==========================*/
.hide, .hidden {
  display: none; }

.ghost {
  opacity: 0; }

.unvisible {
  visibility: hidden; }

.visible {
  visibility: visible; }

.block {
  padding: 20px; }
  .block .text {
    font-size: 20px; }

.bg-gray {
  background-color: #B4B4B4; }

.bg-dark-blue {
  background-color: #1437CC; }

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

.bg-rblack {
  background-color: #000; }

.bg-white {
  background-color: #FFFFFF; }

.bg-pink {
  background-color: #EBDDDD; }

.bg-deep-pink {
  background-color: #DCC9C3; }

.bg-purple {
  background-color: #A08CA7; }

.bg-deep-purple {
  background-color: #673ab7; }

.bg-dark-pink {
  background-color: #BC9999; }

.bg-blue {
  background-color: #315ED2; }

.bg-cyan {
  background-color: #60A2AB; }

.bg-green {
  background-color: #34A853; }

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

.bg-main {
  background-color: #F5852A; }

.bg-moicvet {
  background-color: #000; }

.bg-secondary {
  background-color: #00C04D; }

.bg-brown {
  background-color: #94816C; }

.bg-black {
  background-color: #000000; }

.bg-gray {
  background-color: #B4B4B4; }

.bg-peach {
  background-color: #916868; }

.static {
  position: static; }

.text-xs {
  font-size: .7em; }

.text-s {
  font-size: .8em; }

.text-m {
  font-size: 1.2em; }

.text-l {
  font-size: 1.4em; }

.text-xl {
  font-size: 1.6em; }

.text-xxl {
  font-size: 1.8em; }

.text-thin {
  font-weight: 100; }

.text-xlight {
  font-weight: 200; }

.text-light {
  font-weight: 300; }

.text-normal {
  font-weight: 400; }

.text-medium {
  font-weight: 500; }

.text-sbold {
  font-weight: 600; }

.text-bold {
  font-weight: 700; }

.text-xbold {
  font-weight: 800; }

.text-hbold {
  font-weight: 900; }

.text-italic {
  font-style: italic; }

.text-oblique {
  font-style: oblique; }

.text-normal {
  font-style: normal; }

.text-upper {
  text-transform: uppercase; }

.text-lower {
  text-transform: lowercase; }

.text-no-transform {
  text-transform: none; }

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

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

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

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

.text-decor-under {
  text-decoration: underline; }

.text-decor-over {
  text-decoration: overline; }

.text-decor-lt {
  text-decoration: line-through; }

.text-decor-none {
  text-decoration: none; }

.float-right, .to-right {
  float: right; }

.float-left, .to-left {
  float: left; }

.center-block {
  display: block;
  margin: 0 auto; }

.img {
  display: block;
  max-width: 100%;
  height: auto; }
  .img--text {
    height: 320px; }

.va-middle {
  vertical-align: middle; }

.va-top {
  vertical-align: top; }

.va-bottom {
  vertical-align: bottom; }

.full-width {
  width: 100%; }

.half-width {
  width: 50%; }

.display-inline {
  display: inline; }

.display-block {
  display: block; }

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

.mb-0 {
  margin-bottom: 0; }

.mb-10 {
  margin-bottom: 10px; }

.mb-20 {
  margin-bottom: 20px; }

.pt-10 {
  padding-top: 10px; }

.pt-20 {
  padding-top: 20px; }

.pb-10 {
  padding-bottom: 10px; }

.pb-20 {
  padding-bottom: 20px; }

.pt-50 {
  padding-top: 50px; }

@media (max-width: 992px) {
  .hide-mobile {
    display: none; } }

@media (min-width: 992px) {
  .hide-desktop {
    display: none; } }

.relative {
  position: relative; }

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

.alert.error {
  background-color: #F12711;
  display: block;
  color: #FFFFFF; }

.alert.visible-success {
  background-color: #34A853;
  display: block;
  color: #FFFFFF; }

.alert.success {
  background-color: #34A853;
  display: block;
  color: #FFFFFF; }

.ui-datepicker .ui-datepicker-title select {
  background: #fff;
  padding: 5px;
  color: #3e3e3e;
  font-weight: 600; }

html .ui-widget-content .ui-state-default {
  border: 0;
  background: #FFFFFF;
  transition: all .2s ease;
  text-align: center; }
  html .ui-widget-content .ui-state-default.ui-state-hover {
    border: 0;
    color: #FFFFFF;
    background: #f69342; }
  html .ui-widget-content .ui-state-default.ui-state-highlight {
    background: #F5852A;
    border-color: #F5852A;
    color: #FFFFFF; }
  html .ui-widget-content .ui-state-default.ui-state-active {
    background: #f47712; }

@media (min-width: 992px) {
  .hide-desktop {
    display: none !important; } }

@media (max-width: 992px) {
  .hide-mobile {
    display: none !important; } }

.formh {
  display: none; }

/*! nouislider - 12.0.0 - 9/14/2018 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-target {
  position: relative;
  direction: ltr; }

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background-color: #5F666E; }

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0; }

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0; }

/* Offset direction
 */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
  width: 10%; }

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0; }

.noUi-horizontal .noUi-origin {
  opacity: 0;
  height: 0; }

.noUi-handle {
  position: absolute; }

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s; }

.noUi-state-drag * {
  cursor: inherit !important; }

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 0.6rem; }

.noUi-horizontal .noUi-handle {
  background: #2F373A;
  border: none;
  border-radius: 50%;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px; }

.noUi-vertical {
  width: 18px; }

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px; }

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

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle.noUi-handle-upper {
  right: 0;
  left: auto; }

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  width: 100%;
  background: #E9E9E9; }

.noUi-connect {
  background: #D77B16; }

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize; }

.noUi-vertical .noUi-draggable {
  cursor: ns-resize; }

.noUi-handle {
  border: 1px solid #666;
  border-radius: 3px;
  background: #ccc;
  cursor: pointer;
  outline: 0; }

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB; }

/* Handle stripes;
 */
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px; }

.noUi-vertical .noUi-handle:after {
  top: 17px; }

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8; }

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed; }

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-pips {
  position: absolute;
  color: #999; }

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center; }

.noUi-value-sub {
  color: #ccc;
  font-size: 10px; }

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC; }

.noUi-marker-sub {
  background: #AAA; }

.noUi-marker-large {
  background: #AAA; }

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%; }

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%); }

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%); }

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px; }

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px; }

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px; }

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%; }

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px; }

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%); }

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px; }

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px; }

.noUi-marker-vertical.noUi-marker-large {
  width: 15px; }

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap; }

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%; }

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%; }

.range__wrapper {
  width: 100%;
  padding: 1.6rem 1.5rem 1.5rem;
  position: relative; }

@media (max-width: 1640px) {
  .product__item .lng__item {
    width: 20rem; } }

@media (max-width: 1560px) {
  .sorting__btns {
    padding: 1rem; }
  .product__item-wrapper {
    margin: 0 -1rem; }
  .product__item-block {
    padding: 0 1rem; }
  .product__price {
    margin-right: 2rem;
    font-size: 3rem; }
    .product__price del {
      margin-right: 2rem; }
  .product__action {
    margin-right: 2rem; } }

@media (max-width: 1480px) {
  .nav {
    gap: 1.5rem; }
  .nav__item a {
    font-size: 1.4rem; }
  .header__action .btn {
    font-size: 1.4rem; }
  .header__action .btn--icon.btn--orange {
    width: 3.6rem;
    height: 3.6rem; }
  .header__search .input {
    font-size: 1.4rem; }
    .header__search .input::placeholder {
      font-size: 1.4rem; }
  .header__search .lng__link {
    font-size: 1.4rem; } }

@media (max-width: 1460px) {
  .products__content {
    padding: 2rem; }
  .product__block:first-child {
    width: 50%; }
  .product__block:last-child {
    width: 50%; }
  .product__item-wrapper {
    flex-direction: column;
    align-items: flex-start; }
  .product__item-block {
    width: 100%;
    margin-bottom: 2rem; }
    .product__item-block:last-child {
      margin-bottom: 0; }
  .product__actions {
    justify-content: flex-start; }
  .product__action {
    flex: inherit; }
    .product__action .btn:not(.btn--icon) {
      width: 20rem;
      max-width: 100%; }
  .intro--account .intro__wrapper {
    height: auto; }
  .intro__wrapper {
    height: 50rem; }
  .intro__row {
    margin-bottom: 7rem; }
  .intro__title {
    max-width: 45rem;
    font-size: 3.4rem; }
  .intro__text {
    max-width: 45rem;
    font-size: 2.8rem; }
  .intro__icon {
    width: 13.5rem;
    height: 10rem; }
  .about__wrapper {
    transform: translateX(0); }
  .gift__list .gift__card {
    height: 25rem; }
  .gift__card-content {
    margin-bottom: 2rem; }
  .gift__card-price {
    font-size: 3.4rem; } }

@media (min-width: 1381px) {
  .menu__btn,
  .menu {
    display: none; } }

@media (max-width: 1380px) {
  .header .hide-mobile {
    display: none; }
  .menu__btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.8rem;
    height: 0.9rem; }
    .menu__btn:before, .menu__btn:after,
    .menu__btn i {
      content: '';
      width: 100%;
      display: block;
      height: 0.1rem;
      background-color: #FFFFFF;
      transition: 0.3s; }
    .menu__btn:after {
      width: 1rem; }
    .menu__btn:hover:before {
      transform: translateY(0.1rem); }
    .menu__btn:hover:after {
      transform: translateY(-0.1rem); }
  .menu {
    position: fixed;
    top: 6.1rem;
    right: 0;
    width: 100%;
    height: calc(100% - 6.1rem);
    display: flex;
    flex-direction: column;
    background-color: #0D1119;
    transition: 0.3s;
    transform: translateX(100%);
    overflow-y: auto;
    z-index: 1001; }
    .menu.opened {
      transforM: translateX(0); }
    .menu.js-account {
      background-color: #1f2730; }
      .menu.js-account .nav__item:last-child a:hover {
        color: #F12711; }
    .menu .header__search {
      width: calc(100% - 6rem);
      margin: 3rem auto 0;
      padding: 0 1.2rem 0 3rem;
      border-bottom: solid 1px #1f2730; }
      .menu .header__search form {
        max-width: 100%;
        margin: 0 auto; }
      .menu .header__search .header__search-input {
        width: 100%; }
      .menu .header__search .input {
        width: 100%;
        height: 6rem; }
      .menu .header__search .select2-container {
        height: 6rem; }
    .menu .menu__content {
      width: 100%;
      padding: 1.5rem 3rem; }
    .menu .nav {
      flex-direction: column;
      align-items: flex-start;
      gap: 0; }
    .menu .nav__item {
      flex-direction: column;
      align-items: flex-start;
      margin-right: 0;
      margin-bottom: 1rem; } }

@media (max-width: 1200px) {
  .products__list .products__item {
    width: 20%; }
  .products__content {
    height: 18rem; }
  .products__price {
    display: flex;
    flex-direction: column; }
    .products__price del {
      margin-right: 0; }
  .order__block {
    width: 100%;
    padding-right: 3.5rem; }
  .gift__block--small {
    width: 100%;
    border-right: none; }
    .gift__block--small .gift__card {
      width: 56rem; }
  .gift__block--large {
    width: 100%; }
  .gift__list .gift__card {
    height: 28rem; } }

@media (max-width: 1200px) and (min-width: 1101px) {
  .sorting__btns .btn {
    width: 8rem; } }

@media (min-width: 1101px) {
  .hide-desc,
  .filter__btn,
  .filter__close {
    display: none; } }

@media (max-width: 1100px) {
  .hide-mobile {
    display: none; }
  .products__nav {
    display: none; }
  .container {
    padding-left: 2rem;
    padding-right: 2rem; }
  .header__search-input {
    margin-right: 0;
    padding-right: 0;
    border-right: 0; }
  .header__search-wrapper {
    flex-direction: column; }
  .header__wrapper {
    height: 6rem; }
  .header__block {
    min-width: auto; }
  .logo {
    height: 6rem; }
  .header__action {
    height: 6rem; }
  .cookie-window-block {
    bottom: 2rem;
    max-width: calc(100% - 4rem); }
  .sale .products__price {
    flex-direction: row; }
    .sale .products__price del {
      margin-right: 1rem; }
  .sale__block {
    width: 50%;
    padding-bottom: 1px; }
    .sale__block:last-child {
      padding-bottom: 0; }
  .banner__content .products__title {
    font-size: 6rem; }
  .js-filter {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #0D1119;
    transition: 0.3s;
    transform: translateX(100%);
    overflow-y: auto;
    z-index: 1001; }
    .js-filter.opened {
      transforM: translateX(0); }
  .filter__btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.8rem;
    height: 0.9rem; }
    .filter__btn:before, .filter__btn:after,
    .filter__btn i {
      content: '';
      display: block;
      height: 0.1rem;
      background-color: #000000;
      transition: 0.3s; }
    .filter__btn:before {
      width: 100%; }
    .filter__btn:after {
      width: 0.6rem;
      margin-left: auto; }
    .filter__btn i {
      width: 1.2rem;
      margin-left: auto; }
    .filter__btn:hover:before {
      transform: translateY(0.1rem); }
    .filter__btn:hover:after {
      transform: translateY(-0.1rem); }
  .filter__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 1.8rem;
    height: 1.8rem; }
    .filter__close:before, .filter__close:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #FFFFFF;
      transition: 0.3s; }
    .filter__close:before {
      transform: translateY(-50%) rotate(45deg); }
    .filter__close:after {
      transform: translateY(-50%) rotate(-45deg); }
  .sorting--filter {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 2.8rem 0 0; }
    .sorting--filter .sorting__item {
      position: relative;
      width: 100%;
      padding: 3rem;
      border-top: none;
      border-bottom: solid 1px #D9D9D9; }
      .sorting--filter .sorting__item:before {
        display: none; }
      .sorting--filter .sorting__item:last-child {
        border-bottom: none; }
    .sorting--filter .lng--sorting {
      height: auto; }
      .sorting--filter .lng--sorting .lng__item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0; }
      .sorting--filter .lng--sorting .lng__link {
        margin-bottom: 2rem;
        color: #FFFFFF; }
      .sorting--filter .lng--sorting .lng__wrapper {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0); }
      .sorting--filter .lng--sorting .lng__wrapper-container {
        max-height: inherit;
        padding: 0;
        background-color: transparent;
        overflow-y: inherit; }
      .sorting--filter .lng--sorting .lng__sub-item a {
        padding: 0; }
    .sorting--filter .sorting__btns {
      max-width: 21rem;
      padding: 0; }
  .price__slider {
    max-width: 21rem;
    padding: 1rem 0 0; }
  .error__page-wrapper {
    min-height: calc(100vh - 6rem); }
  .breadcrumbs {
    padding-top: 2rem; }
  .page__title {
    margin-bottom: 2rem; }
  .block__text {
    margin-bottom: 2rem; }
  .product__img {
    padding-left: 0; }
  .product__item {
    padding: 2rem; }
  .product__price {
    font-size: 2.4rem; }
  .product__item-title {
    margin-bottom: 2rem;
    font-size: 2.4rem; }
  .product__table td {
    padding-bottom: 2rem; }
    .product__table td:first-child {
      padding-right: 2rem; }
  .product__img img {
    width: 100%;
    object-fit: cover;
    object-position: center; }
  .product__action .btn:not(.btn--icon) {
    width: 15rem; }
  .tabs__nav {
    padding: 0 2rem; }
  .tabs__nav-item {
    height: 6rem;
    margin-right: 2rem;
    font-size: 2rem; }
    .tabs__nav-item:before {
      left: -2rem;
      right: -2rem; }
  .tabs__content .block__text {
    padding: 2rem 2rem 2rem 2rem; }
  .gallery {
    padding: 2rem 0; }
  .reviews__item {
    padding: 2rem; }
  .reviews_form {
    padding: 2rem; }
  .form__row {
    margin: 0 -1rem; }
  .form__block {
    margin-bottom: 2rem;
    padding: 0 1rem; }
  .news__img {
    width: 35rem;
    min-height: 23rem; }
  .news__content {
    width: calc(100% - 35rem);
    padding: 2rem; }
  .intro--about .intro__wrapper {
    height: 50rem; }
  .intro--about .intro__block {
    width: 100%; }
    .intro--about .intro__block:first-child {
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1; }
    .intro--about .intro__block:last-child {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      z-index: 0; }
    .intro--about .intro__block .intro__img {
      padding: 2rem 0 0 2rem; }
  .intro__row {
    padding: 0 2rem; }
  .intro__icon {
    width: 10rem;
    height: 8rem;
    margin-bottom: 2rem;
    padding: 0 1rem; }
  .about__wrapper {
    margin-left: 0; }
  .input__block {
    padding: 0 1rem; }
  .block__actions {
    flex-wrap: wrap;
    margin-bottom: -2rem; }
  .block__action {
    margin-right: 2rem;
    margin-bottom: 2rem; }
  .touch__form {
    padding: 3rem; } }

@media (max-width: 992px) {
  .products__list .products__item {
    width: 25%; }
  .pagination {
    justify-content: center; }
  .pagination__item {
    flex: 1;
    min-width: 5.4rem; }
    .pagination__item--left, .pagination__item--right {
      flex: 0 0 100%; }
  .error__title {
    margin-right: 1.5rem;
    font-size: 8rem; }
    .error__title span {
      margin-left: 1.5rem;
      font-size: 9rem; }
  .error__text {
    font-size: 2.6rem; }
  .product__block:first-child {
    width: 100%; }
  .product__block:last-child {
    width: 100%; }
  .tabs__item-block.large {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #d9d9d9; }
  .tabs__item-block.small {
    width: 100%; }
  .cart__item {
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    padding-right: 0; }
  .cart__block {
    flex-direction: column;
    align-items: center;
    text-align: center; }
  .cart__block-item {
    align-items: center;
    margin-right: 0;
    margin-bottom: 2rem;
    text-align: center; }
  .cart__img {
    margin-top: 0; }
  .news__img {
    width: 30rem;
    min-height: 20rem; }
  .news__content {
    width: calc(100% - 30rem); }
  .news__title {
    font-size: 2rem; }
  .input__block {
    width: 100%;
    margin-bottom: 2rem; }
  .account__wrapper .block__row {
    flex-direction: column;
    align-items: flex-start; }
  .account__wrapper .balance {
    margin-bottom: 2rem; }
  .profile__wrapper {
    flex-direction: column; }
  .profile__block {
    width: 100%;
    margin-bottom: .5rem; }
  .footer__line {
    flex-direction: column; }
    .footer__line:first-of-type {
      padding-bottom: 3rem; }
      .footer__line:first-of-type .footer__block {
        padding-top: 0; }
    .footer__line:nth-child(2) {
      margin-top: 0; }
  .footer__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: auto;
    width: 100%;
    margin-bottom: 2rem; }
    .footer__block:last-child {
      margin-bottom: 0; }
    .footer__block.right {
      align-items: center;
      text-align: center; }
  .footer__title {
    text-align: center; }
  .footer__text {
    max-width: 35rem;
    text-align: center; }
  .footer__imgs {
    justify-content: center; }
  .copyright {
    text-align: center; }
  .live_stream-block {
    width: 100%;
    padding: 0 5vw; } }

@media (max-width: 840px) {
  .products__list .products__item {
    width: calc(100% / 3); }
  .gift__list .gift__card {
    height: 25rem; }
  .products__sale-wrapper {
    flex-wrap: wrap; }
  .products__sale-block {
    margin-bottom: .5rem;
    width: 100%; } }

@media (max-width: 768px) {
  .manufactures__wrapper {
    flex-wrap: wrap; }
  .manufactures__block {
    width: 50%; }
  .profile__item {
    padding: 3rem; }
  .btn {
    height: 4.4rem; }
    .btn--icon {
      height: auto; }
  .intro__item {
    height: 40rem;
    padding-top: 0; }
  .logos__wrapper {
    margin: 0 -2rem 0 -1.5rem; }
  .logos__item {
    margin-bottom: 3rem;
    padding: 0 1.5rem; }
  .banner__content .btn {
    min-width: 12rem; }
  .cookie-window-block {
    flex-direction: column; }
  .cookie-window-text {
    width: 100%;
    padding: 2rem 0;
    text-align: center; }
  .footer .nav {
    align-items: center; }
  .footer .nav__item a {
    text-align: center; }
  .count__btn {
    width: 4.4rem; }
    .count__btn:before {
      width: 2rem; }
    .count__btn.plus:after {
      height: 2rem; }
  .count__input {
    width: 6rem;
    height: 4.4rem; }
  .news__item-wrapper {
    flex-direction: column; }
  .news__img {
    width: 100%;
    min-height: 30rem; }
  .news__content {
    width: 100%; }
  .input__wrapper {
    height: 4.4rem; }
    .input__wrapper .input {
      height: 4.2rem; }
  .remodal {
    padding: 4rem; }
    .remodal .btn {
      min-width: 10rem; }
  .remodal__title {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    letter-spacing: -1px; }
  .sign_in__wrapper {
    padding: 4rem; }
  .sign_in__header {
    margin-bottom: 2rem; }
  .sign_in__title {
    font-size: 2.4rem;
    letter-spacing: -1px; }
  .sign_in__footer {
    padding-top: 2rem; }
  .gift__card-wrapper {
    width: 100%; }
  .gift__list .gift__card {
    height: 28rem;
    width: 56rem; } }

@media (max-width: 640px) {
  .products__list .products__item {
    width: 50%; }
  .products {
    margin-bottom: 4rem; }
  .block__title {
    font-size: 2.4rem; }
  .page__title {
    font-size: 2.4rem; }
  .sorting__item {
    margin-right: 2rem; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 1.4rem; }
  .sale {
    margin-bottom: 4rem; }
  .sale__content {
    padding: 2rem; }
  .sale__block {
    width: 100%; }
  .sale__footer .products__title {
    font-size: 2.4rem; }
  .sale__footer .products__price {
    font-size: 2.4rem; }
    .sale__footer .products__price del {
      margin-right: 0; }
  .logos {
    margin-bottom: 4rem; }
  .banner {
    height: 36rem;
    margin-bottom: 4rem; }
  .banner__content .products__title {
    font-size: 4rem; }
  .text__page {
    margin-bottom: 4rem; }
  .date {
    margin-bottom: 1rem;
    font-size: 1.2rem; }
  .error__page-wrapper {
    flex-direction: column; }
  .error__title {
    margin-right: 0; }
    .error__title span {
      display: none; }
  .product {
    margin-bottom: 4rem; }
  .product__price {
    font-size: 2rem; }
  .product__item .lng {
    width: 16rem;
    max-width: 100%; }
    .product__item .lng--sorting {
      height: 4.4rem; }
  .product__item .lng__item {
    width: 16rem;
    height: 4.4rem; }
  .product__item .btn--icon .icon {
    width: 2.2rem;
    height: 2rem; }
  .product__table td {
    font-size: 1.6rem; }
  .tabs__nav-item {
    height: 5rem;
    font-size: 1.8rem;
    letter-spacing: -0.8px; }
  .block__text {
    font-size: 1.6rem; }
  .lng--sorting {
    height: auto; }
  .gallery__item {
    width: 100%; }
  .reviews__footer {
    flex-wrap: wrap; }
  .reviews__footer-block {
    width: 100%;
    margin-bottom: 2rem;
    padding-right: 0; }
  .reviews__text {
    font-size: 1.6rem;
    line-height: 1.5; }
  .form__block {
    flex: 0 0 100%; }
    .form__block.right {
      text-align: left; }
  .cart {
    margin-bottom: 4rem; }
  .intro__wrapper {
    height: auto; }
  .intro {
    margin-bottom: 4rem; }
    .intro--about .intro__wrapper {
      height: 35rem; }
    .intro--account {
      margin-bottom: 0; }
    .intro .products__title {
      font-size: 2.4rem; }
  .intro__content {
    padding: 2rem; }
  .intro__title {
    max-width: 30rem;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    letter-spacing: -1.2px; }
  .intro__text {
    max-width: 30rem;
    font-size: 2rem; }
  .about {
    margin-bottom: 4rem; }
  .order__wrapper {
    margin-bottom: 4rem; }
    .order__wrapper:last-child {
      margin-bottom: 4rem; }
  .order__block:first-child {
    flex-direction: column;
    padding-right: 0;
    border-right: none; }
  .order__block:last-child {
    padding: 2rem; }
  .order__content {
    align-items: center;
    width: 100%;
    padding: 2rem;
    border-top: solid 1px #d9d9d9; }
  .order__table td {
    padding-right: 2rem;
    padding-bottom: 1rem;
    font-size: 1.6rem; }
  .order__link {
    font-size: 1.6rem; }
  .account .block__title {
    font-size: 2.4rem; }
  .balance {
    font-size: 1.8rem; }
    .balance img {
      width: 3rem;
      margin-right: 1rem; }
  .gift__list.center {
    margin: 0; } }

@media (max-width: 560px) {
  .block__row {
    flex-direction: column;
    align-items: flex-start; }
    .block__row .sorting {
      margin-top: 2rem; }
    .block__row .filter__btn {
      margin-top: 2rem; }
  .time__block {
    width: 3.5rem;
    margin-right: 1rem; }
  .time__value {
    height: 4rem;
    font-size: 1.6rem; }
  .time__label {
    font-size: 0.8rem;
    font-weight: 400; }
  .sale__header {
    flex-direction: column; }
  .sale__footer .products__title {
    font-size: 2rem; }
  .sale__footer .products__price {
    font-size: 1.6rem; }
  .banner__content .products__title {
    font-size: 2.6rem;
    letter-spacing: -1.5px; }
  .gift__card {
    width: 40rem;
    height: 24rem;
    padding: 2rem 0 3rem; }
  .gift__title {
    padding-left: 2rem;
    font-size: 2.6rem; }
  .gift__value {
    font-size: 2.2rem;
    letter-spacing: -1px; }
  .gift__text {
    font-size: 1.6rem; }
  .gift__input {
    bottom: 3rem;
    padding: 0.8rem 2rem; }
    .gift__input .input {
      height: 4.4rem; }
  .gift__img {
    width: 14rem;
    height: 12rem; }
  .gift__footer {
    padding: 0 2rem; }
  .intro__icon {
    width: 9rem;
    height: 7rem; }
  .connect__wrapper {
    flex-direction: column; }
  .connect__item {
    width: 100%; }
  .connect__name {
    width: auto;
    padding-left: 1rem; }
  .gift__list .gift__card {
    height: 24rem; } }

@media (max-width: 460px) {
  .error__text {
    font-size: 2rem;
    text-align: center; }
  .product__item-block {
    flex-direction: column; }
  .product__price {
    margin-right: 0;
    margin-bottom: 2rem; }
  .product__item .lng {
    width: 100%; }
  .product__item .lng__item {
    width: 100%; }
  .product__actions {
    flex-wrap: wrap; }
  .product__action {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem; }
    .product__action:last-child {
      margin-bottom: 0;
      flex: 0 0 100%; }
    .product__action .btn:not(.btn--icon) {
      width: 100%; }
  .tabs__nav-item {
    font-size: 1.6rem; }
  .cart__total {
    flex-direction: column; }
    .cart__total .btn {
      width: 100%;
      margin-bottom: 2rem; }
  .order__table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 2rem; }
  .order__table td {
    width: 100%;
    padding-bottom: 0; }
  .sign_in__form .btn {
    width: 100%; }
  .gift__input .input__wrapper {
    padding-left: 1rem; }
  .gift__input .input {
    padding: 0 1rem; }
  .gift__block-header {
    flex-direction: column;
    align-items: flex-start; } }

@media (max-width: 420px) {
  .header__search-select {
    width: 20rem;
    padding-right: 2rem; }
    .header__search-select .lng--sorting .lng__link {
      font-size: 1.4rem; }
  .header__search .input {
    font-size: 1.4rem; } }

@media (max-width: 340px) {
  .products__list .products__item {
    width: 100%; } }

body.night {
  background-color: #0D1119; }
  body.night .header__btn a svg.mode-night {
    display: block; }
  body.night .header__btn a svg.mode-day {
    display: none; }
  body.night .header__search .input {
    background-color: #1D232F; }
  body.night .page__title {
    color: #FFFFFF; }
  body.night .block__title {
    color: #FFFFFF; }
  body.night .lng--sorting .lng__link {
    color: #FFFFFF; }
  body.night .footer {
    border-top: solid 1px #202830; }
  body.night .products__content:after {
    background-color: #202830; }
  body.night .products__content:before {
    background-color: #202830; }
  body.night .products__title {
    color: #FFFFFF; }
  body.night .slick-dots li button:before {
    background-color: #202830; }
  body.night .slick-dots li button:hover:before, body.night .slick-dots li button:focus:before {
    background-color: #F5852A; }
  body.night .slick-dots li.slick-active button:before {
    background-color: #F5852A; }
  body.night .sorting--filter .sorting__item {
    border-color: #202830; }
    body.night .sorting--filter .sorting__item:before {
      background-color: #202830; }
  body.night .pagination {
    border-color: #202830; }
  body.night .pagination__item {
    border-color: #202830; }
  body.night .product__wrapper {
    border-color: #202830; }
  body.night .product__item {
    border-color: #202830;
    color: #FFFFFF; }
    body.night .product__item .lng--sorting .lng__wrapper-container {
      background-color: #1F2730;
      border-color: #202830; }
      body.night .product__item .lng--sorting .lng__wrapper-container a {
        color: #FFFFFF; }
        body.night .product__item .lng--sorting .lng__wrapper-container a:hover {
          color: #F5852A; }
  body.night .product__item-title {
    color: #FFFFFF; }
  body.night .block__text {
    color: #FFFFFF; }
    body.night .block__text span {
      background-color: transparent !important;
      color: #FFFFFF !important; }
    body.night .block__text li::marker {
      color: #FFFFFF; }
  body.night .tabs__nav {
    border-color: #202830; }
  body.night .tabs__nav-item:hover {
    color: #FFFFFF; }
  body.night .tabs__nav-item.active {
    color: #FFFFFF; }
  body.night .tabs__item-block.large {
    border-color: #202830; }
  body.night .product__item .lng__item {
    border-color: #202830; }
  body.night .reviews_form {
    background-color: #202830; }
    body.night .reviews_form .textarea {
      background-color: #202830;
      border-color: #0C1218;
      color: #FFFFFF; }
  body.night .reviews_form-title {
    color: #FFFFFF; }
  body.night .reviews__title {
    color: #FFFFFF; }
  body.night .reviews__text {
    color: #FFFFFF; }
  body.night .intro--about, body.night .intro--account {
    border-bottom: solid 1px #202830; }
  body.night .balance {
    color: #FFFFFF; }
  body.night .table__wrapper::-webkit-scrollbar-track {
    background-color: #202830; }
  body.night .table__title {
    color: #FFFFFF; }
  body.night .account__table .table {
    color: #FFFFFF; }
    body.night .account__table .table th {
      color: #FFFFFF; }
  body.night .input__wrapper {
    border-color: #202830; }
    body.night .input__wrapper .input:-webkit-autofill {
      -webkit-box-shadow: inset 0 0 0 52px #1D232F;
      -webkit-text-fill-color: #FFFFFF; }
  body.night .input {
    background-color: #0D1119;
    color: #FFFFFF; }
  body.night .remodal {
    background-color: #0D1119; }
  body.night .remodal__title {
    color: #FFFFFF; }
  body.night .remodal-close {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.744 0.256009C13.4026 -0.0853364 12.8551 -0.0853364 12.5137 0.256009L7 5.76906L1.48631 0.256009C1.14493 -0.0853364 0.597424 -0.0853364 0.256039 0.256009C-0.0853462 0.597355 -0.0853462 1.1448 0.256039 1.48614L5.76973 6.9992L0.256039 12.5123C-0.0853462 12.8536 -0.0853462 13.401 0.256039 13.7424C0.42351 13.9098 0.648953 14 0.867955 14C1.08696 14 1.3124 13.9163 1.47987 13.7424L6.99356 8.22933L12.5072 13.7424C12.6747 13.9098 12.9002 14 13.1192 14C13.3446 14 13.5636 13.9163 13.7311 13.7424C14.0725 13.401 14.0725 12.8536 13.7311 12.5123L8.23028 6.9992L13.744 1.48614C14.0853 1.1448 14.0853 0.597355 13.744 0.256009Z' fill='white'/%3e%3c/svg%3e "); }
  body.night .cart__title {
    color: #FFFFFF; }
  body.night .cart__total {
    color: #FFFFFF; }
  body.night .sign_in__wrapper {
    background-color: #0D1119; }
  body.night .sign_in__title {
    color: #FFFFFF; }
  body.night .connect__title {
    color: #FFFFFF; }
  body.night .sign_in__footer {
    color: #FFFFFF; }
  body.night .checkbox label {
    color: #FFFFFF; }
    body.night .checkbox label:before {
      background-color: #0D1119;
      border-color: #0D1119; }
    body.night .checkbox label:after {
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.9519 0.39409C14.4279 0.919297 14.4279 1.76824 13.9519 2.29369L6.03655 11.0262C5.79908 11.2881 5.48737 11.42 5.17565 11.42C4.86393 11.42 4.55222 11.2881 4.31475 11.0262L0.357203 6.65992C-0.119068 6.13472 -0.119068 5.28553 0.357203 4.76032C0.83325 4.23487 1.60273 4.23487 2.079 4.76032L5.17565 8.17675L12.2301 0.39409C12.7061 -0.131363 13.4756 -0.131363 13.9519 0.39409Z' fill='%23FFFFFF'/%3e%3c/svg%3e "); }
  body.night .login__form .checkbox label:before {
    background-color: #202830;
    border-color: #202830; }
  body.night .count__input {
    background-color: #0D1119;
    color: #FFFFFF; }
  body.night .news__item {
    border-color: #202830; }
  body.night .news__title {
    color: #FFFFFF; }
  body.night .news__except {
    color: #FFFFFF; }
  body.night .order__item {
    border-color: #202830; }
  body.night .order__block {
    border-color: #202830; }
  body.night .order__table td {
    color: #FFFFFF; }
    body.night .order__table td:first-child {
      color: #5F666E; }
  body.night .gift__card {
    background-color: #1F2730; }
  body.night .gift__block {
    border-color: #202830; }
    body.night .gift__block .input {
      background-color: #2C353F; }
      body.night .gift__block .input:-webkit-autofill {
        -webkit-box-shadow: inset 0 0 0 52px #2C353F;
        -webkit-text-fill-color: #FFFFFF; }
  body.night .gift__input {
    background-color: #2C353F; }
    body.night .gift__input .input__wrapper {
      border-color: #48515B; }
  body.night .gift__block-title {
    color: #FFFFFF; }
  body.night .gift__card-link.noactive {
    color: #48515B; }
  body.night .empty__cart-container .icon {
    fill: white; }
  body.night .empty__cart-container .empty__cart-title {
    color: #FFFFFF; }
  body.night .cabinet__block-content {
    color: #FFFFFF; }

@media (max-width: 1100px) {
  .filter__btn:before, .filter__btn:after,
  .filter__btn i {
    background-color: #FFFFFF; } }
