@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter_24pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter_24pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter_24pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter_24pt-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --font-family: "Inter", sans-serif;
  --blue: #194c81;
  --light-blue: #bddeff;
  --black: #06294d;
  --white: #fdfdfd;
  --grey: rgba(6, 41, 77, 0.6);
}

html,
body {
  height: 100%;
}

body {
  background-color: #fff;
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
}

.noscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  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;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.top-box {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  margin-bottom: clamp(16px, 3.2vw, 32px);
}

.title {
  font-weight: 600;
  font-size: clamp(20px, 2.933vw, 24px);
  line-height: 133%;
  text-align: center;
  color: #000;
}

.pretitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #46546e;
}

.btn2 {
  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-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
  padding: 14px 24px;
  background: #1983e7;
  border-radius: 12px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn2:hover {
  background: #2291f9;
}

.btn-primary {
  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-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  background: #1983e7;
  border-radius: 12px;
  border: none;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-primary:hover {
  background: #2291f9;
}
.btn-primary--black {
  background: #000;
}
.btn-primary--black:hover {
  background: #000;
  opacity: 0.8;
}
.btn-primary--gray {
  background: #242628;
}
.btn-primary--gray:hover {
  background: #242628;
  opacity: 0.8;
}

.btn-white {
  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-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
  padding: 10px 20px;
  border: 1px solid #dee1e6;
  background: #fff;
  border-radius: 12px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-white:hover {
  background: #2291f9;
  border-color: #2291f9;
  color: #fff;
}

.header .header-top {
  background: var(--blue);
  padding: 8px 0;
}
.header .header-top__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .header-top__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .header-top .htop-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: var(--white);
  border-right: 1px solid #30669e;
  padding-right: 12px;
  margin-right: 12px;
}
.header .header-top .htop-info-item:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.header .header-top .h-tel {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.header .header-top .h-tel::before {
  content: "";
  position: relative;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  background-image: url(/img/icons/Device.svg);
}
.header .header-top .h-tel:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header .header-top__info {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .header-top .h-tel,
  .header .header-top .h-discount {
    display: none;
  }
  .header .header-top .h-delivery {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    text-align: center;
  }
}
.header .header-main {
  padding-top: 12px;
  padding-bottom: 16px;
  background: #fff;
  border-bottom: 1px solid #f1f2f4;
}
.header .header-main__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}
@media (max-width: 1200px) {
  .header .header-main__box {
    gap: 24px;
  }
}
.header .header-main .h-section1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media (max-width: 1200px) {
  .header .header-main .h-section1 {
    gap: 24px;
  }
}
.header .header-main .header-main-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1200px) {
  .header .header-main .header-main-menu__list {
    gap: 12px;
  }
}
.header .header-main .header-main-menu__list li {
  padding: 8px 0;
}
.header .header-main .header-main-menu__list li:hover > a {
  color: #1983e7 !important;
}
.header .header-main .header-main-menu__list a {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .header-main .header-main-menu .has-submenu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  cursor: pointer;
}
.header .header-main .header-main-menu .has-submenu::after {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background-image: url(/img/icons/Navigation.svg);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .header-main .header-main-menu .has-submenu:hover::after {
  background-image: url(/img/icons/Navigation-active.svg) !important;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.header .header-main .header-main-menu .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.header .header-main .header-main-menu .submenu {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  position: absolute;
  top: 100%;
  z-index: 6;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  width: 200px;
  display: -ms-grid;
  display: grid;
  gap: 4px;
}
.header .header-main .header-main-menu .submenu li {
  padding: 0;
}
.header .header-main .header-main-menu .submenu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: #000;
  padding: 4px;
}
.header .header-main .h-section2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 48px;
  width: 100%;
}
@media (max-width: 1200px) {
  .header .header-main .h-section2 {
    gap: 12px;
  }
}
.header .header-main .header-search {
  width: 100%;
  max-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .header-main .header-search input {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: #000;
  padding: 8px 12px;
  background: #f0f2f7;
  border-radius: 8px;
  border: none;
  width: 100%;
}
.header .header-main .header-search input::-webkit-input-placeholder {
  color: #7b8290;
}
.header .header-main .header-search input::-moz-placeholder {
  color: #7b8290;
}
.header .header-main .header-search input:-ms-input-placeholder {
  color: #7b8290;
}
.header .header-main .header-search input::-ms-input-placeholder {
  color: #7b8290;
}
.header .header-main .header-search input::placeholder {
  color: #7b8290;
}
@media (max-width: 992px) {
  .header .header-main .header-search {
    display: none;
  }
}
.header .header-main .header-search-mobile {
  display: none;
}
.header .header-main .h-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1200px) {
  .header .header-main .h-btns {
    gap: 8px;
  }
}
.header .header-main .liked,
.header .header-main .profile,
.header .header-main .cart {
  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;
  padding: 6px;
  border: none;
  background-color: transparent;
}
.header .header-main .liked svg path,
.header .header-main .profile svg path,
.header .header-main .cart svg path {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .header-main .liked:hover svg path,
.header .header-main .profile:hover svg path,
.header .header-main .cart:hover svg path {
  fill: #1983e7;
}
.header .mobile-menu-btn {
  display: none;
}
.header .mobile-menu-top {
  display: none;
}
@media (max-width: 768px) {
  .header .header-main-menu-wrap {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 42, 77, 0);
    padding-left: 30px;
    left: 120vw;
    -webkit-transition: left 0.33s ease, background 0.33s ease 0.2s;
    transition: left 0.33s ease, background 0.33s ease 0.2s;
  }
  .header .header-main-menu-wrap.active {
    left: 0;
    background: rgba(6, 42, 77, 0.6);
    -webkit-transition: left 0.23s ease, background 0.23s ease 0.2s;
    transition: left 0.23s ease, background 0.23s ease 0.2s;
  }
  .header .header-main-menu-wrap .header-main-menu {
    background-color: #fff;
    height: 100%;
    overflow: scroll;
    padding-top: 50px;
    position: relative;
  }
  .header .header-main-menu-wrap .header-main-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    gap: 4px;
  }
  .header .header-main-menu-wrap .header-main-menu__list li {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
  }
  .header .header-main-menu-wrap .header-main-menu .has-submenu {
    -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;
  }
  .header .header-main-menu-wrap .header-main-menu .has-submenu::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    position: absolute;
    right: 0;
  }
  .header .header-main-menu-wrap .header-main-menu .submenu {
    position: relative;
    opacity: 1;
    visibility: visible;
    min-width: 100%;
    max-width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: none;
    gap: 10px;
  }
  .header .header-main-menu-wrap .header-main-menu .has-submenu:hover .submenu {
    display: -ms-grid;
    display: grid;
  }
  .header .header-main-menu-wrap .header-search-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
  }
  .header .header-main-menu-wrap .mobile-menu-top {
    position: absolute;
    z-index: 10;
    top: 0;
    width: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #dfe6ee;
  }
  .header .header-main-menu-wrap .mobile-menu-top__logo img {
    width: 67px;
  }
  .header .header-main-menu-wrap .mobile-menu-top__close {
    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: none;
    padding: 0;
  }
  .header .liked {
    display: none !important;
  }
  .header .mobile-menu-btn {
    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;
    cursor: pointer;
    border: 1px solid #dee1e6;
    border-radius: 8px;
    padding: 6px;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
  }
}

