@charset "UTF-8";

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
html {
  min-width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Rubik-Regular';
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article>*+* {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    -o-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@font-face {
  font-family: Rubik-Bold;
  src: url(../fonts/Rubik-Bold.woff);
}

@font-face {
  font-family: Rubik-SemiBold;
  src: url(../fonts/Rubik-SemiBold.woff);
}

@font-face {
  font-family: Rubik-Medium;
  src: url(../fonts/Rubik-Medium.woff);
}

@font-face {
  font-family: Rubik-Regular;
  src: url(../fonts/Rubik-Regular.woff);
}

h1 {
  font-family: Rubik-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
  color: #454545;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 24px;
  }

}

@media screen and (max-width: 420px) {
  h1 {
    font-size: 18px;
  }

}

h2 {
  font-family: Rubik-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  color: #000000;
}

h3 {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 130%;
  color: #000000;
}

h4 {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color: #000000;
}

h5 {
  font-family: Rubik-SemiBold;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #000000;
}

h6,
p {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #000000;
}

@media screen and (max-width: 769px) {

  h6,
  p {
    font-size: 14px;
  }
}

p {
  line-height: 130%;
}

* {
  -webkit-tap-highlight-color: transparent;
}

:focus {
  outline: none !important;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
}

input,
label,
select,
textarea,
img,
span,
p {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

.none {
  display: none !important;
}

.up_arrow {
  width: 20px;
  height: 14px;
  background: url(../img/icon/chevron-top.svg) center/contain no-repeat;
}

.down_arrow {
  width: 20px;
  height: 14px;
  background: url(../img/icon/chevron-down.svg) center/contain no-repeat;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.2s all !important;
  -o-transition: 0.2s all !important;
  transition: 0.2s all !important;
}

.left_arrow,
.right_arrow {
  display: flex;
  width: 30px;
  height: 30px;
}

.left_arrow {
  background: url(../img/icon/chevron-left.svg) center/contain no-repeat;
}

.right_arrow {
  background: url(../img/icon/chevron-right.svg) center/contain no-repeat;
}

.arrow--down {
  transform: rotate(90deg);
}

.arrow--up {
  transform: rotate(-90deg);
}

.arrow_back {
  width: 25px;
  height: 25px;
  background: url(../img/icon/arrow\ left.svg) center/contain no-repeat;
}

.close_btn {
  width: 18px;
  height: 18px;
  background: url(../img/icon/x.svg) center/contain no-repeat;
}

.line-gray {
  width: 100%;
  height: 1px;
  margin: 16px 0;
  display: inline-block;
  background: #F5F5F5;
}

@media screen and (max-width: 769px) {
  .line-gray {
    margin: 8px 0;
  }
}

.cart_icon {
  margin-left: 10px;
  width: 25px;
  height: 25px;
  display: inline-block;
  background: url(../img/icon/shopping-cart.svg) center/contain no-repeat;
}

.pop_cart,
.pop_ups_abs {
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  z-index: 999999999;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #F5F5F5;
  margin: 0 auto;
}

@media screen and (min-width: 0px) {
  .wrapper {
    width: 100%;
  }
}

@media screen and (min-width: 1024.75px) {
  .wrapper {
    width: 100%;
  }
}

@media screen and (min-width: 1240px) {
  .wrapper {
    width: 100%;
  }
}

@media screen and (min-width: 1920px) {
  .wrapper {
    width: 100%;
  }
}

.slick-arrow {
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .slick-arrow {
    display: none !important;
  }
}

.main-slider-dots li button,
.pagination-product li button {
  cursor: pointer;
  z-index: 1 !important;
}

.main-slider-dots {
  z-index: 1 !important;
}

.main-slider-dots li {
  z-index: 1 !important;
}

.main-slider-dots li button {
  z-index: 1 !important;
}

.header {
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 0;
  z-index: 10;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
  box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
}

@media screen and (min-width: 0px) {
  .header {
    height: fit-content;
    /* height: 134px; */
    border-top: 1px solid transparent;
  }
}

@media screen and (min-width: 720.75px) {
  .header {
    /* height: 94px; */
    border-top: 1px solid #F5F5F5;
  }
}

@media screen and (min-width: 1024.75px) {
  .header {
    /* height: 75px; */
    border-top: 1px solid #F5F5F5;
  }
}

.header .wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
}

@media screen and (min-width: 0px) {
  .header .wrapper-set {
    margin: 16px 0;
    flex-direction: column;
  }
}

@media screen and (min-width: 769px) {
  .header .wrapper-set {
    margin: 10px 0;
  }
}

@media screen and (min-width: 769px) {
  .header .wrapper-set {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.header .header__line_in {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .header__line_in .logo-hisense {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(../img/icon/logo.svg) left/contain no-repeat;
}

@media screen and (min-width: 0px) {
  .header .header__line_in .logo-hisense {
    width: 200px;
    height: 30px;
  }
}

@media screen and (min-width: 1240px) {
  .header .header__line_in .logo-hisense {
    width: 300px;
    height: 40px;
  }
}

.header .header__line_in .icon-interface {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: 100%;
  flex-wrap: 100%;
}

/* @media screen and (min-width: 0px) {
  .header .header__line_in .icon-interface {
    margin-left: 50px;
  }
} */
/* @media screen and (min-width: 720.75px) {
  .header .header__line_in .icon-interface {
    margin-left: 20%;
  }
} */
@media screen and (min-width: 1024.75px) {
  .header .header__line_in .icon-interface {
    margin-left: 10px;
  }
}

.header .header__line_in .icon-interface .icon-int-user {
  /* width: 100px; */
  /* width: 100%; */
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .header__line_in .icon-interface .icon-int-user .user-icon {
  width: 25px;
  height: 23px;
  background: url(../img/icon/user.svg) center/contain no-repeat;
  cursor: pointer;
}

@media screen and (min-width: 0px) {
  .header .header__line_in .icon-interface .icon-int-user .user-icon {
    display: none;
  }
}

@media screen and (min-width: 1024.75px) {
  .header .header__line_in .icon-interface .icon-int-user .user-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 0px) {
  .header .header__line_in .icon-interface .icon-int-user .v-line:nth-of-type(1) {
    display: none;
  }
}

@media screen and (min-width: 1024.75px) {
  .header .header__line_in .icon-interface .icon-int-user .v-line:nth-of-type(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header .header__line_in .icon-interface .icon-int-user ._active_heart {
  width: 22px;
  height: 19px;
  position: relative;
  background: url(../img/icon/heart_header_active.svg) center/contain no-repeat !important;
  cursor: pointer;
}

.header .header__line_in .icon-interface .icon-int-user .like-icon {
  width: 22px;
  height: 19px;
  position: relative;
  background: url(../img/icon/heart_header.svg) center/contain no-repeat;
  cursor: pointer;
}

.header .header_btn {
  border: none;
  margin-right: 12px;
  background: 0;
}

.header .search_btn {
  background: whitesmoke;
  border-radius: 8px;
  padding: 8px;
  margin: 0 12px;
}

.header .phone_btn {
  padding: 0;
}

.header .header_img {
  width: 20px;
  height: 20px;
}

.header .phone_img {
  width: 25px;
  height: 25px;
  background: url(../img/icon/Telephone.svg) center/contain no-repeat;
}

@media screen and (min-width: 1025px) {
  .header .phone_img {
    display: none;
  }

}

.header .search_img {
  background: url(../img/icon/search.svg) center/contain no-repeat;
}


@media screen and (min-width: 769px) {
  .header .search_btn {
    display: none;
  }
}

.header .header__line_in .icon-interface .icon-int-user .like-icon .count_form {
  position: absolute;
  min-width: 15px;
  height: 15px;
  right: -8px;
  top: -6px;
  color: #fff;
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 7px;
  line-height: 120%;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #00B3AC;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .header__line_in .icon-interface .icon-int-user .v-line {
  width: 1px;
  height: 30px;
  background: #F5F5F5;
}

.header .header__line_in .icon-interface .icon-int-user ._active_cart {
  width: 25px;
  height: 23px;
  position: relative;
  background: url(../img/icon/shopping-cart_active.svg) center/contain no-repeat !important;
  cursor: pointer;
}

.header .header__line_in .icon-interface .icon-int-user .cart {
  width: 25px;
  height: 23px;
  position: relative;
  background: url(../img/icon/shopping-cart_black.svg) center/contain no-repeat;
  cursor: pointer;
}

.header .header__line_in .icon-interface .icon-int-user .cart .count_form {
  position: absolute;
  min-width: 15px;
  height: 15px;
  right: -6px;
  top: -4px;
  color: #fff;
  font-family: Rubik-Regular;
  font-style: normal;
  overflow: hidden;
  font-weight: 400;
  font-size: 8px;
  line-height: 120%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #00B3AC;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .header__line_in .icon-interface .icon-int-user .burger {
  width: 25px;
  height: 23px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

@media screen and (min-width: 0px) {
  .header .header__line_in .icon-interface .icon-int-user .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1024.75px) {
  .header .header__line_in .icon-interface .icon-int-user .burger {
    display: none;
  }
}

.header .header__line_in .icon-interface .icon-int-user .burger span {
  width: 100%;
  height: 2px;
  position: relative;
  border-radius: 5px;
  background: #181818;
}

.header .header__line_in .icon-interface .icon-int-user .burger span:before {
  content: " ";
  width: 100%;
  height: 2px;
  position: absolute;
  border-radius: 5px;
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
  background: #181818;
}

.header .header__line_in .icon-interface .icon-int-user .burger span:after {
  content: " ";
  width: 100%;
  height: 2px;
  position: absolute;
  border-radius: 5px;
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  background: #181818;
}

.list-menu-desktop {
  width: 100%;
  height: 44px;
  top: 0;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
}

@media screen and (min-width: 0px) {
  .list-menu-desktop {
    display: none;
  }
}

@media screen and (min-width: 1024.75px) {
  .list-menu-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.list-menu-desktop .wrapper-set {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-menu-desktop .phone {
  width: 200px;
  height: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
}

@media screen and (min-width: 0px) {
  .list-menu-desktop .phone {
    display: none;
  }
}

@media screen and (min-width: 1024.75px) {
  .list-menu-desktop .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1240px) {
  .list-menu-desktop .phone {
    display: none;
  }
}

.list-menu-desktop .phone a {
  width: 150px;
}

.list-menu-desktop ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.list-menu-desktop ul li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin-left: 36px;
}

@media screen and (max-width: 1200px) {
  .list-menu-desktop ul li {
    margin-left: 20px;
  }
}

.link_top {
  text-align: center;
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  color: #959595;
  text-decoration: none;
}

.link_top:hover {
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  color: #00B3AC;
}

.active_item {
  color: #DA3333;

}

.link_active {
  color: #00B3AC;
}

.bg_1 {
  background: pink;
  background-size: contain !important;
  background-position: center;
  background-repeat: no-repeat;
}

.bg_2 {
  background: #60285e;
  background-size: contain !important;
  background-position: center;
  background-repeat: no-repeat;
}

.bg_3 {
  background: #66cf70;
  background-size: contain !important;
  background-position: center;
  background-repeat: no-repeat;
}

.bg_4 {
  background: #cfed65;
  background-size: contain !important;
  background-position: center;
  background-repeat: no-repeat;
}

.btn {
  padding: 16px 24px;
  gap: 10px;
  background: #00B3AC;
  border-radius: 8px;
  color: #fff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Rubik-Medium;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  line-height: 100%;
  color: #FFFFFF;
  cursor: pointer;
}

.btn:hover {
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: #00D8CF;
}

.catalog-btn {
  padding: 0 20px 0 20px;
  height: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #B9E9E6;
  border: none;
  margin-left: 30px;
  border-radius: 8px;
  cursor: pointer;
}

@media screen and (min-width: 0px) {
  .catalog-btn {
    display: none;
  }
}

@media screen and (min-width: 1024.75px) {
  .catalog-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.catalog-btn span {
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: url(../img/icon/grid.svg) center/contain no-repeat;
}

.catalog-btn h6 {
  min-width: 18px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Rubik-Regular;
  font-style: normal;
  position: relative;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  margin-left: 18px;
  color: #004643;
}

.catalog-btn:hover {
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background: #c8f2ef;
}

.location_m {
  width: 100% !important;
  height: 40px !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 0px) {
  .location_m {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: none !important;
  }
}

@media screen and (min-width: 1024.75px) {
  .location_m {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: none !important;
  }
}

@media screen and (min-width: 1024.75px) {
  .location_m {
    display: none !important;
  }
}

.location_m,
.location {
  min-width: 73px;
  height: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 0px) {

  .location_m,
  .location {
    display: none;
  }
}

@media screen and (min-width: 1024.75px) {

  .location_m,
  .location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
  }
}

.location_m .location_icon__location,
.location .location_icon__location {
  width: 16px;
  height: 16px;
  background: url(../img/icon/location_user.svg) center/contain no-repeat;
}

.location_m .location_city__location,
.location .location_city__location {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #454545;
  margin-left: 12px;
  cursor: pointer;
}

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

.rotateUpDown {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.phone_m {
  width: 100% !important;
  height: 40px !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0px;
}

@media screen and (min-width: 0px) {
  .phone_m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1240px) {
  .phone_m {
    display: none;
  }
}

.phone_m .contain_m {
  width: 100%;
  height: 50px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.phone_m .hover-box-number {
  width: 100%;
  padding: 10px 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.phone_m .hover-box-number div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.phone_m .down_arrow:focus>.hover-box-number,
.phone_m .down_arrow:active>.hover-box-number,
.phone_m .down_arrow:hover>.hover-box-number {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: -5px;
  right: -20px;
  -webkit-animation: visiblePhone 0.2s ease forwards;
  animation: visiblePhone 0.2s ease forwards;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
  padding: 5px 10px 0 10px;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  -webkit-box-shadow: 0px 2px 5px rgba(24, 24, 35, 0.075);
  box-shadow: 0px 2px 5px rgba(24, 24, 35, 0.075);
  z-index: 1;
  opacity: 0;
}

.phone_m .kievstar {
  width: 12px;
  height: 12px;
  position: relative;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../img/icon/operator/kievstar.png) center/contain no-repeat;
}

.phone_m .vodafone {
  width: 12px;
  height: 12px;
  position: relative;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../img/icon/operator/vodafone.svg) center/contain no-repeat;
}

.phone_m a {
  width: 90%;
  height: 23px;
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  font-size: 18px;
  line-height: 130%;
  color: #454545;
  z-index: 1;
}

.phone_m .down_arrow {
  z-index: 10;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
  border: none;
}

.phone {
  width: 400px;
  height: 100%;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px;
  position: relative;
  gap: 8px;
  margin-left: 20px;
}

@media screen and (min-width: 0px) {
  .phone {
    display: none;
  }
}

@media screen and (min-width: 1240px) {
  .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 30px;
  }
}

.phone a {
  width: 90%;
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  text-align: right;
  font-size: 17px;
  line-height: 130%;
  color: #454545;
  z-index: 1;
}

.phone .down_arrow {
  z-index: 10;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
  border: none;
}

.phone .down_arrow:focus>.hover-box-number,
.phone .down_arrow:active>.hover-box-number,
.phone .down_arrow:hover>.hover-box-number {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: -5px;
  right: -20px;
  -webkit-animation: visiblePhone 0.2s ease forwards;
  animation: visiblePhone 0.2s ease forwards;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
  padding: 5px 10px 0 10px;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  -webkit-box-shadow: 0px 2px 5px rgba(24, 24, 35, 0.075);
  box-shadow: 0px 2px 5px rgba(24, 24, 35, 0.075);
  z-index: 1;
  opacity: 0;
}

@-webkit-keyframes visiblePhone {
  0% {
    display: -webkit-box;
    display: flex;
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes visiblePhone {
  0% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.phone .hover-box-number {
  width: 170px !important;
  height: 80px;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: none;
  top: -5px;
  left: -170px;
}

.phone .hover-box-number div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.phone .hover-box-number div a {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  position: relative;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  text-decoration: none;
  font-size: 16px;
  line-height: 130%;
  color: #454545;
  z-index: 2;
}

.phone .hover-box-number div a:hover {
  color: #057b69;
}

.phone .hover-box-number div .kievstar {
  width: 12px;
  height: 12px;
  position: relative;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../img/icon/operator/kievstar.png) center/contain no-repeat;
}

.phone .hover-box-number div .vodafone {
  width: 12px;
  height: 12px;
  position: relative;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../img/icon/operator/vodafone.svg) center/contain no-repeat;
}

.footer {
  height: fit-content;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #F5F5F5;
  padding-top: 40px;
  /* overflow: hidden; */
}

.footer .wrapper-set {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 0px) {
  .footer .wrapper-set {
    width: 100%;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 865px) {
  .footer .wrapper-set {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 20px;
  }
}

.footer .box-top-f {
  margin-bottom: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 865px) {
  .footer .box-top-f {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.footer .logo_black {
  width: 155px;
  height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../img/icon/logo.svg") center/contain no-repeat;
}

.footer .box-menu_and_social {
  margin-right: 16px;
  /* width: 200px; */
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 0px) {
  .footer .box-menu_and_social {
    /* margin-left: 0;
    margin-top: 20px; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer .box-menu_and_social .menu-f {
  /* width: 100%; */
  margin-top: 16px;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (min-width: 865px) {
  .footer .box-menu_and_social {
    margin: 0 16px;
  }

  .footer .box-menu_and_social .menu-f ul {
    margin-top: 0;
  }
}

.footer .box-menu_and_social .menu-f ul {
  /* width: 100%; */
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin-bottom: 0;
  /* margin: 0; */
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer .box-menu_and_social .menu-f :last-child {
  margin-right: 0;
}

.footer .box-menu_and_social .menu-f ul li {
  list-style: none;
  margin: 0 0 10px 0;
}

.footer .box-menu_and_social .menu-f ul li a {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  text-decoration: none;
  line-height: 20px;
  color: #454545;
}

.footer .box-menu_and_social .social {
  width: fit-content;
  height: 44px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 865px) {
  .footer .box-menu_and_social {
    /* margin-left: 0;
    margin-top: 20px; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 865px) {
  .footer .box-menu_and_social .social {
    margin-top: 10px;
  }
}

.footer .box-menu_and_social .social a {
  margin-right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #00B3AC;
}

.footer .box-menu_and_social .social span {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.footer .box-menu_and_social .social .fb-icon {
  background: url(../img/icon/facebook.svg) center/contain no-repeat;
}

.footer .box-menu_and_social .social .inst-icon {
  background: url(../img/icon/instagram.svg) center/contain no-repeat;
}

.footer .quesion_phone {
  justify-content: center;
  width: 100%;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 8px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
  box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
  padding: 16px 28px;
}

@media screen and (min-width: 0px) {
  .footer .quesion_phone {
    margin-left: 0px;
    margin-top: 16px;
  }
}

@media screen and (min-width: 865px) {
  .footer .quesion_phone {
    margin-left: 10px;
    width: fit-content;
  }
}

.footer .quesion_phone h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #454545;
  margin: 0;
}

.footer .quesion_phone h6 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #959595;
  margin: 0;
  margin-top: 8px;
}

.footer .category-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 0px) {
  .footer .category-footer {
    margin-top: 20px;
  }
}

@media screen and (min-width: 865px) {
  .footer .category-footer {
    margin-top: 0;
    margin-left: 10px;
  }
}

.footer .category-footer h5 {
  font-family: Rubik-SemiBold;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 96%;
  margin: 0;
  color: #181818;
}

.footer .category-footer a {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
  color: #454545;
  margin-top: 16px;
}

.footer .link-footer {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 0px) {
  .footer .link-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 36px;
  }
}

@media screen and (min-width: 865px) {
  .footer .link-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 0;
  }
}

.footer .link-footer a {
  width: 300px;
  height: 30px;
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  position: relative;
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
  color: #181818;
  margin-right: 16px;
  margin-bottom: 20px;
}

.footer .link-footer a:nth-of-type(2) {
  width: 200px;
  height: 30px;
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  position: relative;
  color: #181818;
  margin-bottom: 20px;
}

.footer .link-footer a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  background: #181818;
}

.footer .link-footer p {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #181818;
  margin-bottom: 20px;
}

.contain_info {
  height: fit-content;
  /* height: 20px; */
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  margin-bottom: 8px;
}

.contain_info .icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 0px) {
  .contain_info .icon {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 720.75px) {
  .contain_info .icon {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.contain_info .icon .contact-icon {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contain_info .icon .smartphone {
  background: url(../img/icon/smartphone.svg) center/contain no-repeat;
}

.contain_info .icon .mail-icon {
  background: url(../img/icon/mail.svg) center/contain no-repeat;
}

.contain_info .icon .location-icon {
  width: 25px;
  height: 25px;
  background: url(../img/icon/location-icon.svg) center/contain no-repeat;

}

.contain_info .icon .schedule-icon {
  background: url(../img/icon/schedule-icon.svg) center/contain no-repeat;

}

.contain_info .text-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0px;
}

.contain_info .text-info h5 a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #454545;
  text-decoration: none;
}

.contain_info .text-info h6 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #959595;
  margin-top: 0px !important;
}

.signIn_signUP {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.signIn_signUP .icon_sign {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../img/icon/user.svg) center/contain no-repeat;
}

.signIn_signUP p {
  margin-left: 10px;
}

.catalog-menu {
  background: #fff;
  position: absolute;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
  border-radius: 8px;
  opacity: 1;
}

@media screen and (min-width: 0px) {
  .catalog-menu {
    width: 100%;
    height: 100%;
    top: 0;
  }
}

@media screen and (min-width: 1024.75px) {
  .catalog-menu {
    width: 90%;
    height: 80vh;
    top: 120px;
  }
}

@media screen and (min-width: 1280px) {
  .catalog-menu {
    width: 1240px;
    height: 80vh;
    top: 120px;
  }
}

.catalog-menu .catalog_menu__list {
  width: 267px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
}

.catalog-menu .catalog_menu__list .menu__sl {
  width: 100%;
  height: 79px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: left;
  color: #000;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid #F5F5F5;
  background: transparent;
  padding-left: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog-menu .catalog_menu__list .menu__sl:focus,
.catalog-menu .catalog_menu__list .menu__sl:hover,
.catalog-menu .catalog_menu__list .menu__sl:active,
.catalog-menu .catalog_menu__list .menu__sl.active {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  color: #00B3AC !important;
}

.catalog-menu .catalog_menu__data {
  width: calc(100% - 267px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0px 105px 20px 42px;
}

.catalog-menu .catalog_menu__data .sl-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog-menu .catalog_menu__data .sl-box.active {
  display: flex;
}

.catalog-menu .catalog_menu__data .sl-box .sl-box__title {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #F5F5F5;
  position: relative;
}

.catalog-menu .catalog_menu__data .sl-box .sl-box__title .sl-title {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color: #454545;
  text-decoration: none;
}

.catalog-menu .catalog_menu__data .sl-box .sl-box__title .sl-title:hover {
  color: #00D8CF;
  transition: all 0.4s;
}

.catalog-menu .catalog_menu__data .sl-box__content::-webkit-scrollbar {
  width: 4px;
  background: #e9e9e9;
  border-radius: 20px;
}

.catalog-menu .catalog_menu__data .sl-box__content::-webkit-scrollbar-thumb {
  width: 4px;
  background: #00B3AC;
  border-radius: 20px;
}

.catalog-menu .catalog_menu__data .sl-box__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: auto;
}

.catalog-menu .catalog_menu__data .sl-box__content .category-two__col {
  width: 300px;
}

.catalog-menu .catalog_menu__data .sl-box__content .category-two__col .col-sl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog-menu .catalog_menu__data .sl-box__content .category-two__col .col-sl p {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #454545;
  text-transform: uppercase;
  margin: 18px 0 18px 0;
}

.catalog-menu .catalog_menu__data .sl-box__content .category-two__col .col-sl li {
  margin-bottom: 16px;
}

.catalog-menu .catalog_menu__data .sl-box__content .category-two__col .col-sl li a {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
  color: #959595;
}

.catalog-menu .catalog_menu__data .sl-box__content .category-two__col .col-line-catalog {
  width: 100%;
  height: 1px;
  display: inline-block;
  background: #F5F5F5;
}

.catalog-menu .catalog_menu__data .sl-box__content .category__col {
  width: 300px;
  margin: 0 10px 0 10px;
}

.catalog-menu .catalog_menu__data .sl-box__content .category__col .col-sl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog-menu .catalog_menu__data .sl-box__content .category__col .col-sl p {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #454545;
  /* text-transform: uppercase; */
  margin: 18px 0 18px 0;
}

.catalog-menu .catalog_menu__data .sl-box__content .category__col .col-sl li {
  margin-bottom: 16px;
}

.catalog-menu .catalog_menu__data .sl-box__content .category__col .col-sl li a {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
  color: #959595;
}

.catalog-menu .catalog_menu__data .sl-box__content .category__col .col-sl li a:hover {
  color: #00D8CF;
  transition: all 0.4s;
}


.wrapper_link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
}

.wrapper_link .columner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.wrapper_link .columner .accordeon {
  width: 100%;
  height: 50px;
  position: relative;
  cursor: pointer;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  padding: 0 !important;
  text-align: left;
  padding-right: 10px;
  background: transparent;
}

.wrapper_link .columner .accordeon .down_arrow {
  width: 30px;
  height: 20px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.2s all !important;
  -o-transition: 0.2s all !important;
  transition: 0.2s all !important;
}

.wrapper_link .columner .accordeon p {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #454545;
}

@media screen and (max-width: 768px) {
  .wrapper_link .columner .accordeon p {
    font-size: 16px;
  }
}

.wrapper_link .columner .accordeon span {
  display: block;
}

.wrapper_link .columner .mirror_acc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: rotate(225deg) translateX(-5px) translateY(5px) !important;
  -ms-transform: rotate(225deg) translateX(-5px) translateY(5px) !important;
  transform: rotate(225deg) translateX(-5px) translateY(5px) !important;
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #454545;
}

.wrapper_link .columner .list_link {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: none;
  padding: 10px 0 10px 0;
}

.wrapper_link .columner .list_link .list_description {
  width: 100%;
  cursor: pointer;
  margin: 6px 0 6px 0;
}

.wrapper_link .columner .list_link .list_description a {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
  color: #959595;
}

@media screen and (max-width: 768px) {
  .wrapper_link .columner .list_link .list_description a {
    font-size: 14px;
  }
}

.active_link {
  color: #00B3AC !important;
}

.active_product {
  background: #B9E9E6 !important;
}

.container_product {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #F7FBF9;
  padding: 20px 0;
}

@media screen and (min-width: 0px) {
  .container_product .slick-list {
    padding: 0 30% 0 0 !important;
    overflow: hidden;
  }
}

@media screen and (min-width: 681px) {
  .container_product .slick-list {
    /* margin: 0 16px; */
    padding: 0 0 0 0 !important;
    overflow: hidden;
  }
}

.container_product .pagination-product {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.container_product .pagination-product .slick-active {
  width: 15px;
  height: 15px;
  font-size: 0;
  border-radius: 50%;
  background: #00B3AC !important;
  border: none;
  z-index: 1;
}

.container_product .pagination-product .slick-active button {
  font-size: 0;
  background: transparent;
  border-radius: 50%;
  border: none;
  z-index: 1;
}

.container_product .pagination-product li:not(.slick-active) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F5F5F5;
  border: 0;
  border-radius: 50%;
  margin: 0 5px 0 5px;
  z-index: 1;
}

.container_product .pagination-product li:not(.slick-active) button {
  width: 15px;
  height: 15px;
  font-size: 0;
  border-radius: 50%;
  border: 0;
  z-index: 1;
}

.container_product .wrapper-set {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.filter_product__wrapper {
  width: 100%;
  overflow: scroll;
}

.filter_product {
  min-width: 100vw;
  /* overflow: auto; */
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative; */
  padding-right: 50px;
}

.container_product .filter_product {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative; */
  padding-right: 50px;
  /* margin-top: 20px; */
}

@media screen and (min-width: 0px) {
  .container_product .filter_product {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (min-width: 1240px) {
  .container_product .filter_product {
    width: 100%;
    padding: 0 0;
  }
}

.container_product .filter_product .btn_product {
  min-width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 16px;
  gap: 10px;
  width: fit-content;
  /* min-width: 150px; */
  /* height: 40px; */
  height: fit-content;
  margin-top: 20px;
  background: #fff;
  border-radius: 50px;
  font-family: Rubik-Regular;
  font-style: normal;
  -webkit-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  border: none;
  margin-right: 20px;
  color: #004643;
  cursor: pointer;
}

@media screen and (max-width: 769px) {
  .container_product .filter_product .btn_product {
    margin-top: 12px;
    margin-right: 8px;
    font-size: 14px;
  }
}

.container_product .filter_product .btn_product:hover {
  -webkit-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  background: #B9E9E6;
}

.container_product .container_slider {
  width: 100%;
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  /* margin-top: 20px; */
  /* padding: 20px 0; */
  transition: all .5s ease-in;
}

.container_product .container_slider .slider-product {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container_product .container_slider .slider-product .slide {
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px !important;
  overflow: hidden;
  background: transparent;
}

.container_product .container_slider .slider-product .slide .image_box {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 0px) {
  .container_product .container_slider .slider-product .slide .image_box {
    padding: 20px;
  }
}

@media screen and (min-width: 360px) {
  .container_product .container_slider .slider-product .slide .image_box {
    padding: 5px 5px 5px 5px;
  }
}

@media screen and (min-width: 500.75px) {
  .container_product .container_slider .slider-product .slide .image_box {
    padding: 20px;
    height: 250px;
  }
}

.container_product .container_slider .slider-product .slide .image_box img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 0px) {
  .container_product .container_slider .slider-product .slide .image_box img {
    padding: 20px 20px 0 20px;
  }
}

@media screen and (min-width: 360px) {
  .container_product .container_slider .slider-product .slide .image_box img {
    padding: 5px 5px 5px 5px;
  }
}

@media screen and (min-width: 500.75px) {
  .container_product .container_slider .slider-product .slide .image_box img {
    padding: 20px;
  }
}


.container_product .container_slider .slider-product .slide .info_abs {
  width: 100%;
  height: auto;
  min-height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: transparent;
  position: relative;
  padding: 5px 16px 16px 16px;
}

@media screen and (max-width: 420px) {
  .container_product .container_slider .slider-product .slide .info_abs {
    min-height: 200px;
    justify-content: space-between;
  }
}

@media screen and (max-width: 374px) {
  .container_product .container_slider .slider-product .slide .info_abs {
    min-height: 225px;
  }
}

.container_product .container_slider .slider-product .slide .info_abs .title_product {
  min-height: 50px;
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  overflow: hidden;
  color: #181818;
}

@media screen and (max-width: 767px) {
  .container_product .container_slider .slider-product .slide .info_abs .title_product {
    min-height: fit-content;
  }

}

.container_product .container_slider .slider-product .slide .info_abs .rating {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap; */
  justify-content: space-between;
  margin-top: 12px;
}

.container_product .container_slider .slider-product .slide .info_abs .rating .star_box {
  /* min-width: 50px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.container_product .container_slider .slider-product .slide .info_abs .rating .star_box span {
  width: 20px;
  height: 20px;
  background: url(../img/icon/Star.svg) center/contain no-repeat;
}

.container_product .container_slider .slider-product .slide .info_abs .rating .feedback {
  /* min-width: 100px; */
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  cursor: pointer;
  color: #00B3AC;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info_abs .rating .feedback .feedback__img,
.container_product .container_slider .slider-product .slide .info_abs .rating .feedback .feedback__img {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url(../img/icon/feedback.svg) center/contain no-repeat;
}

.info_abs .rating .feedback--mobile,
.container_product .container_slider .slider-product .slide .info_abs .rating .feedback--mobile {
  display: none;
}


.info_abs .rating .feedback--mobile {
  display: none;
}

.info_abs .rating .feedback--default {
  display: flex;
}

.container_product .container_slider .slider-product .slide .info_abs .price {
  width: 100%;
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.container_product .container_slider .slider-product .slide .info_abs .price .price_promotion {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #454545;
  margin-top: 16px;
}

@media screen and (max-width: 521px) {
  .container_product .container_slider .slider-product .slide .info_abs .price {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: 8px;
  }

  .container_product .container_slider .slider-product .slide .info_abs .price .price_promotion {
    margin-top: 8px;
  }
}

.container_product .container_slider .slider-product .slide .info_abs .price .price_not_promotion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  margin-left: 5px;
  line-height: 130%;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #959595;
}

@media screen and (max-width: 521px) {
  .container_product .container_slider .slider-product .slide .info_abs .price .price_not_promotion {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.container_product .slider-ptoduct-prev {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  left: -15px;
  border: none;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
  box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
}

.container_product .slider-ptoduct-prev .left_arrow {
  width: 20px;
  height: 20px;
}

.container_product .slider-product-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  right: -15px;
  border: none;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
  box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
}

.container_product .slider-product-next .right_arrow {
  width: 20px;
  height: 20px;
}

/* внешний контейнер - фон с серыми звездочками */
.rate_background {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: none;
  flex-wrap: none;
  /* height: 40px; */
  height: fit-content;
}

.rate_background .rating-star {
  width: 35px;
  height: 35px;
  float: left;
  margin-right: 2px;
}

.rate_background .rating-star-off {
  background: url(../img/icon/Star.svg) center center/contain no-repeat;
  cursor: pointer;
}

.rate_background .rating-star-on {
  background: url(../img/icon/Star_hov.svg) center center/contain no-repeat;
}

.rate_background .star_box {
  padding: 0 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rate_background .star_box .answer_star {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 8px;
  background: url(../img/icon/Star.svg) center/contain no-repeat !important;
}

.rate_background .star_box .answer_star-on {
  background: url(../img/icon/Star_hov.svg) center/contain no-repeat !important;
}

.rate_background .star {
  margin: 0 15px 0 15px;
  float: left;
}

@media screen and (min-width: 0px) {
  .rate_background .star {
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 720.75px) {
  .rate_background .star {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50px;
    height: 50px;
  }
}

.rate_background .star_ {
  background: url(../img/icon/star_feedback.svg) center/contain no-repeat;
  cursor: pointer;
}

.rate_background .star_h {
  background: url(../img/icon/star_feedback_hover.svg) center/contain no-repeat;
}

.link_href {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: inherit;
}

@media screen and (min-width: 0px) {
  .link_href {
    font-size: 20px;
  }
}

@media screen and (min-width: 720.75px) {
  .link_href {
    font-size: 30px;
  }
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
  margin: 0 10px 0 10px;
}

@media screen and (min-width: 0px) {
  .container_big_slider .container_slider .big_slider {
    height: auto;
  }

  .container_big_slider .container_slider .big_slider .slide {
    height: 700px;
  }
}

@media screen and (min-width: 900px) {
  .container_big_slider .container_slider .big_slider {
    height: 950px;
  }

  .container_big_slider .container_slider .big_slider .slide {
    height: 950px;
  }
}

.container_big_slider {
  width: 100%;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #F7FBF9;
  /* padding: 20px 0; */
}

@media screen and (min-width: 0px) {
  .container_big_slider .slick-list {
    padding: 0 5% 0 0 !important;
    overflow: hidden;
  }
}

@media screen and (min-width: 681px) {
  .container_big_slider .slick-list {
    padding: 0 10% 0 0 !important;
    overflow: hidden;
  }
}

@media screen and (min-width: 730px) {
  .container_big_slider .slick-list {
    padding: 0 20% 0 0 !important;
    overflow: hidden;
  }
}

@media screen and (min-width: 780px) {
  .container_big_slider .slick-list {
    padding: 0 30% 0 0 !important;
    overflow: hidden;
  }
}

@media screen and (min-width: 900px) {
  .container_big_slider .slick-list {
    padding: 0 0 0 0 !important;
    overflow: hidden;
  }
}

.container_big_slider .wrapper-set {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.container_big_slider .contain_big_text {
  width: 100%;
  /* min-height: 60px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

@media screen and (min-width: 0px) {
  .container_big_slider .contain_big_text {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (min-width: 1240px) {
  .container_big_slider .contain_big_text {
    width: 100%;
    padding: 0 0;
  }
}

.container_big_slider .contain_big_text .h1 {
  font-family: Rubik-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  margin-right: 50px;
  text-transform: uppercase;
  color: #181818;
}

.container_big_slider .contain_big_text p {
  min-height: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.container_big_slider .contain_big_text p a {
  width: 100%;
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  line-height: 130%;
  color: #454545;
}

.container_big_slider .contain_big_text p a span {
  width: 20px;
  height: 20px;
}

.container_big_slider .container_slider {
  width: 100%;
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .container_big_slider .container_slider {
    padding: 10px 0;
  }

}

.container_big_slider .container_slider .big_slider {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container_big_slider .container_slider .big_slider .reverse_slide {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.container_big_slider .container_slider .big_slider .slide {
  max-width: 598px;
  height: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px !important;
  overflow: hidden;
}

.container_big_slider .container_slider .big_slider .slide .link_set {
  width: 100%;
  /* height: 475px; */
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px !important;
}

.container_big_slider .container_slider .big_slider .slide .abs_sl_col {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  z-index: 2;
}

@media screen and (min-width: 0px) {
  .container_big_slider .container_slider .big_slider .slide .abs_sl_col {
    padding: 10px;
  }
}

/* @media screen and (min-width: 500px) {
  .container_big_slider .container_slider .big_slider .slide .abs_sl_col {
    padding: 25px;
  }
} */
.container_big_slider .container_slider .big_slider .slide .abs_sl_col .links {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
  flex: 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container_big_slider .container_slider .big_slider .slide .abs_sl_col .title_info {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
  flex: 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.container_big_slider .container_slider .big_slider .slide .fillter_img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  overflow: hidden;
  background: rgba(50, 50, 71, 0.0588235294);
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 8px;
  -webkit-box-shadow: inset 0px -90px 80px 50px rgba(21, 21, 30, 0.3725490196);
  box-shadow: inset 0px -90px 80px 50px rgba(21, 21, 30, 0.3725490196);
}

.container_big_slider .container_slider .big_slider .slide .column_full:hover .f_col {
  -webkit-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.container_big_slider .container_slider .big_slider .slide .column_full {
  width: 100%;
  /* height: 100%; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  overflow: hidden;
  margin: 10px 0 10px 0;
  border-radius: 8px;
}



.container_big_slider .container_slider .big_slider .slide .column_full .links_btn {
  width: 142px;
  font-size: 14px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 50px;
  border: none;
  margin-bottom: 12px;
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #181818;
}

.container_big_slider .container_slider .big_slider .slide .column_full .f_col {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  transition: ease 0.5s;
  position: relative;
  border-radius: 8px;
  -webkit-box-shadow: inset 0px 0px 50px 0px rgba(50, 50, 71, 0.0588235294);
  box-shadow: inset 0px 0px 50px 0px rgba(50, 50, 71, 0.0588235294);
}

.container_big_slider .container_slider .big_slider .slide .column_full .article_prod {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #F5F5F5;
  margin-top: 8px;
}

.container_big_slider .container_slider .big_slider .slide .column_full .title_prod_sales {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #FFFFFF;
  margin-top: 8px;
}

@media screen and (min-width: 0px) {
  .container_big_slider .container_slider .big_slider .slide .column_full .title_prod_sales {
    font-size: 20px;
  }
}

@media screen and (min-width: 400px) {
  .container_big_slider .container_slider .big_slider .slide .column_full .title_prod_sales {
    font-size: 24px;
  }
}

.container_big_slider .container_slider .big_slider .slide .column_full .desc_prod_sales {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #F5F5F5;
  margin-top: 8px;
}

@media screen and (min-width: 0px) {
  .container_big_slider .container_slider .big_slider .slide .column_full .desc_prod_sales {
    font-size: 14px;
  }
}

@media screen and (min-width: 400px) {
  .container_big_slider .container_slider .big_slider .slide .column_full .desc_prod_sales {
    font-size: 17px;
  }
}

.container_big_slider .container_slider .big_slider .slide .first_col:hover img,
.container_big_slider .container_slider .big_slider .slide .last_col:hover img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.container_big_slider .container_slider .big_slider .slide .doubble_column {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden !important;
  margin: 10px 0 10px 0;
  border-radius: 8px;
}

.container_big_slider .container_slider .big_slider .slide .doubble_column .link_set {
  margin-right: 16px;
}

.container_big_slider .container_slider .big_slider .slide .doubble_column :last-child {
  margin-right: 0;
}


.container_big_slider .container_slider .big_slider .slide .doubble_column .links_btn {
  height: 32px;
  background: #FFFFFF;
  border-radius: 50px;
  border: none;
  margin-bottom: 12px;
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #181818;
}

@media screen and (min-width: 0px) {
  .container_big_slider .container_slider .big_slider .slide .doubble_column .links_btn {
    width: 95%;
    font-size: 12px;
  }
}

@media screen and (min-width: 500px) {
  .container_big_slider .container_slider .big_slider .slide .doubble_column .links_btn {
    width: 142px;
    font-size: 14px;
  }
}

.container_big_slider .container_slider .big_slider .slide .doubble_column .first_col,
.container_big_slider .container_slider .big_slider .slide .doubble_column .last_col {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden !important;
  position: relative;
  border-radius: 8px;
  z-index: 5;
  -webkit-box-shadow: inset 0px 0px 50px 0px rgba(50, 50, 71, 0.0588235294);
  box-shadow: inset 0px 0px 50px 0px rgba(50, 50, 71, 0.0588235294);
}

.container_big_slider .container_slider .big_slider .slide .doubble_column .first_col img,
.container_big_slider .container_slider .big_slider .slide .doubble_column .last_col img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 1920px) {
  .container_big_slider .container_slider .big_slider .slide .column_full .f_col {
    height: 230px;
    width: 100%;
    object-fit: cover;
  }

  .container_big_slider .container_slider .big_slider .slide {
    height: fit-content;
  }

  .container_big_slider .container_slider .big_slider .slide .doubble_column {
    height: auto;
  }

  .container_big_slider .container_slider .big_slider .slide .doubble_column .first_col,
  .container_big_slider .container_slider .big_slider .slide .doubble_column .last_col {
    height: auto;
  }

  .container_big_slider .container_slider .big_slider .slide .doubble_column .first_col img,
  .container_big_slider .container_slider .big_slider .slide .doubble_column .last_col img {
    width: 100%;
    object-fit: cover;
    height: 300px;
  }

}

/* .container_big_slider .container_slider .big_slider .slide .doubble_column .last_col {

  margin-left: 20px;
} */
/* .container_big_slider .container_slider .big_slider .slide .doubble_column .last_col {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden !important;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  margin-left: 20px;
  z-index: 5;
  -webkit-box-shadow: inset 0px 0px 50px 0px rgba(50, 50, 71, 0.0588235294);
          box-shadow: inset 0px 0px 50px 0px rgba(50, 50, 71, 0.0588235294);
}
.container_big_slider .container_slider .big_slider .slide .doubble_column .last_col img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
} */
.container_big_slider .container_slider .big_slider .slide .doubble_column .article_prod {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #F5F5F5;
  margin-top: 8px;
}

.container_big_slider .container_slider .big_slider .slide .doubble_column .title_prod_sales {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 8px;
}

@media screen and (min-width: 0px) {
  .container_big_slider .container_slider .big_slider .slide .doubble_column .title_prod_sales {
    font-size: 13px;
    line-height: 130%;
  }
}

@media screen and (min-width: 400px) {
  .container_big_slider .container_slider .big_slider .slide .doubble_column .title_prod_sales {
    font-size: 16px;
    line-height: 130%;
  }
}

.container_big_slider .container_slider .big_slider .slide .doubble_column .desc_prod_sales {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #F5F5F5;
  margin-top: 8px;
}

@media screen and (min-width: 0px) {
  .container_big_slider .container_slider .big_slider .slide .doubble_column .desc_prod_sales {
    font-size: 9px;
  }
}

@media screen and (min-width: 400px) {
  .container_big_slider .container_slider .big_slider .slide .doubble_column .desc_prod_sales {
    font-size: 12.5px;
  }
}

.container_big_slider .slider-big-prev {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: absolute;
  display: none !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  top: 47.5%;
  left: -15px;
  border: none;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
  box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
}

.container_big_slider .slider-big-prev .left_arrow {
  width: 20px;
  height: 20px;
}

.container_big_slider .slider-big-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  top: 47.5%;
  right: -15px;
  border: none;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
  box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
}

.container_big_slider .slider-big-next .right_arrow {
  width: 20px;
  height: 20px;
}

.pop_cart {
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pop_cart .line-gray:nth-of-type(1) {
  display: none;
}

.pop_cart .close_c_c {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.pop_cart .con_position_cart {
  width: 100%;
  height: 95%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pop_cart .cart_container {
  position: fixed;
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  font-family: 'Rubik-Medium';
  font-weight: 500;
  font-size: 30px;
  padding: 20px;
  color: #CECECE;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

@media screen and (min-width: 0px) {
  .pop_cart .cart_container {
    width: 100%;
    height: 100vh;
  }
}

@media screen and (min-width: 767px) {
  .pop_cart .cart_container {
    width: 60%;
    height: 70vh;
  }
}

@media screen and (min-width: 1024px) {
  .pop_cart .cart_container {
    width: 50%;
  }
}

@media screen and (min-width: 1280px) {
  .pop_cart .cart_container {
    width: 40%;
    height: 80vh;
  }
}

/* @media screen and (min-width: 1280px) {
  .pop_cart .cart_container {
    width: 1240px;
    height: 90vh;
  }
} */
.pop_cart .cart_container .cont_c_c {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pop_cart .cart_container .cont_c_c .title_c_c {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #454545;
}


.error_email {
  border: 2px solid #bc2323 !important;
}

.alert_ {
  width: 100%;
  height: auto;
  padding: 5px 20px;
  display: flex;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  font-family: $f-500;
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.a_err {
  background: #f85d5d6e;
  color: #323232;
}

.a_ok {
  background: #b9e9e699;
  color: #323232;
}


.pop_cart .cart_container .list_user_prod {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 20px;
  padding-right: 10px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: scroll;
  background: transparent;
}

.present-action {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: fit-content;

  background: #FFC671;
  border-radius: 9px;
}

.product__wrapper {
  display: flex;
  /* align-items: center; */
}

.present-action__img {
  width: 100%;
  max-width: 100px;
  border-radius: 9px;
  object-fit: cover;
  margin: 8px 8px 8px 8px;
}

.present-action__icon {
  width: 100px;
  height: 100px;
  background: url("../../../../../assets/img/icon/gift_left.png") center/contain no-repeat;
}

.present-action__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 8px 16px;
  font-family: 'Rubik-Medium';
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #454545;
}

.in_module .present-action__head {
  font-size: 15px;
}

.pop_cart .cart_container .list_user_prod::-webkit-scrollbar {
  width: 5px;
  background: #F5F5F5;
  border-radius: 8px;
}

.pop_cart .cart_container .list_user_prod::-webkit-scrollbar-thumb {
  width: 5px;
  background: #959595;
  border-radius: 8px;
}

.pop_cart .cart_container .cont_cart_c {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

@media screen and (min-width: 0px) {
  .pop_cart .cart_container .cont_cart_c {
    margin-bottom: 20px;
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 720.75px) {
  .pop_cart .cart_container .cont_cart_c {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}

.pop_cart .cart_container .info_calc {
  width: 100%;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 0px) {
  .pop_cart .cart_container .info_calc {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media screen and (min-width: 720.75px) {
  .pop_cart .cart_container .info_calc {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.pop_cart .cart_container .info_calc div {
  min-width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pop_cart .cart_container .info_calc div p {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #959595;
  margin: 4px 0 4px 0;
}

@media screen and (max-width: 767px) {
  .pop_cart .cart_container .info_calc div p {
    font-size: 14px;
  }

  .pop_cart .cart_container .info_calc .count_t_money,
  .pop_cart .cart_container .info_calc .count_t_promotion,
  .pop_cart .cart_container .info_calc .count_t_delivery {
    font-family: Rubik-Bold;
    font-weight: 600;
  }
}

.pop_cart .cart_container .all_couting {
  width: 100%;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 28px;
  border-radius: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #B9E9E6;
}

.pop_cart .cart_container .all_couting span,
.pop_cart .cart_container .all_couting p {
  font-family: Rubik-SemiBold;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #004643;
}

@media screen and (max-width: 768px) {

  .pop_cart .cart_container .all_couting span,
  .pop_cart .cart_container .all_couting p {
    font-size: 18px;
  }

}

.pop_cart .cart_container .buttons_cart {
  width: 100%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pop_cart .cart_container .buttons_cart .cancel_cart {
  background: #F5F5F5;
  color: #959595;
  cursor: pointer;
}

.pop_cart .cart_container .buttons_cart .buy_cart {
  background: #00B3AC;
  color: #FFFFFF;
  cursor: pointer;
  text-decoration: none;
}

.pop_cart .cart_container .buttons_cart .cancel_cart,
.pop_cart .cart_container .buttons_cart .buy_cart {
  gap: 10px;
  position: relative;
  height: 52px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
}

@media screen and (min-width: 0px) {

  .pop_cart .cart_container .buttons_cart .cancel_cart,
  .pop_cart .cart_container .buttons_cart .buy_cart {
    min-width: 100%;
    padding: 10px 20px;
    margin-top: 12px;
  }
}

@media screen and (min-width: 720.75px) {

  .pop_cart .cart_container .buttons_cart .cancel_cart,
  .pop_cart .cart_container .buttons_cart .buy_cart {
    min-width: 150px;
    padding: 16px 20px;
    margin-top: 0px;
  }
}

.product_gen {
  margin-bottom: 24px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.product_gen .info_product {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.product_gen .info_product .img_product {
  width: 100px;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.product_gen .info_product .img_product img {
  width: 100px;
  height: 72px;
  -o-object-fit: contain;
  object-fit: contain;
}

.product_gen .text_cart {
  /* min-width: 50px; */
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin-left: 28px;
  width: 100%;
}

.product_gen .text_cart .title_product {
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: #454545;
  padding-right: 20px;
}

@media screen and (min-width: 0px) {
  .product_gen .text_cart .title_product {
    font-size: 14px;
    width: 90%;
  }
}

@media screen and (min-width: 720.75px) {
  .product_gen .text_cart .title_product {
    font-size: 16px;
    width: 95%;
  }
}

.product_gen .text_cart .param_prod {
  /* min-width: 30px;
  min-width: 30px; */
  margin-top: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.product_gen .text_cart .param_prod .index_count {
  min-width: 110px;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product_gen .text_cart .param_prod .veiwe_count_gen {
  min-width: 36px;
  height: 24px;
  margin: 0 8px;
  padding: 10px;
  background: #F5F5F5;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product_gen .text_cart .param_prod .gen_plus,
.product_gen .text_cart .param_prod .gen_minus {
  /* width: 40px;
  height: 40px; */
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  background: transparent;
}

.product_gen .text_cart .param_prod .gen_plus span,
.product_gen .text_cart .param_prod .gen_minus span {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

}

.product_gen .text_cart .param_prod .gen_plus span {
  background: url(../img/icon/plus.svg) center/contain no-repeat;
}

.product_gen .text_cart .param_prod .gen_minus span {
  background: url(../img/icon/minus.svg) center/contain no-repeat;
}

@media screen and (max-width: 540px) {

  .product_gen .text_cart .param_prod .gen_plus span,
  .product_gen .text_cart .param_prod .gen_minus span {
    width: 24px;
    height: 24px;
  }

}

.product_gen .text_cart .param_prod .price {
  margin-left: 10px;
  min-width: 110px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 30px;
  /* margin-left: 10px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product_gen .text_cart .param_prod .price .price_promotion {
  /* min-width: 80px; */
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #454545;
  margin-top: 10px;
}

.product_gen .text_cart .param_prod .price .price_not_promotion {
  /* min-width: 80px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  margin-left: 5px;
  line-height: 130%;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #959595;
}

@media screen and (max-width: 375px) {
  .product_gen .text_cart .param_prod .price {
    min-width: 20px;
  }

  .product_gen .text_cart .param_prod .price .price_not_promotion {
    font-size: 10px;
  }

  .product_gen .text_cart .param_prod .price .price_promotion {
    font-size: 14px;
  }

}

.product_gen .del_product {
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background: url(../img/icon/trash.svg) center/contain no-repeat;
}

.liner {
  overflow: auto;
  width: 100%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative; */
}

.liner .home_icon {
  width: 25px;
  height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-filter: invert(55%) sepia(69%) saturate(0%) hue-rotate(206deg) brightness(95%) contrast(81%);
  filter: invert(55%) sepia(69%) saturate(0%) hue-rotate(206deg) brightness(95%) contrast(81%);
  background: url(../img/icon/home.svg) center/contain no-repeat;
}

.liner .left_lin_box {
  width: 100%;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap; */
}

@media screen and (max-width: 1024px) {
  .liner .left_lin_box {
    min-width: 100vw;
  }
}

.liner .right_lin_box {
  display: none;
}

.liner .right_arrow {
  -webkit-filter: invert(55%) sepia(69%) saturate(0%) hue-rotate(206deg) brightness(95%) contrast(81%);
  filter: invert(55%) sepia(69%) saturate(0%) hue-rotate(206deg) brightness(95%) contrast(81%);
}

.liner .left_arrow,
.liner .right_arrow {
  width: 15px;
  height: 15px;
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.liner .link_linker {
  min-width: 30px;
}

.liner .back_btn,
.liner .link_linker {
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
}

@media screen and (min-width: 0px) {

  .liner .back_btn,
  .liner .link_linker {
    color: #959595;
  }
}

@media screen and (min-width: 720.75px) {

  .liner .back_btn,
  .liner .link_linker {
    color: #454545;
  }
}

.liner .right_arrow {
  width: 20px;
  height: 20px;
}

.liner .arrow_m_m {
  min-width: fit-content;
  /* min-width: 50px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.liner .back_btn {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-decoration: none;
  color: #454545;
}

@media screen and (min-width: 0px) {
  .none_d_d {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 720.75px) {
  .none_d_d {
    display: none !important;
  }
}

.fixed_box {
  width: 250px;
  z-index: 100;
  height: 100vh;
  padding: 20px;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -o-linear-gradient(45deg, #000, #3f3939);
  background: linear-gradient(45deg, #000, #3f3939);
  left: 0;
  top: 0;
  z-index: 100;
  -webkit-transform: translateX(-250px);
  -ms-transform: translateX(-250px);
  transform: translateX(-250px);
  -webkit-backdrop-filter: drop-shadow(10px 4px 90px blue);
  backdrop-filter: drop-shadow(10px 4px 90px blue);
}

.btn_fix {
  position: absolute;
  width: 20px;
  height: 50px;
  top: 50%;
  right: -20px;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: Rubik-Bold;
  font-size: 25px;
  color: #b0aeae;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
  background-color: rgba(34, 30, 49, 0.4549019608);
}

.title_fix {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.title_fix p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ebc882;
  font-family: Rubik-Bold;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

.title_fix span {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-family: Rubik-Bold;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
}

.links_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.links_box a {
  width: 100%;
  height: 40px;
  font-family: Rubik-SemiBold;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-radius: 8px;
}

.links_box a:hover {
  width: 100%;
  height: 40px;
  font-family: Rubik-SemiBold;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fcfcfc;
  text-decoration: none;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border: 2px solid #25d1d1;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-radius: 8px;
}

.buy_one_click_message {
  font-family: Rubik-Medium;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color: #454545;
  margin-top: 0px;
  margin-bottom: 30px;
}

.top_ge .favorites_active {
  position: relative;
}

.favorites_active {
  background: url(../img/icon/heart_hover.svg) center/contain no-repeat;
}

.favorites,
.favorites_active {
  margin-left: 1vw;
  min-width: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  /* position: absolute; */
  /* left: 0; */
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.favorites {
  background: url(../img/icon/heart.svg) center/contain no-repeat;
}

.favorites:hover {
  /* width: 25px;
  height: 22px; */
  cursor: pointer;
  /* position: absolute;
  left: 0; */
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  /* background: url(../img/icon/heart_hover.svg) center/contain no-repeat; */
}

@media screen and (max-width: 520px) {}

.line_cart_favorites {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-top: 12px;
}

@media screen and (min-width: 0px) {
  .line_cart_favorites {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 400px) {
  .line_cart_favorites {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 521px) {
  .line_cart_favorites {
    margin-top: 4px;
  }

}

.heart_active {
  width: 25px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  background: url(../img/icon/heart_hover.svg) center/contain no-repeat;
}

.not-p {
  background: #dededef5 !important;
  font-family: Rubik-Medium;
  color: #31303097;
  font-size: 14px;
}

.added_cart {
  background: #00b38b !important;
}

.cart_btn--done .cart_icon {
  background-image: url('../img/icon/done_icon.svg');
}

.added_cart .cart_icon {
  position: relative !important;
}

.added_cart .cart_icon::before {
  content: "";
  width: 12px;
  height: 12px;
  transform: translateX(19px) translateY(-4px);
  display: flex;
  border-radius: 50%;
  background: #fff;
  position: absolute;
}

.added_cart .cart_icon::after {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  transform: translateX(22px) translateY(-2px);
  position: absolute;
  background: #00b3ac;
  -webkit-clip-path: polygon(45% 64%, 84% 14%, 100% 28%, 47% 100%, 0 49%, 15% 32%);
  clip-path: polygon(45% 64%, 84% 14%, 100% 28%, 47% 100%, 0 49%, 15% 32%);
}

img {
  font-size: 12px;
}

form.review_form {
  margin: 0 auto;
  justify-content: center;
  display: flex;
}

.preloader {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  background: #000000b3;
  z-index: 100;
  border-radius: 8px;
}

.loading-icon {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #136cb5, #9433fde9);
  border-radius: 10px;
  box-shadow: -2px 3px 5px #000000b3;
  position: relative;
}

.box-load {
  width: 80%;
  height: 80%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  animation: rotate_loaded 1.2s ease infinite;
}

@keyframes rotate_loaded {
  to {
    transform: rotate(360deg);
  }

  from {
    transform: rotate(0deg);
  }
}

.ui-slider .ui-slider-handle {
  width: 1em !important;
  height: 1em !important;
  transform: translateY(-2px) !important;
}

.ui-slider-horizontal {
  height: 0.5em !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #00b3ac !important;
  font-weight: normal;
  color: #454545;
  border-radius: 50% !important;
}

.input_in_select,
.search-select,
.search_nasp {
  width: 100%;
  height: 46px;
  position: relative;
  font-family: Rubik-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #181818;
  border: 2px solid #F5F5F5;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px 0 10px;
  outline: none;
}

.inp_step:hover+label,
.inp_step:active+label,
.inp_step:valid+label,
.email:hover+label,
.email:active+label,
.email:valid+label {
  transition: 0.5s ease;
  transform: translateY(0px) translateX(22px);
  font-size: 14px;
}

form {
  position: relative;
}

.box-load i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
}

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

.error__container {
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* height: 100%; */

}

.error__img {
  width: 281px;
  height: 319px;
  background: url('../img/error/404.png');
}

.error__subheading {
  margin-top: 12px;
}

.error__text {
  margin-top: 14px;
}

.error__btn {
  margin-top: 14px;
}

.catalog-btn.btn-disabled,
.btn.btn-disabled {
  width: 100%;
  margin: 0;
  justify-content: center;
  display: flex !important;
  text-transform: uppercase;

}

/* Header checkout */

.order_container {
  margin-top: 10vh;
}

.header__checkout {
  position: absolute;
  z-index: 3;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  background-color: #fff;
  box-shadow: 0px 2px 2px rgb(50 50 71 / 6%), 0px 2px 4px rgb(50 50 71 / 6%);
  border-radius: 0 0 9px 9px;
}

.header_checkout__container {
  justify-content: space-between;
  display: flex;
  align-items: center;
  flex-direction: row;
}

@media screen and (max-width: 1239px) {
  .header_checkout__container {
    width: 95%;
  }

}

.header__logo {
  width: 10vw;
  height: 2vw;
  background: url(../img/icon/logo.svg) center/contain no-repeat;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    width: 15vw;
    height: 3vw;
  }

}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 25vw;
    height: 5vw;
  }

}

.header__numbs {
  display: flex;
  align-items: center;

}

@media screen and (max-width: 768px) {
  .header__numbs {
    display: flex;
    flex-direction: column;
  }

}

.link--tel {
  display: flex;
  align-items: center;
  font-size: .9em;
  margin-right: 16px;
  color: #000;
}

.link--tel:hover {
  color: #00D8CF;
  transition: all .3s ease;
}

.link--tel .vodafone {
  background: url('../img/icon/operator/vodafone.svg') center/contain no-repeat;
}

.link--tel .kievstar {
  background: url('../img/icon/operator/kievstar.png') center/contain no-repeat;
}


.header__numbs :last-child {
  margin-right: 0;
}

.link--tel span {
  width: 20px;
  height: 20px;
  margin-right: 8px !important;
}

@media screen and (max-width: 768px) {
  .link--tel {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .header__numbs :last-child {
    margin-bottom: 0;
  }
}

/* FOOTER NEW */

.footer {
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  padding: 2rem 0;
}

.footer__wrapper {
  flex-wrap: wrap;
}

.footer .wrapper-set {
  flex-direction: row !important;
}

.social__text,
.footer__link {
  font-weight: 400;
  font-size: 1.2em;
  color: #454545;
}

.social__text {
  margin-top: 26px;
}

.footer__link {
  text-decoration: none;
}

.footer__link--col {
  margin-bottom: 8px;
}

.social__img_wrapper {
  margin-top: 8px;
  display: flex;
}

.logo {
  width: 120px;
  height: 20px;
  background: url('../img/icon/logo.svg') center/contain no-repeat !important;
}

.footer__img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}

.footer__heading,
.contact__link,
.contact__subheading {
  font-family: 'Rubik-Medium';
  font-weight: 500;
  color: #454545;
}

.footer__heading {
  font-size: 1.6em;
  margin-bottom: 22px;
  margin-top: 0;
}

.footer__link--facebook,
.footer__link--instagram {
  width: 16px;
  height: 16px;
}

.footer__link--facebook {
  background: url('../img/icon/facebook.svg') center/contain no-repeat;
}

.footer__link--instagram {
  background: url('../img/icon/instagram.svg') center/contain no-repeat;
}

.footer__link--visa {
  background: url('../img/icon/logo_visa.svg') center/contain no-repeat;
}

.footer__link--mastercard {
  background: url('../img/icon/mc-logo-52.svg') center/contain no-repeat;
}

.footer__link--vodafone {
  background: url('../img/icon/operator/vodafone.svg') center/contain no-repeat;
}

.footer__link--kievstar {
  background: url('../img/icon/operator/kievstar.png') center/contain no-repeat;
}

@media screen and (max-width: 1024px) {
  .footer .wrapper-set {
    justify-content: space-between;
  }


}

.list-menu-desktop .wrapper-set {
  z-index: 13;
}

.wrapper-set--header {
  flex-direction: row;
}

.contact__link {
  display: flex;
  align-items: center;
  font-size: 1.4em;
  margin-bottom: 8px;
}

.contact__subheading {
  margin-top: 10px;
  font-size: 1.2em;
}

.contact__time {
  margin-top: 10px;
  display: flex;
  width: 70%;
  justify-content: space-between;
}

.contact__time p {
  font-size: 1.2em;
}

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

.footer__col {
  max-width: 135px;
  margin-right: 27px;
  display: flex;
  flex-direction: column;
}

.footer__col:last-child {
  margin-right: 0;
}

.footer__link:hover {
  color: #00D8CF;
  transition: all 0.4s ease;
}

.social,
.contact,
.clients,
.catalog {
  margin-right: 20px;
}

@media screen and (max-width: 1024px) {
  .footer__heading {
    margin-top: 2em;
  }

  .footer__container,
  .footer__container .footer__col,
  .footer__container .footer__col a {
    display: block !important;
  }
}

.footer__license {
  margin-top: 16px;
}

@media screen and (max-width: 540px) {
  .footer .footer__container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}


/* ALTERNATIVE CATALOG */

.catalog_menu {
  display: none;
  z-index: 30;
  left: 10%;
  top: 100%;
  position: absolute;
  width: fit-content;
  height: fit-content;
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px;
  box-shadow: 0px 2px 6px rgb(50 50 71 / 15%), 0px 2px 6px rgb(50 50 71 / 15%);
}

.catalog_menu__list {
  display: flex;
  flex-direction: column;
}

.catalog_menu__list li {
  display: flex;
  margin-top: 16px;
}

.catalog_menu__list :first-child {
  margin-top: 0;
}

.catalog_menu__btn {
  text-align: left;
  border: none;
  background: none;
  font-family: 'Rubik-Regular';
  color: #454545;
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  margin-left: 16px;
}

.catalog_menu__img {
  width: 35px;
  height: 35px;
  background-size: contain;
}

.catalog_menu__img--fridge {
  background: url('../img/icon/fridge.svg') center/contain no-repeat;
}

.catalog_menu__img--freezer {
  background: url('../img/icon/freezer.svg') center/contain no-repeat;
}

.catalog_menu__img--washing-machine {
  background: url('../img/icon/washing-machine.svg') center/contain no-repeat;
}

.catalog_menu__img--conditioner {
  background: url('../img/icon/air-conditioner.svg') center/contain no-repeat;
}

.catalog_menu__img--vacuum {
  background: url('../img/icon/vacuum-cleaner.svg') center/contain no-repeat;
}

.catalog_menu__img--cinema {
  background: url('../img/icon/cinema.svg') center/contain no-repeat;
}

.catalog_menu__img--tv {
  background: url('../img/icon/tv.svg') center/contain no-repeat;
}

.catalog_menu__img--microwave {
  background: url('../img/icon/microwave.svg') center/contain no-repeat;
}


.catalog_menu__btn:hover {
  color: #00D8CF;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .catalog_menu {
    display: none;
  }

}

.list-menu-desktop .line-gray,
.lang_menu .line-gray {
  width: 20px;
  transform: rotate(90deg);
}

.link_lang {
  text-transform: uppercase;
}

.link_lang--selected {
  color: #00B3AC;
}

.lang_menu {
  margin-top: 16px;
  display: flex;
}

/* CATALOG MENU MOBILE */

.catalog_menu__list--mob {
  display: flex;
}

@media screen and (max-width: 1024px) {
  .catalog_menu__btn {
    font-size: 14px;
  }

  .catalog_menu__img {
    width: 25px;
    height: 25px;
  }
}

/* FEEDBACKS WINDOW */
.after_send_coment {
  display: flex;
  justify-content: center;
}

.show_message {
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-family: 'Rubik-Medium';
  color: #454545;
}

.check {
  width: 30px;
  height: 30px;
  background: url('../img/icon/check.svg') center/contain no-repeat;
  margin-left: 16px;
}

.after_send_comment {
  display: none;
}


/* SORT FILTER */
.sort-by-product-area {
  width: 100%;
  display: flex;
  justify-content: end;
  /* flex-wrap: wrap; */

}

.sort-by-cover {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: end;
}

/* @media screen and (max-width: 559px) {

  .sort-by-cover {
    margin-bottom: 10px;
  }
} */

@media screen and (max-width: 420px) {

  .sort-by-cover {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .sort-by-product-area {
    flex-direction: column;

  }


}

.sort-by-product-wrap {
  margin-right: 16px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #454545;
  padding: 0px 0px 0px 0px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-left: 15px;
  padding-right: 12px;
  height: 50px;
  width: fit-content;
}

.sort-by-product-wrap--count {
  min-width: 150px;

}

.sort-by-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  right: 0;
  padding: 16px 0 21px;
  background: #fff;
  border: 0;
  border-radius: 5px;
  /* visibility: hidden; */
  width: 90%;
  -webkit-box-shadow: 0 -3px 23px rgb(0 0 0 / 6%);
  box-shadow: 0 -3px 23px rgb(0 0 0 / 6%);
  color: #4f5d77;
  font-weight: 500;
}

.sort-by-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0px 16px;
}

.sort-by-dropdown li {
  margin-bottom: 16px;
}

.sort-by-dropdown a:hover {
  color: #00D8CF;
  transition: all 0.2s ease-in-out;
}

.sort-by-dropdown a {
  color: #454545;
}


.sort-by-dropdown ul :last-child {
  margin: 0;
}

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

.sort-by-dropdown-wrap .arrow_down {
  display: flex;
  width: 20px;
  height: 20px;
  background: url('../img/icon/chevron-down_select.svg') center/contain no-repeat;
}

.fa-sort-amount-down {
  margin-right: 6px;
  display: flex;
  width: 20px;
  height: 20px;
  background: url('../img/icon/sort-down.svg') center/contain no-repeat;
}


@media screen and (max-width: 768px) {
  .sort-by-product-wrap {
    height: 40px;
    font-size: 14px;
    min-width: 200px;
  }

  .sort-by-product-wrap--count {
    min-width: 150px;

  }

  .sort-by-dropdown {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 420px) {

  .sort-by-product-wrap {
    min-width: 80%;
    margin-right: 0;
  }

  .sort-by-dropdown {
    width: 85%;
    left: 8%;
  }

}

/* SEARCH PAGE */

.search-wrapper h1 {
  margin: 16px 0;
}

.search-wrapper .sort-by-product-wrap {
  background: none;
}

.search-wrapper .totall-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-wrapper .totall-product div {
  font-family: 'Rubik-Medium';
  color: #454545;
}

.search-wrapper {
  display: flex;
  justify-content: center;
}

.search__wrapper-set {
  display: flex;
  flex-direction: column;
}

.search-wrapper .rating {
  flex-wrap: wrap;
}

@media screen and (max-width: 1241px) {
  .search__wrapper-set {
    width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  .search__wrapper-set {
    width: 95%;
  }
}

/* CATALOG */
.catalog_container {
  display: flex;
  justify-content: center;
  background: #F7FBF9;
}

@media screen and (max-width: 420px) {
  .pos h1 {
    margin-bottom: 14px;
  }
}

/* FILTER */

.abs_pos_filter {
  height: 100vh;
  overflow: auto;
}

.filter_param {
  max-width: 300px;
  /* height: 100%; */
  background: #fff;
  padding: 24px 16px;
  border-radius: 8px;
}

.box_parameters {
  margin-bottom: 8px;
}

.filter_param :last-child {
  margin-bottom: 0;
}

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


@media screen and (max-width: 1024px) {
  .filter_param {
    min-width: 100%;
  }
}