.header-cart {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 50;
  top: 0;
  bottom: 0;
  left: 130vw;
  right: 0;
  -webkit-transition: left 0.43s ease;
  transition: left 0.43s ease;
  -webkit-transition-delay: 0.23s;
          transition-delay: 0.23s;
}
.header-cart__wrap {
  background-color: rgba(6, 42, 77, 0);
  width: 100%;
  height: 100%;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.header-cart.active {
  left: 0;
  -webkit-transition: left 0.23s ease;
  transition: left 0.23s ease;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.header-cart.active .header-cart__wrap {
  background-color: rgba(6, 42, 77, 0.6);
  -webkit-transition-delay: 0.23s;
          transition-delay: 0.23s;
}
.header-cart__box {
  background-color: #fff;
  min-width: 400px;
  max-width: 400px;
  height: 100vh;
  right: 0;
  position: absolute;
  padding-top: 48px;
}
@media (max-width: 576px) {
  .header-cart__box {
    min-width: calc(100% - 30px);
    max-width: calc(100% - 30px);
  }
}
.header-cart__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.header-cart__close {
  cursor: pointer;
  border: none;
  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;
  background: none;
  padding: 0;
}
.header-cart .header-cart-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  min-width: 400px;
  max-width: 400px;
  top: 0;
  right: 0;
  height: 48px;
  background-color: #fff;
  border-bottom: 1px solid #dfe6ee;
  padding: 12px 20px;
}
@media (max-width: 576px) {
  .header-cart .header-cart-top {
    min-width: 100%;
    max-width: 100%;
  }
}

.h-cart-empty {
  height: 100%;
  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;
}
.h-cart-empty__box {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.h-cart-empty__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #000;
  margin-bottom: 4px;
}
.h-cart-empty p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #46546e;
  margin-bottom: 20px;
}
.h-cart-empty__starshopping {
  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;
  padding: 10px 20px;
  border: 1px solid #dee1e6;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.h-cart-empty__starshopping:hover {
  background: #1983e7;
  color: #fff;
  border-color: #1983e7;
}

.h-cart-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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  gap: 48px;
  overflow: auto;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  padding: 20px;
}
.h-cart-content::-webkit-scrollbar {
  width: 0;
}
.h-cart-content .h-cart-list {
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
.h-cart-content .h-cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #f3f9ff;
  border-radius: 8px;
  position: relative;
}
.h-cart-content .h-cart-item__image {
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  max-height: 56px;
  border: 1px solid #e3e7eb;
  border-radius: 12px;
  background-color: #fff;
  padding: 4px;
}
.h-cart-content .h-cart-item__image img {
  width: 100%;
}
.h-cart-content .h-cart-item__title {
  padding-right: 30px;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #000;
}
.h-cart-content .h-cart-item__title a {
  padding-right: 30px;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #000;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.h-cart-content .h-cart-item__title a:hover {
  color: #1983E7;
}
.h-cart-content .h-cart-item__details {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #6f81a1;
}
.h-cart-content .h-cart-item__remove {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0px;
  border: none;
  background-color: transparent;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.h-cart-content .h-cart-item__remove:hover {
  opacity: 0.5;
}
.h-cart-content .h-cart-item__bottom {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.h-cart-content .h-cart-item .h-cart-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e5e8ed;
  border-radius: 8px;
  background: #fff;
  padding: 6px 12px;
}
.h-cart-content .h-cart-item .h-cart-counter .counter-minus {
  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;
  padding: 0;
}
.h-cart-content .h-cart-item .h-cart-counter input {
  width: 23px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
  text-align: center;
  border: none;
  background: transparent;
}
.h-cart-content .h-cart-item .h-cart-counter input::-webkit-outer-spin-button,
.h-cart-content .h-cart-item .h-cart-counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.h-cart-content .h-cart-item .h-cart-counter .counter-pluse {
  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;
  padding: 0;
}
.h-cart-content .h-cart-item__sum {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  color: #000;
}
.h-cart-content__bottom .h-cart-summary-block {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.h-cart-content__bottom .h-cart-products,
.h-cart-content__bottom .h-cart-delivery,
.h-cart-content__bottom .h-cart-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.h-cart-content__bottom .h-cart-products .h-cart-summary-value {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: #000;
}
.h-cart-content__bottom .h-cart-delivery .h-cart-summary-value {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: #1ea547;
}
.h-cart-content__bottom .h-cart-summary .h-cart-summary-value {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: #000;
}
.h-cart-content__bottom .h-cart_minttl {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}
.h-cart-content__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.h-cart-content__btns a, .h-cart-content__btns button {
  width: 100%;
}

.footer {
  background: #051f3a;
  margin-top: clamp(32px, 5.333vw, 48px);
}

.footer-main {
  padding: 48px 0 96px 0;
  border-bottom: 1px solid #0f4174;
}
.footer-main p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}
.footer-main__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 992px) {
  .footer-main__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer-main {
    padding: 16px 0;
  }
}

.footer-col {
  width: 100%;
  max-width: 320px;
}
@media (max-width: 768px) {
  .footer-col {
    min-width: 100%;
    max-width: 100%;
  }
}

.footer-col-first p {
  max-width: 248px;
}
@media (max-width: 992px) {
  .footer-col-first {
    min-width: 100%;
    max-width: 100%;
  }
}

.footer-logo {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .footer-logo {
    margin-bottom: 16px;
  }
  .footer-logo img {
    width: 77px;
  }
}

.footer-col-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  max-width: 440px;
}
.footer-col-menus .footer-menu {
  width: 200px;
}
@media (max-width: 1200px) {
  .footer-col-menus {
    max-width: 360px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer-col-menus {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .footer-col-menus .footer-menu {
    width: 100%;
  }
}

.footer-menu__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  margin-bottom: 12px;
}
.footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.footer-menu ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #8a9ab8;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.footer-menu ul li a:hover {
  color: #fff;
}

.footer-contacts {
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
.footer-contacts a {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
}
.footer-contacts a:hover {
  text-decoration: underline;
}
.footer-contacts p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
}

.footer-bottom {
  padding: 16px 0;
}
.footer-bottom__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}
@media (max-width: 1360px) {
  .footer-bottom__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 992px) {
  .footer-bottom__box {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer-bottom__box {
    gap: 16px;
  }
}
.footer-bottom p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #8a9ab8;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px;
}
.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media (max-width: 992px) {
  .footer-nav ul {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.footer-nav a {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: #8a9ab8;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-nav .sitecreator {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: #8a9ab8;
}
.footer-nav .sitecreator a {
  font-weight: 500;
  text-decoration: underline;
  color: #fff;
}
.footer-nav .sitecreator a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer-nav {
    -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;
    gap: 16px;
  }
}

.hero-banner {
  margin-top: 24px;
}
.hero-banner__box {
  border-radius: 16px;
  width: 100%;
  height: 500px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(/img/main_banner.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .hero-banner__box {
    padding-top: 24px;
  }
}
@media (max-width: 768px) {
  .hero-banner__box {
    height: 466px;
    background-position: top center;
  }
}
@media (max-width: 370px) {
  .hero-banner__box {
    height: 430px;
  }
}
.hero-banner__logo {
  position: absolute;
  left: 50px;
  top: 50px;
}
@media (max-width: 992px) {
  .hero-banner__logo {
    left: 0;
    right: 0;
    top: 0;
    position: relative;
    margin-bottom: 24px;
  }
}
.hero-banner__title {
  margin-bottom: 24px;
  padding: 4px 12px;
  background: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(20px, 3.2vw, 28px);
  line-height: 129%;
  letter-spacing: -0.04em;
  color: #001f47;
  text-align: center;
}
.hero-banner p {
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 144%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #001f47;
}
.hero-banner__mobile {
  display: none;
}
@media (max-width: 576px) {
  .hero-banner__box {
    background-position: center;
    background-size: cover;
    background-image: url(/img/materialimage-mobile.webp);
  }
  .hero-banner__logo {
    position: relative;
  }
}

.products-section {
  padding-top: clamp(16px, 2.667vw, 24px);
  padding-bottom: clamp(16px, 2.667vw, 24px);
}
.products-section__box {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .products-section__box {
    gap: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    overflow: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    position: relative;
    left: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .products-section__box::-webkit-scrollbar {
    width: 0;
  }
}
@media (max-width: 768px) {
  .products-section__box {
    left: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.product-card {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 24px 0 rgba(189, 222, 255, 0.04);
          box-shadow: 0 10px 24px 0 rgba(189, 222, 255, 0.04);
}
@media (max-width: 992px) {
  .product-card {
    min-width: 320px;
    max-width: 320px;
  }
}
@media (max-width: 389px) {
  .product-card {
    min-width: 80vw;
    max-width: 80vw;
  }
}
.product-card__top {
  position: relative;
}
.product-card__labels {
  position: absolute;
  left: 20px;
  top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.product-card .prod-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  padding: 4px 8px;
  border-radius: 8px;
}
.product-card .prod-label--blue {
  background: #d0e8ff;
  color: #1983e7;
}
.product-card .prod-label--darkblue {
  background: #1983E7;
  color: #fff;
}
.product-card .prod-label--green {
  background: #1EA581;
  color: #085959;
}
.product-card .prod-label--yellow {
  background: #E5E96F;
  color: #000;
}
.product-card__image {
  padding: 20px;
  height: 374px;
  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;
  background: #f1f3f5;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .product-card__image {
    height: 270px;
  }
}
@media (max-width: 992px) {
  .product-card__image {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .product-card__image {
    height: 284px;
  }
}
.product-card__image img {
  width: 100%;
  -webkit-transition: 1s;
  transition: 1s;
}
.product-card__image:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.product-card__content {
  padding: 20px;
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
.product-card__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.product-card__name a {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.product-card__name a:hover {
  color: #1983E7;
}
.product-card__rating {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #9da3ae;
}
.product-card__sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.product-card .size-itm {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #7b8290;
  background: #f1f2f4;
  padding: 4px 8px;
  border-radius: 8px;
}
.product-card__price {
  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;
  gap: 8px;
}
.product-card .product-price {
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  color: #000;
}
.product-card .product-price-old {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-decoration: line-through;
  color: #9da3ae;
}
.product-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.product-card__bottom .btn-add-to-cart {
  width: 50%;
}
.product-card__bottom .btn-fast-order {
  width: 50%;
}
@media (max-width: 1200px) {
  .product-card__bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .product-card__bottom .btn-add-to-cart {
    width: 100%;
  }
  .product-card__bottom .btn-fast-order {
    width: 100%;
  }
}

.btn-add-to-cart {
  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;
  gap: 4px;
  border: 1px solid #dee1e6;
  border-radius: 12px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
  background-color: transparent;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-add-to-cart svg path {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-add-to-cart:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.btn-add-to-cart:hover svg path {
  fill: #fff;
}

.btn-fast-order {
  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;
  gap: 4px;
  border-radius: 12px;
  padding: 10px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
  background: #1983e7;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-fast-order:hover {
  background: #2291f9;
}

.products-popular .product-card:nth-child(1) .product-card__image {
  background: linear-gradient(135deg, #073463 0%, #010d1a 100%) !important;
}
.products-popular .product-card:nth-child(2) .product-card__image {
  background: linear-gradient(136deg, #5397de 0%, #194c81 100%) !important;
}
.products-popular .product-card:nth-child(3) .product-card__image {
  background: linear-gradient(135deg, #bddeff 0%, #397bbc 100%) !important;
}

.why {
  padding-top: clamp(16px, 2.667vw, 24px);
  padding-bottom: clamp(16px, 2.667vw, 24px);
}
.why__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) {
  .why__box {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .why__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
.why .why-item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid #dfe6ee;
  border-radius: 12px;
}
.why .why-item__image {
  background: #e8f3fd;
  border-radius: 12px;
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  max-height: 56px;
  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;
}
.why .why-item__image img {
  width: 32px;
}
.why .why-item__content {
  display: -ms-grid;
  display: grid;
  gap: 4px;
}
.why .why-item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.why .why-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}
@media (max-width: 768px) {
  .why .why-item {
    padding: 12px;
    gap: 16px;
  }
}

.banner-help__box {
  padding: 48px;
  background-color: #eef6fe;
  background-image: url(/img/clouds.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  overflow: hidden;
  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: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-help__box .top-box {
  margin-bottom: 24px;
  max-width: 400px;
}
@media (max-width: 768px) {
  .banner-help__box {
    padding: 48px 24px;
  }
}

.video-reviews {
  padding-top: clamp(16px, 2.667vw, 24px);
  padding-bottom: clamp(16px, 2.667vw, 24px);
}
.video-reviews__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .video-reviews__box {
    gap: 12px;
  }
}
@media (max-width: 992px) {
  .video-reviews__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: auto;
    width: 100vw;
    left: -24px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 24px;
    padding-right: 24px;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
  }
  .video-reviews__box::-webkit-scrollbar {
    width: 0;
  }
}
@media (max-width: 768px) {
  .video-reviews__box {
    padding-left: 16px;
    padding-right: 16px;
    left: -16px;
  }
}

.video-rev__box {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  height: 400px;
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.video-rev__box:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
@media (min-width: 992px) and (max-width: 1200px) {
  .video-rev__box {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .video-rev__box {
    width: 250px;
  }
}
.video-rev__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}
.video-rev__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-rev__image::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(48.25%, rgba(6, 41, 77, 0)), color-stop(93%, rgba(6, 41, 77, 0.7)));
  background: linear-gradient(180deg, rgba(6, 41, 77, 0) 48.25%, rgba(6, 41, 77, 0.7) 93%);
}
.video-rev__content {
  position: absolute;
  padding: 20px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .video-rev__content {
    padding: 20px 10px;
  }
}
.video-rev .video-rev-client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.video-rev .video-rev-client__image {
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 100px;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
}
.video-rev .video-rev-client__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.video-rev .video-rev-client__nikname {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .video-rev .video-rev-client__nikname {
    font-size: 12px;
  }
}
.video-rev__prevtxt {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-rev .video-rev-popup {
  display: none;
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.video-rev .video-rev-popup.active {
  display: block;
}
.video-rev .video-rev-popup__wrap {
  width: 100%;
  height: 100%;
  background-color: rgba(6, 42, 77, 0.6);
  overflow: auto;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 16px;
}
.video-rev .video-rev-popup__box {
  width: 100%;
  max-width: 700px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
  padding-top: 20px;
}
.video-rev .video-rev-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.video-rev .video-rev-popup__content {
  padding: 40px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.video-rev .video-rev-popup__video {
  width: 100%;
}
.video-rev .video-rev-popup__video iframe {
  border-radius: 16px;
  width: 100%;
  height: 400px;
}
.video-rev .video-rev-popup__main {
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
.video-rev .video-rev-popup__main p {
  font-weight: 400;
  font-size: 16px;
  line-height: 143%;
  color: #000;
}
@media (max-width: 576px) {
  .video-rev .video-rev-popup__content {
    padding: 20px;
    padding-bottom: 40px;
  }
  .video-rev .video-rev-popup__video iframe {
    height: 300px;
  }
}

.banner1 {
  padding-top: clamp(16px, 2.667vw, 24px);
}
.banner1__box {
  background: linear-gradient(134deg, #ecf7ff 0%, #a3d1f3 100%);
  padding: 48px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
.banner1__content {
  max-width: 366px;
  position: relative;
  z-index: 3;
  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;
}
.banner1__title {
  font-weight: 600;
  font-size: clamp(24px, 4.533vw, 48px);
  line-height: 117%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 8px;
}
.banner1 p {
  margin-bottom: clamp(22px, 4.4vw, 44px);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #4a5771;
}
.banner1__image {
  position: absolute;
  right: 45px;
  top: -50px;
}
@media (max-width: 1200px) {
  .banner1__image {
    top: -10px;
  }
  .banner1__image img {
    width: 450px;
  }
}
@media (max-width: 992px) {
  .banner1__image {
    top: 10px;
    right: 20px;
  }
  .banner1__image img {
    width: 360px;
  }
}
@media (max-width: 768px) {
  .banner1__box {
    padding: 20px 20px 0px 20px;
  }
  .banner1__content {
    padding-bottom: 265px;
  }
  .banner1__image {
    top: auto;
    bottom: -100px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .banner1__image img {
    width: 380px;
  }
}

.reviews {
  padding-top: clamp(32px, 4.667vw, 40px);
  padding-bottom: clamp(32px, 6vw, 55px);
}
.reviews__box {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .reviews__box {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews__box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.reviews .reviews-item {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  padding: 20px;
  -webkit-box-shadow: 0 10px 24px 0 rgba(189, 222, 255, 0.04);
          box-shadow: 0 10px 24px 0 rgba(189, 222, 255, 0.04);
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}
.reviews .reviews-item .reviews-item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.reviews .reviews-item .reviews-item-top__avatar {
  border: 1px solid #d6d6d6;
  border-radius: 100px;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  overflow: hidden;
}
.reviews .reviews-item .reviews-item-top__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.reviews .reviews-item .reviews-item-top__main {
  display: -ms-grid;
  display: grid;
  gap: 4px;
}
.reviews .reviews-item .reviews-item-top__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.reviews .reviews-item .reviews-item-top__detail {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #9da3ae;
}
.reviews .reviews-item__product {
  background: #e8f3fd;
  padding: 12px;
  border-radius: 12px;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #1983e7;
}
.reviews .reviews-item__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #000;
}
.reviews .reviews-item__bottom {
  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;
}
.reviews .reviews-item__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #9da3ae;
}
.reviews .reviews-item__like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #9da3ae;
}
.reviews .reviews-item__like::before {
  position: relative;
  content: "";
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  background-image: url(/img/icons/likeic.svg);
}

.textblock__box {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.textblock .textblock-item {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.textblock .textblock-item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.textblock .textblock-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}

.breadcrumb-box {
  margin-top: clamp(16px, 2.667vw, 24px);
  margin-bottom: clamp(16px, 2.667vw, 24px);
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
}
.breadcrumb li::after {
  display: block;
  content: "";
  background-image: url(/img/icons/ic-bread-cr.svg);
  background-repeat: no-repeat;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
}
.breadcrumb li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #9098a9;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.breadcrumb li a:hover {
  color: #000;
}
.breadcrumb li:last-child::after {
  display: none;
}

.product__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
@media (max-width: 1200px) {
  .product__wrapper {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .product__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-gallery {
  min-width: 624px;
  max-width: 624px;
}
@media (max-width: 1200px) {
  .product-gallery {
    min-width: 450px;
    max-width: 450px;
  }
}
@media (max-width: 992px) {
  .product-gallery {
    min-width: 390px;
    max-width: 390px;
  }
}
@media (max-width: 768px) {
  .product-gallery {
    min-width: 100%;
    max-width: 100%;
  }
}

.prod-gallery {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 624px;
}
.prod-gallery__main {
  width: 624px;
  height: 560px;
  background: #f1f3f5;
  border-radius: 16px;
  padding: 20px;
}
.prod-gallery__main .swiper-slide {
  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;
  overflow: hidden;
}
.prod-gallery__main .swiper-slide img {
  width: 100%;
}
.prod-gallery__thumbs {
  margin-top: 15px;
  width: 100%;
}
.prod-gallery__thumbs .swiper-slide {
  width: 112px !important;
  height: 112px !important;
  cursor: pointer;
  background: #f1f3f5;
  border-radius: 16px;
  padding: 7px;
}
.prod-gallery__thumbs .swiper-slide-thumb-active {
  border: 2px solid #1983e7;
}
.prod-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.prod-gallery__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .prod-gallery {
    max-width: 450px;
  }
  .prod-gallery__main {
    width: 450px;
    height: 420px;
  }
  .prod-gallery__thumbs .swiper-slide {
    width: 100px !important;
    height: 100px !important;
  }
}
@media (max-width: 992px) {
  .prod-gallery {
    max-width: 390px;
  }
  .prod-gallery__main {
    width: 390px;
    height: 390px;
  }
  .prod-gallery__thumbs .swiper-slide {
    width: 85px !important;
    height: 85px !important;
  }
}
@media (max-width: 768px) {
  .prod-gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 100%;
  }
  .prod-gallery__main {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .prod-gallery__thumbs {
    width: auto;
    height: 100%;
    margin-top: 0;
    margin-left: 8px !important;
  }
  .prod-gallery__thumbs .swiper-wrapper {
    gap: 8px !important;
    height: 390px;
  }
  .prod-gallery__thumbs .swiper-slide {
    border-radius: 8px;
    width: 71.5px !important;
    height: 71.5px !important;
    margin-bottom: 0 !important;
    padding: 2px;
  }
}
@media (max-width: 576px) {
  .prod-gallery__main {
    min-height: 293px;
    max-height: 293px;
  }
  .prod-gallery__thumbs .swiper-wrapper {
    height: 293px;
  }
  .prod-gallery__thumbs .swiper-slide {
    border-radius: 8px;
    width: 52px !important;
    height: 52px !important;
  }
}

.product-info {
  width: 100%;
}

.product-name {
  font-weight: 600;
  font-size: clamp(20px, 2.933vw, 24px);
  line-height: 133%;
  color: #000;
  margin-bottom: 8px;
}

.product-pretitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}

.product-rating {
  margin-top: clamp(12px, 2.4vw, 24px);
  margin-bottom: clamp(12px, 2.4vw, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.product-rating__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-rating__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #000;
}
.product-rating__details span {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}

.product-price {
  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;
  gap: 8px;
}
.product-price__current {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: #000;
}
.product-price__old {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-decoration: line-through;
  color: #9da3ae;
}
.product-price__discount {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  padding: 4px 8px;
  background: #ff4141;
  border-radius: 8px;
}

.product-availability {
  background: #e8f3fd;
  padding: 16px;
  border-radius: 12px;
  margin-top: clamp(12px, 2.4vw, 24px);
}
.product-availability__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
.product-availability__itms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #000;
}
.product-availability__itms span {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}
.product-availability p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}

.product-adantage {
  margin-top: clamp(12px, 2.4vw, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.product-adantage .product-adantage-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.product-adantage .product-adantage-item p {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: #1983e7;
}

.min-titl {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #000;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-options {
  margin-top: clamp(12px, 2.4vw, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.product-options .product-size__select {
  padding: 10px 16px;
  background: #f0f2f7;
  border-radius: 8px;
  width: 143px;
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #7b8290;
  border: none;
  background-image: url(/img/icons/Navigation.svg);
  background-repeat: no-repeat;
  background-position: center right 16px;
}
.product-options .product-size select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.product-options .product-size select::-ms-expand {
  display: none;
}
.product-options .product-color__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-options .product-color .product-color-item input {
  display: none;
}
.product-options .product-color .product-color-item label {
  border-radius: 8px;
  padding: 4px;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.product-options .product-color .product-color-item input[type=radio]:checked + label {
  border: 2px solid #1983e7;
}
@media (max-width: 992px) {
  .product-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.color-1 {
  background: #cdc7bb;
}

.color-2 {
  background: #e5e5fb;
}

.color-3 {
  background: #eff1f6;
}

.color-4 {
  background: #eff1f6;
}

.quantity {
  margin-top: 24px;
}
.quantity__box {
  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;
  gap: 16px;
}
.quantity__summ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #46546e;
}
.quantity__summ span {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.product-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e5e8ed;
  border-radius: 8px;
  background: #fff;
  padding: 6px 12px;
}
.product-counter .product-counter-minus {
  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;
  padding: 0;
}
.product-counter input {
  width: 23px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
  text-align: center;
  border: none;
  background: transparent;
}
.product-counter input::-webkit-outer-spin-button,
.product-counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-counter .product-counter-pluse {
  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;
  padding: 0;
}

.product-buy-options {
  margin-top: clamp(12px, 2.4vw, 24px);
  display: -ms-grid;
  display: grid;
  gap: 9px;
}
.product-buy-options button {
  width: 100%;
  height: 48px;
}

.product-details {
  margin-top: clamp(30px, 4.4vw, 37px);
}
.product-details-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  background: #eff1f6;
  border-radius: 16px;
  padding: 4px;
  margin-bottom: clamp(32px, 5.2vw, 48px);
}
.product-details-nav__btn {
  width: 33.33%;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #000;
  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;
  border-radius: 12px;
  padding: 12px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  background-color: transparent;
}
.product-details-nav__btn:hover {
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.37);
}
.product-details-nav__btn.active {
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
}
@media (max-width: 768px) {
  .product-details-nav__btn {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 375px) {
  .product-details-nav__btn {
    font-size: 12px;
    padding: 10px 5px;
  }
}

.product-details-item {
  display: none;
}
.product-details-item.active {
  display: block;
}

.product-descr__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  color: #000;
  margin-bottom: 8px;
}
.product-descr p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}
.product-descr__image {
  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;
  margin-top: 24px;
  height: 466px;
  overflow: hidden;
  border-radius: 16px;
}
.product-descr__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .product-descr__image {
    height: 358px;
  }
}
.product-descr__video {
  margin-top: 24px;
  border-radius: 16px;
  height: 466px;
  overflow: hidden;
  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;
}
.product-descr__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .product-descr__video {
    height: 358px;
  }
}

.specifications__table {
  border: 1px solid #d2dbec;
  border-radius: 8px;
}
.specifications__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d2dbec;
}
.specifications__row:last-child {
  border-bottom: none;
}
.specifications__title {
  width: 50%;
  border-right: 1px solid #d2dbec;
  padding: 8px 16px;
  background: #eff1f6;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.specifications__detail {
  width: 50%;
  padding: 8px 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #46546e;
}
@media (max-width: 768px) {
  .specifications__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .specifications__title {
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    border-right: none;
  }
  .specifications__detail {
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
  }
}

.materials__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.materials .materials-list-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 352px;
}
@media (max-width: 1400px) {
  .materials .materials-list-1 {
    width: 340px;
  }
}
.materials .materials-list-1 .materials-item {
  position: relative;
}
.materials .materials-list-1 .materials-item:nth-child(1)::after {
  display: block;
  content: "";
  width: 95px;
  height: 60px;
  background-image: url(/img/mtline1.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% - 20px);
  top: 30px;
  z-index: 2;
}
.materials .materials-list-1 .materials-item:nth-child(2)::after {
  display: block;
  content: "";
  width: 115px;
  height: 20px;
  background-image: url(/img/mtline2.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% - 15px);
  top: 43px;
  z-index: 2;
}
.materials .materials-list-1 .materials-item:nth-child(3)::after {
  display: block;
  content: "";
  width: 145px;
  height: 70px;
  background-image: url(/img/mtline3.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% - 15px);
  top: -33px;
  z-index: 2;
}
.materials .materials-image {
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.materials .materials-image img {
  width: 600px;
}
.materials .materials-list-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 352px;
}
@media (max-width: 1400px) {
  .materials .materials-list-2 {
    width: 340px;
  }
}
.materials .materials-list-2 .materials-item {
  position: relative;
}
.materials .materials-list-2 .materials-item:nth-child(1)::after {
  display: block;
  content: "";
  width: 90px;
  height: 60px;
  background-image: url(/img/mtline4.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: calc(100% - 15px);
  top: 93px;
  z-index: 2;
}
.materials .materials-list-2 .materials-item:nth-child(2)::after {
  display: block;
  content: "";
  width: 80px;
  height: 35px;
  background-image: url(/img/mtline5.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: calc(100% - 13px);
  top: 23px;
  z-index: 2;
}
.materials .materials-list-2 .materials-item:nth-child(3)::after {
  display: block;
  content: "";
  width: 145px;
  height: 112px;
  background-image: url(/img/mtline6.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: calc(100% - 15px);
  top: -82px;
  z-index: 2;
}
.materials .materials-item {
  padding: 20px;
  border-radius: 12px;
  background: #f5f6fa;
}
.materials .materials-item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  margin-bottom: 4px;
}
.materials .materials-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}
@media (max-width: 1360px) {
  .materials__box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .materials .materials-image img {
    width: 500px;
  }
  .materials .materials-item {
    z-index: 2;
  }
  .materials .materials-item::after {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .materials__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -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;
    gap: 24px;
  }
  .materials .materials-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    position: relative;
    width: 100%;
  }
  .materials .materials-image img {
    width: 100%;
    max-width: 700px;
  }
  .materials .materials-list-1 {
    width: 100%;
    max-width: 700px;
    gap: 24px;
  }
  .materials .materials-list-2 {
    width: 100%;
    max-width: 700px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .materials__box {
    gap: 8px;
  }
  .materials .materials-list-1 {
    gap: 8px;
  }
  .materials .materials-list-2 {
    gap: 8px;
  }
  .materials .materials-item {
    padding: 16px;
  }
  .materials .materials-item__title {
    font-size: 14px;
  }
  .materials .materials-item p {
    font-size: 12px;
  }
}

.faq {
  padding-top: clamp(16px, 2.667vw, 24px);
  padding-bottom: clamp(16px, 2.667vw, 24px);
}
.faq__box {
  display: -ms-grid;
  display: grid;
  gap: clamp(8px, 1.6vw, 16px);
  max-width: 960px;
  margin: 0 auto;
}
.faq .faq-item {
  background: #eff1f6;
  border: 1px solid #d2dbec;
  border-radius: 12px;
  padding: clamp(16px, 2.4vw, 20px);
}
.faq .faq-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  gap: 8px;
}
.faq .faq-item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.faq .faq-item__close {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  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;
}
.faq .faq-item__content {
  padding-top: 8px;
  display: none;
  padding-right: 24px;
}
.faq .faq-item__content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}
.faq .faq-item.active .faq-item__close {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.products-recommend {
  padding-top: clamp(16px, 2.667vw, 24px);
  padding-bottom: clamp(16px, 2.667vw, 24px);
}
.products-recommend__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .products-recommend__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100vw;
    overflow: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    left: -48px;
    padding-left: 48px;
    padding-right: 48px;
  }
  .products-recommend__box::-webkit-scrollbar {
    width: 0;
  }
}
@media (max-width: 992px) {
  .products-recommend__box {
    left: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .products-recommend__box {
    left: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.products-recommend .product-card__image {
  height: 302px;
}
.products-recommend .product-card .btn-add-to-cart {
  width: 100%;
}
@media (max-width: 1200px) {
  .products-recommend .product-card {
    min-width: 320px;
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .products-recommend .product-card__image {
    height: 284px;
  }
}

.banner-help-V2 {
  padding-top: clamp(16px, 2.667vw, 24px);
  padding-bottom: clamp(0px, 0.533vw, 8px);
}
.banner-help-V2 .banner-help__box {
  background-image: none;
}
.banner-help-V2 .top-box {
  max-width: 100%;
}

.checkut-page {
  background: #e8eef3;
}

.checkut-header {
  background: #fff;
  border-bottom: 1px solid #f1f2f4;
  padding: 16px 0;
  margin-bottom: clamp(16px, 4.267vw, 48px);
}
.checkut-header__box {
  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;
}
.checkut-header .checkut-back {
  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;
  padding: 0;
  position: absolute;
  left: 0;
  border: none;
  background-color: transparent;
}
.checkut-header__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #000;
}

.checkut-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.checkut-wrap .checkut-content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  gap: clamp(16px, 2.667vw, 24px);
}
.checkut-wrap .checkut-sidebar {
  min-width: 360px;
  max-width: 360px;
  margin-left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(16px, 2.667vw, 24px);
}
.checkut-wrap .checkut-sidebar__box {
  background: #fff;
  padding: clamp(16px, 2.4vw, 20px);
  border-radius: 12px;
}
@media (max-width: 992px) {
  .checkut-wrap .checkut-sidebar {
    min-width: 290px;
    max-width: 290px;
  }
}
@media (max-width: 768px) {
  .checkut-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .checkut-wrap .checkut-sidebar {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
}

.checkut-section {
  padding: clamp(16px, 2.4vw, 20px);
  background: #fff;
  border-radius: 12px;
}

.checkut-order-contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .checkut-order-contacts {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.checkut-formgroup label {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.checkut-formgroup label span {
  color: #eb001b;
}
.checkut-formgroup input {
  background: #f0f2f7;
  padding: 10px 16px;
  border-radius: 8px;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #000;
  width: 100%;
  padding: 10px 16px;
  background: #fff;
  border-radius: 8px;
  font-family: var(--font-family);
  border: 1px solid #e6e9f1;
}
.checkut-formgroup input::-webkit-input-placeholder {
  color: #7b8290;
}
.checkut-formgroup input::-moz-placeholder {
  color: #7b8290;
}
.checkut-formgroup input:-ms-input-placeholder {
  color: #7b8290;
}
.checkut-formgroup input::-ms-input-placeholder {
  color: #7b8290;
}
.checkut-formgroup input::placeholder {
  color: #7b8290;
}
.checkut-formgroup input:-moz-placeholder-shown {
  background: #f0f2f7;
  border: 1px solid #f0f2f7;
}
.checkut-formgroup input:-ms-input-placeholder {
  background: #f0f2f7;
  border: 1px solid #f0f2f7;
}
.checkut-formgroup input:placeholder-shown {
  background: #f0f2f7;
  border: 1px solid #f0f2f7;
}
.checkut-formgroup textarea {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #000;
  width: 100%;
  height: 183px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  font-family: var(--font-family);
  border: 1px solid #e6e9f1;
}
.checkut-formgroup textarea::-webkit-input-placeholder {
  color: #7b8290;
}
.checkut-formgroup textarea::-moz-placeholder {
  color: #7b8290;
}
.checkut-formgroup textarea:-ms-input-placeholder {
  color: #7b8290;
}
.checkut-formgroup textarea::-ms-input-placeholder {
  color: #7b8290;
}
.checkut-formgroup textarea::placeholder {
  color: #7b8290;
}
.checkut-formgroup textarea:-moz-placeholder-shown {
  background: #f0f2f7;
  border: 1px solid #f0f2f7;
}
.checkut-formgroup textarea:-ms-input-placeholder {
  background: #f0f2f7;
  border: 1px solid #f0f2f7;
}
.checkut-formgroup textarea:placeholder-shown {
  background: #f0f2f7;
  border: 1px solid #f0f2f7;
}

.checkut-switcher-box {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: clamp(16px, 2.4vw, 20px);
}
.checkut-switcher-box .checkut-switcher input {
  display: none;
}
.checkut-switcher-box .checkut-switcher__label {
  background: #eff1f6;
  border-radius: 100px;
  padding: 2px;
  width: 48px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  cursor: pointer;
  position: relative;
}
.checkut-switcher-box .checkut-switcher__label::after {
  display: block;
  content: "";
  -webkit-box-shadow: 0 2px 2px 0 rgba(25, 76, 129, 0.25);
          box-shadow: 0 2px 2px 0 rgba(25, 76, 129, 0.25);
  background: #acbac6;
  border-radius: 100px;
  width: 24px;
  height: 24px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  position: absolute;
  left: 2px;
}
.checkut-switcher-box .checkut-switcher input[type=checkbox]:checked + .checkut-switcher__label {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.checkut-switcher-box .checkut-switcher input[type=checkbox]:checked + .checkut-switcher__label::after {
  -webkit-box-shadow: 0 2px 2px 0 rgba(25, 76, 129, 0.25);
          box-shadow: 0 2px 2px 0 rgba(25, 76, 129, 0.25);
  background: #1983e7;
  left: calc(100% - 26px);
}

.other-recipient {
  background: #e8f3fd;
  border-radius: 16px;
  padding: clamp(16px, 2.4vw, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: clamp(16px, 2.4vw, 20px);
}
.other-recipient .checkut-formgroup {
  width: calc(50% - 10px);
}
.other-recipient .checkut-formgroup input {
  background-color: #fff;
}
.other-recipient .checkut-formgroup:nth-child(3) {
  width: 100%;
}
@media (max-width: 992px) {
  .other-recipient .checkut-formgroup {
    width: 100%;
  }
}

.checkut-options-section {
  display: -ms-grid;
  display: grid;
  gap: clamp(16px, 2.4vw, 20px);
}

.checkut-option input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkut-option .checkut-option-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  border: 1px solid #dfe6ee;
  border-radius: 16px;
  padding: clamp(16px, 2.4vw, 20px);
  cursor: pointer;
}
.checkut-option .checkut-option-indicator {
  border: 1px solid #dfe6ee;
  border-radius: 100px;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  background-color: #eff2f6;
  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;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.checkut-option .checkut-option-indicator::after {
  position: relative;
  display: block;
  content: "";
  background: #1983e7;
  border-radius: 100px;
  width: 14px;
  height: 14px;
  opacity: 0;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.checkut-option__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  margin-bottom: 4px;
}
.checkut-option__txt {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #6a7794;
}
.checkut-option input[type=radio]:checked + .checkut-option-label .checkut-option-indicator {
  background-color: #fff;
}
.checkut-option input[type=radio]:checked + .checkut-option-label .checkut-option-indicator::after {
  opacity: 1;
}

.min-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #1983e7;
  margin-top: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #e8f3fd;
  border-radius: 8px;
  padding: 4px 8px;
}

.checkut-btn-next {
  width: 100%;
  height: 40px;
  margin-top: clamp(16px, 2.4vw, 20px);
}

.checkut-delivery-address {
  background: #e8f3fd;
  border-radius: 16px;
  padding: clamp(16px, 2.4vw, 20px);
  margin-top: clamp(16px, 2.4vw, 20px);
}
.checkut-delivery-address span {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}
.checkut-delivery-address input {
  width: 100%;
  background: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #000;
  border-radius: 8px;
  padding: 10px 16px;
  border: none;
}
.checkut-delivery-address input::-webkit-input-placeholder {
  color: #7b8290;
}
.checkut-delivery-address input::-moz-placeholder {
  color: #7b8290;
}
.checkut-delivery-address input:-ms-input-placeholder {
  color: #7b8290;
}
.checkut-delivery-address input::-ms-input-placeholder {
  color: #7b8290;
}
.checkut-delivery-address input::placeholder {
  color: #7b8290;
}

.smtitle-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: clamp(16px, 2.4vw, 20px);
}
.smtitle-box .smtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.smtitle-box .count_t {
  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;
  background: #e8f3fd;
  border-radius: 100px;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #1983e7;
}

.smtitle-box-V2 {
  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;
  gap: 8px;
  padding-bottom: clamp(16px, 2.4vw, 20px);
  border-bottom: 1px solid #dee1e6;
  margin-bottom: clamp(16px, 2.4vw, 20px);
}
.smtitle-box-V2 .min-label {
  margin-top: 0;
}

.checkut-prodlist {
  display: -ms-grid;
  display: grid;
  gap: clamp(16px, 2.4vw, 20px);
  padding-bottom: clamp(16px, 2.4vw, 20px);
  margin-bottom: clamp(16px, 2.4vw, 20px);
  border-bottom: 1px solid #dee1e6;
}

.chk-prod {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.chk-prod__image {
  background: #eff3f7;
  border-radius: 12px;
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  max-height: 56px;
  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;
  padding: 2px;
}
.chk-prod__image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.chk-prod__title {
  font-weight: 600;
  font-size: 12px;
  line-height: 133%;
  color: #000;
  margin-bottom: 4px;
}
.chk-prod__details {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #6f81a1;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.chk-prod__price {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkut-summary {
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
.checkut-summary__ttl {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}
.checkut-summary__val {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: #000;
}
.checkut-summary__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.green-clr {
  color: #1ea547;
}

strong {
  font-weight: 700;
}

.chk-summ {
  font-weight: 600;
}

.checkut-paysection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: clamp(16px, 2.4vw, 20px);
}
.checkut-paysection button {
  width: 100%;
  height: 40px;
}
.checkut-paysection .btn-white:hover {
  color: #000;
  background-color: #fff;
}

.chk-or {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #46546e;
  margin-top: 12px;
  margin-bottom: 12px;
}

.checkut-agreements p {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  color: #46546e;
}
.checkut-agreements a {
  color: #1983e7;
  font-weight: 500;
}
.checkut-agreements a:hover {
  text-decoration: underline;
}

.checkut-prodlist-V2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 992px) {
  .checkut-prodlist-V2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.succs-delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.succs-delivery img {
  min-width: 48px;
  max-width: 48px;
}
.succs-delivery__box span {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.succs-delivery__box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}

.succs-itm {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.succs-itm span {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.succs-itm p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #46546e;
}
.succs-itm__txt {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000 !important;
}

.smtitle-box_V2 {
  border-bottom: 1px solid #dee1e6;
  padding-bottom: clamp(16px, 2.4vw, 20px);
}

.succs-btns {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.succs-btns .btn-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  padding: 10px 12px;
  height: 40px;
}
.succs-btns .btn-white:hover {
  background-color: #fff;
  color: #000;
}

.success-done {
  background: #5ea8ee;
  border-radius: 12px;
  padding: clamp(16px, 2.4vw, 20px);
  margin-bottom: clamp(16px, 2.667vw, 24px);
}
.success-done__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  padding: 4px 8px;
  background: #fff;
  border-radius: 100px;
  padding: 8px;
}
.success-done p {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-top: clamp(16px, 2.4vw, 20px);
}