@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;700;900&display=swap");
@import "reset.css";
@font-face {
  font-family: Neue Machina;
  src: url("../fonts/neuemachina-regular-webfont.woff");
  font-weight: 400;
}
@font-face {
  font-family: Neue Machina;
  src: url("../fonts/neuemachina-medium-webfont.woff");
  font-weight: 500;
}
@font-face {
  font-family: Neue Machina;
  src: url("../fonts/neuemachina-bold-webfont.woff");
  font-weight: 700;
}
@font-face {
  font-family: Neue Machina;
  src: url("../fonts/neuemachina-black-webfont.woff");
  font-weight: 900;
}
@font-face {
  font-family: Neue Machina;
  src: url("../fonts/neuemachina-ultrabold-webfont.woff");
  font-weight: 800;
}
.purp-notification {
  padding: 10px 10px 10px 15px;
  font-size: 16px;
  border-left: 4px solid #45C907;
  margin-bottom: 25px;
  background: rgba(69, 201, 7, 0.1);
}
.purp-notification a {
  color: #9868FF;
}
.purp-notification.red-side {
  border-color: #FF3B30;
  background: rgba(255, 59, 47, 0.1);
}
.purp-notification.purple-side {
  border-color: #9868FF;
  background: rgba(255, 59, 47, 0.1);
}

.cookies-popup {
  position: fixed;
  background: #F8F6E9;
  bottom: 0;
  left: 0;
  z-index: 16;
  width: 100%;
  padding: 15px 0;
  border-top: 2px solid #0E0C12;
}
.cookies-popup .flex-row {
  align-items: center;
  justify-content: space-between;
}
.cookies-popup .flex-row .col:first-of-type a {
  transition: 0.2s;
}
.cookies-popup .flex-row .col:first-of-type a:hover {
  opacity: 0.5;
}
.cookies-popup .flex-row .col a img {
  display: inline-block;
}

.datepicker-dropdown {
  z-index: 5 !important;
}

.screen-age {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 0 80px !important;
  background: #F8F6E9 !important;
}
.screen-age .mini-header {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-age h1 {
  margin-bottom: 40px;
}
.screen-age h1 span {
  padding: 23px 15px 10px !important;
}
.screen-age .age-choise {
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-age .age-choise a {
  padding: 50px 60px;
  font-size: 44px;
  font-weight: 800;
  color: #646268;
  cursor: pointer;
  position: relative;
}
.screen-age .age-choise a span {
  position: relative;
  z-index: 1;
}
.screen-age .age-choise a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: url("../img/cloud1.png") no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: 0.1s;
}
.screen-age .age-choise a:hover {
  color: white;
}
.screen-age .age-choise a.imyes:hover:before {
  opacity: 1;
}
.screen-age .age-choise a.imno:before {
  background: url("../img/cloud2.png") no-repeat center;
  background-size: contain;
}
.screen-age .age-choise a.imno:hover:before {
  opacity: 1;
}
.screen-age .decor {
  opacity: 0;
}
.screen-age .decor:before {
  content: "";
  width: 25%;
  height: 100%;
  background: url("../img/age2.png") no-repeat left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.screen-age .decor:after {
  content: "";
  width: 25%;
  height: 100%;
  background: url("../img/age4.png") no-repeat right bottom;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.screen-age:before {
  content: "";
  width: 25%;
  height: 100%;
  background: url("../img/age1.png") no-repeat left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.screen-age:after {
  content: "";
  width: 25%;
  height: 100%;
  background: url("../img/age3.png") no-repeat right bottom;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
.screen-age.is_no .decor {
  opacity: 1;
}

.screen-404 {
  padding: 130px 0 80px !important;
  background: url("../img/404-bg.png") no-repeat center !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}
.screen-404 .wrap:before {
  content: "";
  width: 200px;
  height: 200px;
  background: url("../img/unlike.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.screen-404 .wrap:after {
  content: "";
  width: 200px;
  height: 200px;
  background: url("../img/try.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 80px;
}
.screen-404 img {
  display: block;
  margin: 0 auto;
  max-width: 690px;
  width: 100%;
}

.wrap {
  width: 100%;
  max-width: 1380px;
  padding: 0 15px;
  position: relative;
  margin: 0 auto;
}
.wrap.big {
  max-width: 1350px;
}

form.loading * {
  pointer-events: none;
  opacity: 0.8;
}

.new-review-form {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DBDBDB;
}
.new-review-form .notify {
  padding: 15px;
  border-radius: 10px;
  background: #F5F1E0;
  margin-bottom: 10px;
}
.new-review-form button {
  width: 100%;
}
.new-review-form .set_rating_wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.new-review-form .set_rating_wrap.active span:after {
  content: "★";
  color: #FED200;
}
.new-review-form .set_rating_wrap.active span.active ~ span:after {
  content: "☆";
  color: #666666;
}
.new-review-form .set_rating_wrap:hover span:after {
  content: "★" !important;
  color: #FED200 !important;
}
.new-review-form .set_rating_wrap:hover span:hover ~ span:after {
  content: "☆" !important;
  color: #666666 !important;
}
.new-review-form .set_rating_wrap span {
  font-size: 25px;
  margin-right: 0;
}
.new-review-form .set_rating_wrap span:after {
  content: "☆";
  color: #666666;
}

.succ, .succ2 {
  display: none;
  padding: 20px 0 0;
  font-size: 20px;
  font-family: Nunito !important;
  color: #45C907;
}

.fail {
  display: none;
  padding: 20px 0 0;
  font-size: 20px;
  font-family: Nunito !important;
  color: #FF3B30;
}

.main-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 18;
}
.main-popup-wrap.thanks_popup {
  background: none;
}
.main-popup-wrap.reg_info_popup .popup {
  padding: 50px 70px 40px;
}

.popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 19;
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding: 50px 15px;
}

.popup-closer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.popup {
  width: 100%;
  max-width: 670px;
  margin: auto;
  padding: 80px 50px;
  position: relative;
  border-radius: 15px;
  z-index: 21;
}
.popup.mini-popup {
  max-width: 530px;
  padding: 80px 120px;
}
.popup.mini-popup .input-wrap {
  margin-top: 15px;
}
.popup.mini-popup .input-wrap select {
  background-color: transparent;
}
.popup .text-wrapper ul {
  padding-left: 25px;
}
.popup .text-wrapper ul li {
  font-size: 14px;
  font-weight: 700;
}
.popup .text-wrapper ul li:before {
  content: "";
  width: 15px;
  height: 10px;
  background: url("../img/check-purple.svg") no-repeat center;
  background-size: contain;
  position: relative;
  display: inline-block;
  margin-left: -25px;
  margin-right: 10px;
}
.popup .smile-wrap {
  margin-bottom: 30px;
}
.popup .smile-wrap img {
  width: 100px;
  display: block;
  margin: 0 auto;
}
.popup .text-wrap {
  margin-top: 30px;
  font-size: 24px;
}
.popup .btn-wrap {
  margin-top: 30px;
}
.popup .btn-wrap .main-btn {
  box-shadow: 4px 3px 0px #0E0C12;
}
.popup .section-heading.text-shadow-black:not(.steps .col *) {
  text-shadow: 3px 3px 0px #0E0C12;
}
.popup .closer {
  position: absolute;
  right: 15px;
  top: 15px;
}
.popup .closer img {
  width: 30px;
  transition: 0.2s;
  cursor: pointer;
}
.popup .closer img:hover {
  opacity: 0.5;
}

.breadcrumbs-screen {
  padding: 120px 0 0;
}
.breadcrumbs-screen ul li {
  display: inline-block;
}
.breadcrumbs-screen ul li:not(:first-of-type):before {
  content: "›";
  display: inline-block;
  position: relative;
  margin: 0 8px;
  color: #666666;
}
.breadcrumbs-screen ul li:last-of-type {
  color: black;
}
.breadcrumbs-screen ul li:last-of-type:before {
  color: #0E0C12;
}
.breadcrumbs-screen ul li a {
  color: #666666;
  font-size: 16px;
  font-weight: 500;
}
.breadcrumbs-screen ul li a:hover {
  text-decoration: underline;
}
.breadcrumbs-screen ul li span {
  color: #0E0C12;
  font-size: 16px;
  font-weight: 500;
}

.qty-input {
  display: inline-flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 8px;
  background: #F8F6E9;
  padding: 0 10px;
}
.qty-input input {
  background: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border: none;
  outline: none;
  height: 38px;
  width: 40px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.qty-input span {
  font-size: 20px;
  font-weight: 500;
  color: #0E0C12;
  padding: 0 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
}
.qty-input span:hover {
  color: #9868FF;
}

.stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}
.stars span {
  font-size: 18px;
}
.stars span.full {
  color: #FED200;
}
.stars span.empty {
  color: #666666;
}

.nav-links {
  text-align: center;
  margin-top: 50px;
}
.nav-links ul li {
  display: inline-block;
}
.nav-links ul li.prev a, .nav-links ul li.prev span, .nav-links ul li.next a, .nav-links ul li.next span {
  font-size: 20px;
}
.nav-links ul li.prev {
  margin-right: 25px !important;
}
.nav-links ul li.next {
  margin-left: 25px;
}
.nav-links ul li:not(:last-of-type) {
  margin-right: 10px;
}
.nav-links ul li a, .nav-links ul li span {
  color: #666666;
  font-family: Nunito;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s;
}
.nav-links ul li a.prev, .nav-links ul li a.next, .nav-links ul li span.prev, .nav-links ul li span.next {
  font-size: 20px;
}
.nav-links ul li a.prev img, .nav-links ul li a.next img, .nav-links ul li span.prev img, .nav-links ul li span.next img {
  display: inline-block;
  position: relative;
  top: -2px;
  width: 7px;
}
.nav-links ul li a.prev, .nav-links ul li span.prev {
  margin-right: 15px !important;
}
.nav-links ul li a.next, .nav-links ul li span.next {
  margin-left: 15px;
}
.nav-links ul li a.current, .nav-links ul li span.current {
  color: #0E0C12;
}
.nav-links ul li a:hover {
  color: #0E0C12;
}

.blog-tabs-wrap {
  margin-top: 100px;
}
.blog-tabs-wrap ul {
  text-align: center;
}
.blog-tabs-wrap ul li {
  display: inline-block;
  margin: 0 5px;
  padding: 5px 15px;
  border: 1px solid #0E0C12;
  box-shadow: 2px 2px 0px #120C25;
  border-radius: 5px;
  background: white;
  transition: 0.2s;
}
.blog-tabs-wrap ul li:hover {
  background: #9868FF;
}
.blog-tabs-wrap ul li:hover a {
  color: white;
}
.blog-tabs-wrap ul li.active {
  background: #9868FF;
}
.blog-tabs-wrap ul li.active a {
  color: white;
  font-weight: 700;
}
.blog-tabs-wrap ul li a {
  color: #666666;
  font-size: 16px;
  font-weight: 500;
  font-family: Nunito;
}

.header + .default-screen {
  padding-top: 200px;
}

.default-screen {
  padding-top: 100px;
  padding-bottom: 100px;
}

.theme-img-wrap img:last-of-type {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.fixed {
  position: fixed;
}

.mob-visible {
  display: none !important;
}

.flex-row {
  display: flex;
}
.flex-row.vcenter {
  align-items: center;
}
.flex-row.vstart {
  align-items: flex-start;
}
.flex-row.vend {
  align-items: flex-end;
}
.flex-row.stretch {
  align-items: stretch;
}
.flex-row.hstart {
  justify-content: flex-start;
}
.flex-row.hcenter {
  justify-content: center;
}
.flex-row.hend {
  justify-content: flex-end;
}
.flex-row.haround {
  justify-content: space-around;
}
.flex-row.hbetween {
  justify-content: space-between;
}
.flex-row.multi-row {
  flex-flow: row;
  flex-flow: wrap;
}

.grid {
  display: grid;
}
.grid.gap-15 {
  grid-column-gap: 15px;
}
.grid.gap-20 {
  grid-column-gap: 20px;
}
.grid.gap-25 {
  grid-column-gap: 25px;
}
.grid.row-15 {
  grid-row-gap: 15px;
}
.grid.row-20 {
  grid-row-gap: 20px;
}
.grid.row-25 {
  grid-row-gap: 25px;
}
.grid.col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.col-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 60px;
  background: #9868FF;
  text-decoration: none;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  border-radius: 30px;
  border: 1px solid #0E0C12;
}
.main-btn:disabled {
  background: #DFD8ED !important;
  color: #98959E !important;
}
.main-btn:disabled img {
  opacity: 0.5;
}
.main-btn:hover {
  background: #7A40F5;
}
.main-btn:hover:after {
  transform: translateX(10px);
}
.main-btn.white {
  background: white;
  border: 1px solid #0E0C12;
}
.main-btn.white:hover {
  opacity: 0.6 !important;
  background: white;
}
.main-btn.cream {
  background: #FDFBEF;
  border: 1px solid #0E0C12;
  color: #0E0C12;
}
.main-btn.cream:active {
  background: #FFF3A8;
}
.main-btn.cream:hover {
  background: #FFF8CE;
}
.main-btn.small {
  height: 50px;
  padding-top: 4px;
}
.main-btn:not(.cream):not(.white):active {
  background: #8138C4;
}
.main-btn.with-arrow:after {
  content: "";
  width: 33px;
  height: 15px;
  background: url("../img/arrow-white.png") no-repeat center;
  background-size: contain;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  transition: 0.2s;
}

.empty-col .section-heading {
  word-break: break-all;
}

.section-heading {
  font-size: 74px;
}
.section-heading.center {
  text-align: center;
}
.section-heading.small {
  font-size: 44px;
}
.section-heading.mini {
  font-size: 24px;
}

.section-subheading {
  text-align: center;
  margin: 20px auto 0;
  font-size: 20px;
  line-height: 160%;
  font-weight: 500;
}

.gam {
  display: none;
  align-items: center;
  position: relative;
  width: 25px;
  height: 30px;
  z-index: 12;
}
.gam:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 8px;
  left: 0;
  background: #0E0C12;
  transition: 0.3s;
}
.gam:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 8px;
  left: 0;
  background: #0E0C12;
  transition: 0.3s;
}
.gam span {
  height: 2px;
  width: 100%;
  margin-left: auto;
  display: block;
  background: #0E0C12;
  transition: 0.3s;
}
.gam.active span {
  background: transparent;
}
.gam.active:before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.gam.active:after {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.text-content {
  font-size: 16px;
}
.text-content img {
  width: 100%;
  box-shadow: 8px 6px 0px #120C25;
  border-radius: 20px;
  display: block;
  margin: 40px 0;
}
.text-content b, .text-content strong {
  font-weight: 700;
}
.text-content i {
  font-style: italic;
}
.text-content u {
  text-decoration: underline;
}
.text-content a {
  text-decoration: underline;
  color: #9868FF;
}
.text-content a:hover {
  text-decoration: none;
}
.text-content a.main-btn {
  text-decoration: none;
  font-family: Neue Machina !important;
}
.text-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  margin: 20px 0;
}
.text-content h1 {
  font-weight: 700;
  font-size: 27px;
  line-height: 150%;
  margin: 27px 0;
  font-family: Neue Machina !important;
  font-weight: 800;
}
.text-content h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  margin: 25px 0;
  font-family: Neue Machina !important;
  font-weight: 800;
}
.text-content h3 {
  font-weight: 700;
  font-size: 23px;
  line-height: 150%;
  margin: 23px 0;
  font-family: Neue Machina !important;
  font-weight: 800;
}
.text-content h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  margin: 20px 0;
  font-family: Neue Machina !important;
  font-weight: 800;
}
.text-content h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  margin: 20px 0;
  font-family: Neue Machina !important;
  font-weight: 800;
}
.text-content ul {
  padding-left: 30px;
  list-style: disc;
}
.text-content ul li {
  margin-bottom: 10px;
}

.lh-100 {
  line-height: 100%;
}

.lh-120 {
  line-height: 120%;
}

.lh-130 {
  line-height: 130%;
}

.lh-140 {
  line-height: 140%;
}

.lh-150 {
  line-height: 150%;
}

.lh-160 {
  line-height: 160%;
}

.lh-170 {
  line-height: 170%;
}

.lh-180 {
  line-height: 180%;
}

.lh-190 {
  line-height: 190%;
}

.lh-200 {
  line-height: 200%;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

.fw-800 {
  font-weight: 800;
}

.fw-300 {
  font-weight: 300;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 30px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

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

.pddb-50 {
  padding-bottom: 50px;
}

.pddt-100 {
  padding-top: 100px;
}

.pddb-100 {
  padding-bottom: 100px;
}

.pddt-150 {
  padding-top: 150px;
}

.pddb-150 {
  padding-bottom: 150px;
}

.pddt-200 {
  padding-top: 200px;
}

.pddb-200 {
  padding-bottom: 200px;
}

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

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

.pddt-15 {
  padding-top: 15px;
}

.pddb-15 {
  padding-bottom: 15px;
}

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

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

.pddt-25 {
  padding-top: 25px;
}

.pddb-25 {
  padding-bottom: 25px;
}

.pddt-30 {
  padding-top: 30px;
}

.pddb-30 {
  padding-bottom: 30px;
}

.pddt-35 {
  padding-top: 35px;
}

.pddb-35 {
  padding-bottom: 35px;
}

.pddt-40 {
  padding-top: 40px;
}

.pddb-40 {
  padding-bottom: 40px;
}

.pddt-45 {
  padding-top: 45px;
}

.pddb-45 {
  padding-bottom: 45px;
}

.pddt-250 {
  padding-top: 250px;
}

.pddb-250 {
  padding-bottom: 250px;
}

.font2 {
  font-family: Nunito !important;
}
.font2 * {
  font-family: Nunito !important;
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.w-10-15 {
  width: calc(10% - 15px);
}

.w-20-15 {
  width: calc(20% - 15px);
}

.w-30-15 {
  width: calc(30% - 15px);
}

.w-35-15 {
  width: calc(35% - 15px);
}

.w-40-15 {
  width: calc(40% - 15px);
}

.w-50-15 {
  width: calc(50% - 15px);
}

.w-60-15 {
  width: calc(60% - 15px);
}

.w-70-15 {
  width: calc(70% - 15px);
}

.w-80-15 {
  width: calc(80% - 15px);
}

.w-90-15 {
  width: calc(90% - 15px);
}

.white_bg, .bg-white {
  background: white;
  color: #0E0C12;
}

.black_bg, .bg-black {
  background: #0E0C12;
  color: white;
}

.bg-orange {
  background: #FFAF42;
}

.bg-purple {
  background: #9868FF;
}

.bg-lime {
  background: #E0FD2C;
}

.bg-cream {
  background: #F8F6E9;
}

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

.color-black {
  color: #0E0C12;
}

.color-white {
  color: white;
}

.color-purple {
  color: #C08FFF;
}

.color-lime {
  color: #E0FD2C;
}

.color-gray {
  color: #666666;
}

.color-darkgray {
  color: #252428;
}

.color-red {
  color: #FF3B30;
}

h1 {
  position: relative;
  z-index: 1;
}
h1.without-rotate span:before {
  transform: unset !important;
}
h1.main-heading {
  font-size: 108px;
}
h1.main-heading.small {
  font-size: 78px;
}
h1.main-heading span {
  display: inline-block;
  position: relative;
  padding: 15px 40px 10px;
  margin: 0 0 10px;
}
h1.main-heading span.orange-bg:before {
  background: #FFAF42;
}
h1.main-heading span.purple-bg:before {
  background: #9868FF;
}
h1.main-heading span:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #E0FD2C;
  border-radius: 150px;
  border: 1px solid #0E0C12;
  box-shadow: 14px 8px 0px #0E0C12;
  transform: rotate(1.7deg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.text-stroke-black {
  -webkit-text-stroke: 1px #0E0C12;
}

.text-shadow-black {
  text-shadow: 4px 4px 0px #0E0C12;
}
.text-shadow-black.mob-small {
  text-shadow: 2px 2px 0px #0E0C12;
}
.text-shadow-black.small:not(.main-heading), .text-shadow-black.mini:not(.main-heading) {
  text-shadow: 2px 2px 0px #0E0C12;
}

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

.widget-container {
  height: 0;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 15;
  transition: 0.3s;
}
.widget-container.on_bottom {
  bottom: 50px;
}
.widget-container .wrap {
  position: relative;
}

.black-drop-shadow {
  filter: drop-shadow(4px 3px 0px #120C25);
}
.black-drop-shadow.big {
  filter: drop-shadow(8px 6px 0px #120C25);
}

.black-shadow {
  box-shadow: 4px 3px 0px #120C25;
}
.black-shadow.big {
  box-shadow: 8px 6px 0px #120C25;
}
.black-shadow.small {
  box-shadow: 2px 2px 0px #120C25;
}

.purple-shadow {
  box-shadow: 4px 3px 0px #8138C4;
}
.purple-shadow.big {
  box-shadow: 8px 6px 0px #8138C4;
}
.purple-shadow.small {
  box-shadow: 2px 2px 0px #8138C4;
}

.black-border {
  border: 1px solid #0E0C12;
}

.purple-border {
  border: 1px solid #8138C4;
}

.messanger {
  width: 115px;
  position: absolute;
  right: 15px;
  bottom: -120px;
  transition: 0.2s;
  z-index: 10;
  overflow: hidden;
}
.messanger:hover {
  opacity: 0.5;
}
.messanger img {
  width: 100%;
  animation-name: rotate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

.hand {
  width: 33px;
  height: 61px;
  position: absolute;
  right: 15px;
  bottom: 40px;
  animation-name: jump;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  background: url("../img/hand.svg") no-repeat center;
  background-size: contain;
  display: none;
  z-index: 10;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
.filter-gray {
  filter: grayscale(100%);
}

.theme-toggler {
  position: absolute;
  left: 15px;
  bottom: 40px;
  border-radius: 25px;
  border: 1px solid #0E0C12;
  padding: 3px;
  cursor: pointer;
  height: 37px;
  width: 74px;
  background: white;
}
.theme-toggler.active .inner:before {
  left: calc(100% - 28px);
}
.theme-toggler.active .inner img:not(:last-of-type) {
  filter: invert(0);
}
.theme-toggler.active .inner img:last-of-type {
  filter: invert(100%);
}
.theme-toggler .inner {
  border-radius: 25px;
  border: 1px solid #0E0C12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  position: relative;
}
.theme-toggler .inner:before {
  content: "";
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #0E0C12;
  transition: 0.2s;
  position: absolute;
  left: -1px;
  top: -1px;
}
.theme-toggler .inner img {
  width: calc(50% - 5px);
  height: 100%;
  object-fit: contain;
  padding: 5px;
  position: relative;
  z-index: 1;
}
.theme-toggler .inner img:not(:last-of-type) {
  filter: invert(100%);
}
.theme-toggler .inner img:last-of-type {
  padding: 7px;
}

.nav-wrap {
  text-align: right;
}
.nav-wrap div {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #0E0C12;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-wrap div:before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../img/right.svg") no-repeat center;
  background-size: contain;
  display: block;
}
.nav-wrap div.swiper-button-disabled, .nav-wrap div:hover {
  opacity: 0.6;
}
.nav-wrap div.prev-btn:before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../img/right.svg") no-repeat center;
  background-size: contain;
  display: block;
  transform: scale(-1, 1);
}

.invalid-feedback {
  color: #FF3B30;
  font-size: 12px;
  display: block;
  padding-left: 20px;
}

.input-wrap {
  margin-bottom: 12px;
  display: block;
  position: relative;
}
.input-wrap .eye {
  width: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
.input-wrap .eye.active {
  opacity: 0.5;
}
.input-wrap * {
  font-family: Nunito;
}
.input-wrap.attach-wrap input {
  background: url("../img/attach.svg") no-repeat calc(100% - 15px) !important;
  padding-right: 50px !important;
}
.input-wrap select {
  width: 100%;
  height: 60px;
  border: 1px solid #C2B6BD;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  outline: none;
  background: white;
  padding: 0 20px;
  padding-right: 40px;
  transition: 0.2s;
  font-weight: 500;
  background-color: #F8F6E9;
  background-image: url("../img/down.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: calc(100% - 15px);
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.input-wrap select:hover, .input-wrap select:focus {
  border-color: #0E0C12;
  color: black;
}
.input-wrap select:not(:placeholder-shown) {
  color: #0E0C12;
}
.input-wrap select:disabled {
  cursor: not-allowed;
  border-color: #C2B6BD;
  color: #C2B6BD !important;
}
.input-wrap select.is-invalid {
  color: #FF3B30 !important;
}
.input-wrap input, .input-wrap textarea {
  width: 100%;
  height: 60px;
  border: 1px solid #C2B6BD;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  outline: none;
  background: white;
  padding: 0 20px;
  transition: 0.2s;
  font-weight: 500;
}
.input-wrap input::placeholder, .input-wrap textarea::placeholder {
  color: #666666;
  opacity: 1;
}
.input-wrap input:hover, .input-wrap input:focus, .input-wrap textarea:hover, .input-wrap textarea:focus {
  border-color: #0E0C12;
  color: black;
}
.input-wrap input:not(:placeholder-shown), .input-wrap textarea:not(:placeholder-shown) {
  color: #0E0C12;
}
.input-wrap input:disabled, .input-wrap textarea:disabled {
  cursor: not-allowed;
  border-color: #C2B6BD;
  color: #C2B6BD !important;
}
.input-wrap input.is-invalid, .input-wrap textarea.is-invalid {
  color: #FF3B30 !important;
}
.input-wrap input.is-invalid::placeholder, .input-wrap textarea.is-invalid::placeholder {
  color: #FF3B30;
}
.input-wrap textarea {
  height: 200px;
  padding: 15px 20px;
  resize: none;
  font-weight: 700;
}

.soc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transition: 0.2s;
  border-radius: 50%;
}
.soc a:hover {
  opacity: 0.5;
}
.soc a:not(:last-of-type) {
  margin-right: 10px;
}
.soc a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.menu-title {
  font-size: 14px;
  margin-bottom: 24px;
  display: block;
}

@media (max-width: 1300px) {
  .fs-12 {
    font-size: 10px;
  }

  .fs-14 {
    font-size: 12px;
  }

  .fs-16 {
    font-size: 14px;
  }

  .fs-18 {
    font-size: 16px;
  }

  .fs-20 {
    font-size: 18px;
  }

  .fs-22 {
    font-size: 20px;
  }

  .fs-24 {
    font-size: 22px;
  }

  .fs-26 {
    font-size: 24px;
  }

  .fs-28 {
    font-size: 26px;
  }

  .fs-30 {
    font-size: 28px;
  }

  .fs-32 {
    font-size: 30px;
  }

  .fs-33 {
    font-size: 31px;
  }

  .fs-34 {
    font-size: 32px;
  }

  .qty-input {
    border-radius: 7px;
    padding: 0 10px;
  }
  .qty-input input {
    font-size: 15px;
    height: 38px;
    width: 40px;
  }
  .qty-input span {
    font-size: 20px;
    padding: 0 15px;
  }

  .stars span {
    font-size: 16px;
  }

  .text-stroke-black {
    -webkit-text-stroke: 1px #0E0C12;
  }

  .text-shadow-black {
    text-shadow: 4px 4px 0px #0E0C12;
  }
  .text-shadow-black.mob-small {
    text-shadow: 2px 2px 0px #0E0C12;
  }

  .pddt-100 {
    padding-top: 60px;
  }

  .pddb-100 {
    padding-bottom: 60px;
  }

  .pddt-200 {
    padding-top: 140px;
  }

  .pddb-200 {
    padding-bottom: 140px;
  }

  .main-btn {
    padding: 0 35px;
    height: 60px;
    font-size: 14px;
  }
  .main-btn.with-arrow:after {
    width: 30px;
    height: 15px;
  }

  .section-heading {
    font-size: 55px;
  }
  .section-heading.small {
    font-size: 38px;
  }

  .section-subheading {
    margin: 20px auto 0;
    font-size: 18px;
  }

  h1.main-heading {
    font-size: 80px;
  }
  h1.main-heading.small {
    font-size: 60px;
  }
  h1.main-heading span {
    padding: 12px 30px 8px;
    margin: 0 0 6px;
  }
  h1.main-heading span:before {
    z-index: -1;
  }

  .messanger {
    width: 60px;
    right: 15px;
    bottom: -100px;
  }

  .hand {
    width: 30px;
    height: 45px;
  }

  .nav-wrap div {
    width: 42px;
    height: 42px;
  }

  .input-wrap {
    margin-bottom: 12px;
  }
  .input-wrap input {
    height: 60px;
    font-size: 14px;
  }

  .soc a {
    width: 42px;
    height: 42px;
  }
  .soc a:not(:last-of-type) {
    margin-right: 10px;
  }
  .soc a img {
    width: 16px;
    height: 16px;
  }

  .menu-title {
    font-size: 14px;
    margin-bottom: 14px;
  }
}
@media (max-width: 992px) {
  .theme-toggler {
    bottom: 30px;
  }

  .widget-container.on_bottom {
    bottom: 60px;
  }

  .mini-cart-item .info {
    color: #666666;
  }
  .mini-cart-item .info br {
    display: none;
  }

  .product-screen .flex-row .col.product-details .select-quantity select {
    color: #0E0C12;
  }

  .cookies-popup {
    padding: 10px 0;
    border-width: 1px;
  }
  .cookies-popup .flex-row {
    align-items: center;
    justify-content: space-between;
  }
  .cookies-popup .flex-row .fs-16 {
    font-size: 14px;
  }

  .screen-age {
    height: 100vh;
    min-height: 600px;
    padding: 100px 0 60px !important;
  }
  .screen-age .mini-header {
    padding: 10px 15px;
  }
  .screen-age h1 {
    font-size: 35px !important;
    margin-bottom: 20px;
  }
  .screen-age h1 span {
    padding: 15px 10px 10px !important;
  }
  .screen-age .wrap {
    z-index: 2;
  }
  .screen-age .age-choise a {
    padding: 30px 30px;
    font-size: 30px;
  }
  .screen-age .decor {
    opacity: 0;
  }
  .screen-age .decor:before {
    content: "";
    width: 35%;
    pointer-events: none;
  }
  .screen-age .decor:after {
    content: "";
    width: 35%;
    pointer-events: none;
  }
  .screen-age:before {
    content: "";
    width: 35%;
    pointer-events: none;
  }
  .screen-age:after {
    content: "";
    width: 35%;
    pointer-events: none;
  }
  .screen-age.is_no .decor {
    opacity: 1;
  }

  .screen-404 {
    padding: 80px 0 220px !important;
    overflow: hidden;
    background: url("../img/404-bg.png") no-repeat right !important;
    background-size: cover !important;
    background-attachment: unset !important;
  }
  .screen-404 .wrap:before {
    content: "";
    width: 120px;
    height: 120px;
    background: url("../img/unlike.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    left: -30px;
    bottom: -120px;
  }
  .screen-404 .wrap:after {
    content: "";
    width: 150px;
    height: 100px;
    background: url("../img/try.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    right: -40px;
    bottom: -170px;
  }
  .screen-404 img {
    display: block;
    margin: 0 auto;
    max-width: 690px;
    width: 100%;
  }

  .main-popup-wrap.reg_info_popup .popup {
    padding: 40px 15px 30px;
  }

  .popup-wrap {
    padding: 40px 15px;
  }

  .popup {
    padding: 40px 15px;
  }
  .popup.mini-popup {
    max-width: 530px;
    padding: 40px 15px;
  }
  .popup .text-wrapper ul {
    padding-left: 25px;
  }
  .popup .text-wrapper ul li {
    font-size: 14px;
  }
  .popup .text-wrapper ul li:before {
    width: 15px;
    height: 10px;
    margin-left: -25px;
    margin-right: 10px;
  }
  .popup .smile-wrap {
    margin-bottom: 30px;
  }
  .popup .smile-wrap img {
    width: 100px;
    display: block;
    margin: 0 auto;
  }
  .popup .text-wrap {
    margin-top: 30px;
    font-size: 24px;
  }
  .popup .btn-wrap {
    margin-top: 30px;
  }
  .popup .closer {
    right: 15px;
    top: 15px;
  }
  .popup .closer img {
    width: 30px;
  }

  .breadcrumbs-screen {
    padding: 80px 0 0;
  }
  .breadcrumbs-screen .breadcrumbs {
    width: calc(100% + 30px);
    margin-left: -15px;
    overflow: auto;
    white-space: nowrap;
    padding: 0 15px 10px;
  }
  .breadcrumbs-screen ul li:not(:first-of-type):before {
    margin: 0 5px;
  }
  .breadcrumbs-screen ul li:last-of-type {
    margin-right: 15px;
  }
  .breadcrumbs-screen ul li a {
    font-size: 12px;
  }
  .breadcrumbs-screen ul li span {
    font-size: 12px;
  }

  .mob-visible {
    display: block !important;
  }

  .pc-visible {
    display: none !important;
  }

  .section-heading.mini {
    font-size: 16px;
  }

  .text-content {
    font-size: 14px;
  }
  .text-content img {
    box-shadow: 4px 3px 0px #120C25;
    border-radius: 10px;
    margin: 30px 0;
  }
  .text-content a {
    text-decoration: underline;
    color: #9868FF;
  }
  .text-content a:hover {
    text-decoration: none;
  }
  .text-content p {
    font-size: 14px;
    margin: 15px 0;
  }
  .text-content h1 {
    font-size: 18px;
    margin: 20px 0;
  }
  .text-content h2 {
    font-size: 16px;
    margin: 20px 0;
  }
  .text-content h3 {
    font-weight: 700;
    font-size: 15px;
    margin: 18px 0;
  }
  .text-content h4 {
    font-size: 14px;
    margin: 15px 0;
  }
  .text-content h5 {
    font-size: 13px;
    margin: 15px 0;
  }
  .text-content ul {
    padding-left: 30px;
  }
  .text-content ul li {
    margin-bottom: 10px;
  }

  .blog-tabs-wrap {
    margin-top: 50px;
  }
  .blog-tabs-wrap ul {
    display: inline-flex;
    justify-content: space-between;
    overflow: auto;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 0 15px 10px;
  }
  .blog-tabs-wrap ul li {
    flex: 0 0 auto;
    display: inline-block;
    margin: 0 5px;
    padding: 5px 15px;
    border: 1px solid #0E0C12;
    box-shadow: 2px 2px 0px #120C25;
    border-radius: 5px;
  }
  .blog-tabs-wrap ul li a {
    font-size: 14px;
  }

  .nav-links {
    text-align: center;
    margin-top: 30px;
  }

  .fs-12 {
    font-size: 12px;
  }

  .fs-14 {
    font-size: 14px;
  }

  .fs-16 {
    font-size: 16px;
  }

  .fs-18 {
    font-size: 18px;
  }

  .fs-20 {
    font-size: 20px;
  }

  .fs-22 {
    font-size: 22px;
  }

  .fs-24 {
    font-size: 24px;
  }

  .fs-26 {
    font-size: 26px;
  }

  .fs-28 {
    font-size: 28px;
  }

  .fs-30 {
    font-size: 30px;
  }

  .fs-32 {
    font-size: 32px;
  }

  .fs-33 {
    font-size: 33px;
  }

  .fs-34 {
    font-size: 34px;
  }

  .header + .default-screen {
    padding-top: 120px;
  }

  .default-screen {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .gam {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .text-stroke-black {
    -webkit-text-stroke: 1px #0E0C12;
  }

  .text-shadow-black {
    text-shadow: 3px 3px 0px #0E0C12;
  }
  .text-shadow-black.mob-small {
    text-shadow: 2px 2px 0px #0E0C12;
  }

  .pddt-100 {
    padding-top: 60px;
  }

  .pddb-100 {
    padding-bottom: 60px;
  }

  .pddt-200 {
    padding-top: 140px;
  }

  .pddb-200 {
    padding-bottom: 140px;
  }

  .main-btn {
    padding: 0 35px;
    height: 50px;
    font-size: 14px;
  }
  .main-btn.with-arrow:after {
    width: 30px;
    height: 15px;
  }

  .section-heading {
    font-size: 40px;
  }
  .section-heading.small {
    font-size: 35px;
  }

  .section-subheading {
    margin: 20px auto 0;
    font-size: 18px;
  }

  h1.main-heading {
    font-size: 50px;
  }
  h1.main-heading.small {
    font-size: 44px;
  }
  h1.main-heading span {
    padding: 10px 25px 6px;
    margin: 0 0 6px;
  }
  h1.main-heading span:before {
    z-index: -1;
    box-shadow: 4px 4px 0px #0E0C12;
  }

  .messanger {
    width: 60px;
    right: 15px;
    bottom: -70px;
  }

  .hand {
    width: 30px;
    height: 45px;
    display: none;
  }

  .nav-wrap div {
    width: 42px;
    height: 42px;
  }

  .input-wrap {
    margin-bottom: 12px;
  }
  .input-wrap input {
    height: 60px;
    font-size: 14px;
  }

  .soc a {
    width: 42px;
    height: 42px;
  }
  .soc a:not(:last-of-type) {
    margin-right: 10px;
  }
  .soc a img {
    width: 16px;
    height: 16px;
  }

  .menu-title {
    font-size: 14px;
    margin-bottom: 14px;
  }
}
.product-screen {
  padding: 50px 0;
}
.product-screen .flex-row .col {
  width: calc(33.3% - 40px);
}
.product-screen .flex-row .col.description-wrap .tags-wrap {
  margin-top: 20px;
}
.product-screen .flex-row .col.description-wrap .tags-wrap a {
  height: 30px;
  border-radius: 8px;
  font-size: 14px;
  padding: 0 15px;
  margin-right: 5px;
  margin-top: 5px;
}
.product-screen .flex-row .col.description-wrap .text-content {
  margin-top: 30px;
}
.product-screen .flex-row .col.description-wrap .text-content p {
  font-size: 16px;
}
.product-screen .flex-row .col.description-wrap .reactions-wrap {
  margin-top: 30px;
}
.product-screen .flex-row .col.description-wrap .reactions-wrap .reactions {
  margin-top: 10px;
}
.product-screen .flex-row .col.description-wrap .reactions-wrap .reactions span {
  margin-right: 5px;
  display: inline-block;
  padding: 5px 7px;
  background: #F5F1E0;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.2s;
  font-size: 14px;
  color: #666666;
}
.product-screen .flex-row .col.description-wrap .reactions-wrap .reactions span.active, .product-screen .flex-row .col.description-wrap .reactions-wrap .reactions span:hover {
  background: #FFEB7F;
  color: #0E0C12;
}
.product-screen .flex-row .col.product-image {
  background: #FDFBED;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #CCCCCC;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.product-screen .flex-row .col.product-image .navs button {
  position: absolute;
  background: none;
  padding: 5px;
  bottom: 28px;
  z-index: 5;
}
.product-screen .flex-row .col.product-image .navs button.nav-prev {
  left: 0;
}
.product-screen .flex-row .col.product-image .navs button.nav-next {
  right: 0;
}
.product-screen .flex-row .col.product-image .product-slider {
  width: 100%;
}
.product-screen .flex-row .col.product-image .product-slider img {
  padding: 50px 50px;
  width: 100%;
  object-fit: contain;
  height: 100%;
  max-height: 400px;
}
.product-screen .flex-row .col.product-image .product-slider .swiper-wrapper {
  align-items: stretch;
}
.product-screen .flex-row .col.product-image .product-slider .swiper-wrapper .swiper-slide {
  height: auto;
}
.product-screen .flex-row .col.product-image .product-slider-thumb {
  width: calc(100% + 1px);
  margin-right: -1px;
  border-top: 1px solid #CCCCCC;
  margin-top: auto;
}
.product-screen .flex-row .col.product-image .product-slider-thumb .navs button {
  position: absolute;
  background: none;
  padding: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.product-screen .flex-row .col.product-image .product-slider-thumb .navs button.nav-prev {
  left: 0;
}
.product-screen .flex-row .col.product-image .product-slider-thumb .navs button.nav-next {
  right: 0;
}
.product-screen .flex-row .col.product-image .product-slider-thumb .swiper-slide:not(:last-of-type) {
  border-right: 1px solid #CCCCCC;
}
.product-screen .flex-row .col.product-image .product-slider-thumb .swiper-slide.swiper-slide-active {
  background: #E1DDCC;
}
.product-screen .flex-row .col.product-image .product-slider-thumb img {
  height: 90px;
  width: 100%;
  object-fit: contain;
  padding: 15px;
}
.product-screen .flex-row .col.product-details {
  padding-bottom: 170px;
}
.product-screen .flex-row .col.product-details .top {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.product-screen .flex-row .col.product-details .top .stars {
  margin-right: 10px;
}
.product-screen .flex-row .col.product-details .section-heading {
  margin-top: 20px;
}
.product-screen .flex-row .col.product-details .select-weight {
  margin-top: 38px;
}
.product-screen .flex-row .col.product-details .select-weight .title {
  display: flex;
  justify-content: space-between;
}
.product-screen .flex-row .col.product-details .select-weight .weights {
  border-radius: 8px;
  display: inline-flex;
  align-items: stretch;
  flex-flow: row;
  flex-wrap: wrap;
  margin-top: 10px;
  overflow: hidden;
}
.product-screen .flex-row .col.product-details .select-weight .weights input {
  display: none;
}
.product-screen .flex-row .col.product-details .select-weight .weights input:checked + label {
  background: white;
  color: #9868FF;
}
.product-screen .flex-row .col.product-details .select-weight .weights label {
  padding: 7px 20px;
  cursor: pointer;
  background: #F8F6E9;
  transition: 0.2s;
  font-size: 16px;
  font-weight: 500;
}
.product-screen .flex-row .col.product-details .select-weight .weights label:not(:last-of-type) {
  border-right: 1px solid #0E0C12;
}
.product-screen .flex-row .col.product-details .select-quantity {
  margin-top: 38px;
}
.product-screen .flex-row .col.product-details .select-quantity .qty-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}
.product-screen .flex-row .col.product-details .select-quantity .price {
  font-size: 14px;
  margin-left: 35px;
}
.product-screen .flex-row .col.product-details .select-quantity .price i {
  font-style: normal;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
}
.product-screen .flex-row .col.product-details .select-quantity .price span, .product-screen .flex-row .col.product-details .select-quantity .price ins {
  font-size: 24px;
  font-weight: 800;
  display: inline-block;
  margin-right: 3px;
  font-family: Neue Machina !important;
  text-decoration: none;
}
.product-screen .flex-row .col.product-details .select-quantity .price ins {
  color: #FF3B30;
  font-size: 18px;
}
.product-screen .flex-row .col.product-details .select-quantity .price ins i {
  color: #FF3B30;
}
.product-screen .flex-row .col.product-details .select-quantity .price del {
  font-size: 18px;
  font-family: Neue Machina !important;
  text-decoration: line-through;
  color: #666666;
  font-weight: 400;
  display: inline-block;
  margin-left: 5px;
}
.product-screen .flex-row .col.product-details .select-quantity .price del i {
  font-size: 14px;
}
.product-screen .flex-row .col.product-details .main-btn {
  margin-top: 38px;
  width: 100%;
}
.product-screen .flex-row .col.accordeons {
  border-top: 1px solid #DBDBDB;
  margin-top: -116px;
}
.product-screen .flex-row .col.accordeons .acc-wrap .top {
  border-bottom: 1px solid #DBDBDB;
  padding: 15px 30px 15px 0;
  position: relative;
  cursor: pointer;
  font-size: 18px;
}
.product-screen .flex-row .col.accordeons .acc-wrap .top.active {
  border-bottom-color: transparent;
}
.product-screen .flex-row .col.accordeons .acc-wrap .top.active:after {
  transform: rotate(-180deg);
}
.product-screen .flex-row .col.accordeons .acc-wrap .top:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  background: url("../img/down.svg") no-repeat center;
  background-size: contain;
  transition: 0.3s;
}
.product-screen .flex-row .col.accordeons .acc-wrap .bottom {
  padding: 15px 0;
  display: none;
  border-bottom: 1px solid #DBDBDB;
}
.product-screen .flex-row .col.accordeons .acc-wrap .bottom .text-content p {
  margin-top: 10px;
}

.user-reviews-wrap .rev {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 15px;
}
.user-reviews-wrap .rev:not(:first-of-type) {
  padding-top: 15px;
}
.user-reviews-wrap .rev .title {
  display: flex;
  justify-content: space-between;
}
.user-reviews-wrap .rev .title .username {
  font-size: 14px;
}
.user-reviews-wrap .rev .text-content {
  margin-top: 0;
}
.user-reviews-wrap .rev .text-content p {
  margin-top: 10px;
}
.user-reviews-wrap .rev .bottom-block {
  margin-top: 15px;
}
.user-reviews-wrap .rev .bottom-block a {
  display: inline-block;
  margin-right: 10px;
  color: #666666;
}
.user-reviews-wrap .rev .bottom-block a:hover {
  opacity: 0.6;
}
.user-reviews-wrap .rev .bottom-block a.active {
  color: #0E0C12;
}
.user-reviews-wrap .rev .bottom-block a img {
  display: inline-block;
  width: 18px;
  margin-right: 4px;
}

.product-screen2 {
  padding-bottom: 100px !important;
  padding-top: 100px;
}
.product-screen2 .product-carousels {
  margin-top: 0;
}
.product-screen2 .products-carousel {
  display: block;
}
.product-screen2 .products-carousel:not(:last-of-type) {
  margin-bottom: 100px;
}
.product-screen2 .products-carousel .empty-col {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.product-screen2 .products-carousel .swiper {
  margin-top: 30px;
  width: 100%;
}

@media (max-width: 1300px) {
  .product-screen {
    padding: 50px 0;
  }
  .product-screen .flex-row .col {
    width: calc(33.3% - 20px);
  }
  .product-screen .flex-row .col.description-wrap .tags-wrap {
    margin-top: 20px;
  }
  .product-screen .flex-row .col.description-wrap .tags-wrap a {
    height: 30px;
    font-size: 12px;
    padding: 0 15px;
  }
  .product-screen .flex-row .col.description-wrap .text-content {
    margin-top: 30px;
  }
  .product-screen .flex-row .col.description-wrap .text-content p {
    font-size: 14px;
  }
  .product-screen .flex-row .col.description-wrap .reactions-wrap {
    margin-top: 30px;
  }
  .product-screen .flex-row .col.description-wrap .reactions-wrap .reactions span {
    margin-right: 5px;
    padding: 5px 7px;
    font-size: 12px;
  }
  .product-screen .flex-row .col.product-image {
    border-radius: 20px;
  }
  .product-screen .flex-row .col.product-image .product-slider {
    width: 100%;
  }
  .product-screen .flex-row .col.product-image .product-slider img {
    padding: 50px 30px;
    height: 500px;
  }
  .product-screen .flex-row .col.product-image .product-slider-thumb {
    width: calc(100% + 1px);
  }
  .product-screen .flex-row .col.product-image .product-slider-thumb .navs button {
    padding: 5px;
  }
  .product-screen .flex-row .col.product-image .product-slider-thumb img {
    height: 80px;
    padding: 10px;
  }
  .product-screen .flex-row .col.product-details {
    padding-bottom: 150px;
  }
  .product-screen .flex-row .col.product-details .top {
    font-size: 12px;
  }
  .product-screen .flex-row .col.product-details .section-heading {
    margin-top: 20px;
  }
  .product-screen .flex-row .col.product-details .select-weight {
    margin-top: 35px;
  }
  .product-screen .flex-row .col.product-details .select-weight .weights {
    margin-top: 10px;
  }
  .product-screen .flex-row .col.product-details .select-weight .weights label {
    padding: 7px 15px;
    font-size: 12px;
  }
  .product-screen .flex-row .col.product-details .select-quantity {
    margin-top: 35px;
  }
  .product-screen .flex-row .col.product-details .select-quantity .qty-wrap {
    margin-top: 10px;
  }
  .product-screen .flex-row .col.product-details .select-quantity .price {
    font-size: 12px;
    margin-left: 35px;
  }
  .product-screen .flex-row .col.product-details .select-quantity .price span {
    font-size: 22px;
  }
  .product-screen .flex-row .col.product-details .main-btn {
    margin-top: 35px;
  }
  .product-screen .flex-row .col.accordeons {
    margin-top: -116px;
  }
  .product-screen .flex-row .col.accordeons .acc-wrap .top {
    padding: 15px 30px 15px 0;
    font-size: 16px;
  }

  .user-reviews-wrap .rev .title .username {
    font-size: 14px;
  }
  .user-reviews-wrap .rev .text-content {
    margin-top: 0;
  }
  .user-reviews-wrap .rev .text-content p {
    font-size: 14px;
  }
  .user-reviews-wrap .rev .bottom-block {
    margin-top: 15px;
  }
  .user-reviews-wrap .rev .bottom-block a img {
    width: 18px;
  }

  .product-screen2 {
    padding-bottom: 80px !important;
    padding-top: 80px;
  }
  .product-screen2 .products-carousel {
    display: block;
  }
  .product-screen2 .products-carousel:not(:last-of-type) {
    margin-bottom: 80px;
  }
  .product-screen2 .products-carousel .swiper {
    margin-top: 30px;
  }
}
@media (max-width: 992px) {
  .product-screen2 .products-carousel .empty-col {
    padding-right: 0;
  }
  .product-screen2 .products-carousel .empty-col .section-heading {
    word-break: unset;
  }

  .breadcrumbs-screen {
    display: none;
  }

  .product-screen {
    padding: 80px 0 50px;
  }
  .product-screen .flex-row {
    flex-direction: column;
    position: relative;
  }
  .product-screen .flex-row .col {
    width: 100%;
  }
  .product-screen .flex-row .col.description-wrap {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  .product-screen .flex-row .col.description-wrap .tags-wrap {
    margin-top: 20px;
  }
  .product-screen .flex-row .col.description-wrap .tags-wrap a {
    height: 30px;
    font-size: 12px;
    padding: 0 15px;
    height: 30px;
    font-weight: 400;
  }
  .product-screen .flex-row .col.description-wrap .mob-product-desc {
    order: 2;
    display: none;
    border-bottom: 1px solid #DBDBDB;
  }
  .product-screen .flex-row .col.description-wrap .text-content {
    margin-top: 30px;
  }
  .product-screen .flex-row .col.description-wrap .text-content p {
    font-size: 14px;
  }
  .product-screen .flex-row .col.description-wrap .mob-acc-heading {
    order: 1;
    border-bottom: 1px solid #DBDBDB;
    border-top: 1px solid #DBDBDB;
    padding: 15px 30px 15px 0;
    position: relative;
    cursor: pointer;
    font-size: 16px;
  }
  .product-screen .flex-row .col.description-wrap .mob-acc-heading.active {
    border-bottom-color: transparent;
  }
  .product-screen .flex-row .col.description-wrap .mob-acc-heading.active:after {
    transform: rotate(-180deg);
  }
  .product-screen .flex-row .col.description-wrap .mob-acc-heading:after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
    background: url("../img/down.svg") no-repeat center;
    background-size: contain;
    transition: 0.3s;
  }
  .product-screen .flex-row .col.description-wrap .reactions-wrap {
    margin-top: 0;
    order: 0;
    position: absolute;
    top: 420px;
    left: 0;
    text-align: center;
    width: 100%;
  }
  .product-screen .flex-row .col.description-wrap .reactions-wrap .reactions span {
    margin-right: 5px;
    padding: 5px 7px;
    font-size: 12px;
  }
  .product-screen .flex-row .col.product-image {
    border-radius: 0;
    order: 0;
    margin-top: 0;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-left: none;
    border-right: none;
  }
  .product-screen .flex-row .col.product-image .navs {
    display: block;
  }
  .product-screen .flex-row .col.product-image .navs button {
    font-size: 30px;
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
  }
  .product-screen .flex-row .col.product-image .product-slider img {
    padding: 70px 30px 50px;
    height: 500px;
  }
  .product-screen .flex-row .col.product-image .product-slider .navs {
    display: block;
  }
  .product-screen .flex-row .col.product-image .product-slider .navs button {
    font-size: 30px;
  }
  .product-screen .flex-row .col.product-image .product-slider-thumb {
    display: none;
  }
  .product-screen .flex-row .col.product-details {
    padding-bottom: 30px;
    order: 1;
    padding-top: 80px;
    text-align: center;
  }
  .product-screen .flex-row .col.product-details .top {
    font-size: 12px;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 2;
  }
  .product-screen .flex-row .col.product-details .section-heading {
    margin-top: 20px;
  }
  .product-screen .flex-row .col.product-details .select-weight {
    margin-top: 0;
  }
  .product-screen .flex-row .col.product-details .select-weight .title span {
    display: none;
  }
  .product-screen .flex-row .col.product-details .select-weight .instock {
    position: absolute;
    text-indent: 0;
    top: 17px;
    right: 0;
    font-size: 12px;
  }
  .product-screen .flex-row .col.product-details .select-weight .weights {
    margin-top: 10px;
    display: none;
  }
  .product-screen .flex-row .col.product-details .select-weight .weights label {
    padding: 7px 20px;
    font-size: 14px;
  }
  .product-screen .flex-row .col.product-details .select-quantity {
    margin-top: 35px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 70px;
    position: relative;
  }
  .product-screen .flex-row .col.product-details .select-quantity .c {
    width: calc(50% - 10px);
  }
  .product-screen .flex-row .col.product-details .select-quantity select {
    width: 100%;
    display: block;
    height: 40px;
    border: 1px solid #0E0C12;
    border-radius: 7px;
    padding: 0 25px 0 10px;
    font-size: 14px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #F8F6E9;
    background-image: url("../img/down.svg");
    background-size: 10px;
    background-position: calc(100% - 10px);
    background-repeat: no-repeat;
    margin-top: 10px;
  }
  .product-screen .flex-row .col.product-details .select-quantity .qty-wrap {
    margin-top: 10px;
    width: 100%;
  }
  .product-screen .flex-row .col.product-details .select-quantity .qty-wrap .qty-input {
    width: 100%;
  }
  .product-screen .flex-row .col.product-details .select-quantity .price {
    font-size: 14px;
    margin-left: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .product-screen .flex-row .col.product-details .select-quantity .price span {
    font-size: 36px;
  }
  .product-screen .flex-row .col.product-details .main-btn {
    margin-top: 20px;
  }
  .product-screen .flex-row .col.accordeons {
    margin-top: 0;
    border-top: none;
  }
  .product-screen .flex-row .col.accordeons .acc-wrap .top {
    padding: 15px 30px 15px 0;
    font-size: 16px;
  }
  .product-screen .flex-row .col.accordeons .acc-wrap .bottom {
    padding: 0;
  }

  .user-reviews-wrap .rev .title .username {
    font-size: 14px;
  }
  .user-reviews-wrap .rev .text-content {
    margin-top: 0;
  }
  .user-reviews-wrap .rev .text-content p {
    font-size: 14px;
  }
  .user-reviews-wrap .rev .bottom-block {
    margin-top: 15px;
  }
  .user-reviews-wrap .rev .bottom-block a img {
    width: 18px;
  }

  .product-screen2 {
    padding-bottom: 50px !important;
    padding-top: 20px !important;
  }
  .product-screen2 .products-carousel {
    display: block;
  }
  .product-screen2 .products-carousel .nav-wrap {
    display: none;
  }
  .product-screen2 .products-carousel:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .product-screen2 .products-carousel .swiper {
    margin-top: 30px;
    width: calc(100% + 15px);
  }
}
.go-wrap {
  border-top: none !important;
  padding-top: 0 !important;
}

.gray-orders {
  background: #E8E6D9;
  border-radius: 10px;
  padding: 20px 15px !important;
}

.small-order {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 14px;
}

.small-order .l {
  width: calc(100% - 50px);
}

.small-order .r {
  width: 45px;
  text-align: right;
}

.small-order span {
  margin-right: 15px;
  opacity: 0.5;
}

.small-order:not(:last-of-type) {
  margin-bottom: 20px;
}

.gift-popup .gifts-inner {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 18px;
  overflow: auto;
  max-height: calc(100vh - 300px);
  min-height: 150px;
  padding-top: 7px;
  width: calc(100% + 30px);
  margin-left: -15px;
  padding-left: 15px;
  padding-right: 15px;
}
.gift-popup .gifts-inner .one-gift {
  width: calc(50% - 7px);
  padding: 15px;
  border-radius: 10px;
  transition: 0.2s;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 15px;
  transition: 0.2s;
  position: relative;
  cursor: pointer;
}
.gift-popup .gifts-inner .one-gift:not(.active) {
  border-color: #DBDBDB;
}
.gift-popup .gifts-inner .one-gift:hover {
  background: #F8F6E9;
}
.gift-popup .gifts-inner .one-gift.active {
  background: #F8F6E9;
}
.gift-popup .gifts-inner .one-gift.active:after {
  content: "";
  width: 23px;
  height: 23px;
  background: url("../img/cc.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 1;
}
.gift-popup .gifts-inner .one-gift .img-wrap {
  border-radius: 10px;
  width: 90px;
  height: 90px;
  background: #FDFBEE;
}
.gift-popup .gifts-inner .one-gift .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gift-popup .gifts-inner .one-gift .right {
  width: calc(100% - 105px);
  display: flex;
  flex-direction: column;
}
.gift-popup .gifts-inner .one-gift .right span {
  width: 100%;
  text-align: left;
  margin-bottom: 3px;
  display: block;
}
.gift-popup .gifts-inner .one-gift .right span:last-of-type {
  margin-top: auto;
  margin-bottom: 0;
}
.gift-popup .popup {
  padding: 50px 35px 30px !important;
  max-width: 750px;
}
.gift-popup .popup .bottom-wrap {
  padding-top: 30px;
}
.gift-popup .popup .bottom-wrap .gift-counter {
  margin-bottom: 10px;
  vertical-align: text-top;
}
.gift-popup .popup .bottom-wrap .gift-counter b {
  vertical-align: text-top;
}
.gift-popup .popup .bottom-wrap button {
  width: 100%;
}

.cart-screen {
  padding: 35px 0 50px;
}
.cart-screen .heading {
  font-size: 24px;
  margin-bottom: 25px;
}
.cart-screen .cart-line + .heading {
  margin-top: 30px;
}

.cart-line {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border: 1px solid #DBDBDB;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.cart-line .img-wrap {
  width: 200px;
  height: 200px;
  background: #FDFBEE;
  border-radius: 20px;
  padding: 15px;
}
.cart-line .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-line .right-block {
  width: calc(100% - 220px);
  display: flex;
  flex-direction: column;
  padding-right: 100px;
  position: relative;
}
.cart-line .right-block .product-name {
  font-size: 18px;
}
.cart-line .right-block .info {
  margin-top: 10px;
  font-size: 14px;
  margin-bottom: 15px;
}
.cart-line .right-block .conditions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cart-line .right-block .conditions .col {
  margin-right: 15px;
}
.cart-line .right-block .conditions .col span {
  display: block;
  font-size: 14px;
}
.cart-line .right-block .conditions .col select {
  width: 100%;
  display: block;
  height: 40px;
  border: 1px solid #0E0C12;
  border-radius: 7px;
  padding: 0 25px 0 10px;
  font-size: 14px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #F8F6E9;
  background-image: url("../img/down.svg");
  background-size: 10px;
  background-position: calc(100% - 10px);
  background-repeat: no-repeat;
  margin-top: 10px;
  color: #0E0C12;
}
.cart-line .right-block .remove-block {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0;
  text-align: right;
}
.cart-line .right-block .remove-block a {
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.2s;
}
.cart-line .right-block .remove-block a:hover {
  opacity: 0.5;
}
.cart-line .right-block .remove-block a img {
  width: 25px;
  margin-left: 10px;
}
.cart-line .right-block .remove-block .price {
  margin-top: 60px;
  font-size: 18px;
  font-weight: 800;
}

.choose_link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
}
.choose_link:hover {
  color: #9868FF;
}
.choose_link:hover img, .choose_link:hover svg {
  transform: translateX(10px);
}
.choose_link:hover svg path[fill="#0E0C12"] {
  fill: #9868FF;
}
.choose_link:hover svg path[stroke="#0E0C12"] {
  stroke: #9868FF;
}
.choose_link.active {
  color: #9868FF;
}
.choose_link.active svg {
  filter: drop-shadow(1px 1px 0 #9868FF);
}
.choose_link.active svg path[fill="#0E0C12"] {
  fill: #9868FF;
}
.choose_link.active svg path[stroke="#0E0C12"] {
  stroke: #9868FF;
}
.choose_link img, .choose_link svg {
  margin-left: 10px;
  width: 30px;
  transition: 0.2s;
}

.cart-banner {
  text-align: center;
  padding: 70px 15px;
  color: white;
  border-radius: 30px;
  margin: 30px 0;
}
.cart-banner .heading {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0 !important;
}
.cart-banner p {
  font-size: 14px;
  font-family: Nunito;
  margin-top: 12px;
}
.cart-banner .choose_link {
  margin-top: 25px;
  color: white;
}

.cart-totals {
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
}
.cart-totals .totals-wrap {
  display: flex;
  align-items: center;
  justify-content: stretch;
}
.cart-totals .totals-wrap .heading {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.cart-totals .totals-wrap > .left {
  width: 50%;
  padding: 15px 80px 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-totals .totals-wrap > .left .col {
  width: calc(50% - 40px);
}
.cart-totals .totals-wrap > .left .col .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cart-totals .totals-wrap > .left .col .line .left {
  font-size: 14px;
  font-family: "Nunito";
  white-space: nowrap;
}
.cart-totals .totals-wrap > .left .col .line .right {
  font-size: 14px;
  font-family: "Nunito";
}
.cart-totals .totals-wrap > .right {
  border-left: 1px solid #DBDBDB;
  width: 50%;
}
.cart-totals .totals-wrap > .right .top {
  padding: 15px 0 15px 32px;
  border-bottom: 1px solid #DBDBDB;
  font-family: Nunito;
}
.cart-totals .totals-wrap > .right .top .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-totals .totals-wrap > .right .top .inner > span {
  width: calc(50% + 40px);
  font-size: 14px;
  color: #666666;
}
.cart-totals .totals-wrap > .right .top .inner > span img {
  display: inline-block;
}
.cart-totals .totals-wrap > .right .top .input-wrap {
  width: calc(50% - 60px);
  margin: 0;
}
.cart-totals .totals-wrap > .right .top .input-wrap input {
  height: 38px;
  background: #F8F6E9;
}

.table-wrap {
  padding: 20px 0 20px 32px;
}
.table-wrap table {
  width: 100%;
}
.table-wrap table tr:not(:last-of-type) td {
  font-family: Nunito;
}
.table-wrap table tr:last-of-type td {
  font-size: 24px;
  font-weight: 800;
  padding-bottom: 0;
}
.table-wrap table tr td {
  padding: 0 0 10px;
  font-size: 14px;
}
.table-wrap table tr td:last-of-type {
  text-align: right;
}

.cart-btn-wrap {
  margin-top: 30px;
}
.cart-btn-wrap .main-btn {
  width: 100%;
  max-width: 300px;
}

@media (max-width: 1300px) {
  .cart-screen {
    padding: 50px 0;
  }
  .cart-screen .heading {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .cart-screen .cart-line + .heading {
    margin-top: 30px;
  }

  .cart-line {
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
  }
  .cart-line .img-wrap {
    width: 200px;
    height: 200px;
    padding: 15px;
  }
  .cart-line .right-block {
    width: calc(100% - 220px);
    padding-right: 100px;
  }
  .cart-line .right-block .product-name {
    font-size: 18px;
  }
  .cart-line .right-block .info {
    font-size: 14px;
  }
  .cart-line .right-block .conditions .col {
    margin-right: 15px;
  }
  .cart-line .right-block .conditions .col span {
    font-size: 14px;
  }
  .cart-line .right-block .conditions .col select {
    height: 35px;
  }
  .cart-line .right-block .remove-block a {
    font-size: 12px;
  }
  .cart-line .right-block .remove-block a img {
    width: 25px;
  }
  .cart-line .right-block .remove-block .price {
    margin-top: 50px;
    font-size: 18px;
  }

  .choose_link {
    font-size: 14px;
  }
  .choose_link img {
    width: 30px;
  }

  .cart-banner {
    padding: 70px 15px;
    margin: 30px 0;
  }
  .cart-banner .heading {
    font-size: 18px;
  }
  .cart-banner p {
    font-size: 14px;
  }
  .cart-banner .choose_link {
    margin-top: 25px;
  }

  .cart-totals .totals-wrap .heading {
    font-size: 18px;
  }
  .cart-totals .totals-wrap > .left {
    padding: 15px 40px 15px 0;
  }
  .cart-totals .totals-wrap > .left .col {
    width: calc(50% - 20px);
  }
  .cart-totals .totals-wrap > .left .col .line {
    margin-bottom: 5px;
  }
  .cart-totals .totals-wrap > .left .col .line .left {
    font-size: 14px;
  }
  .cart-totals .totals-wrap > .left .col .line .right {
    font-size: 14px;
  }
  .cart-totals .totals-wrap > .right .top {
    padding: 15px 0 15px 20px;
  }
  .cart-totals .totals-wrap > .right .top .inner > span {
    width: calc(50% + 40px);
    font-size: 10px;
  }
  .cart-totals .totals-wrap > .right .top .input-wrap {
    width: calc(50% - 60px);
  }
  .cart-totals .totals-wrap > .right .top .input-wrap input {
    height: 38px;
  }

  .table-wrap {
    padding: 15px 0 15px 20px;
  }
  .table-wrap table tr:last-of-type td {
    font-size: 24px;
  }
  .table-wrap table tr td {
    font-size: 14px;
  }

  .cart-btn-wrap {
    margin-top: 30px;
  }
  .cart-btn-wrap .main-btn {
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  .gift-popup .gifts-inner {
    margin-top: 18px;
    padding-top: 7px;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .gift-popup .gifts-inner .one-gift {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    transition: 0.2s;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 15px;
    transition: 0.2s;
    position: relative;
    cursor: pointer;
  }
  .gift-popup .gifts-inner .one-gift:not(.active) {
    border-color: #DBDBDB;
  }
  .gift-popup .gifts-inner .one-gift:hover {
    background: #F8F6E9;
  }
  .gift-popup .gifts-inner .one-gift.active {
    background: #F8F6E9;
  }
  .gift-popup .gifts-inner .one-gift.active:after {
    content: "";
    width: 23px;
    height: 23px;
    background: url("../img/cc.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    top: -7px;
    right: -7px;
    z-index: 1;
  }
  .gift-popup .gifts-inner .one-gift .img-wrap {
    border-radius: 10px;
    width: 90px;
    height: 90px;
    background: #FDFBEE;
  }
  .gift-popup .gifts-inner .one-gift .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .gift-popup .gifts-inner .one-gift .right {
    width: calc(100% - 105px);
    display: flex;
    flex-direction: column;
  }
  .gift-popup .gifts-inner .one-gift .right span {
    width: 100%;
    text-align: left;
    margin-bottom: 3px;
    display: block;
  }
  .gift-popup .gifts-inner .one-gift .right span:last-of-type {
    margin-top: auto;
    margin-bottom: 0;
  }
  .gift-popup .popup {
    padding: 50px 15px 30px !important;
    max-width: 750px;
  }
  .gift-popup .popup .bottom-wrap {
    padding-top: 30px;
  }
  .gift-popup .popup .bottom-wrap .gift-counter {
    margin-bottom: 10px;
    vertical-align: text-top;
  }
  .gift-popup .popup .bottom-wrap .gift-counter b {
    vertical-align: text-top;
  }
  .gift-popup .popup .bottom-wrap button {
    width: 100%;
  }

  .cart-screen {
    padding: 30px 0 20px;
  }
  .cart-screen .heading {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .cart-screen .cart-line + .heading {
    margin-top: 30px;
  }

  .cart-line {
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
    display: block;
    position: relative;
  }
  .cart-line .img-wrap {
    width: 150px;
    height: 150px;
    padding: 15px;
  }
  .cart-line .right-block {
    width: 100%;
    padding-right: 0;
    position: static;
    margin-top: 20px;
  }
  .cart-line .right-block .product-name {
    font-size: 16px;
  }
  .cart-line .right-block .info {
    font-size: 14px;
    display: block;
  }
  .cart-line .right-block .conditions {
    margin-top: 15px;
  }
  .cart-line .right-block .conditions .col {
    margin-right: 15px;
  }
  .cart-line .right-block .conditions .col span {
    font-size: 12px;
  }
  .cart-line .right-block .conditions .col select {
    height: 35px;
    width: 90px;
  }
  .cart-line .right-block .remove-block {
    position: static;
  }
  .cart-line .right-block .remove-block a {
    font-size: 0;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .cart-line .right-block .remove-block a img {
    width: 30px;
  }
  .cart-line .right-block .remove-block .price {
    margin-top: 50px;
    font-size: 18px;
    position: absolute;
    bottom: 17px;
    right: 15px;
  }

  .choose_link {
    font-size: 14px;
  }
  .choose_link img {
    width: 30px;
  }

  .cart-banner {
    padding: 50px 15px;
    margin: 30px 0;
    background: #9868FF !important;
  }
  .cart-banner .heading {
    font-size: 18px;
  }
  .cart-banner p {
    font-size: 14px;
  }
  .cart-banner .choose_link {
    margin-top: 25px;
  }

  .cart-totals .totals-wrap {
    flex-direction: column-reverse;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .cart-totals .totals-wrap .mob-acc {
    padding: 0 15px 15px 15px;
    display: none;
    position: relative;
  }
  .cart-totals .totals-wrap .heading {
    font-size: 18px;
    margin-bottom: 0;
  }
  .cart-totals .totals-wrap .mob_heading {
    font-size: 14px;
    font-weight: 800;
    font-family: Neue Machina;
    padding: 15px;
    position: relative;
    cursor: pointer;
  }
  .cart-totals .totals-wrap .mob_heading.active:after {
    transform: rotate(-180deg);
  }
  .cart-totals .totals-wrap .mob_heading:after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    right: 15px;
    background: url("../img/down.svg") no-repeat center;
    background-size: contain;
    transition: 0.3s;
  }
  .cart-totals .totals-wrap > .left {
    padding: 0;
    width: 100%;
    display: block;
  }
  .cart-totals .totals-wrap > .left .col {
    width: 100%;
  }
  .cart-totals .totals-wrap > .left .col:first-of-type {
    border-bottom: 1px solid #DBDBDB;
  }
  .cart-totals .totals-wrap > .left .col .line {
    margin-bottom: 5px;
  }
  .cart-totals .totals-wrap > .left .col .line .left {
    font-size: 14px;
  }
  .cart-totals .totals-wrap > .left .col .line .right {
    font-size: 14px;
  }
  .cart-totals .totals-wrap > .right {
    width: 100%;
    border-left: none;
    display: flex;
    flex-direction: column-reverse;
  }
  .cart-totals .totals-wrap > .right .top {
    padding: 0 0;
    width: 100%;
  }
  .cart-totals .totals-wrap > .right .top .inner {
    display: none;
  }
  .cart-totals .totals-wrap > .right .top .inner > span {
    width: 100%;
    font-size: 12px;
  }
  .cart-totals .totals-wrap > .right .top .input-wrap {
    width: 100%;
    margin-top: 5px;
  }
  .cart-totals .totals-wrap > .right .top .input-wrap input {
    height: 38px;
  }

  .table-wrap {
    padding: 25px 15px;
    border-bottom: 1px solid #DBDBDB;
  }
  .table-wrap table tr:last-of-type td {
    font-size: 18px;
  }
  .table-wrap table tr td {
    font-size: 14px;
  }

  .cart-btn-wrap {
    margin-top: 30px;
  }
  .cart-btn-wrap .main-btn {
    max-width: 300px;
  }
}
.thanks-screen {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evening_order_popup p {
  margin-top: 15px;
  font-size: 14px;
}
.evening_order_popup .main-btn {
  width: 100%;
  margin-top: 32px;
}

.user_night_discount_text p {
  margin-top: 15px;
}

.checkout-steps {
  border-radius: 30px;
  background: #FDFBEE;
  overflow: hidden;
  margin-bottom: 50px;
}
.checkout-steps ol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  counter-reset: li;
  /* Initiate a counter */
  list-style: none;
  /* Remove default numbering */
  *list-style: decimal;
  height: 50px;
}
.checkout-steps ol li {
  cursor: pointer;
  padding: 0 38px;
  position: relative;
  background: #FDFBEE;
  pointer-events: none;
}
.checkout-steps ol li:after {
  content: "";
  width: 100vw;
  height: 1px;
  background: #9868FF;
  position: absolute;
  left: 100%;
  top: calc(50% - 1px);
  display: block;
}
.checkout-steps ol li:before {
  content: counter(li);
  counter-increment: li;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #9868FF;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
}
.checkout-steps ol li a {
  font-size: 14px;
  font-weight: 500;
  color: #9868FF;
}
.checkout-steps ol li.active ~ li:after {
  background: #C9C6C6;
}
.checkout-steps ol li.active ~ li:before {
  background: #F4F1E2;
  color: #666666;
}
.checkout-steps ol li.active ~ li a {
  color: #666666;
}

.checkout-tab {
  display: none;
}
.checkout-tab.tab1 {
  display: block;
}
.checkout-tab .flex-row .left-content {
  width: 70%;
}
.checkout-tab .flex-row .right-content {
  width: calc(30% - 60px);
}

.checkout-form-wrap {
  padding: 40px;
  background: #FDFBEF;
  border-radius: 10px;
}
.checkout-form-wrap:not(:last-of-type) {
  margin-bottom: 60px;
}
.checkout-form-wrap .title {
  margin-bottom: 30px;
}
.checkout-form-wrap .inputs-wrap {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.checkout-form-wrap .inputs-wrap .divider {
  margin: 0 0 30px;
  border-top: 1px solid #DBDBDB;
  width: 100%;
}
.checkout-form-wrap .inputs-wrap .divider.mrgt {
  margin-top: 25px;
}
.checkout-form-wrap .inputs-wrap .input-wrap {
  width: calc(50% - 10px);
}
.checkout-form-wrap .inputs-wrap .input-wrap.full {
  width: 100%;
}
.checkout-form-wrap .inputs-wrap .input-wrap input {
  background: transparent;
}

.checkout-totals {
  border: 1px solid #DBDBDB;
  border-radius: 10px;
  padding: 30px 30px 0;
}
.checkout-totals .h:not(:first-of-type) {
  margin-top: 20px;
}
.checkout-totals .main-info {
  padding-bottom: 30px;
}
.checkout-totals .main-info table {
  margin-top: 8px;
  width: 100%;
}
.checkout-totals .main-info table tr td {
  font-size: 14px;
}
.checkout-totals .main-info table tr td:first-of-type {
  font-size: 14px;
  font-weight: 500;
}
.checkout-totals .main-info table tr td:last-of-type {
  text-align: right;
}
.checkout-totals .main-info table tr td:last-of-type a {
  color: #666666;
}
.checkout-totals .main-info table tr td a {
  color: #0E0C12;
  font-size: 14px;
}
.checkout-totals .main-info table tr td a:hover {
  text-decoration: underline;
}
.checkout-totals .top_block {
  padding-right: 30px;
  padding-bottom: 30px;
  position: relative;
  cursor: pointer;
}
.checkout-totals .top_block.active:after {
  transform: rotate(-180deg);
}
.checkout-totals .top_block:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../img/down.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 8px;
  transition: 0.2s;
}
.checkout-totals .bottom_block {
  padding: 30px 0 30px;
  border-top: 1px solid #DBDBDB;
}
.checkout-totals .bottom_block .table-wrap {
  padding: 0;
}

.step-buttons {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-buttons .prev_step {
  width: 40%;
  padding: 0;
}
.step-buttons .next_step {
  width: calc(60% - 15px);
  padding: 0;
}

label.form-label {
  width: 100%;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
label.form-label input[type=radio] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid #B9B9B9;
  background: #F8F6E9;
  position: relative;
  top: -3px;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 3px;
}
label.form-label input[type=radio]:checked {
  border: 5px solid #0E0C12;
}
label.form-label-checkbox {
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  color: #686868;
}
label.form-label-checkbox input[type=checkbox] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  box-sizing: border-box;
  border: 1px solid #B9B9B9;
  background: #F8F6E9;
  position: relative;
  top: -3px;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 3px;
}
label.form-label-checkbox input[type=checkbox]:checked {
  border: 1px solid #0E0C12;
  background: url("../img/check.svg") no-repeat center;
  background-size: 10px;
}

@media (max-width: 1200px) {
  .checkout-steps ol li {
    padding: 0 15px;
  }

  .checkout-tab .flex-row .right-content {
    width: calc(30% - 20px);
  }
}
@media (max-width: 992px) {
  .circle-bg {
    fill: none;
    stroke: #F0E6F2;
    stroke-width: 2;
  }

  .circle {
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 0 100;
    stroke: #9868FF;
    transition: 0.2s;
  }

  .circular-chart {
    display: block;
    max-width: 100%;
  }

  .single-chart {
    width: 62px;
    height: 62px;
    position: absolute;
    left: 0;
    top: 0;
  }

  .checkout-steps {
    border-radius: 0;
    margin-bottom: 0;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    position: absolute;
    right: 15px;
    top: -15px;
    overflow: visible;
  }
  .checkout-steps ol {
    display: block;
    height: 50px;
  }
  .checkout-steps ol li {
    cursor: pointer;
    padding: 2px;
    position: relative;
    background: none;
    pointer-events: none;
    display: none;
    width: 62px;
    height: 62px;
  }
  .checkout-steps ol li:after {
    display: none;
  }
  .checkout-steps ol li:before {
    content: attr(data-page);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #FDFBEF;
    border-radius: 50%;
    margin-right: 10px;
    color: #0E0C12;
    position: absolute;
    top: 2px;
    left: 2px;
  }
  .checkout-steps ol li a {
    display: none;
  }
  .checkout-steps ol li.active {
    display: block;
  }
  .checkout-steps ol li.active[data-page="1"] ~ .single-chart .circle {
    stroke-dasharray: 20 100;
  }
  .checkout-steps ol li.active[data-page="2"] ~ .single-chart .circle {
    stroke-dasharray: 40 100;
  }
  .checkout-steps ol li.active[data-page="3"] ~ .single-chart .circle {
    stroke-dasharray: 60 100;
  }
  .checkout-steps ol li.active[data-page="4"] ~ .single-chart .circle {
    stroke-dasharray: 80 100;
  }
  .checkout-steps ol li.active[data-page="5"] ~ .single-chart .circle {
    stroke-dasharray: 100 100;
  }

  .checkout-tab {
    display: none;
  }
  .checkout-tab .table-wrap {
    border-bottom: none;
  }
  .checkout-tab.tab1 {
    display: block;
  }
  .checkout-tab .flex-row {
    display: block;
  }
  .checkout-tab .flex-row .left-content {
    width: 100%;
  }
  .checkout-tab .flex-row .right-content {
    width: 100%;
    margin-top: 30px;
  }

  .checkout-form-wrap {
    padding: 30px 15px;
    border-radius: 10px;
  }
  .checkout-form-wrap:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .checkout-form-wrap .title {
    margin-bottom: 30px;
  }
  .checkout-form-wrap .inputs-wrap {
    display: block;
  }
  .checkout-form-wrap .inputs-wrap .divider {
    margin: 0 0 25px;
  }
  .checkout-form-wrap .inputs-wrap .divider.mrgt {
    margin-top: 25px;
  }
  .checkout-form-wrap .inputs-wrap .input-wrap {
    width: 100%;
  }
  .checkout-form-wrap .inputs-wrap .input-wrap.full {
    width: 100%;
  }

  .checkout-totals {
    padding: 30px 15px 0;
  }
  .checkout-totals .h:not(:first-of-type) {
    margin-top: 20px;
  }
  .checkout-totals .main-info {
    padding-bottom: 30px;
  }
  .checkout-totals .top_block {
    padding-right: 30px;
    padding-bottom: 30px;
  }
  .checkout-totals .bottom_block {
    padding: 30px 0 30px;
  }

  .step-buttons {
    margin-top: 24px;
    flex-direction: column-reverse;
  }
  .step-buttons .prev_step {
    width: 100%;
    padding: 0;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 10px;
  }
  .step-buttons .next_step {
    width: 100%;
    padding: 0;
  }

  label.form-label {
    margin-bottom: 30px;
    font-size: 14px;
    display: block;
  }
  label.form-label-checkbox {
    margin-top: 10px;
    font-size: 14px;
    display: block;
  }

  .checkout-screen.cart-screen {
    padding-bottom: 50px;
  }
}
.auth-form-wrap {
  position: relative;
  border-radius: 20px;
  margin-top: 30px;
}
.auth-form-wrap .left {
  width: 50%;
  padding: 90px 70px;
  background: #F8F6E9;
  border-radius: 20px;
  margin-top: -1px;
  margin-left: -1px;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
}
.auth-form-wrap .left p {
  margin-top: 15px;
  max-width: 400px;
}
.auth-form-wrap .left form {
  margin-top: 35px;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.auth-form-wrap .left form .input-wrap.attach-wrap input {
  background: url("../img/attach.svg") no-repeat calc(100% - 15px) !important;
}
.auth-form-wrap .left form .input-wrap {
  margin-bottom: 15px;
  width: calc(50% - 5px);
}
.auth-form-wrap .left form .input-wrap.full {
  width: 100%;
}
.auth-form-wrap .left form .input-wrap input {
  background: transparent;
}
.auth-form-wrap .left .no-account {
  margin-top: 20px;
  font-size: 12px;
  color: #0E0C12;
}
.auth-form-wrap .left .no-account a {
  color: #9868FF;
  vertical-align: text-bottom;
}
.auth-form-wrap .left .no-account a:hover {
  text-decoration: underline;
}
.auth-form-wrap .left .main-btn {
  box-shadow: 4px 3px 0px #120C25 !important;
}
.auth-form-wrap .left .text-with-divider {
  border-top: 1px solid #B9B9B9;
  margin-top: 40px;
  margin-bottom: 30px;
}
.auth-form-wrap .left .text-with-divider span {
  font-size: 14px;
  font-weight: 500;
  padding: 0 15px;
  display: inline-block;
  transform: translateY(-15px);
  background: #F8F6E9;
  color: #646268;
}
.auth-form-wrap .left .soc-login-buttons {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.auth-form-wrap .left .soc-login-buttons .main-btn {
  width: calc(50% - 10px);
  background: transparent;
  margin: 0;
  height: 48px;
  color: #0E0C12;
  box-shadow: 4px 3px 0px #120C25 !important;
}
.auth-form-wrap .left .soc-login-buttons .main-btn:hover {
  opacity: 0.5;
}
.auth-form-wrap .left .soc-login-buttons .main-btn img {
  width: 26px;
  margin-right: 10px;
}
.auth-form-wrap .left .soc-login-buttons .main-btn.full {
  width: 100%;
  margin-bottom: 20px;
}
.auth-form-wrap .left .flex-row {
  width: 100%;
}
.auth-form-wrap .left .flex-row label {
  width: auto;
}
.auth-form-wrap .left .flex-row a {
  color: #0E0C12;
  vertical-align: top;
}
.auth-form-wrap .left .flex-row a:hover {
  text-decoration: underline;
}
.auth-form-wrap .left .main-btn {
  margin-top: 30px;
  width: 100%;
}
.auth-form-wrap .right {
  width: calc(50% + 20px);
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  border-radius: 0 20px 20px 0;
  object-fit: cover;
}

.tip-wrap {
  text-align: right;
  width: 100%;
  font-size: 12px;
  color: #686868;
  margin-bottom: 20px;
}
.tip-wrap span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  top: -3px;
}
.tip-wrap span img {
  display: inline-block;
  width: 18px;
}

@media (max-width: 1200px) {
  .auth-form-wrap {
    border-radius: 20px;
    margin-top: 30px;
  }
  .auth-form-wrap .left {
    width: 50%;
    padding: 70px 40px;
    border-radius: 20px;
  }
  .auth-form-wrap .left form {
    margin-top: 35px;
  }
  .auth-form-wrap .left form .input-wrap {
    width: calc(50% - 5px);
  }
  .auth-form-wrap .left form .input-wrap.full {
    width: 100%;
  }
  .auth-form-wrap .left .no-account {
    margin-top: 20px;
    font-size: 12px;
  }
  .auth-form-wrap .left .text-with-divider {
    border-top: 1px solid #B9B9B9;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .auth-form-wrap .left .text-with-divider span {
    font-size: 14px;
    transform: translateY(-15px);
  }
  .auth-form-wrap .left .soc-login-buttons .main-btn {
    width: calc(50% - 10px);
  }
  .auth-form-wrap .left .soc-login-buttons .main-btn img {
    width: 26px;
    margin-right: 10px;
  }
  .auth-form-wrap .left .soc-login-buttons .main-btn.full {
    width: 100%;
    margin-bottom: 20px;
  }
  .auth-form-wrap .left .flex-row {
    width: 100%;
  }
  .auth-form-wrap .left .flex-row label {
    width: auto;
  }
  .auth-form-wrap .left .main-btn {
    margin-top: 30px;
  }
  .auth-form-wrap .right {
    width: calc(50% + 20px);
    border-radius: 0 20px 20px 0;
  }

  .login-screen.default-screen {
    padding-top: 150px;
  }
}
@media (max-width: 992px) {
  .auth-form-wrap {
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: none !important;
  }
  .auth-form-wrap .left {
    width: 100%;
    padding: 40px 15px;
    border-radius: 20px;
    margin: 0;
    border: none;
  }
  .auth-form-wrap .left form {
    margin-top: 25px;
  }
  .auth-form-wrap .left form .input-wrap {
    width: 100%;
  }
  .auth-form-wrap .left form .input-wrap.full {
    width: 100%;
  }
  .auth-form-wrap .left .no-account {
    margin-top: 20px;
    font-size: 12px;
  }
  .auth-form-wrap .left .text-with-divider {
    border-top: 1px solid #B9B9B9;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .auth-form-wrap .left .text-with-divider span {
    font-size: 14px;
    transform: translateY(-15px);
  }
  .auth-form-wrap .left .soc-login-buttons {
    display: block;
  }
  .auth-form-wrap .left .soc-login-buttons .main-btn {
    width: 100%;
    height: 48px;
  }
  .auth-form-wrap .left .soc-login-buttons .main-btn:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .auth-form-wrap .left .soc-login-buttons .main-btn img {
    width: 26px;
    margin-right: 10px;
  }
  .auth-form-wrap .left .soc-login-buttons .main-btn.full {
    width: 100%;
    margin-bottom: 15px;
  }
  .auth-form-wrap .left .flex-row {
    width: 100%;
  }
  .auth-form-wrap .left .flex-row label {
    width: auto;
  }
  .auth-form-wrap .left .main-btn {
    margin-top: 30px;
  }
  .auth-form-wrap .right {
    display: none;
  }

  .login-screen.default-screen {
    padding-top: 100px;
  }
}
.bonuses_popup .popup {
  background: #FDFBEE;
  max-width: 1350px;
}

.popup-bonuses-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 50px;
}
.popup-bonuses-wrap .col {
  width: calc(50% - 10px);
}
.popup-bonuses-wrap .col .inner {
  border: 1px solid #DBDBDB;
  border-radius: 20px;
}
.popup-bonuses-wrap .col > p {
  margin-bottom: 15px;
}

.order-history .order-item .top .col {
  align-items: flex-start;
}

.profile-tabs-wrap {
  border-radius: 20px;
  margin-top: 30px;
  background: #FDFBEE;
}
.profile-tabs-wrap .profile-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid #0E0C12;
  overflow: hidden;
}
.profile-tabs-wrap .profile-tabs li {
  width: 25%;
  text-align: center;
  transition: 0.2s;
}
.profile-tabs-wrap .profile-tabs li:hover, .profile-tabs-wrap .profile-tabs li.active {
  background: #9868FF;
}
.profile-tabs-wrap .profile-tabs li:hover a, .profile-tabs-wrap .profile-tabs li.active a {
  color: white;
}
.profile-tabs-wrap .profile-tabs li:hover a img, .profile-tabs-wrap .profile-tabs li.active a img {
  filter: invert(1);
  background: #538701;
}
.profile-tabs-wrap .profile-tabs li:not(:last-of-type) {
  border-right: 1px solid #0E0C12;
}
.profile-tabs-wrap .profile-tabs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  color: #0E0C12;
}
.profile-tabs-wrap .profile-tabs li img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #0E0C12;
  object-fit: contain;
  padding: 7px;
  margin-right: 10px;
  background: white;
}
.profile-tabs-wrap .flex-row .w50 {
  width: 50%;
}
.profile-tabs-wrap .flex-row .w50:first-of-type {
  border-right: 1px solid #0E0C12;
}
.profile-tabs-wrap .flex-row .w50 .attach-wrap input {
  padding-left: 50px;
  padding-right: 70px !important;
  background-position: 15px !important;
}
.profile-tabs-wrap .flex-row .w50 .attach-wrap .download, .profile-tabs-wrap .flex-row .w50 .attach-wrap .show {
  width: 20px;
  position: absolute;
  top: 20px;
  right: 15px;
  cursor: pointer;
  transition: 0.2s;
}
.profile-tabs-wrap .flex-row .w50 .attach-wrap .download:hover, .profile-tabs-wrap .flex-row .w50 .attach-wrap .show:hover {
  opacity: 0.5;
}
.profile-tabs-wrap .flex-row .w50 .attach-wrap .download {
  right: 45px;
}
.profile-tabs-wrap .flex-row .w50 .apply {
  font-size: 14px;
  font-weight: 800;
  color: #9868FF;
  text-transform: uppercase;
}
.profile-tabs-wrap .flex-row .w50 .apply:hover:after {
  transform: translateX(10px);
}
.profile-tabs-wrap .flex-row .w50 .apply:after {
  content: "";
  width: 30px;
  height: 15px;
  background: url("../img/arrow-purple.svg") no-repeat center;
  background-size: contain;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  top: 2px;
  transition: 0.2s;
}
.profile-tabs-wrap .checkout-form-wrap {
  background: none;
}
.profile-tabs-wrap .checkout-form-wrap .input-wrap select {
  background-color: transparent;
}
.profile-tabs-wrap .checkout-form-wrap .full {
  width: 100%;
}
.profile-tabs-wrap .checkout-form-wrap .title {
  position: relative;
}

.mob-acc-hidd {
  position: relative;
}

.user_virify {
  position: absolute;
  right: 0;
  top: -45px;
  transform: translateY(-50%);
  font-size: 12px;
  color: #9868FF;
}
.user_virify.ok {
  color: #45C907;
}
.user_virify.ok:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background: url("../img/check-green.svg") no-repeat center;
  background-size: contain;
  position: relative;
  margin-right: 7px;
  top: 3px;
}

.address-card {
  background: #F8F6E9;
  padding: 20px;
  border-radius: 15px;
}
.address-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}
.address-card .top .right a {
  display: inline-block;
  margin-left: 10px;
}
.address-card .top .right a img {
  width: 15px;
  transition: 0.2s;
}
.address-card .top .right a img:hover {
  opacity: 0.5;
}
.address-card table {
  margin-top: 10px;
  margin-bottom: 10px;
}
.address-card table td {
  font-size: 14px;
  padding-bottom: 5px;
}
.address-card table td:first-of-type {
  color: #646268;
  padding-right: 50px;
}

.account-screen .buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.profile-page {
  display: none;
}
.profile-page.page1 {
  display: block;
}
.profile-page.page1 .checkout-form-wrap .main-btn {
  box-shadow: 4px 3px 0px #120C25;
}
.profile-page.page1 .checkout-form-wrap .color-gray {
  color: #666666;
}
.profile-page.page4 {
  padding: 40px;
}
.profile-page.page4 .h {
  margin-bottom: 30px;
}
.profile-page.page4 .right-block .product-name {
  color: #0E0C12 !important;
}
.profile-page.page4 .cart-line .right-block .info {
  color: #666666;
}
.profile-page.page4 .cart-line .right-block .remove-block a {
  color: #0E0C12;
  text-align: right;
  justify-content: flex-end;
}
.profile-page.page4 .cart-line .right-block .remove-block .price {
  display: flex;
  flex-direction: column;
  color: #0E0C12;
}
.profile-page.page4 .cart-line .right-block .remove-block .price span, .profile-page.page4 .cart-line .right-block .remove-block .price ins {
  font-size: 24px;
  font-weight: 800;
  display: inline-block;
  margin-right: 3px;
  font-family: Neue Machina !important;
  text-decoration: none;
}
.profile-page.page4 .cart-line .right-block .remove-block .price ins {
  color: #FF3B30;
  font-size: 18px;
}
.profile-page.page4 .cart-line .right-block .remove-block .price ins i {
  color: #FF3B30;
}
.profile-page.page4 .cart-line .right-block .remove-block .price del {
  font-size: 18px;
  font-family: Neue Machina !important;
  text-decoration: line-through;
  color: #666666;
  font-weight: 400;
  display: inline-block;
  margin-left: 5px;
}
.profile-page.page4 .cart-line .right-block .remove-block .price del i {
  font-size: 14px;
}
.profile-page.page4 .cart-line .img-wrap {
  box-shadow: 2px 2px 0px #120C25;
}
.profile-page.page3 {
  padding: 40px;
}
.profile-page.page2 {
  padding: 0 25px;
}
.profile-page .cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.profile-page .cols .col {
  width: 100%;
  padding: 30px 15px;
}
.profile-page .cols .col.nopadd .bordered-box {
  padding: 0 !important;
}
.profile-page .cols .col .tip-wrap {
  width: auto;
}
.profile-page .cols .col .bordered-box .your-points {
  margin-top: 30px;
}
.profile-page .cols .col .bordered-box .your-points span {
  font-size: 74px;
  font-family: Neue Machina !important;
  line-height: 100%;
}
.profile-page .cols .col .bordered-box .desc {
  margin: 44px 0 24px;
}
.profile-page .cols .col .bordered-box .main-btn {
  margin-bottom: 24px;
  position: relative;
  opacity: 1 !important;
  width: 355px;
  z-index: 2;
  box-shadow: 4px 3px 0px #120C25;
  /*&:before{
      content: '';
      width: 290px;
      height: 290px;
      position:absolute;
      left: 100%;
      bottom: -50px;
      background: url('../img/strange-arrow.svg')no-repeat left;
      background-size: contain;
      pointer-events:none;
      z-index: -1;
  }*/
  /*&.second_option{
      &:before{
          transform-origin: 0 calc(100% - 40px);
          transform: rotate(80deg);
          left: calc(100% - 30px);
          width: 260px;
          height: 260px;
          bottom:-45px;
      }
  }
  &.third_option{
      &:before{
          transform-origin: 0 calc(100% - 40px);
          transform: rotate(40deg);
          left: calc(100% - 30px);
          width: 270px;
          height: 270px;
          bottom:-55px;
      }
  }*/
}
.profile-page .cols .col .bordered-box .gray-text {
  margin-bottom: 30px;
  color: #666666;
}

.bonus-line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px;
}
.bonus-line:not(:last-of-type) {
  border-bottom: 1px solid #DBDBDB;
}
.bonus-line .val {
  width: 150px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  border-radius: 50%;
  border: 1px solid #0E0C12;
  overflow: hidden;
  font-weight: 800;
}
.bonus-line .val span {
  font-family: Neue Machina !important;
  transform: rotate(-10deg);
}
.bonus-line .val img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.bonus-line .val.bg-lime {
  color: #0E0C12;
}
.bonus-line .center {
  width: calc(100% - 260px);
}
.bonus-line .center span {
  font-size: 17px;
  font-weight: 700;
}
.bonus-line .center p {
  margin-top: 10px;
  font-size: 14px;
  color: #646268;
}
.bonus-line a {
  width: 35px;
  transition: 0.2s;
}
.bonus-line a.inactive {
  pointer-events: unset;
  cursor: not-allowed;
  opacity: 0.5;
}
.bonus-line a:hover {
  opacity: 0.5;
}

.order-history .order-item {
  border: 1px solid #DBDBDB;
  border-radius: 20px;
  margin-top: 30px;
}
.order-history .order-item .top {
  padding: 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 1px solid #DBDBDB;
}
.order-history .order-item .top .col {
  width: calc(100% - 15px);
  display: flex;
  flex-direction: column;
}
.order-history .order-item .top .col .gray-text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 15px;
}
.order-history .order-item .top .col .choose_link {
  margin-top: auto;
  color: #9868FF;
  font-family: Neue Machina !important;
}
.order-history .order-item .bottom {
  padding: 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.order-history .order-item .bottom .col {
  width: calc(100% - 15px);
  display: flex;
  flex-direction: column;
}
.order-history .order-item .bottom .col .delivery_details {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.order-history .order-item .bottom .col .delivery_details span {
  margin-right: 15px;
  vertical-align: top;
}
.order-history .order-item .bottom .col .post_track {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: #9868FF;
}
.order-history .order-item .bottom .col .post_track.inactive {
  filter: grayscale(100%);
  pointer-events: none;
}
.order-history .order-item .bottom .col .post_track:hover {
  text-decoration: underline;
}
.order-history .order-item .bottom .col .post_track img {
  width: 18px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -2px;
}
.order-history .order-item .bottom .col .table-wrap {
  padding: 0;
  width: 300px;
  margin-left: auto;
}

.order-statuses {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: auto;
}
.order-statuses span {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #0E0C12;
  margin-right: 60px;
  position: relative;
  min-width: 75px;
}
.order-statuses span:last-of-type:after {
  display: none;
}
.order-statuses span:after {
  content: "";
  width: calc(50% + 48px);
  height: 1px;
  background: #0E0C12;
  position: absolute;
  left: calc(50% + 25px);
  top: 17px;
}
.order-statuses span.active:before {
  content: "";
  width: 3px;
  height: 3px;
  background: #0E0C12;
  position: absolute;
  right: -30px;
  top: 16px;
  border-radius: 50%;
  z-index: 2;
}
.order-statuses span.active:after {
  background: linear-gradient(to right, #0E0C12 0%, #0E0C12 50%, #BAB8B0 50%, #BAB8B0 100%);
}
.order-statuses span.active ~ span {
  color: #666666;
}
.order-statuses span.active ~ span:after {
  background: #BAB8B0;
}
.order-statuses span.active ~ span b {
  background: #EAE8DC;
}
.order-statuses span.active ~ span b img {
  filter: unset;
}
.order-statuses b {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0E0C12;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
}
.order-statuses b img {
  filter: brightness(3);
}

.small-products {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.small-products a {
  width: calc(50% - 10px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  color: #0E0C12;
  margin-bottom: 15px;
}
.small-products a .img-wrap {
  width: 105px;
  height: 105px;
  padding: 20px;
  box-shadow: 2px 2px 0px #120C25 !important;
  border-radius: 10px;
}
.small-products a .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.small-products a .info {
  width: calc(100% - 120px);
  font-size: 14px;
  display: flex;
  flex-direction: column;
}
.small-products a .info span {
  display: block;
}
.small-products a .info .name {
  margin-bottom: 5px;
}
.small-products a .info .details {
  color: #666666;
  margin-top: auto;
}
.small-products a .info .details b {
  margin-right: 10px;
}

.av-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 100px);
}
.av-wrap .choose_link {
  margin-top: auto;
  color: #9868FF;
  font-family: Neue Machina !important;
}
.av-wrap label {
  width: auto;
}
.av-wrap span {
  margin-left: auto;
  color: #45C907;
  font-size: 14px;
}

.cart-line.unavailable .img-wrap {
  opacity: 0.5;
}
.cart-line.unavailable .av-wrap span {
  color: #666666;
}

@media (max-width: 1300px) {
  .profile-tabs-wrap {
    border-radius: 20px;
    margin-top: 30px;
  }
  .profile-tabs-wrap .profile-tabs {
    border-radius: 20px 20px 0 0;
  }
  .profile-tabs-wrap .profile-tabs li {
    width: 25%;
  }
  .profile-tabs-wrap .profile-tabs li:not(:last-of-type) {
    border-right: 1px solid #0E0C12;
  }
  .profile-tabs-wrap .profile-tabs li a {
    font-size: 14px;
    padding: 10px;
  }
  .profile-tabs-wrap .profile-tabs li img {
    width: 32px;
    height: 32px;
    padding: 5px;
  }
  .profile-tabs-wrap .flex-row .w50 {
    width: 50%;
  }
  .profile-tabs-wrap .flex-row .w50:first-of-type {
    border-right: 1px solid #0E0C12;
  }
  .profile-tabs-wrap .flex-row .w50 .attach-wrap input {
    padding-left: 50px;
    padding-right: 60px !important;
    background-position: 15px !important;
  }
  .profile-tabs-wrap .flex-row .w50 .apply {
    font-size: 14px;
  }
  .profile-tabs-wrap .flex-row .w50 .apply:after {
    width: 30px;
    height: 15px;
  }

  .user_virify {
    font-size: 12px;
  }

  .address-card {
    padding: 15px;
    border-radius: 15px;
  }
  .address-card .top {
    font-size: 14px;
  }
  .address-card .top .right a {
    margin-left: 10px;
  }
  .address-card .top .right a img {
    width: 15px;
  }
  .address-card table {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .address-card table td {
    font-size: 14px;
  }

  .account-screen .buttons-wrap {
    margin-top: 30px;
  }

  .profile-page.page1 {
    display: block;
  }
  .profile-page.page1 .checkout-form-wrap {
    padding: 30px 15px;
  }
  .profile-page.page4 {
    padding: 30px 15px;
  }
  .profile-page.page4 .h {
    margin-bottom: 30px;
  }
  .profile-page.page3 {
    padding: 30px 15px;
  }
  .profile-page.page2 {
    padding: 0 0;
  }
  .profile-page .cols .col {
    padding: 23px 15px;
  }
  .profile-page .cols .col .bordered-box .your-points {
    margin-top: 30px;
  }
  .profile-page .cols .col .bordered-box .your-points span {
    font-size: 65px;
  }
  .profile-page .cols .col .bordered-box .desc {
    margin: 30px 0 15px;
  }
  .profile-page .cols .col .bordered-box .main-btn {
    margin-bottom: 20px;
    max-width: 355px;
    width: 100%;
  }
  .profile-page .cols .col .bordered-box .main-btn:before {
    display: none;
  }
  .profile-page .cols .col .bordered-box .gray-text {
    margin-bottom: 30px;
  }

  .bonus-line {
    width: 100%;
    padding: 30px 15px;
  }
  .bonus-line:not(:last-of-type) {
    border-bottom: 1px solid #DBDBDB;
  }
  .bonus-line .val {
    width: 120px;
    height: 80px;
    font-size: 25px;
  }
  .bonus-line .center {
    width: calc(100% - 230px);
  }
  .bonus-line .center span {
    font-size: 15px;
  }
  .bonus-line .center p {
    margin-top: 10px;
    font-size: 12px;
  }
  .bonus-line a {
    width: 35px;
  }

  .order-history .order-item {
    border: 1px solid #DBDBDB;
    margin-top: 20px;
  }
  .order-history .order-item .top {
    padding: 30px 15px;
    border-bottom: 1px solid #DBDBDB;
  }
  .order-history .order-item .top .col {
    width: calc(100% - 10px);
  }
  .order-history .order-item .top .col .gray-text {
    margin-top: 10px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .order-history .order-item .bottom {
    padding: 30px 15px;
  }
  .order-history .order-item .bottom .col {
    width: calc(100% - 10px);
  }
  .order-history .order-item .bottom .col .delivery_details {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .order-history .order-item .bottom .col .delivery_details span {
    margin-right: 15px;
  }
  .order-history .order-item .bottom .col .post_track {
    font-size: 12px;
  }
  .order-history .order-item .bottom .col .post_track img {
    width: 18px;
    margin-right: 10px;
    top: -2px;
  }
  .order-history .order-item .bottom .col .table-wrap {
    width: 300px;
  }

  .order-statuses span {
    font-size: 12px;
    margin-right: 40px;
  }
  .order-statuses span:after {
    width: calc(50% + 28px);
    height: 1px;
    left: calc(50% + 25px);
    top: 17px;
  }
  .order-statuses span.active:before {
    right: -20px;
    top: 16px;
  }
  .order-statuses span.active:after {
    background: linear-gradient(to right, #0E0C12 0%, #0E0C12 50%, #BAB8B0 50%, #BAB8B0 100%);
  }
  .order-statuses b {
    width: 36px;
    height: 36px;
    margin: 0 auto 5px;
  }

  div#dssadasd {
    background: white;
  }

  .small-products a {
    width: calc(50% - 10px);
    margin-bottom: 15px;
  }
  .small-products a .img-wrap {
    width: 80px;
    height: 80px;
    padding: 10px;
  }
  .small-products a .info {
    width: calc(100% - 100px);
    font-size: 12px;
  }
  .small-products a .info .name {
    margin-bottom: 5px;
  }
  .small-products a .info .details b {
    margin-right: 10px;
  }

  .av-wrap {
    width: calc(100% + 100px);
  }
  .av-wrap span {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .mob-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .mob-acc-hidd {
    display: none;
    padding: 15px 0;
  }

  .user_virify {
    position: static;
    display: block;
    transform: unset !important;
  }

  .user-verify-wrap {
    margin-bottom: 15px;
  }

  /*asdsd*/
  .profile-tabs-wrap {
    border-radius: 0 !important;
    margin-top: 30px;
    margin-bottom: 0;
    width: calc(100% + 30px);
    margin-left: -15px;
    box-shadow: none;
  }
  .profile-tabs-wrap .profile-tabs {
    border-radius: 0;
    display: flex;
    max-width: 100%;
    min-width: 100%;
    overflow: auto;
  }
  .profile-tabs-wrap .profile-tabs li {
    min-width: 25%;
    width: auto;
    flex: 0 0 auto;
    padding: 0 30px;
  }
  .profile-tabs-wrap .profile-tabs li.active, .profile-tabs-wrap .profile-tabs li:hover {
    background: #0E0C12;
  }
  .profile-tabs-wrap .profile-tabs li.active img, .profile-tabs-wrap .profile-tabs li:hover img {
    background: transparent !important;
  }
  .profile-tabs-wrap .profile-tabs li:not(:last-of-type) {
    border-right: 1px solid #0E0C12;
  }
  .profile-tabs-wrap .profile-tabs li a {
    font-size: 14px;
    padding: 10px;
  }
  .profile-tabs-wrap .profile-tabs li img {
    width: 32px;
    height: 32px;
    padding: 5px;
    background: transparent !important;
  }
  .profile-tabs-wrap .flex-row {
    display: block;
    padding: 15px 0;
  }
  .profile-tabs-wrap .flex-row .w50 {
    width: 100%;
  }
  .profile-tabs-wrap .flex-row .w50:first-of-type {
    border-right: none;
  }
  .profile-tabs-wrap .flex-row .w50 .checkout-form-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
  .profile-tabs-wrap .flex-row .w50 .checkout-form-wrap .divider {
    display: none;
  }
  .profile-tabs-wrap .flex-row .w50 .checkout-form-wrap .title {
    margin-bottom: 0;
    padding: 15px 30px 15px 15px;
    width: calc(100% + 30px);
    margin-left: -15px;
    cursor: pointer;
  }
  .profile-tabs-wrap .flex-row .w50 .checkout-form-wrap .title:after {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    color: #0E0C12;
    font-size: 25px;
    transition: 0.2s;
    transform: translateY(-50%);
    font-family: Neue Machina !important;
  }
  .profile-tabs-wrap .flex-row .w50 .checkout-form-wrap .title.active:after {
    content: "-";
  }
  .profile-tabs-wrap .flex-row .w50 .checkout-form-wrap .title:not(.nobor) {
    border-top: 1px solid #B9B9B9;
  }
  .profile-tabs-wrap .flex-row .w50 .attach-wrap input {
    padding-left: 50px;
    padding-right: 70px !important;
    background-position: 15px !important;
  }
  .profile-tabs-wrap .flex-row .w50 .apply {
    font-size: 14px;
  }
  .profile-tabs-wrap .flex-row .w50 .apply:after {
    width: 30px;
    height: 15px;
  }

  .address-card {
    padding: 15px;
    border-radius: 15px;
  }
  .address-card .top {
    font-size: 14px;
  }
  .address-card .top .right a {
    margin-left: 10px;
  }
  .address-card .top .right a img {
    width: 15px;
  }
  .address-card table {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .address-card table td {
    font-size: 14px;
  }

  .account-screen {
    overflow: hidden;
    max-width: 100%;
  }
  .account-screen .buttons-wrap {
    margin-top: 30px;
    flex-direction: column-reverse;
  }
  .account-screen .buttons-wrap .main-btn {
    width: 100%;
  }
  .account-screen .buttons-wrap .main-btn.cream {
    border: none;
    background: none;
    color: #9868FF;
    margin-top: 10px;
    box-shadow: none;
  }

  .profile-page.page1 {
    display: block;
  }
  .profile-page.page1 .checkout-form-wrap {
    padding: 30px 15px;
  }
  .profile-page.page4 {
    padding: 30px 0 15px;
  }
  .profile-page.page4 .h {
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .profile-page.page4 .cart-line {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    margin-bottom: 0;
  }
  .profile-page.page4 .cart-line .right-block .product-name {
    color: #0E0C12 !important;
  }
  .profile-page.page4 .cart-line:first-of-type {
    border-top: none;
  }
  .profile-page.page4 .cart-line .right-block {
    margin-top: 40px;
  }
  .profile-page.page4 .cart-line .right-block .remove-block .price {
    bottom: 12px;
  }
  .profile-page.page3 {
    padding: 0;
  }
  .profile-page.page3 > .h {
    display: none;
  }
  .profile-page.page2 {
    padding: 0 0;
  }
  .profile-page .cols {
    display: block;
    padding: 15px 0 0;
  }
  .profile-page .cols .col {
    padding: 0 15px;
    width: 100%;
  }
  .profile-page .cols .col .tip-wrap {
    margin-top: 15px;
  }
  .profile-page .cols .col.nopadd .bordered-box {
    border-bottom: none;
  }
  .profile-page .cols .col .bordered-box {
    padding: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  .profile-page .cols .col .bordered-box .your-points {
    margin-top: 30px;
  }
  .profile-page .cols .col .bordered-box .your-points span {
    font-size: 65px;
  }
  .profile-page .cols .col .bordered-box .desc {
    margin: 30px 0 15px;
  }
  .profile-page .cols .col .bordered-box .main-btn {
    margin-bottom: 20px;
    max-width: 355px;
    width: 100%;
  }
  .profile-page .cols .col .bordered-box .main-btn:before {
    display: none;
  }
  .profile-page .cols .col .bordered-box .gray-text {
    margin-bottom: 30px;
  }

  .bonus-line {
    width: 100%;
    padding: 15px 15px;
    display: block;
  }
  .bonus-line:not(:last-of-type) {
    border-bottom: 1px solid #DBDBDB;
  }
  .bonus-line .val {
    width: 120px;
    height: 80px;
    font-size: 25px;
  }
  .bonus-line .center {
    width: 100%;
    margin: 10px 0;
  }
  .bonus-line .center span {
    font-size: 15px;
  }
  .bonus-line .center p {
    margin-top: 10px;
    font-size: 12px;
  }
  .bonus-line a {
    width: 35px;
    display: inline-block;
  }

  .order-history .order-item {
    border: none;
    border-bottom: 1px solid #DBDBDB;
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
    border-radius: 0;
    position: relative;
  }
  .order-history .order-item .choose_link {
    position: absolute;
    left: 15px;
    bottom: 15px;
  }
  .order-history .order-item:first-of-type {
    margin-top: 0;
  }
  .order-history .order-item:last-of-type {
    border-bottom: none;
  }
  .order-history .order-item .top {
    padding: 30px 15px;
    border-bottom: none;
    display: block;
  }
  .order-history .order-item .top .col {
    width: calc(100% - 10px);
  }
  .order-history .order-item .top .col .gray-text {
    margin-top: 10px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .order-history .order-item .bottom {
    padding: 0 15px 15px;
    display: block;
  }
  .order-history .order-item .bottom .col {
    width: 100%;
  }
  .order-history .order-item .bottom .col .delivery_details {
    display: none;
  }
  .order-history .order-item .bottom .col .post_track {
    font-size: 12px;
  }
  .order-history .order-item .bottom .col .post_track.inactive {
    visibility: hidden;
  }
  .order-history .order-item .bottom .col .post_track img {
    width: 18px;
    margin-right: 10px;
    top: -2px;
  }
  .order-history .order-item .bottom .col .table-wrap {
    display: none;
  }

  .order-statuses {
    display: none;
  }

  .mobun {
    padding: 0 15px 10px;
  }

  .small-products {
    overflow: auto;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: calc(100% + 40px);
    min-width: calc(100% + 40px);
    padding: 0 5px 5px 0;
    margin-left: -15px;
  }
  .small-products a {
    width: auto;
    flex: 0 0 100px;
    margin-left: 15px;
    margin-bottom: 0;
    height: 100px;
  }
  .small-products a:last-of-type {
    margin-right: 0;
  }
  .small-products a .img-wrap {
    width: 100%;
    height: 100%;
  }
  .small-products a .info {
    display: none;
  }

  .av-wrap {
    width: calc(100% + 100px);
  }
  .av-wrap span {
    font-size: 14px;
    position: absolute;
    top: 175px;
    left: 15px;
  }
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #F8F6E9 !important;
  background: radial-gradient(#D9D9D9 1px, transparent 1px);
  background-size: 17px 17px;
  background-attachment: fixed;
  color: #0E0C12;
}
body * {
  font-family: Neue Machina;
  vertical-align: middle;
}
body.hidden {
  overflow: hidden;
}

@media (min-width: 992px) {
  .main-menu-wrap {
    margin-top: -3px !important;
  }

  .schedule {
    top: 5px;
  }
}
.thanks_popup .popup {
  max-width: 1320px;
}
.thanks_popup .popup .smile_image_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .thanks_popup .popup .smile_image_wrap {
    display: block;
    text-align: left;
  }
  .thanks_popup .popup .smile_image_wrap img {
    width: 63px;
    height: 63px;
    margin-bottom: 24px;
  }
}
.thanks_popup .popup .smile_image_wrap img {
  width: 49px;
  height: 49px;
  margin-right: 22px;
}

.thanks-text-wrap {
  margin-top: 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .thanks-text-wrap {
    flex-direction: column-reverse;
    padding-bottom: 80px;
    position: relative;
    margin-top: 0;
  }
  .thanks-text-wrap .btn-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
.thanks-text-wrap .inn {
  padding: 32px 36px;
  border-radius: 24px;
  border: 1px solid #DBDBDB;
}
@media (max-width: 992px) {
  .thanks-text-wrap .inn {
    padding: 24px 0;
    border: none;
    border-radius: 0;
  }
}
.thanks-text-wrap .inn .mob-acc-heading {
  text-align: left;
}
@media (max-width: 992px) {
  .thanks-text-wrap .inn .mob-acc-heading {
    font-size: 14px;
  }
}
.thanks-text-wrap .inn.left {
  width: 60%;
}
@media (max-width: 992px) {
  .thanks-text-wrap .inn.left {
    width: 100%;
    padding-bottom: 0;
  }
}
.thanks-text-wrap .inn.right {
  width: calc(40% - 32px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .thanks-text-wrap .inn.right {
    width: 100%;
    border-bottom: 1px solid #DBDBDB;
  }
}
.thanks-text-wrap .inn.right .btn-wrap {
  margin-top: auto;
}
.thanks-text-wrap .inn .main-btn {
  width: 100%;
  color: white;
}
.thanks-text-wrap .txt {
  margin-top: 24px;
  line-height: 140%;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 992px) {
  .thanks-text-wrap .txt {
    font-size: 12px;
  }
}
.thanks-text-wrap .txt * {
  vertical-align: top;
  line-height: 140%;
}
.thanks-text-wrap .txt a {
  color: #0E0C12;
}
.thanks-text-wrap .txt strong {
  font-weight: 700;
}
.thanks-text-wrap .txt p:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .thanks-text-wrap .txt p:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

.delivery-instruction {
  border-radius: 30px;
  padding: 34px 60px;
  margin-top: 140px;
}
@media (max-width: 992px) {
  .delivery-instruction {
    margin-top: 80px;
    padding: 34px 20px;
    border-radius: 16px;
    box-shadow: 2px 2px 0px #120C25 !important;
  }
}
.delivery-instruction .txt {
  margin-top: 24px;
  font-size: 14px;
  font-family: Nunito;
  line-height: 140%;
}
.delivery-instruction .txt strong {
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}
.delivery-instruction .txt hr {
  margin-top: 24px;
  margin-bottom: 24px;
  display: block;
  border: none;
  background: #DBDBDB;
  color: transparent;
  height: 1px;
}
.delivery-instruction .txt ol {
  list-style: decimal;
  padding-left: 15px;
}
.delivery-instruction .txt ol li:not(:last-of-type) {
  margin-bottom: 10px;
}

.cat-slider {
  padding-bottom: 5px !important;
}

.mini-cart-main-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 14;
}
.mini-cart-main-wrapper.active .mini-cart-wrap .mini-cart {
  transform: translateX(0);
}

body .drop-menu .left-block ul li a:after {
  display: none !important;
}

.mini-cart-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  background: rgba(0, 0, 0, 0.5);
}
.mini-cart-wrap .mini-cart-closer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 16;
}
.mini-cart-wrap .mini-cart {
  background: #F8F6E9;
  width: 100%;
  max-width: 450px;
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  z-index: 17;
  transform: translateX(100%);
  transition: 0.4s;
}
.mini-cart-wrap .mini-cart .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #DBDBDB;
}
.mini-cart-wrap .mini-cart .top span {
  font-size: 18px;
  font-weight: 800;
}
.mini-cart-wrap .mini-cart .top span span {
  font-size: 12px;
  vertical-align: top;
  position: relative;
  top: -10px;
}
.mini-cart-wrap .mini-cart .top img {
  width: 25px;
}
.mini-cart-wrap .mini-cart .top img:hover {
  opacity: 0.5;
}
.mini-cart-wrap .mini-cart .bottom-block {
  margin-top: auto;
  padding: 20px 0;
  border-top: 1px solid #DBDBDB;
}
.mini-cart-wrap .mini-cart .bottom-block table {
  width: 100%;
  font-size: 18px;
  font-weight: 800;
}
.mini-cart-wrap .mini-cart .bottom-block table td:last-of-type {
  text-align: right;
}
.mini-cart-wrap .mini-cart .bottom-block .main-btn {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
}
.mini-cart-wrap .mini-cart .bottom-block p {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  font-family: Nunito;
}
.mini-cart-wrap .mini-cart .items-wrap {
  overflow: auto;
  padding: 20px 0;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item {
  display: flex;
  align-items: stretch;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #DBDBDB;
  justify-content: space-between;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .img-wrap {
  width: 30%;
  border-radius: 10px;
  max-height: 100px;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right {
  width: calc(70% - 15px);
  display: flex;
  flex-direction: column;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .name-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .name-wrap .name {
  font-size: 14px;
  font-weight: 500;
  font-family: Nunito;
  color: #0E0C12;
  width: calc(100% - 30px);
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .name-wrap .remove_from_cart img {
  width: 20px;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .name-wrap .remove_from_cart img:hover {
  opacity: 0.5;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .attr-wrap {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .attr-wrap select {
  width: auto;
  height: auto;
  padding: 0 20px 0 0;
  border: none;
  outline: none;
  background: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("../img/down.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right;
  font-size: 14px;
  font-family: Nunito;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .attr-wrap input {
  width: 40px;
  height: auto;
  padding: 0 0 0;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: Nunito;
  margin-left: 15px;
  background: transparent;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .attr-wrap .price {
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  font-family: Nunito;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .bottom-block {
  margin-top: auto;
  padding: 20px 0;
  border-top: 1px solid #DBDBDB;
  margin-bottom: 20px;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .bottom-block table {
  width: 100%;
  font-size: 18px;
  font-weight: 800;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .bottom-block table td:last-of-type {
  text-align: right;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .bottom-block .main-btn {
  width: 100%;
}
.mini-cart-wrap .mini-cart .items-wrap .mini-cart-item .right .bottom-block p {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  font-family: Nunito;
}

.swiper-pagination-bullet-active {
  background: #0E0C12 !important;
}

.load-more-wrap {
  margin-top: 50px;
}

.filter-choises {
  margin-top: 15px;
}
.filter-choises .main-btn {
  height: 38px;
  padding: 0 15px;
  border-radius: 5px;
  font-size: 16px;
  font-family: Nunito;
  font-weight: 400;
  margin-right: 5px;
}
.filter-choises .main-btn:hover {
  opacity: 1 !important;
}
.filter-choises .main-btn a {
  margin-left: 10px;
}
.filter-choises .main-btn a img {
  width: 20px;
}
.filter-choises .main-btn a:hover {
  opacity: 0.5;
}
.filter-choises .clear-filters {
  display: inline-block;
  font-size: 16px;
  padding: 5px 15px;
  color: #0E0C12;
  transition: 0.2s;
}
.filter-choises .clear-filters:hover {
  opacity: 0.5;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  padding: 25px 20px;
  border-radius: 10px;
  background: #F8F6E9;
  z-index: 5;
  max-height: 260px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  transform: translateY(15px);
}
.search-results .h {
  font-size: 16px;
  font-weight: 500;
  color: #0E0C12;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-results ul li {
  display: block;
}
.search-results ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.search-results ul li a {
  color: #666666;
  font-size: 14px;
}
.search-results ul li a:hover {
  color: #9868FF;
}

.dropdown-filters {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 5;
  background: #F8F6E9;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  border-bottom: 1px solid #0E0C12;
  border-top: 1px solid #0E0C12;
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  box-shadow: 0 1000vw 0 1000vw rgba(0, 0, 0, 0.5);
}
.dropdown-filters.full-col .col {
  width: 100%;
}
.dropdown-filters.full-col .col ul {
  max-height: 120px;
  display: inline-flex;
  flex-direction: column;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.dropdown-filters.full-col .col ul li {
  padding-right: 50px;
}
.dropdown-filters.full-col .col ul li input {
  display: none;
}
.dropdown-filters.full-col .col ul li input:checked + a {
  color: #9868FF;
}
.dropdown-filters.full-col .col ul li input:checked + a:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/sorting-purple.svg") no-repeat center;
  background-size: contain;
  position: relative;
  display: inline-block;
  margin-bottom: -7px;
  margin-left: 5px;
}
.dropdown-filters.full-col .col ul li input:checked + a a {
  color: #9868FF;
}
.dropdown-filters .col {
  padding: 25px 20px;
  width: 16.6%;
  overflow: hidden;
}
.dropdown-filters .col .flex-row {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}
.dropdown-filters .col .flex-row input {
  width: auto;
  padding: 0;
  margin: 0;
  background: none;
  outline: none;
  font-size: 14px;
  color: #666666;
  width: 80px;
  text-align: left;
  border: none;
}
.dropdown-filters .col .flex-row input:last-of-type {
  text-align: right;
}
.dropdown-filters .col .asRange {
  width: calc(100% - 16px);
  margin-left: 8px;
  height: 2px;
  background: #B1B1B1;
}
.dropdown-filters .col .asRange.activeted .asRange-selected {
  opacity: 1;
}
.dropdown-filters .col .asRange.activeted .asRange-pointer::before {
  background: #0E0C12;
  border: 1px solid #0E0C12;
}
.dropdown-filters .col .asRange .asRange-pointer {
  top: -3px;
}
.dropdown-filters .col .asRange .asRange-pointer:after {
  display: none;
}
.dropdown-filters .col .asRange-selected {
  background: #0E0C12;
  height: 2px;
  display: block;
  z-index: 0;
  opacity: 0;
}
.dropdown-filters .col .asRange .asRange-pointer::before {
  background: white;
  border: 1px solid #0E0C12;
  z-index: 2;
}
.dropdown-filters .col .asRange .asRange-pointer.asRange-pointer_active::before {
  background: #0E0C12;
  border: 1px solid #0E0C12;
}
.dropdown-filters .col * {
  font-family: Nunito;
}
.dropdown-filters .col .h {
  font-size: 16px;
  font-weight: 500;
  color: #0E0C12;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown-filters .col .h.active .clear {
  display: block;
}
.dropdown-filters .col .h .clear {
  background: white;
  padding: 3px 10px;
  font-size: 14px;
  color: #0E0C12;
  border: 1px solid #0E0C12;
  box-shadow: 2px 2px 0 #0E0C12;
  border-radius: 5px;
  display: none;
}
.dropdown-filters .col:not(:last-of-type) {
  border-right: 1px solid #666666;
}
.dropdown-filters .col ul li {
  display: block;
}
.dropdown-filters .col ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.dropdown-filters .col ul li input:checked ~ a {
  color: #9868FF;
}
.dropdown-filters .col ul li a {
  color: #666666;
  font-size: 14px;
}
.dropdown-filters .col ul li a:hover {
  color: #9868FF;
}

.catalog-filters {
  position: sticky;
  top: 0;
  padding: 20px 0;
  transition: 0.4s;
  z-index: 5;
}
.catalog-filters .wrap {
  position: static;
}
.catalog-filters.active {
  background: #F8F6E9;
}
.catalog-filters.with_header {
  top: 100px;
}
.catalog-filters.with_header.active {
  background: #F8F6E9;
}
.catalog-filters .filters-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #666666;
  font-weight: 500;
}
.catalog-filters .filters-wrap .filter_link {
  margin-right: 50px;
  cursor: pointer;
}
.catalog-filters .filters-wrap .filter_link:hover {
  color: #9868FF;
}
.catalog-filters .filters-wrap .filter_link:hover span {
  position: relative;
}
.catalog-filters .filters-wrap .filter_link:hover span:after {
  content: "";
  width: 200%;
  left: -50%;
  top: 100%;
  height: 45px;
  background: transparent;
  position: absolute;
}
.catalog-filters .filters-wrap .filter_link:hover .dropdown-filters {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.catalog-filters .filters-wrap .filter_link:hover svg path {
  stroke: #9868FF;
}
.catalog-filters .filters-wrap .filter_link svg {
  width: 24px;
  margin-right: 10px;
  position: relative;
  top: -2px;
}
.catalog-filters .filters-wrap .cat_links ul li {
  display: inline-block;
  margin-right: 24px;
  font-size: 16px;
}
.catalog-filters .filters-wrap .cat_links ul li.active {
  color: #9868FF;
}
.catalog-filters .filters-wrap .cat_links ul li input:checked + a {
  color: #9868FF;
}
.catalog-filters .filters-wrap .cat_links ul li a {
  color: #666666;
  font-family: Nunito;
}
.catalog-filters .filters-wrap .cat_links ul li a:hover {
  color: #9868FF;
}
.catalog-filters .filters-wrap .search_wrap {
  margin-left: auto;
  position: relative;
}
.catalog-filters .filters-wrap .search_wrap input {
  width: 100%;
  padding: 5px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #666666;
  border: none;
  outline: none;
  background: none;
  background: url("../img/zoom.svg") no-repeat left;
  background-size: 20px;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}
.catalog-filters .filters-wrap .search_wrap input:hover, .catalog-filters .filters-wrap .search_wrap input:focus {
  border-bottom: 1px solid #0E0C12;
}
.catalog-filters .filters-wrap .search_wrap input:not(:placeholder-shown) + img {
  display: block;
}
.catalog-filters .filters-wrap .search_wrap input:not(:placeholder-shown):focus ~ .search-results {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.catalog-filters .filters-wrap .search_wrap input::placeholder {
  color: #666666;
}
.catalog-filters .filters-wrap .sorting_wrap {
  margin-left: 24px;
  cursor: pointer;
}
.catalog-filters .filters-wrap .sorting_wrap input {
  display: none;
}
.catalog-filters .filters-wrap .sorting_wrap:hover span {
  position: relative;
}
.catalog-filters .filters-wrap .sorting_wrap:hover span:after {
  content: "";
  width: 100px;
  right: 0;
  top: 100%;
  height: 45px;
  background: transparent;
  position: absolute;
}
.catalog-filters .filters-wrap .sorting_wrap:hover .dropdown-filters {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.catalog-filters .filters-wrap .sorting_wrap:hover svg path {
  stroke: #9868FF;
}
.catalog-filters .filters-wrap .sorting_wrap svg {
  width: 24px;
}

.default-hero {
  padding: 105px 0 50px;
}
.default-hero .full-width-image {
  max-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border-width: 2px;
}
.default-hero .full-width-image img {
  height: 100%;
  object-fit: cover;
}

.full-width-image img {
  width: 100%;
}

.empty-col svg {
  filter: drop-shadow(2px 2px 0 #0E0C12);
}
.empty-col svg defs {
  display: none !important;
  visibility: hidden;
}

.catalog-screen1 {
  padding: 0 0 100px;
}
.catalog-screen1 .products-carousel {
  margin-top: 40px;
}
.catalog-screen1 .products-carousel .products-wrapper {
  width: 100%;
}
.catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col a {
  display: block;
}
.catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col a:hover img, .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col a:hover svg {
  transform: translateX(10px);
}
.catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col img, .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col svg {
  width: 75px;
  display: block;
  margin: 10px auto 0;
  transition: 0.2s;
}
.catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col.in_promotion {
  grid-row: 2/span 2;
  grid-column: 1/span 2;
}
.catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col.in_promotion .img-wrap {
  height: 600px;
  padding: 100px 50px 0;
}
.catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col.in_promotion .img-wrap[data-text]:before {
  width: 100px;
  height: 100px;
  font-size: 22px;
  top: 70px;
  left: calc(50% + 50px);
}

.contacts-screen1 .main-heading {
  position: relative;
}
.contacts-screen1 .main-heading:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 30px);
  right: calc(50% + 130px);
  width: 440px;
  height: 400px;
  background: url("../img/contacts.png") no-repeat top right;
  background-size: contain;
  z-index: -2;
  pointer-events: none;
}
.contacts-screen1 .flex-row {
  max-width: 1120px;
  margin: 100px auto 0;
}
.contacts-screen1 .flex-row form .input-wrap.attach-wrap:hover input {
  border-color: #0E0C12;
}
.contacts-screen1 .flex-row form .input-wrap.attach-wrap input {
  background-color: #F8F6E9 !important;
}
.contacts-screen1 .flex-row form .input-wrap input, .contacts-screen1 .flex-row form .input-wrap textarea {
  background: #F8F6E9;
}

.contacts-wrap {
  margin-top: 180px;
}
.contacts-wrap a {
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
}
.contacts-wrap a:not(:last-of-type) {
  margin-bottom: 20px;
}
.contacts-wrap a span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
  top: -2px;
}
.contacts-wrap a span img {
  width: 15px;
}

.screen7 .flex-row .article-slider {
  padding-right: 10px;
}

.faq-wrap {
  margin: 100px auto 0;
  max-width: 880px;
}
.faq-wrap .faq {
  border-radius: 20px;
  padding: 50px 60px;
  position: relative;
}
.faq-wrap .faq:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq-wrap .faq[data-text]:before {
  content: attr(data-text);
  font-size: 25px;
  font-weight: 800;
  color: white;
  text-shadow: 3px 3px 0px #202024;
  position: absolute;
  left: -10px;
  top: -15px;
  transform: rotate(-10deg);
  filter: drop-shadow(3px 2px 0px #120C25);
  text-shadow: -2px -2px 0 #9868FF, 2px -2px 0 #9868FF, -2px 2px 0 #9868FF, 2px 2px 0 #9868FF;
}
.faq-wrap .faq .question {
  font-size: 24px;
  font-weight: 800;
  padding-right: 80px;
  position: relative;
  cursor: pointer;
}
.faq-wrap .faq .question.active span {
  background: #9868FF;
}
.faq-wrap .faq .question.active span img {
  transform: rotate(-90deg);
  filter: invert(100%);
}
.faq-wrap .faq .question span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 18px);
  right: 0;
  transition: 0.2s;
}
.faq-wrap .faq .question span img {
  width: 8px;
  transform: rotate(90deg);
  transition: 0.3s;
}
.faq-wrap .faq .answer {
  font-family: Nunito;
  font-size: 16px;
  font-weight: 400;
  padding-top: 35px;
  display: none;
}

.back-link {
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: -50px;
  margin-bottom: 50px;
}
.back-link:hover {
  opacity: 0.7;
}
.back-link span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
  top: -2px;
}
.back-link span img {
  width: 8px;
  transform: scale(-1, 1);
}

.article-screen1.default-screen {
  padding-top: 140px;
}
.article-screen1 .section-heading {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.article-screen1 .article-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
.article-screen1 .article-info .info span:nth-of-type(2) {
  margin: 0 5px;
}
.article-screen1 .article-info .tags-wrap a {
  margin-right: 5px;
  display: inline-block;
  padding: 5px 10px 3px;
  background: #9868FF;
  border-radius: 5px;
  color: white;
  transition: 0.2s;
}
.article-screen1 .article-info .tags-wrap a:hover {
  opacity: 0.5;
}
.article-screen1 .article-info .tags-wrap a:nth-of-type(even) {
  background: #FFAF42;
}
.article-screen1 .main-thumb {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
}
.article-screen1 .main-thumb img {
  width: 100%;
}

.article-content-screen .flex-row {
  align-items: flex-start;
}
.article-content-screen .flex-row.mrgt40 {
  margin-top: 40px;
}
.article-content-screen .flex-row .sidebar {
  width: 210px;
  position: sticky;
  top: 80px;
}
.article-content-screen .flex-row .sidebar .heading {
  font-size: 16px;
  font-weight: 800;
  margin-top: 25px;
  margin-bottom: 20px;
}
.article-content-screen .flex-row .sidebar ul:not(:last-of-type) {
  margin-bottom: 70px;
}
.article-content-screen .flex-row .sidebar ul li {
  display: block;
  margin-bottom: 15px;
}
.article-content-screen .flex-row .sidebar ul li a {
  font-size: 14px;
  color: #666666;
  transition: 0.2s;
  font-family: Nunito;
}
.article-content-screen .flex-row .sidebar ul li a:hover {
  color: #9868FF;
}
.article-content-screen .flex-row .text-content {
  width: calc(100% - 680px);
  margin-left: 150px;
}
.article-content-screen .flex-row .text-content img {
  height: auto;
}
.article-content-screen .simple-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-content-screen .simple-flex-row h2 {
  width: calc(100% - 200px);
}

.about-screen2 {
  padding-top: 0;
}
.about-screen2 .img-wrap img {
  width: 100%;
  border-radius: 20px;
}

.partners-slider .swiper-wrapper {
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.partners-slider .swiper-wrapper .swiper-slide {
  width: 26%;
  margin-top: 20px;
}
.partners-slider .swiper-wrapper .swiper-slide img {
  max-height: 52px;
  max-width: 100%;
}

.about-screen-last {
  padding-bottom: 100px;
}
.about-screen-last .top-fl, .about-screen-last .bottom-fl {
  justify-content: space-around;
  padding: 0 20%;
}
.about-screen-last .top-fl .col, .about-screen-last .bottom-fl .col {
  width: 50%;
}
.about-screen-last .top-fl .col img, .about-screen-last .bottom-fl .col img {
  width: 100%;
}
.about-screen-last .center-fl {
  justify-content: space-around;
  margin: 20px 0;
}
.about-screen-last .center-fl .col {
  width: 25%;
  text-align: center;
}

.blog-screen {
  padding: 0 0 100px;
}

.articles-wrap .article {
  border-radius: 15px;
  padding: 23px 23px 40px;
  position: relative;
  transition: 0.2s;
  transform-origin: 0 100%;
}
.articles-wrap .article.full {
  background: #FFAF42;
}
.articles-wrap .article.full:not(:last-of-type) {
  margin-bottom: 24px;
}
.articles-wrap .article.full:hover {
  transform: rotate(-1deg);
}
.articles-wrap .article.full:hover:before {
  transform: rotate(1deg);
}
.articles-wrap .article.full:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  pointer-events: none;
}
.articles-wrap .article.full:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFAF42;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  z-index: -1;
  box-shadow: 4px 3px 0px #120C25;
  border: 1px solid #0E0C12;
  transition: 0.2s;
  transform-origin: 0 100%;
  pointer-events: none;
}
.articles-wrap .article.full .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 4px 3px 0px #120C25;
}
.articles-wrap .article.full .img-wrap:hover {
  opacity: 1;
}
.articles-wrap .article.full .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles-wrap .article.full .article-info {
  margin-top: 150px;
  max-width: 50%;
}
.articles-wrap .article.full .info {
  color: rgba(255, 255, 255, 0.8) !important;
  margin-top: 40px;
  pointer-events: none;
}
.articles-wrap .article.full a.name {
  margin-top: 30px;
  font-size: 44px;
  color: #FCFCFA;
}
.articles-wrap .article.full a.name:hover {
  opacity: 1;
}
.articles-wrap .article .img-wrap {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  display: block;
  transition: 0.2s;
}
.articles-wrap .article .img-wrap:hover {
  opacity: 0.7;
}
.articles-wrap .article .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles-wrap .article a.name {
  font-size: 24px;
  font-weight: 800;
  line-height: 120%;
  display: block;
  margin-top: 20px;
  color: #0E0C12;
  transition: 0.2s;
}
.articles-wrap .article a.name:hover {
  opacity: 0.7;
}
.articles-wrap .article .tags-wrap a {
  margin-right: 5px;
  display: inline-block;
  padding: 5px 10px 3px;
  background: #9868FF;
  border-radius: 5px;
  color: white;
  transition: 0.2s;
}
.articles-wrap .article .tags-wrap a:hover {
  opacity: 0.5;
}
.articles-wrap .article .tags-wrap a:nth-of-type(even) {
  background: #FFAF42;
}
.articles-wrap .article .article-info {
  position: relative;
  z-index: 1;
  margin-top: 25px;
}
.articles-wrap .article .info {
  position: relative;
  z-index: 1;
  color: #666666 !important;
}
.articles-wrap .scroll-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.articles-wrap .scroll-wrap:not(:last-of-type) {
  margin-bottom: 24px;
}
.articles-wrap .scroll-wrap.first-one .article .info {
  display: none;
}
.articles-wrap .scroll-wrap.first-one .article .img-wrap {
  height: 250px;
}
.articles-wrap .scroll-wrap.first-one .article:first-of-type {
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
}
.articles-wrap .scroll-wrap.first-one .article:first-of-type .img-wrap {
  height: 400px;
}
.articles-wrap .scroll-wrap.first-one .article:first-of-type .info {
  display: block;
  margin-top: auto;
}
.articles-wrap .scroll-wrap.first-one .article:first-of-type a.name {
  font-size: 44px;
  margin-bottom: 25px;
}
.articles-wrap .scroll-wrap.last-one .article .info {
  display: none;
}
.articles-wrap .scroll-wrap.last-one .article .img-wrap {
  height: 250px;
}
.articles-wrap .scroll-wrap.last-one .article:first-of-type {
  grid-area: 1/2/3;
  display: flex;
  flex-direction: column;
}
.articles-wrap .scroll-wrap.last-one .article:first-of-type .img-wrap {
  height: 400px;
}
.articles-wrap .scroll-wrap.last-one .article:first-of-type .info {
  display: block;
  margin-top: auto;
}
.articles-wrap .scroll-wrap.last-one .article:first-of-type a.name {
  font-size: 44px;
  margin-bottom: 25px;
}

.logo {
  width: 88px;
  display: block;
}
.logo img, .logo svg {
  width: 100%;
}

.schedule {
  width: 117px;
}
.schedule img, .schedule svg {
  width: 100%;
}

.header > .wrap {
  position: static;
}

body .drop-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 30px 0 50px;
  background: #F8F6E9;
  max-height: calc(100vh - 100px);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s;
  border-bottom: 2px solid #0E0C12;
}
body .drop-menu * {
  text-transform: none;
}
body .drop-menu span.h {
  font-size: 18px;
  font-weight: 700;
  color: #0E0C12;
  margin-bottom: 20px;
  display: block;
  padding: 0 !important;
  margin-left: 0 !important;
}
body .drop-menu .right-block .grid a {
  padding: 20px 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  height: 180px;
}
body .drop-menu .right-block .grid a:hover {
  opacity: 0.8;
}
body .drop-menu .right-block .grid a:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}
body .drop-menu .right-block .grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
}
body .drop-menu .right-block .grid a span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
  color: white;
  margin-bottom: 5px;
  text-transform: none;
}
body .drop-menu .right-block .grid a span.info {
  margin-top: auto;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
}
body .drop-menu .right-block .grid a span.info span {
  margin-right: 10px;
  margin-bottom: 0;
  color: #E7E7E0;
}
body .drop-menu .left-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .drop-menu .left-block .grid {
  margin-bottom: 30px;
}
body .drop-menu .left-block .grid .col {
  margin-bottom: 30px;
}
body .drop-menu .left-block .bottom {
  margin-top: auto;
}
body .drop-menu .left-block .bottom a {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: #0E0C12;
}
body .drop-menu .left-block .bottom a:hover {
  color: #823CFE;
}
body .drop-menu .left-block .bottom a:hover img, body .drop-menu .left-block .bottom a:hover svg {
  transform: translateX(10px);
}
body .drop-menu .left-block .bottom a:hover svg path:last-of-type {
  stroke: #833CFE;
}
body .drop-menu .left-block .bottom a:active {
  color: #8138C4;
}
body .drop-menu .left-block .bottom a:active svg path:last-of-type {
  stroke: #8138C4;
}
body .drop-menu .left-block .bottom a img, body .drop-menu .left-block .bottom a svg {
  display: inline-block;
  width: 33px;
  margin-left: 10px;
  transition: 0.2s;
}
body .drop-menu .left-block ul.fl {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
body .drop-menu .left-block ul.fl li {
  width: calc(50% - 10px);
}
body .drop-menu .left-block ul li {
  margin-right: 0;
  margin-bottom: 10px;
  width: 100%;
}
body .drop-menu .left-block ul li a {
  font-size: 14px;
  font-family: "Nunito";
  color: #666666;
  font-weight: 400;
}
body .drop-menu .left-block ul li a:hover {
  color: #9868FF;
}

.main-menu-wrap {
  margin: 0 auto;
  padding: 10px 30px 10px;
  border-radius: 30px;
}
.main-menu-wrap ul > li {
  display: inline-block;
}
.main-menu-wrap ul > li:not(:last-of-type) {
  margin-right: 24px;
}
.main-menu-wrap ul > li:hover > a {
  color: #9868FF;
  position: relative;
}
.main-menu-wrap ul > li:hover > a:after {
  content: "";
  width: 200%;
  left: -50%;
  top: 100%;
  height: 50px;
  background: transparent;
  position: absolute;
}
.main-menu-wrap ul > li:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-menu-wrap ul > li a {
  color: #0E0C12;
  transition: 0.2s;
  font-size: 14px;
}
.main-menu-wrap ul > li a:hover {
  color: #9868FF;
}

.schedule {
  position: relative;
}
.schedule:hover .sh-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.schedule:hover svg #txt {
  fill: #8138C4;
}
.schedule:hover svg #hv {
  fill: #8138C4;
}
.schedule:hover svg circle {
  fill: #8138C4;
}

.menu-full-wrap form {
  display: none;
}
.menu-full-wrap .mobile-schedule {
  display: none;
}

.sh-dropdown {
  position: absolute;
  transition: 0.2s;
  left: 0;
  top: calc(100% + 10px);
  border-radius: 10px;
  padding: 24px 20px;
  width: 280px;
  background: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.sh-dropdown .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sh-dropdown .line .left {
  font-size: 14px;
  color: #0E0C12;
  font-family: "Nunito";
}
.sh-dropdown .line .right {
  font-size: 14px;
  color: #8138C4;
  font-weight: 700;
  font-family: "Nunito";
}

.search-form-wrap {
  position: relative;
  margin-bottom: 60px;
}
.search-form-wrap img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 1 !important;
  display: none;
}
.search-form-wrap img:hover {
  opacity: 0.5 !important;
}
.search-form-wrap input {
  width: 100%;
  padding: 5px 60px;
  font-size: 44px;
  font-weight: 800;
  color: #0E0C12;
  border: none;
  border-bottom: 1px solid #0E0C12;
  outline: none;
  background: none;
  background: url("../img/zoom.svg") no-repeat left;
  background-size: 30px;
}
.search-form-wrap input:focus {
  background: url("../img/zoom-purple.svg") no-repeat left;
  background-size: 30px;
}
.search-form-wrap input:not(:placeholder-shown) + img {
  display: block;
}
.search-form-wrap input::placeholder {
  color: #666666;
}

div.a:hover .img-in {
  position: relative;
}
div.a:hover .img-in:after {
  content: "";
  width: 200%;
  left: -50%;
  top: 100%;
  height: 50px;
  background: transparent;
  position: absolute;
}
div.a:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header {
  padding: 25px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.4s;
  z-index: 11;
}
.header:hover {
  background: #F8F6E9;
}
.header.active {
  background: #F8F6E9;
}
.header.unvisible {
  transform: translateY(-100%);
}
.header .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .right div.a {
  margin-left: 0 !important;
}
.header .right .a, .header .right a {
  transition: 0.2s;
  color: #0E0C12;
}
.header .right .a:hover svg path[fill="#0E0C12"], .header .right .a.active svg path[fill="#0E0C12"], .header .right a:hover svg path[fill="#0E0C12"], .header .right a.active svg path[fill="#0E0C12"] {
  fill: #9868FF;
}
.header .right .a:hover svg path[stroke="#0E0C12"], .header .right .a.active svg path[stroke="#0E0C12"], .header .right a:hover svg path[stroke="#0E0C12"], .header .right a.active svg path[stroke="#0E0C12"] {
  stroke: #9868FF;
}
.header .right .a.a, .header .right a.a {
  margin-left: 30px;
}
.header .right .a span, .header .right a span {
  display: inline-block;
  border-radius: 20px;
  padding: 5px 20px;
  margin-left: 5px;
}
.header .right .a img, .header .right .a svg, .header .right a img, .header .right a svg {
  width: 32px;
}

.screen1 {
  background: url("../img/back.png") no-repeat center;
  background-size: cover;
  padding-bottom: 20vw;
  background-attachment: fixed;
}

.baner-container {
  position: relative;
  height: 0;
}
.baner-container .content-inner {
  transform: translateY(-51%);
  position: relative;
}
.baner-container img {
  width: 100%;
}
.baner-container .banner_svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.baner-container text {
  fill: #E0FD2C;
}
.baner-container .text-path {
  font-size: 60px;
  stroke: #0E0C12;
  stroke-width: 1px;
}

.screen2 {
  padding-top: 10vw;
  overflow: hidden;
}
.screen2 .img-wrap {
  transform: rotate(-20deg);
  transition: 0.2s;
}
.screen2 .img-wrap:hover {
  filter: grayscale(0);
}
.screen2 .img-wrap img {
  border-radius: 50%;
}
.screen2 .bottom-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: -50px;
  padding-left: 60px;
  z-index: 1;
  position: relative;
}
.screen2 .bottom-block .orange-ellipse {
  padding: 15px;
  position: relative;
}
.screen2 .bottom-block .orange-ellipse:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FFAF42;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-20deg);
  box-shadow: 4px 3px 0px #120C25;
}
.screen2 .bottom-block .orange-ellipse img {
  position: relative;
  z-index: 1;
  width: 50px;
}
.screen2 .bottom-block > img {
  width: 100px;
  margin-left: 30px;
}

.swiper-initialized .grid {
  display: flex !important;
  grid-template-columns: unset;
  grid-column-gap: unset;
  grid-row-gap: unset;
}

.categories {
  display: grid !important;
}
.categories .col {
  padding: 15px 15px 30px;
  border-radius: 15px;
  border: 2px solid #0E0C12;
  background: #FDFBEF;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}
.categories .col:hover {
  box-shadow: 4px 3px 0px #120C25;
}
.categories .col .cat-name {
  transition: 0.2s;
}
.categories .col b {
  position: relative;
  z-index: 3;
  color: #0E0C12 !important;
}
.categories .col .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -35px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  padding: 50px;
  background: #FDFBEE;
  clip-path: circle(0 at 50% 50%);
  transition: 1s !important;
}
.categories .col .inner .color-black {
  color: #0E0C12;
}
.categories .col .inner > span {
  font-size: 18px;
}
.categories .col .inner .tags {
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
.categories .col .inner .tags a {
  font-size: 14px;
  font-weight: 500;
  color: #0E0C12;
  padding: 4px 12px 2px;
  border: 2px solid white;
  border-radius: 6px;
  display: inline-block;
  margin: 5px;
  box-shadow: 0 0 0 1px #0E0C12;
  transition: 0.2s;
  background: #FCFCFA;
}
.categories .col .inner .tags a:hover {
  background: #9868FF;
  color: white;
}
.categories .col:hover .inner {
  clip-path: circle(100% at 50% 50%);
}
.categories .col:hover .cat-name {
  color: #C08FFF;
}
.categories .col:hover img {
  transform: scale(1.05);
}
.categories .col img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 24px auto 40px;
  transition: 0.2s;
}
.categories .col span {
  display: block;
  text-align: center;
  font-size: 44px;
  position: relative;
  z-index: 3;
}

.product-carousels {
  margin-top: 40px;
}

.products-carousel {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.products-carousel.reverse {
  flex-direction: row-reverse;
}
.products-carousel:not(:last-of-type) {
  margin-bottom: 30px;
}
.products-carousel .empty-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(25% - 20px);
}
.products-carousel .products-wrapper {
  width: calc(75% + 6px);
  margin: 0;
  margin-right: -6px;
  padding: 0 6px 12px 0;
}
.products-carousel .products-wrapper .col {
  padding: 15px 15px 30px;
  border-radius: 15px;
  border: 2px solid #0E0C12;
  background: #FDFBEE;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: unset;
}
.products-carousel .products-wrapper .col:hover {
  background: #FFF6E3;
}
.products-carousel .products-wrapper .col:hover:after {
  transform: translateY(0);
  opacity: 1;
}
.products-carousel .products-wrapper .col:hover .img-wrap .main-btn {
  opacity: 1;
}
.products-carousel .products-wrapper .col:hover .img-wrap img {
  opacity: 0.4;
}
.products-carousel .products-wrapper .col:after {
  content: "";
  width: 100%;
  height: 40px;
  background: url("../img/fire.svg") no-repeat top;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.2s;
  transform: translateY(100%);
  pointer-events: none;
}
.products-carousel .products-wrapper .col .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.products-carousel .products-wrapper .col .top .tags {
  width: calc(100% - 40px);
}
.products-carousel .products-wrapper .col .top .tags a {
  margin-right: 5px;
  display: inline-block;
  padding: 3px 10px;
  background: #FFAF42;
  color: white;
  border-radius: 3px;
  margin-bottom: 4px;
}
.products-carousel .products-wrapper .col .top .tags a.bg-violet {
  background: #9868FF;
}
.products-carousel .products-wrapper .col .top a.fav {
  width: 18px;
  height: 18px;
  background: url("../img/heart-empty-black.svg") no-repeat center;
  background-size: contain;
}
.products-carousel .products-wrapper .col .top a.fav.active {
  background: url("../img/heart-full-black.svg") no-repeat center;
  background-size: contain;
}
.products-carousel .products-wrapper .col .img-wrap {
  height: 220px;
  width: 100%;
  margin: 20px 0 40px;
  display: block;
  position: relative;
}
.products-carousel .products-wrapper .col .img-wrap[data-text]:before {
  content: attr(data-text);
  font-size: 12px;
  font-weight: 800;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #C98CFF;
  position: absolute;
  top: -20px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 #0E0C12;
  transform: rotate(-10deg);
  font-family: Nunito;
  font-weight: 900;
}
.products-carousel .products-wrapper .col .img-wrap .main-btn {
  opacity: 0;
  transition: 0.2s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
  height: 48px;
  padding-right: 25px;
  padding-left: 25px;
}
.products-carousel .products-wrapper .col .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.2s;
  position: relative;
  z-index: 1;
}
.products-carousel .products-wrapper .col .sub-info {
  color: #666666;
  margin-bottom: 15px;
  margin-top: 0;
}
.products-carousel .products-wrapper .col .sub-info span {
  margin-right: 10px;
}
.products-carousel .products-wrapper .col .name {
  margin-bottom: auto;
}
.products-carousel .products-wrapper .col .price {
  font-size: 16px;
  font-weight: 700;
  margin-top: 15px;
}
.products-carousel .products-wrapper .col .price ins {
  color: #FF3B30;
  font-size: 18px;
  margin-right: 10px;
  text-decoration: none;
}
.products-carousel .products-wrapper .col .price del {
  color: #666666;
  font-weight: 400;
}

.screen4 {
  padding-bottom: 20vw;
}

.screen5 {
  padding-top: 15vw;
}

.steps {
  margin-bottom: 150px;
}
.steps .col {
  border-radius: 100px;
  padding: 60px 20px;
  width: calc(25% - 20px);
  position: relative;
}
.steps .col:before {
  content: "";
  width: 100%;
  height: 170px;
  background: url("../img/duga.svg") no-repeat center bottom;
  background-size: contain;
  position: absolute;
}
.steps .col:nth-of-type(1) {
  z-index: 4;
}
.steps .col:nth-of-type(1):before {
  left: 55%;
  bottom: calc(100% - 90px);
}
.steps .col:nth-of-type(2) {
  top: 50px;
  z-index: 3;
}
.steps .col:nth-of-type(2):before {
  left: 55%;
  top: calc(100% - 40px);
  transform: scale(1, -1) rotate(-15deg);
}
.steps .col:nth-of-type(3) {
  z-index: 2;
  top: 100px;
}
.steps .col:nth-of-type(3):before {
  left: 55%;
  bottom: calc(100% - 90px);
}
.steps .col:nth-of-type(4) {
  top: 150px;
  z-index: 1;
}
.steps .col:nth-of-type(4):before {
  display: none;
}
.steps .col:nth-of-type(4):after {
  content: "";
  position: absolute;
  top: calc(100% - 70px);
  right: -15px;
  background: url("../img/chill.svg") no-repeat center right;
  background-size: contain;
  width: 50%;
  height: 140px;
}
.steps .col b {
  display: block;
  font-size: 90px;
}
.steps .col span {
  font-size: 44px;
}

.screen7 .flex-row {
  margin-top: 40px;
}
.screen7 .flex-row .article-slider {
  width: calc(75% - 20px);
  padding-bottom: 10px;
}
.screen7 .flex-row .article-slider .grid {
  display: grid;
}
.screen7 .flex-row .empty-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 400px;
  width: 25%;
}
.screen7 .flex-row .empty-col a {
  display: block;
}
.screen7 .flex-row .empty-col a:hover img, .screen7 .flex-row .empty-col a:hover svg {
  transform: translateX(10px);
}
.screen7 .flex-row .empty-col img, .screen7 .flex-row .empty-col svg {
  width: 75px;
  display: block;
  margin: 10px auto 0;
  transition: 0.2s;
}

.articles-wrap .col .img-wrap {
  display: block;
  width: 100%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.2s;
}
.articles-wrap .col .img-wrap:hover {
  opacity: 0.5;
}
.articles-wrap .col .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles-wrap .col .article-info {
  margin-top: 25px;
}
.articles-wrap .col .article-info span {
  margin-right: 5px;
}
.articles-wrap .col .article-name {
  margin-top: 10px;
  display: block;
  transition: 0.2s;
}
.articles-wrap .col .article-name:hover {
  opacity: 0.5;
}
.articles-wrap .col .tags {
  margin-top: 12px;
}
.articles-wrap .col .tags a {
  margin-right: 7px;
  border-radius: 5px;
  padding: 10px 15px 7px;
  transition: 0.2s;
}
.articles-wrap .col .tags a:hover {
  opacity: 0.5;
}

.screen8 .subscribe-block {
  margin-top: 60px;
}

.subscribe-block {
  position: relative;
  border-radius: 0;
  overflow: unset !important;
  /*&:before{
      content: '';
      height: 50px;
      width: 100%;
      border-radius: 20px 20px 0 0;
      background: $orange;
      display: block;
      position:relative;
      margin-bottom: -20px;
      border: 1px solid $black;
      order: 0;
  }
  &:after{
      content: '';
      height: 50px;
      width: 100%;
      border-radius: 20px 20px 0 0;
      background: $lime;
      display: block;
      position:relative;
      margin-bottom: -20px;
      border: 1px solid $black;
      order: 1;
  }*/
}
.subscribe-block.swiper-initialized {
  overflow: hidden !important;
}
.subscribe-block.swiper-initialized .carousel-wrap {
  display: flex;
}
.subscribe-block .carousel-wrap {
  display: block;
}
.subscribe-block .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 130px;
  position: relative;
  border-radius: 20px;
  height: 500px;
  position: sticky;
  margin-bottom: 30px;
  margin-top: 30px;
}
.subscribe-block .inner:nth-of-type(1) {
  top: 70px;
  transform: translateY(-30px);
}
.subscribe-block .inner:nth-of-type(2) {
  top: 70px;
  z-index: 1;
  margin-top: calc(100vh - 570px);
}
.subscribe-block .inner:nth-of-type(3) {
  top: 100px;
  z-index: 2;
  margin-top: calc(100vh - 570px);
}
.subscribe-block .inner > div {
  max-height: 100%;
}
.subscribe-block .inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.subscribe-block .inner .section-heading {
  margin-bottom: 30px;
}

.footer {
  padding-top: 100px;
  border-top: 1px solid #0E0C12;
}
.footer .footer-top {
  padding-bottom: 100px;
}
.footer .col ul.double-li {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}
.footer .col ul.double-li li {
  width: 50%;
}
.footer .col ul li {
  width: 100%;
  margin-bottom: 15px;
}
.footer .col ul li a {
  font-weight: 700;
  font-size: 14px;
  line-height: 170%;
  color: #0E0C12;
  text-transform: uppercase;
  transition: 0.2s;
}
.footer .col ul li a:hover {
  color: #9868FF;
}
.footer .col .big-title {
  font-size: 24px;
  display: block;
  transition: 0.2s;
  margin-bottom: 10px;
}
.footer .col a.big-title:hover {
  opacity: 0.5;
}
.footer .col .soc {
  margin-top: 30px;
}
.footer .footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.footer .footer-bottom a, .footer .footer-bottom p {
  font-size: 12px;
  color: #5D5B62;
}
.footer .footer-bottom a:hover {
  text-decoration: underline;
}
.footer .footer-bottom .left a:not(:last-of-type) {
  margin-right: 30px;
}

@media (max-width: 1300px) {
  .load-more-wrap {
    margin-top: 50px;
  }

  .filter-choises {
    margin-top: 15px;
  }
  .filter-choises .main-btn {
    height: 35px;
    padding: 0 15px;
    border-radius: 5px;
    font-size: 12px;
  }
  .filter-choises .main-btn a {
    margin-left: 10px;
  }
  .filter-choises .main-btn a img {
    width: 20px;
  }
  .filter-choises .clear-filters {
    font-size: 14px;
    padding: 5px 15px;
  }

  .search-results {
    top: calc(100% + 10px);
    padding: 25px 15px;
    max-height: 260px;
  }
  .search-results .h {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .search-results ul li:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .search-results ul li a {
    font-size: 12px;
  }

  .dropdown-filters.full-col .col {
    width: 100%;
  }
  .dropdown-filters.full-col .col ul {
    max-height: 120px;
  }
  .dropdown-filters.full-col .col ul li {
    padding-right: 50px;
  }
  .dropdown-filters.full-col .col ul li.active:after {
    width: 20px;
    height: 20px;
    margin-bottom: -7px;
    margin-left: 5px;
  }
  .dropdown-filters .col {
    padding: 25px 15px;
    width: 16.6%;
    overflow: hidden;
  }
  .dropdown-filters .col .flex-row {
    margin-bottom: 15px;
  }
  .dropdown-filters .col .flex-row input {
    font-size: 12px;
    width: 60px;
  }
  .dropdown-filters .col .flex-row input:last-of-type {
    text-align: right;
  }
  .dropdown-filters .col .h {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .dropdown-filters .col .h .clear {
    padding: 3px 10px;
    font-size: 12px;
  }
  .dropdown-filters .col ul li:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .dropdown-filters .col ul li a {
    font-size: 14px;
  }

  .catalog-filters {
    padding: 20px 0;
  }
  .catalog-filters.with_header {
    top: 80px;
  }
  .catalog-filters .filters-wrap {
    font-size: 14px;
  }
  .catalog-filters .filters-wrap .filter_link {
    margin-right: 30px;
  }
  .catalog-filters .filters-wrap .filter_link svg {
    width: 20px;
    margin-right: 10px;
    top: -1px;
  }
  .catalog-filters .filters-wrap .cat_links ul li {
    margin-right: 20px;
    font-size: 14px;
  }
  .catalog-filters .filters-wrap .search_wrap {
    max-width: 200px;
  }
  .catalog-filters .filters-wrap .search_wrap input {
    font-size: 13px;
  }
  .catalog-filters .filters-wrap .search_wrap input:not(:placeholder-shown) + img {
    display: block;
  }
  .catalog-filters .filters-wrap .sorting_wrap {
    margin-left: 15px;
  }
  .catalog-filters .filters-wrap .sorting_wrap svg {
    width: 20px;
  }

  .default-hero {
    padding: 105px 0 50px;
  }
  .default-hero .full-width-image {
    max-height: 400px;
    border-radius: 20px;
    border-width: 2px;
  }

  .catalog-screen1 {
    padding: 40px 0 80px;
  }
  .catalog-screen1 .products-carousel {
    margin-top: 40px;
  }
  .catalog-screen1 .products-carousel .products-wrapper {
    width: 100%;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col {
    width: 100%;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col img, .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col svg {
    width: 75px;
    margin: 10px auto 0;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col.in_promotion {
    grid-row: 2/span 2;
    grid-column: 1/span 2;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col.in_promotion .img-wrap {
    height: 500px;
    padding: 80px 50px 0;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col.in_promotion .img-wrap[data-text]:before {
    width: 100px;
    height: 100px;
    font-size: 22px;
    top: 50px;
    left: calc(50% + 50px);
  }

  .contacts-screen1 .main-heading:after {
    top: calc(50% + 20px);
    right: calc(50% + 60px);
    width: 440px;
    height: 400px;
    background: url("../img/contacts.png") no-repeat top right;
    background-size: contain;
  }
  .contacts-screen1 .flex-row {
    margin: 100px auto 0;
    max-width: 1000px;
  }

  .contacts-wrap {
    margin-top: 180px;
  }
  .contacts-wrap a {
    font-size: 24px;
  }
  .contacts-wrap a:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .contacts-wrap a span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 15px;
  }
  .contacts-wrap a span img {
    width: 15px;
  }

  .back-link {
    margin-top: -50px;
    margin-bottom: 50px;
  }
  .back-link span {
    width: 36px;
    height: 36px;
  }

  .article-screen1 .section-heading {
    max-width: 680px;
  }
  .article-screen1 .article-info {
    max-width: 680px;
    margin-top: 60px;
  }
  .article-screen1 .article-info .tags-wrap a {
    margin-right: 5px;
    padding: 5px 10px 3px;
    border-radius: 5px;
  }
  .article-screen1 .main-thumb {
    margin-top: 40px;
  }

  .article-content-screen .flex-row.mrgt40 {
    margin-top: 40px;
  }
  .article-content-screen .flex-row .sidebar {
    width: 210px;
    top: 80px;
  }
  .article-content-screen .flex-row .sidebar .heading {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .article-content-screen .flex-row .sidebar ul:not(:last-of-type) {
    margin-bottom: 70px;
  }
  .article-content-screen .flex-row .sidebar ul li {
    margin-bottom: 15px;
  }
  .article-content-screen .flex-row .sidebar ul li a {
    font-size: 14px;
  }
  .article-content-screen .flex-row .text-content {
    width: calc(100% - 480px);
    margin-left: 50px;
  }
  .article-content-screen .simple-flex-row h2 {
    width: calc(100% - 200px);
  }

  .blog-screen {
    padding: 0 0 80px;
  }

  .articles-wrap .article {
    border-radius: 15px;
    padding: 20px 20px 35px;
  }
  .articles-wrap .article.full:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .articles-wrap .article.full:hover {
    transform: rotate(-1deg);
  }
  .articles-wrap .article.full:hover:before {
    transform: rotate(1deg);
  }
  .articles-wrap .article.full:before {
    border-radius: 15px;
    box-shadow: 4px 3px 0px #120C25;
  }
  .articles-wrap .article.full .img-wrap {
    border-radius: 15px;
    box-shadow: 4px 3px 0px #120C25;
  }
  .articles-wrap .article.full .article-info {
    margin-top: 150px;
    max-width: unset;
  }
  .articles-wrap .article.full .info {
    margin-top: 40px;
  }
  .articles-wrap .article.full a.name {
    margin-top: 30px;
    font-size: 35px;
  }
  .articles-wrap .article .img-wrap {
    border-radius: 15px;
  }
  .articles-wrap .article a.name {
    font-size: 20px;
    margin-top: 20px;
  }
  .articles-wrap .article .tags-wrap a {
    margin-right: 5px;
    padding: 5px 10px 3px;
    font-size: 12px;
  }
  .articles-wrap .article .article-info {
    margin-top: 25px;
  }
  .articles-wrap .scroll-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .articles-wrap .scroll-wrap:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .articles-wrap .scroll-wrap.first-one .article .img-wrap {
    height: 200px;
  }
  .articles-wrap .scroll-wrap.first-one .article:first-of-type {
    grid-row: 1/span 2;
  }
  .articles-wrap .scroll-wrap.first-one .article:first-of-type .img-wrap {
    height: 300px;
  }
  .articles-wrap .scroll-wrap.first-one .article:first-of-type a.name {
    font-size: 35px;
    margin-bottom: 25px;
  }
  .articles-wrap .scroll-wrap.last-one .article .img-wrap {
    height: 200px;
  }
  .articles-wrap .scroll-wrap.last-one .article:first-of-type {
    grid-area: 1/2/3;
  }
  .articles-wrap .scroll-wrap.last-one .article:first-of-type .img-wrap {
    height: 300px;
  }
  .articles-wrap .scroll-wrap.last-one .article:first-of-type a.name {
    font-size: 35px;
    margin-bottom: 25px;
  }

  .logo {
    width: 80px;
  }

  .schedule {
    width: 100px;
  }

  .main-menu-wrap {
    margin: 0 auto;
    padding: 14px 25px 12px;
    border-radius: 30px;
  }
  .main-menu-wrap ul > li:not(:last-of-type) {
    margin-right: 15px;
  }
  .main-menu-wrap ul > li a {
    font-size: 11px;
  }

  .header {
    padding: 15px 0;
  }
  .header .right a, .header .right .a {
    font-size: 14px;
  }
  .header .right a.a, .header .right .a.a {
    margin-left: 30px;
  }
  .header .right a span, .header .right .a span {
    padding: 3px 15px;
    margin-left: 5px;
  }
  .header .right a img, .header .right a svg, .header .right .a img, .header .right .a svg {
    width: 26px;
  }

  .screen1 {
    padding-bottom: 20vw;
  }

  .baner-container .content-inner {
    transform: translateY(-51%);
  }
  .baner-container .text-path {
    font-size: 50px;
  }

  .screen2 {
    padding-top: 10vw;
  }
  .screen2 .img-wrap {
    transform: rotate(-20deg);
  }
  .screen2 .bottom-block {
    margin-top: -50px;
    padding-left: 60px;
  }
  .screen2 .bottom-block .orange-ellipse {
    padding: 15px;
  }
  .screen2 .bottom-block .orange-ellipse img {
    width: 50px;
  }
  .screen2 .bottom-block > img {
    width: 100px;
    margin-left: 30px;
  }

  .categories .col {
    padding: 15px 15px 30px;
    border-radius: 15px;
  }
  .categories .col .inner {
    top: -28px;
  }
  .categories .col .inner > span {
    font-size: 16px;
  }
  .categories .col .inner .tags {
    margin-top: 10px;
  }
  .categories .col .inner .tags a {
    font-size: 14px;
    padding: 4px 12px 2px;
    border-radius: 6px;
  }
  .categories .col img {
    width: 200px;
    height: 200px;
    margin: 24px auto 40px;
  }
  .categories .col span {
    font-size: 35px;
  }

  .product-carousels {
    margin-top: 40px;
  }

  .products-carousel:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .products-carousel .empty-col {
    width: calc(25% - 20px);
  }
  .products-carousel .products-wrapper {
    width: calc(75% + 6px);
    margin-right: -6px;
    padding: 0 6px 12px 0;
  }
  .products-carousel .products-wrapper .col {
    padding: 15px 15px 30px;
    border: 2px solid #0E0C12;
  }
  .products-carousel .products-wrapper .col:after {
    height: 30px;
  }
  .products-carousel .products-wrapper .col .top .tags {
    width: calc(100% - 40px);
  }
  .products-carousel .products-wrapper .col .top .tags a {
    padding: 3px 10px;
  }
  .products-carousel .products-wrapper .col .top a.fav {
    width: 18px;
    height: 18px;
  }
  .products-carousel .products-wrapper .col .img-wrap {
    height: 200px;
    margin: 20px 0 40px;
  }
  .products-carousel .products-wrapper .col .sub-info {
    margin-bottom: 15px;
  }
  .products-carousel .products-wrapper .col .sub-info span {
    margin-right: 10px;
  }
  .products-carousel .products-wrapper .col .price {
    font-size: 16px;
  }

  .screen4 {
    padding-bottom: 20vw;
  }

  .screen5 {
    padding-top: 15vw;
  }

  .steps {
    margin-bottom: 150px;
  }
  .steps .col {
    border-radius: 100px;
    padding: 50px 15px;
    width: calc(25% - 20px);
  }
  .steps .col:before {
    height: 170px;
  }
  .steps .col:nth-of-type(1):before {
    left: 55%;
    bottom: calc(100% - 90px);
  }
  .steps .col:nth-of-type(2) {
    top: 50px;
  }
  .steps .col:nth-of-type(2):before {
    left: 55%;
    top: calc(100% - 40px);
    transform: scale(1, -1) rotate(-15deg);
  }
  .steps .col:nth-of-type(3) {
    top: 100px;
  }
  .steps .col:nth-of-type(3):before {
    left: 55%;
    bottom: calc(100% - 90px);
  }
  .steps .col:nth-of-type(4) {
    top: 150px;
  }
  .steps .col:nth-of-type(4):after {
    top: calc(100% - 70px);
    right: -10px;
    height: 140px;
  }
  .steps .col b {
    font-size: 70px;
  }
  .steps .col span {
    font-size: 35px;
  }

  .screen6 {
    padding-top: 100px;
  }

  .screen7 .flex-row {
    margin-top: 40px;
  }
  .screen7 .flex-row .article-slider {
    width: calc(75% - 20px);
  }
  .screen7 .flex-row .empty-col {
    height: 350px;
  }
  .screen7 .flex-row .empty-col img, .screen7 .flex-row .empty-col svg {
    width: 65px;
    margin: 10px auto 0;
  }

  .articles-wrap .col .img-wrap {
    height: 350px;
  }
  .articles-wrap .col .article-info {
    margin-top: 20px;
  }
  .articles-wrap .col .article-name {
    margin-top: 10px;
  }
  .articles-wrap .col .tags {
    margin-top: 12px;
  }
  .articles-wrap .col .tags a {
    margin-right: 7px;
    border-radius: 5px;
    padding: 10px 15px 7px;
  }

  .screen8 .subscribe-block {
    margin-top: 60px;
  }

  .subscribe-block {
    border-radius: 0;
  }
  .subscribe-block .inner {
    padding: 50px 100px;
    border-radius: 20px;
    height: 500px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .subscribe-block .inner:nth-of-type(1) {
    top: 70px;
    transform: translateY(-30px);
  }
  .subscribe-block .inner:nth-of-type(2) {
    top: 70px;
  }
  .subscribe-block .inner:nth-of-type(3) {
    top: 100px;
  }
  .subscribe-block .inner .section-heading {
    margin-bottom: 30px;
  }

  .footer {
    padding-top: 60px;
  }
  .footer .footer-top {
    padding-bottom: 60px;
  }
  .footer .col ul.double-li li {
    width: 50%;
  }
  .footer .col ul li {
    margin-bottom: 10px;
    line-height: 100%;
  }
  .footer .col ul li a {
    font-size: 12px;
  }
  .footer .col .big-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .footer .col .soc {
    margin-top: 25px;
  }
  .footer .footer-bottom {
    padding: 30px 0;
  }
  .footer .footer-bottom a, .footer .footer-bottom p {
    font-size: 14px;
    color: #666666;
  }
  .footer .footer-bottom .left a:not(:last-of-type) {
    margin-right: 30px;
  }
}
@media (max-width: 992px) {
  .products-carousel .products-wrapper .col .img-wrap .main-btn {
    display: none !important;
  }

  .myproducts .info br {
    display: none;
  }

  .open_filters {
    color: #0E0C12;
  }
  .open_filters b {
    display: inline-block;
  }
  .open_filters b.mob-visible {
    display: inline-block !important;
    font-weight: 700;
  }

  .main-popup-wrap.reg_info_popup .popup {
    background: #F8F6E9;
  }

  .mob-sorting-wrap {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    position: fixed;
    top: 0;
    left: 0;
    background: #F8F6E9;
    z-index: -100;
    height: 100%;
    width: 100%;
    padding: 20px 15px 50px;
    transition: 0.2s;
  }
  .mob-sorting-wrap.vis {
    visibility: visible;
    opacity: 1;
    z-index: 20;
  }
  .mob-sorting-wrap .close-filters {
    position: absolute;
    top: 15px;
    right: 13px;
    width: 30px;
  }
  .mob-sorting-wrap .sorting_wrap {
    margin-left: 0 !important;
  }
  .mob-sorting-wrap .sorting_wrap span {
    font-size: 14px;
    color: #0E0C12;
  }
  .mob-sorting-wrap .sorting_wrap span svg path {
    stroke: #0E0C12 !important;
  }
  .mob-sorting-wrap .col {
    margin-top: 20px;
    border-top: 1px solid #E0DFD3;
    border-bottom: 1px solid #E0DFD3;
  }
  .mob-sorting-wrap .col ul li.active a {
    color: #9868FF;
  }
  .mob-sorting-wrap .h:after {
    display: none !important;
  }
  .mob-sorting-wrap ul {
    display: block !important;
  }

  .load-more-wrap {
    margin-top: 50px;
  }

  .filter-choises {
    margin-top: 15px;
    display: none;
  }
  .filter-choises .main-btn {
    height: 35px;
    padding: 0 15px;
    border-radius: 5px;
    font-size: 12px;
  }
  .filter-choises .main-btn a {
    margin-left: 10px;
  }
  .filter-choises .main-btn a img {
    width: 20px;
  }
  .filter-choises .clear-filters {
    font-size: 14px;
    padding: 5px 15px;
  }

  .search-results {
    top: calc(100% + 10px);
    padding: 25px 15px;
    max-height: 260px;
  }
  .search-results .h {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .search-results ul li:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .search-results ul li a {
    font-size: 12px;
  }

  .dropdown-filters {
    box-shadow: unset;
  }
  .dropdown-filters.full-col .col {
    width: 100%;
    border: none;
  }
  .dropdown-filters.full-col .col ul {
    max-height: 120px;
  }
  .dropdown-filters.full-col .col ul li {
    padding-right: 50px;
  }
  .dropdown-filters.full-col .col ul li.active:after {
    width: 20px;
    height: 20px;
    margin-bottom: -7px;
    margin-left: 5px;
  }
  .dropdown-filters .col {
    padding: 20px 0;
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid #E0DFD3;
  }
  .dropdown-filters .col .flex-row {
    margin-bottom: 15px;
  }
  .dropdown-filters .col .flex-row input {
    font-size: 12px;
    width: 60px;
  }
  .dropdown-filters .col .flex-row input:last-of-type {
    text-align: right;
  }
  .dropdown-filters .col .price-slider-wrap {
    padding-top: 20px;
    display: none;
  }
  .dropdown-filters .col .h {
    font-size: 15px;
    margin-bottom: 0;
    position: relative;
  }
  .dropdown-filters .col .h.active:after {
    content: "–";
    background: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dropdown-filters .col .h:after {
    content: "+";
    background: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: -5px;
    color: #0E0C12;
  }
  .dropdown-filters .col .h .clear {
    padding: 3px 10px;
    font-size: 12px;
    display: none !important;
  }
  .dropdown-filters .col ul {
    display: none;
    padding-top: 20px;
  }
  .dropdown-filters .col ul li:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .dropdown-filters .col ul li a {
    font-size: 14px;
  }

  .bottom-filter-row {
    margin-top: auto;
    order: 2;
    width: 100%;
  }
  .bottom-filter-row a.clear {
    font-size: 14px;
    font-weight: 800;
    color: #98959E;
    text-transform: uppercase;
  }
  .bottom-filter-row .apply {
    font-size: 14px;
    font-weight: 800;
    color: #9868FF;
    text-transform: uppercase;
  }
  .bottom-filter-row .apply:after {
    content: "";
    width: 30px;
    height: 15px;
    background: url("../img/arrow-purple.svg") no-repeat center;
    background-size: contain;
    position: relative;
    display: inline-block;
    margin-left: 10px;
    top: 2px;
  }

  .catalog-filters {
    padding: 20px 0;
    top: 0;
    z-index: 17;
  }
  .catalog-filters.with_header {
    top: 61px;
  }
  .catalog-filters:not(.mob-visible) {
    display: block;
    position: fixed;
    padding: 0;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F8F6E9;
    padding: 70px 0 50px;
    z-index: 15;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: -100;
  }
  .catalog-filters:not(.mob-visible).visible {
    opacity: 1;
    visibility: visible;
    z-index: 17;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap {
    font-size: 14px;
    flex-direction: column;
    padding: 0 0;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .close-filters {
    position: absolute;
    top: 15px;
    right: 13px;
    width: 30px;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .dropdown-filters {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    position: static;
    display: block;
    border: none;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .filter_link {
    margin-right: 0;
    width: 100%;
    order: 1;
    margin-bottom: 50px;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .filter_link > span {
    position: absolute;
    left: 15px;
    top: 20px;
    color: #0E0C12 !important;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .filter_link > span svg path {
    stroke: #0E0C12 !important;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .cat_links {
    width: 100%;
    order: 0;
    padding: 20px 0;
    border-bottom: 1px solid #E0DFD3;
    border-top: 1px solid #E0DFD3;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .cat_links .h {
    font-size: 15px;
    font-family: Nunito;
    position: relative;
    color: #0E0C12;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .cat_links .h.active:after {
    content: "–";
    background: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .cat_links .h:after {
    content: "+";
    background: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E0C12;
    position: absolute;
    right: 0;
    top: -5px;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .cat_links ul {
    display: none;
    padding-top: 20px;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .cat_links ul li {
    display: block;
    margin-right: 20px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .search_wrap {
    display: none;
  }
  .catalog-filters:not(.mob-visible) .filters-wrap .sorting_wrap {
    display: none;
  }

  .default-hero {
    padding: 80px 0 50px;
  }
  .default-hero .full-width-image {
    max-height: 400px;
    border-radius: 20px;
    border-width: 1px;
    margin-top: 20px;
    margin-bottom: -20px;
  }

  .catalog-screen1 {
    padding: 0 0 50px;
    margin-top: -10px;
  }
  .catalog-screen1 .products-carousel {
    margin-top: 30px;
  }
  .catalog-screen1 .products-carousel .products-wrapper {
    width: 100%;
    padding-right: 0;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper {
    display: block;
    grid-column-gap: unset;
    grid-row-gap: unset;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col {
    width: 100%;
    padding: 50px 0;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col img, .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .empty-col svg {
    width: 75px;
    margin: 10px auto 0;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col.in_promotion {
    grid-row: unset;
    grid-column: unset;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col.in_promotion .img-wrap {
    height: 200px;
    padding: 0;
  }
  .catalog-screen1 .products-carousel .products-wrapper .swiper-wrapper .col.in_promotion .img-wrap[data-text]:before {
    width: 60px;
    height: 60px;
    font-size: 12px;
    top: -20px;
    left: 50%;
  }

  .contacts-screen1 .main-heading:after {
    top: 50%;
    right: 50%;
    width: 260px;
    height: 180px;
    background: url("../img/contmob.png") no-repeat top right;
    background-size: contain;
  }
  .contacts-screen1 .flex-row {
    margin: 50px auto 0;
    display: block;
    max-width: 500px;
  }
  .contacts-screen1 .flex-row .w-50-15 {
    width: 100%;
  }
  .contacts-screen1 .flex-row form {
    margin-top: 30px;
  }

  .contacts-wrap {
    margin-top: 180px;
  }
  .contacts-wrap a {
    font-size: 24px;
  }
  .contacts-wrap a:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .contacts-wrap a span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 15px;
  }
  .contacts-wrap a span img {
    width: 15px;
  }

  .faq-wrap {
    margin: 50px auto 0;
  }
  .faq-wrap .faq {
    border-radius: 20px;
    padding: 24px 15px;
  }
  .faq-wrap .faq:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .faq-wrap .faq[data-text]:before {
    content: attr(data-text);
    font-size: 14px;
    left: -10px;
    top: -10px;
    transform: rotate(-10deg);
    filter: drop-shadow(3px 2px 0px #120C25);
    text-shadow: -1px -1px 0 #9868FF, 1px -1px 0 #9868FF, -1px 1px 0 #9868FF, 1px 1px 0 #9868FF;
  }
  .faq-wrap .faq .question {
    font-size: 16px;
    padding-right: 40px;
  }
  .faq-wrap .faq .question span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    top: calc(50% - 18px);
  }
  .faq-wrap .faq .question span img {
    width: 6px;
  }
  .faq-wrap .faq .answer {
    font-size: 14px;
    padding-top: 24px;
  }

  .default-screen.article-screen1 {
    padding-bottom: 40px;
    padding-top: 100px;
  }

  .back-link {
    display: none;
  }

  .article-screen1 .main-article-wrap {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    align-items: flex-start;
  }
  .article-screen1 .section-heading {
    max-width: 100%;
    padding-bottom: 40px;
    text-align: left;
    width: 100%;
  }
  .article-screen1 .article-info {
    max-width: 100%;
    margin: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .article-screen1 .article-info .info {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .article-screen1 .article-info .tags-wrap {
    margin: 0;
  }
  .article-screen1 .article-info .tags-wrap a {
    margin-right: 5px;
    padding: 5px 10px 3px;
    border-radius: 5px;
    font-size: 12px;
  }
  .article-screen1 .main-thumb {
    margin-top: 40px;
  }

  .article-content-screen .flex-row {
    display: block;
  }
  .article-content-screen .flex-row.mrgt40 {
    margin-top: 40px;
  }
  .article-content-screen .flex-row .sidebar {
    display: none;
    width: 100%;
  }
  .article-content-screen .flex-row .text-content {
    width: 100%;
    margin-left: 0;
  }
  .article-content-screen .simple-flex-row h2 {
    width: calc(100% - 200px);
  }

  .blog-screen {
    padding: 0 0 60px;
  }

  .articles-wrap .article {
    border-radius: 15px;
    padding: 15px 15px 25px;
  }
  .articles-wrap .article.full {
    box-shadow: unset;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
  }
  .articles-wrap .article.full:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .articles-wrap .article.full:hover {
    transform: unset;
  }
  .articles-wrap .article.full:hover:before {
    transform: unset;
  }
  .articles-wrap .article.full:after {
    border-radius: 0;
  }
  .articles-wrap .article.full:before {
    border-radius: 0;
    box-shadow: unset;
    display: none;
  }
  .articles-wrap .article.full .img-wrap {
    border-radius: 0;
    box-shadow: unset;
  }
  .articles-wrap .article.full .article-info {
    margin-top: 70px;
    max-width: unset;
  }
  .articles-wrap .article.full .info {
    margin-top: 20px;
  }
  .articles-wrap .article.full a.name {
    margin-top: 15px;
    font-size: 16px;
  }
  .articles-wrap .article .img-wrap {
    border-radius: 15px;
  }
  .articles-wrap .article a.name {
    font-size: 16px;
    margin-top: 10px;
  }
  .articles-wrap .article .tags-wrap a {
    margin-right: 5px;
    padding: 5px 10px 3px;
    font-size: 10px;
  }
  .articles-wrap .article .article-info {
    margin-top: 15px;
  }
  .articles-wrap .info span {
    font-size: 12px;
    font-family: Nunito;
  }
  .articles-wrap .scroll-wrap {
    display: inline-flex;
    align-items: stretch;
    justify-content: space-between;
    grid-template-columns: unset;
    grid-column-gap: unset;
    grid-row-gap: unset;
    padding: 0 15px 15px;
    overflow: auto;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .articles-wrap .scroll-wrap:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .articles-wrap .scroll-wrap.first-one .article {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
  }
  .articles-wrap .scroll-wrap.first-one .article .info {
    display: block;
    margin-top: auto;
  }
  .articles-wrap .scroll-wrap.first-one .article:not(:last-of-type) {
    margin-right: 15px;
  }
  .articles-wrap .scroll-wrap.first-one .article .img-wrap {
    height: 200px;
  }
  .articles-wrap .scroll-wrap.first-one .article:first-of-type {
    grid-row: unset;
  }
  .articles-wrap .scroll-wrap.first-one .article:first-of-type .img-wrap {
    height: 200px;
  }
  .articles-wrap .scroll-wrap.first-one .article:first-of-type a.name {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .articles-wrap .scroll-wrap.last-one .article {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
  }
  .articles-wrap .scroll-wrap.last-one .article .info {
    display: block;
    margin-top: auto;
  }
  .articles-wrap .scroll-wrap.last-one .article:not(:last-of-type) {
    margin-right: 15px;
  }
  .articles-wrap .scroll-wrap.last-one .article .img-wrap {
    height: 200px;
  }
  .articles-wrap .scroll-wrap.last-one .article:first-of-type {
    grid-area: unset;
  }
  .articles-wrap .scroll-wrap.last-one .article:first-of-type .img-wrap {
    height: 200px;
  }
  .articles-wrap .scroll-wrap.last-one .article:first-of-type a.name {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .about-screen-last {
    padding-bottom: 60px;
    overflow: hidden;
  }
  .about-screen-last .top-fl, .about-screen-last .bottom-fl {
    justify-content: space-between;
    padding: 0;
    width: calc(100% + 70px);
    margin-left: -35px;
  }
  .about-screen-last .top-fl .col, .about-screen-last .bottom-fl .col {
    width: 50%;
  }
  .about-screen-last .top-fl .col img, .about-screen-last .bottom-fl .col img {
    width: 100%;
  }
  .about-screen-last .center-fl {
    justify-content: space-between;
    margin: 20px 0;
    display: block;
  }
  .about-screen-last .center-fl .col {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  .about-screen-last .center-fl .col:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .about-screen2 .flex-row {
    display: block;
  }
  .about-screen2 .flex-row > div {
    width: 100%;
  }
  .about-screen2 .flex-row > div:last-of-type {
    margin-top: 20px;
  }
  .about-screen2 .txt {
    font-size: 14px;
  }

  .about-screen1 h1.main-heading {
    font-size: 44px;
  }

  .partners-slider {
    width: calc(100% + 30px);
    padding-bottom: 25px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: -15px !important;
  }
  .partners-slider .swiper-scrollbar {
    width: calc(100% - 30px) !important;
    left: 15px !important;
  }

  .partners-slider .swiper-wrapper {
    flex-flow: unset;
    flex-wrap: unset;
    justify-content: unset;
  }
  .partners-slider .swiper-wrapper .swiper-slide {
    width: unset;
    margin-top: 0;
  }
  .partners-slider .swiper-wrapper .swiper-slide img {
    max-height: 52px;
    max-width: 100%;
  }

  .logo {
    width: 80px;
    margin-right: 0;
    position: relative;
    z-index: 12;
  }

  .schedule {
    width: 80px;
    display: none;
  }

  .header.mobile-active {
    z-index: 25 !important;
  }
  .header.mobile-active a.cart-link {
    display: none !important;
  }
  .header.mobile-active a.personal-link {
    display: block !important;
    width: 25px;
    position: relative;
    z-index: 12;
  }

  .menu-full-wrap {
    transition: 0.4s;
    transform: translateY(-100%);
  }
  .menu-full-wrap form {
    display: block;
  }
  .menu-full-wrap form input {
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #C8C8C5;
    border-radius: 25px;
    height: 50px;
    background-position-x: 15px !important;
    background-size: 25px !important;
  }
  .menu-full-wrap form img {
    width: 30px;
    right: 15px;
  }
  .menu-full-wrap.show {
    transform: translateY(0);
  }
  .menu-full-wrap .mobile-schedule {
    display: block;
    margin-top: auto;
    padding: 15px 15px 0;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-top: 1px solid #0E0C12;
  }
  .menu-full-wrap .mobile-schedule .line {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu-full-wrap .mobile-schedule .line .left {
    font-size: 14px;
    color: #0E0C12;
    font-family: "Nunito";
  }
  .menu-full-wrap .mobile-schedule .line .right {
    font-size: 14px;
    color: #8138C4;
    font-weight: 700;
    font-family: "Nunito";
  }

  .main-menu-wrap {
    margin: 0;
    border-radius: 0;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    line-height: 150%;
    margin-bottom: 30px;
  }
  .main-menu-wrap ul > li {
    display: block;
  }
  .main-menu-wrap ul > li a {
    width: 100%;
    display: block;
  }
  .main-menu-wrap ul > li.active > a {
    color: #9868FF !important;
  }
  .main-menu-wrap ul > li.active > a:hover {
    color: #9868FF !important;
  }
  .main-menu-wrap ul > li.active a:hover {
    color: #9868FF !important;
  }
  .main-menu-wrap ul > li .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: static;
    max-height: unset;
    overflow: unset;
    padding-bottom: 15px;
    display: none;
    border-bottom: none;
  }
  .main-menu-wrap ul > li .drop-menu .flex-row {
    display: block;
    padding: 0;
  }
  .main-menu-wrap ul > li .drop-menu .flex-row .left-block {
    width: 100%;
  }
  .main-menu-wrap ul > li .drop-menu .flex-row .left-block .bottom {
    display: none;
  }
  .main-menu-wrap ul > li .drop-menu .flex-row .left-block .grid {
    display: block;
    margin-bottom: 0;
  }
  .main-menu-wrap ul > li .drop-menu .flex-row .left-block .grid .col {
    margin-bottom: 10px;
  }
  .main-menu-wrap ul > li .drop-menu .flex-row .right-block {
    display: none;
  }
  .main-menu-wrap ul > li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .main-menu-wrap ul > li a {
    font-size: 22px;
  }

  .menu-full-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F8F6E9;
    padding: 100px 15px 30px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .header {
    padding: 15px 0;
  }
  .header.mobile-active {
    transform: translateY(0) !important;
  }
  .header.mobile-active:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #F8F6E9;
    z-index: 11;
  }
  .header .right div.a {
    display: none;
  }
  .header .right a, .header .right .a {
    font-size: 0;
  }
  .header .right a.a, .header .right .a.a {
    margin-left: 0;
  }
  .header .right a:not(:last-of-type), .header .right .a:not(:last-of-type) {
    display: none;
  }
  .header .right a span, .header .right .a span {
    padding: 0;
    padding-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin-left: 0;
    font-size: 12px;
    background: url("../img/bag.svg") no-repeat center;
    background-size: contain;
    border-radius: 0;
    color: #0E0C12;
  }
  .header .right a img, .header .right a svg, .header .right .a img, .header .right .a svg {
    width: 26px;
  }

  .screen1 {
    padding-bottom: 200px;
    background-attachment: unset;
  }

  .baner-container {
    height: auto;
    overflow: hidden;
    margin-top: -120px;
  }
  .baner-container.second-banner .content-inner {
    margin-left: -50px;
  }
  .baner-container .content-inner {
    transform: translateY(0);
    position: relative;
    width: 992px;
  }
  .baner-container .content-inner img {
    max-width: unset;
  }
  .baner-container .text-path {
    font-size: 50px;
  }

  .screen2 {
    padding-top: 60px;
    margin-top: -60px;
  }
  .screen2 .flex-row {
    display: block;
  }
  .screen2 .w-50-15 {
    width: calc(100% + 50px);
    margin-left: -50px;
    max-width: 500px;
  }
  .screen2 .img-wrap {
    transform: rotate(-20deg);
  }
  .screen2 .w-35-15 {
    width: 100%;
    margin-top: 60px;
  }
  .screen2 .w-35-15 p {
    font-size: 20px;
  }
  .screen2 .bottom-block {
    margin-top: -50px;
    padding-left: 60px;
  }
  .screen2 .bottom-block .orange-ellipse {
    padding: 15px;
  }
  .screen2 .bottom-block .orange-ellipse img {
    width: 50px;
  }
  .screen2 .bottom-block > img {
    width: 100px;
    margin-left: 30px;
  }

  .swiper-scrollbar {
    width: 100% !important;
    left: 0 !important;
    bottom: 0 !important;
  }
  .swiper-scrollbar .swiper-scrollbar-drag {
    background: #9868FF !important;
  }

  .cat-slider {
    width: calc(100% + 30px);
    margin-left: -15px !important;
  }
  .cat-slider .swiper-scrollbar {
    width: calc(100% - 30px) !important;
    left: 15px !important;
  }

  .categories {
    padding-bottom: 30px !important;
  }
  .categories .col {
    padding: 15px 15px 10px;
    border-radius: 15px;
  }
  .categories .col .inner {
    top: -28px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
  }
  .categories .col .inner > span {
    font-size: 16px;
  }
  .categories .col .inner .tags {
    margin-top: 10px;
  }
  .categories .col .inner .tags a {
    font-size: 12px;
    padding: 4px 12px 2px;
    border-radius: 6px;
  }
  .categories .col img {
    width: 140px;
    height: 150px;
    margin: 0 auto 10px;
  }
  .categories .col span {
    font-size: 35px;
  }

  .product-carousels {
    margin-top: 40px;
  }

  .products-carousel {
    display: block;
  }
  .products-carousel:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .products-carousel .empty-col {
    width: 100%;
    position: relative;
    padding-right: 100px;
  }
  .products-carousel .empty-col .nav-wrap {
    position: absolute;
    right: 0;
    top: 0;
  }
  .products-carousel .products-wrapper {
    width: calc(100% + 15px);
    margin-right: -15px;
    padding: 0 6px 12px 0;
  }
  .products-carousel .products-wrapper .col {
    padding: 15px 15px 30px;
    border: 2px solid #0E0C12;
  }
  .products-carousel .products-wrapper .col:after {
    height: 30px;
  }
  .products-carousel .products-wrapper .col .top .tags {
    width: calc(100% - 40px);
  }
  .products-carousel .products-wrapper .col .top .tags a {
    padding: 3px 10px;
    font-size: 12px;
  }
  .products-carousel .products-wrapper .col .top a.fav {
    width: 18px;
    height: 18px;
  }
  .products-carousel .products-wrapper .col .img-wrap {
    height: 200px;
    margin: 20px 0 40px;
  }
  .products-carousel .products-wrapper .col .sub-info {
    margin-bottom: 15px;
  }
  .products-carousel .products-wrapper .col .sub-info span {
    margin-right: 10px;
    font-size: 12px;
  }
  .products-carousel .products-wrapper .col a.name {
    font-size: 16px;
  }
  .products-carousel .products-wrapper .col .price {
    font-size: 14px;
  }

  .screen4 {
    padding-bottom: 200px;
    position: relative;
  }
  .screen4 .wrap {
    position: static;
  }
  .screen4 .flex-row .main-btn {
    width: calc(100% - 30px);
    position: absolute;
    bottom: 130px;
    left: 15px;
  }

  .screen5 {
    padding-top: 0;
  }

  .steps {
    margin-bottom: 0;
    display: block;
  }
  .steps .col {
    border-radius: 150px;
    padding: 90px 15px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
  }
  .steps .col:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .steps .col:before {
    height: 200px;
    width: 80px;
    background: url("../img/newarrow.svg") no-repeat center right;
    background-size: contain;
  }
  .steps .col:nth-of-type(1):before {
    left: unset;
    right: -15px;
    bottom: unset;
    top: calc(100% - 50px);
  }
  .steps .col:nth-of-type(2) {
    top: 0;
  }
  .steps .col:nth-of-type(2):before {
    left: -25px;
    top: calc(100% - 60px);
    transform: scale(-1, 1);
  }
  .steps .col:nth-of-type(3) {
    top: 0;
  }
  .steps .col:nth-of-type(3):before {
    left: unset;
    right: -15px;
    bottom: unset;
    top: calc(100% - 50px);
  }
  .steps .col:nth-of-type(4) {
    top: 0;
  }
  .steps .col:nth-of-type(4):after {
    top: calc(100% - 90px);
    right: -10px;
    height: 140px;
  }
  .steps .col b {
    font-size: 74px;
  }
  .steps .col span {
    font-size: 38px;
  }

  .screen6 {
    padding-top: 50px;
    position: relative;
    padding-bottom: 130px;
  }
  .screen6 .wrap {
    position: static;
  }
  .screen6 .flex-row .main-btn {
    width: calc(100% - 30px);
    position: absolute;
    bottom: 50px;
    left: 15px;
  }

  .screen7 {
    padding-top: 40px;
  }
  .screen7 .swiper-scrollbar {
    width: calc(100% - 30px) !important;
    left: 15px !important;
  }
  .screen7 .flex-row {
    margin-top: 40px;
    display: block;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .screen7 .flex-row .article-slider {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
  }
  .screen7 .flex-row .article-slider .grid {
    display: flex;
  }
  .screen7 .flex-row .empty-col {
    height: 350px;
    display: none;
  }
  .screen7 .flex-row .empty-col img, .screen7 .flex-row .empty-col svg {
    width: 65px;
    margin: 10px auto 0;
  }

  .articles-wrap .col .img-wrap {
    height: 350px;
  }
  .articles-wrap .col .article-info {
    margin-top: 20px;
    font-size: 12px;
  }
  .articles-wrap .col .article-name {
    margin-top: 10px;
    font-size: 16px;
  }
  .articles-wrap .col .tags {
    margin-top: 12px;
  }
  .articles-wrap .col .tags a {
    margin-right: 7px;
    border-radius: 5px;
    padding: 10px 15px 7px;
    font-size: 12px;
  }

  .screen8 .subscribe-block {
    margin-top: 60px;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-bottom: 10px;
  }
  .screen8 .flex-row {
    display: block;
  }
  .screen8 .flex-row .w70 {
    width: 100%;
  }
  .screen8 .flex-row .w-30 {
    width: 100%;
    margin-top: 30px;
  }
  .screen8 .flex-row .w-30 p {
    font-size: 20px;
  }

  .subscribe-block {
    border-radius: 0;
  }
  .subscribe-block .inner {
    padding: 30px 15px;
    border-radius: 20px;
    height: unset;
    position: static;
    display: block;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .subscribe-block .inner img {
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .subscribe-block .inner .w-40, .subscribe-block .inner .w-50 {
    width: 100%;
  }
  .subscribe-block .inner .w-50 {
    margin-top: 30px;
  }
  .subscribe-block .inner:nth-of-type(1) {
    top: 0;
    transform: translateY(0);
  }
  .subscribe-block .inner:nth-of-type(2) {
    top: 0;
  }
  .subscribe-block .inner:nth-of-type(3) {
    top: 0;
  }
  .subscribe-block .inner .section-heading {
    margin-bottom: 30px;
  }

  .footer {
    padding-top: 30px;
  }
  .footer .logo {
    z-index: 1;
  }
  .footer .flex-row {
    display: block;
  }
  .footer .footer-top {
    padding-bottom: 0;
  }
  .footer .col {
    margin-bottom: 30px;
  }
  .footer .col.text-right {
    text-align: left;
  }
  .footer .col ul.double-li li {
    width: 50%;
  }
  .footer .col ul li {
    margin-bottom: 10px;
    line-height: 100%;
  }
  .footer .col ul li a {
    font-size: 12px;
  }
  .footer .col .big-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .footer .col .soc {
    margin-top: 25px;
  }
  .footer .footer-bottom {
    padding: 20px 0;
    text-align: center;
  }
  .footer .footer-bottom .flex-row {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .footer-bottom a, .footer .footer-bottom p {
    font-size: 12px;
    color: #666666;
  }
  .footer .footer-bottom .left {
    order: 0;
  }
  .footer .footer-bottom .left a:not(:last-of-type) {
    margin-right: 15px;
  }
  .footer .footer-bottom .right {
    order: 1;
    margin-left: 15px;
  }
  .footer .footer-bottom .center {
    order: 2;
    margin-top: 10px;
  }
}
@media (max-width: 800px) {
  .baner-container {
    height: auto;
    overflow: hidden;
    margin-top: -80px;
  }
  .baner-container.second-banner .content-inner {
    margin-left: -50px;
  }
  .baner-container .content-inner {
    transform: translateY(0);
    position: relative;
    width: 800px;
  }
  .baner-container .content-inner img {
    max-width: unset;
  }
  .baner-container .text-path {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .contacts-screen1 .main-heading:after {
    top: 50%;
    right: unset;
    left: -10px;
    width: 260px;
    height: 180px;
    background: url("../img/contmob.png") no-repeat top right;
    background-size: contain;
  }
  .contacts-screen1 .flex-row {
    margin: 50px auto 0;
    display: block;
    max-width: 500px;
  }
  .contacts-screen1 .flex-row .w-50-15 {
    width: 100%;
  }
  .contacts-screen1 .flex-row form {
    margin-top: 30px;
  }

  .contacts-wrap {
    margin-top: 150px;
  }
  .contacts-wrap a {
    font-size: 21px;
  }
}
body.dark-theme {
  background: radial-gradient(#2A292C 1px, transparent 1px);
  background-size: 17px 17px;
  background-attachment: fixed;
  background-color: #121114 !important;
}
body.dark-theme .catalog-filters:not(.mob-visible) .filters-wrap .filter_link > span, body.dark-theme .mob-sorting-wrap .sorting_wrap span {
  color: white !important;
}
body.dark-theme .catalog-filters:not(.mob-visible) .filters-wrap .filter_link > span svg path, body.dark-theme .mob-sorting-wrap .sorting_wrap span svg path {
  stroke: white !important;
}
body.dark-theme .delivery-instruction {
  background: #0E0C12 !important;
  border-color: #CBCBCC;
}
@media (max-width: 992px) {
  body.dark-theme .delivery-instruction {
    box-shadow: 2px 2px 0px #C0BEB5 !important;
  }
}
body.dark-theme .gray-orders {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px 15px !important;
}
body.dark-theme .choose_link.active svg {
  filter: unset;
}
body.dark-theme .choose_link.active svg path[fill="#0E0C12"] {
  fill: white;
}
body.dark-theme .choose_link.active svg path[stroke="#0E0C12"] {
  stroke: white;
}
body.dark-theme .account-screen .input-wrap.attach-wrap input {
  background: url("../img/attach.svg") no-repeat !important;
  background-position: 15px !important;
}
body.dark-theme .product-screen .flex-row .col.product-details .select-quantity .price del, body.dark-theme .product-screen .flex-row .col.product-details .select-quantity .price i {
  color: #C8C4B3;
}
body.dark-theme .products-carousel .swiper-wrapper .col .img-wrap .main-btn {
  color: #0E0C12 !important;
}
body.dark-theme .cookies-popup {
  background: #0E0C12;
  border-color: #C7C4B5;
}
body.dark-theme .cookies-popup .flex-row .col a img {
  filter: brightness(2);
}
body.dark-theme .cookies-popup .flex-row .col .choose_link svg {
  filter: drop-shadow(1px 1px 0 #C7C4B5);
}
body.dark-theme .cookies-popup .flex-row .col .choose_link svg path[fill="#FCFCFA"] {
  fill: #0E0C12 !important;
}
body.dark-theme .cookies-popup .flex-row .col .choose_link svg path[stroke="#0E0C12"] {
  stroke: #FCFCFA !important;
}
body.dark-theme .cookies-popup .flex-row .col .choose_link:hover svg path[fill="#FCFCFA"] {
  fill: #0E0C12 !important;
}
body.dark-theme .cookies-popup .flex-row .col .choose_link:hover svg path[stroke="#0E0C12"] {
  stroke: white !important;
}
body.dark-theme .screen-404 .wrap:before {
  background: url("../img/unlike-white.svg") no-repeat center;
  background-size: contain;
}
body.dark-theme .screen-404 .wrap:after {
  background: url("../img/folder-white.svg") no-repeat center;
  background-size: contain;
}
body.dark-theme .input-wrap select:not(.mw), body.dark-theme .input-wrap select:not(.mw) {
  background: transparent;
  background-image: url("../img/down-white.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: calc(100% - 15px);
  border-color: #C2B6BD !important;
}
body.dark-theme .input-wrap select:not(.mw):hover, body.dark-theme .input-wrap select:not(.mw):hover {
  border-color: white !important;
}
body.dark-theme .dropdown-filters {
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
}
body.dark-theme .dropdown-filters .col .clear {
  box-shadow: 2px 2px #C7C4B5 !important;
}
body.dark-theme .empty-col svg {
  filter: drop-shadow(2px 2px 0 #C7C4B5);
}
body.dark-theme .empty-col svg defs {
  display: none !important;
  visibility: hidden;
}
body.dark-theme .nav-links ul li a.prev img, body.dark-theme .nav-links ul li a.next img, body.dark-theme .nav-links ul li span.prev img, body.dark-theme .nav-links ul li span.next img {
  filter: invert(100%);
}
body.dark-theme .drop-menu .left-block .bottom a svg {
  filter: drop-shadow(0 1px 0 #C7C4B5);
}
body.dark-theme .creal-search-form {
  filter: brightness(2) !important;
}
body.dark-theme .color-darkgray {
  color: white;
}
body.dark-theme .header:hover {
  background: #0E0C12;
}
body.dark-theme .profile-tabs .cart-line .right-block .product-name {
  color: #0E0C12 !important;
  display: none;
}
body.dark-theme .categories .col:hover {
  box-shadow: 4px 3px 0px #C7C4B5;
}
body.dark-theme .categories .col {
  box-shadow: 2px 2px 0 #C6C4B6;
}
body.dark-theme .checkout-totals .top_block::after {
  filter: invert(1);
}
body.dark-theme .checkout-totals {
  border-color: #5D5B62;
}
body.dark-theme .checkout-totals .main-info table tr td a {
  color: white;
}
body.dark-theme .checkout-totals .main-info table tr td:last-of-type a {
  color: #C8C4B3;
}
body.dark-theme .cart-line .right-block .remove-block a img {
  filter: invert(1);
}
body.dark-theme .cart-totals .totals-wrap > .right .top .inner > span {
  color: white;
}
body.dark-theme .checkout-totals .bottom_block {
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark-theme .checkout-steps ol li::before {
  color: white;
}
body.dark-theme .product-screen .flex-row .col.accordeons .acc-wrap .top::after, body.dark-theme .product-screen .flex-row .col.description-wrap .mob-acc-heading::after, body.dark-theme .user-reviews-wrap .rev .bottom-block a img, body.dark-theme .cart-line .right-block .conditions .col select {
  filter: invert(1);
}
body.dark-theme .user-reviews-wrap .rev .bottom-block a.active {
  color: white;
}
body.dark-theme .product-screen .flex-row .col.product-details .select-weight .weights label, body.dark-theme .cart-totals .totals-wrap > .right .top .input-wrap input {
  background: transparent;
}
body.dark-theme .cart-totals .totals-wrap > .right .top .input-wrap input:focus, body.dark-theme .cart-totals .totals-wrap > .right .top .input-wrap input:hover {
  border-color: white;
}
body.dark-theme .product-screen .flex-row .col.product-details .select-weight .weights input:checked + label {
  background: white;
}
body.dark-theme .product-screen .flex-row .col.product-image {
  background: #0E0C12;
}
body.dark-theme .qty-input {
  border-color: white;
  background: #0E0C12;
}
body.dark-theme .qty-input span, body.dark-theme .qty-input input {
  color: white;
}
body.dark-theme .qty-input span:hover {
  color: #9868FF;
}
body.dark-theme .breadcrumbs-screen {
  padding: 120px 0 0;
}
body.dark-theme .breadcrumbs-screen ul li:not(:first-of-type):before {
  color: #C8C4B3;
}
body.dark-theme .breadcrumbs-screen ul li:last-of-type {
  color: white;
}
body.dark-theme .breadcrumbs-screen ul li:last-of-type:before {
  color: white;
}
body.dark-theme .breadcrumbs-screen ul li a {
  color: #C8C4B3;
}
body.dark-theme .breadcrumbs-screen ul li span {
  color: white;
}
body.dark-theme .product-screen .flex-row .col.product-image div .navs button {
  color: white;
}
body.dark-theme .product-screen .flex-row .col.product-image .product-slider-thumb .swiper-slide.swiper-slide-active {
  background: rgba(255, 255, 255, 0.1);
}
body.dark-theme .product-screen .flex-row .col.product-details .select-weight .weights label:not(:last-of-type), body.dark-theme .product-screen .flex-row .col.product-details .select-weight .weights {
  border-color: white;
}
body.dark-theme .catalog-filters .filters-wrap .search_wrap input:hover, body.dark-theme .catalog-filters .filters-wrap .search_wrap input:focus {
  border-bottom: 1px solid white;
}
body.dark-theme .catalog-filters .filters-wrap .search_wrap input {
  background: url("../img/zoom-black.svg") no-repeat left;
  background-size: 20px;
}
body.dark-theme .catalog-filters:not(.mob-visible) .filters-wrap .close-filters, body.dark-theme .mob-sorting-wrap .close-filters {
  filter: brightness(2);
}
body.dark-theme .catalog-filters:not(.mob-visible) .filters-wrap .cat_links, body.dark-theme .dropdown-filters .col:not(:last-of-type) {
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark-theme .catalog-filters.with_header.active {
  background: #0E0C12;
}
body.dark-theme .catalog-filters:not(.mob-visible) .filters-wrap .cat_links .h {
  color: white;
}
body.dark-theme .catalog-filters:not(.mob-visible) .filters-wrap .cat_links .h:after {
  filter: brightness(2);
  color: white;
}
body.dark-theme .dropdown-filters .col .h::after {
  filter: brightness(2);
}
body.dark-theme .catalog-filters .filters-wrap .filter_link svg path, body.dark-theme .catalog-filters .filters-wrap .sorting_wrap svg path {
  stroke: #C8C4B3;
}
body.dark-theme .catalog-filters .filters-wrap .filter_link:hover svg path, body.dark-theme .catalog-filters .filters-wrap .sorting_wrap:hover svg path {
  stroke: #9868FF;
}
body.dark-theme .catalog-filters .filters-wrap .filter_link, body.dark-theme .catalog-filters .filters-wrap .cat_links ul li a, body.dark-theme .catalog-filters .filters-wrap .search_wrap input {
  color: #C8C4B3;
}
body.dark-theme .catalog-filters .filters-wrap .filter_link:hover, body.dark-theme .catalog-filters .filters-wrap .cat_links ul li a:hover, body.dark-theme .catalog-filters .filters-wrap .search_wrap input:hover {
  color: #9868FF;
}
body.dark-theme .dropdown-filters {
  background: #0E0C12;
}
body.dark-theme .dropdown-filters .col ul li a {
  color: #C8C4B3;
}
body.dark-theme .dropdown-filters .col ul li a:hover {
  color: #9868FF;
}
body.dark-theme .dropdown-filters .col .flex-row input {
  color: #C8C4B3;
}
body.dark-theme .dropdown-filters .col .asRange {
  background: rgba(255, 255, 255, 0.4);
}
body.dark-theme .dropdown-filters .col .asRange-selected {
  background: white;
}
body.dark-theme .dropdown-filters .col .asRange .asRange-pointer::before {
  background: #C8C4B3;
  border-color: white;
}
body.dark-theme .dropdown-filters .col .asRange.activeted .asRange-pointer::before {
  background: white;
  border-color: white;
}
body.dark-theme .dropdown-filters .col .h {
  color: white;
}
body.dark-theme .catalog-filters.active {
  background: #0E0C12;
}
body.dark-theme .contacts-screen1 .main-heading::after {
  background: url("../img/c1-black.png") no-repeat top right;
  background-size: contain;
}
body.dark-theme .contacts-screen1 .flex-row form .input-wrap input, body.dark-theme .contacts-screen1 .flex-row form .input-wrap textarea {
  background: #0E0C12;
  color: white;
  border-color: #C8C4B3;
}
body.dark-theme .contacts-screen1 .flex-row form .input-wrap input:hover, body.dark-theme .contacts-screen1 .flex-row form .input-wrap textarea:hover {
  border-color: white;
}
body.dark-theme .contacts-screen1 .flex-row form .input-wrap.attach-wrap:hover input {
  border-color: white !important;
}
body.dark-theme .input-wrap.attach-wrap input {
  background: url("../img/attach2.svg") no-repeat calc(100% - 15px) !important;
}
body.dark-theme .contacts-screen1 .flex-row form .input-wrap.attach-wrap input {
  background-color: #0E0C12 !important;
}
body.dark-theme .simple-flex-row .main-btn {
  color: #0E0C12 !important;
  background: white;
}
body.dark-theme .simple-flex-row .main-btn:hover {
  opacity: 0.7;
}
body.dark-theme .article-content-screen .flex-row .sidebar ul li a {
  color: #C8C4B3;
}
body.dark-theme .article-content-screen .flex-row .sidebar ul li a:hover {
  color: #9868FF;
}
body.dark-theme .text-content img {
  box-shadow: 8px 6px 0px #BFBEB5;
}
body.dark-theme .theme-img-wrap img {
  display: none;
}
body.dark-theme .theme-img-wrap img:last-of-type {
  display: block;
}
body.dark-theme .blog-tabs-wrap ul li {
  box-shadow: 2px 2px 0px #BFBEB5;
}
body.dark-theme .nav-links ul li a, body.dark-theme .nav-links ul li span {
  color: #C8C4B3;
}
body.dark-theme .nav-links ul li.current span {
  color: white;
}
body.dark-theme .nav-links ul li a:hover {
  color: white;
}
body.dark-theme .articles-wrap .article.full:before {
  box-shadow: 4px 3px 0px #C0BEB5;
  border: 1px solid #FDFBEE;
}
body.dark-theme .articles-wrap .article.full .img-wrap {
  box-shadow: 4px 3px 0px #C0BEB5;
}
body.dark-theme .text-stroke-black {
  -webkit-text-stroke: 1px #0E0C12;
}
body.dark-theme .text-shadow-black:not(.steps .col *) {
  text-shadow: 3px 3px 0px #BFBFB5;
}
body.dark-theme .text-shadow-black:not(.steps .col *).mob-small {
  text-shadow: 2px 2px 0px #BFBFB5;
}
body.dark-theme .black-drop-shadow:not(text) {
  filter: drop-shadow(4px 3px 0px #C0BEB5);
}
body.dark-theme .black-drop-shadow:not(text).big {
  filter: drop-shadow(8px 6px 0px #C0BEB5);
}
body.dark-theme .black-shadow {
  box-shadow: 4px 3px 0px #C0BEB5;
}
body.dark-theme .black-shadow.big {
  box-shadow: 8px 6px 0px #C0BEB5;
}
body.dark-theme .black-shadow.small {
  box-shadow: 2px 2px 0px #C0BEB5;
}
body.dark-theme h1.main-heading span::before {
  box-shadow: 14px 8px 0px #C0BEB5;
}
body.dark-theme .screen2 .bottom-block .orange-ellipse::before {
  box-shadow: 4px 3px 0px #C0BEB5;
}
body.dark-theme .color-black:not(.white), body.dark-theme .color-darkgray {
  color: white;
}
body.dark-theme .products-carousel .swiper-wrapper .col .top .tags a, body.dark-theme .products-carousel .swiper-wrapper .col .name {
  color: #0E0C12;
}
body.dark-theme .color-white {
  color: white;
}
body.dark-theme .color-lime {
  color: #E0FD2C;
}
body.dark-theme .footer {
  border-top: 1px solid #C7C4B5;
}
body.dark-theme .color-gray, body.dark-theme .footer .footer-bottom a, body.dark-theme .footer .footer-bottom p {
  color: #C7C4B5;
}
body.dark-theme .footer .footer-bottom {
  border-top: 1px solid #272629;
}
body.dark-theme .footer .col ul li a {
  color: #FCFCFA;
}
body.dark-theme .footer .col ul li a:hover {
  color: #9868FF;
}
body.dark-theme .subscribe-block .inner .section-heading {
  text-shadow: 2px 2px 0px #0E0C12;
}
body.dark-theme .schedule svg {
  filter: invert(100%);
}
body.dark-theme .schedule:hover svg {
  filter: unset;
}
body.dark-theme .schedule:hover svg #mb {
  fill: #0E0C12;
}
body.dark-theme .drop-menu {
  background: #0E0C12;
}
body.dark-theme .header.active {
  background: #0E0C12;
}
body.dark-theme .header div.a .img-in img {
  filter: invert(100%);
}
body.dark-theme .header div.a:hover svg path[fill="#0E0C12"] {
  fill: #9868FF !important;
}
body.dark-theme .header div.a:hover svg path[stroke="#0E0C12"] {
  stroke: #9868FF !important;
}
body.dark-theme .header div.a .img-in svg path[fill="#0E0C12"] {
  fill: white;
}
body.dark-theme .header div.a .img-in svg path[stroke="#0E0C12"] {
  stroke: white;
}
body.dark-theme .header div.a .img-in svg circle {
  fill: #0E0C12;
}
body.dark-theme .header .cart-link {
  filter: invert(100%);
}
body.dark-theme .hand {
  background: url("../img/hand-gray.svg") no-repeat center;
  background-size: contain;
}
body.dark-theme .logo .logotext {
  fill: white;
}
body.dark-theme .drop-menu span.h {
  color: white;
}
body.dark-theme .drop-menu .left-block ul li a {
  color: #C8C4B3;
}
body.dark-theme .drop-menu .left-block ul li a:hover {
  color: #9868FF;
}
body.dark-theme .drop-menu .left-block .bottom a {
  color: white;
}
body.dark-theme .gam:before, body.dark-theme .gam:after {
  background: white;
}
body.dark-theme .gam.active span {
  background: transparent;
}
body.dark-theme .gam span {
  background: white;
}
body.dark-theme .steps .col:nth-of-type(1):before {
  background: url("../img/arrow1.svg") no-repeat center bottom;
  background-size: contain;
}
body.dark-theme .steps .col:nth-of-type(2):before {
  background: url("../img/arrow2.svg") no-repeat center bottom;
  background-size: contain;
  transform: scale(1, 1) rotate(5deg);
  height: 120px;
  top: 100%;
}
body.dark-theme .steps .col:nth-of-type(3):before {
  background: url("../img/arrow3.svg") no-repeat center bottom;
  background-size: contain;
  height: 180px;
}
body.dark-theme .products-carousel .swiper-wrapper .col .img-wrap .main-btn {
  box-shadow: 4px 3px 0px #0E0C12 !important;
}
body.dark-theme .subscribe-block .inner .main-btn {
  box-shadow: 4px 3px 0px #0E0C12 !important;
}
body.dark-theme .search-form-wrap input {
  color: white;
  background: url("../img/zoom-black.svg") no-repeat left;
  background-size: 30px;
  border-color: #C8C4B3;
}
body.dark-theme .search-form-wrap input:focus {
  background: url("../img/zoom-purple2.svg") no-repeat left;
  background-size: 30px;
}

@media (max-width: 992px) {
  body.dark-theme .checkout-steps ol li::before {
    background: #0E0C12;
  }
  body.dark-theme .cart-totals .totals-wrap .mob_heading {
    color: #FCFCFA;
  }
  body.dark-theme .cart-totals .totals-wrap .mob_heading::after {
    filter: invert(1);
  }
  body.dark-theme .product-screen .flex-row .col.product-image .navs button {
    filter: invert(1);
  }
  body.dark-theme .product-screen .swiper-pagination {
    filter: invert(1);
  }
  body.dark-theme .product-screen .flex-row .col.product-details .select-quantity select {
    filter: invert(1);
  }
  body.dark-theme .open_filters {
    color: #C8C4B3;
  }
  body.dark-theme .catalog-filters:not(.mob-visible) {
    background: #0E0C12;
  }
  body.dark-theme .dropdown-filters .col .h::after {
    color: #FCFCFA;
  }
  body.dark-theme .catalog-filters:not(.mob-visible) .filters-wrap .cat_links .h::after {
    color: #FCFCFA !important;
  }
  body.dark-theme .breadcrumbs-screen {
    padding-top: 80px;
  }
  body.dark-theme .step-buttons .prev_step {
    color: #9868FF;
  }
  body.dark-theme .circle-bg {
    stroke: #271D37;
  }
  body.dark-theme .contacts-screen1 .main-heading::after {
    background: url("../img/c-black.png") no-repeat top right;
    background-size: contain;
  }
  body.dark-theme .text-content img {
    box-shadow: 4px 3px 0px #BFBEB5;
  }
  body.dark-theme h1.main-heading span::before {
    box-shadow: 4px 4px 0px #C0BEB5;
  }
  body.dark-theme .header.mobile-active::before {
    background: #0E0C12;
  }
  body.dark-theme .menu-full-wrap {
    background: #0E0C12;
  }
  body.dark-theme .main-menu-wrap {
    box-shadow: none !important;
  }
  body.dark-theme .drop-menu .left-block ul li a {
    color: #C8C4B3;
  }
  body.dark-theme .main-menu-wrap ul > li a {
    color: white;
  }
  body.dark-theme .main-menu-wrap ul > li a:hover, body.dark-theme .main-menu-wrap ul > li a.active {
    color: #9868FF !important;
  }
  body.dark-theme .main-menu-wrap ul > li:hover > a {
    color: #9868FF !important;
  }
  body.dark-theme .drop-menu .left-block ul li a {
    color: #C8C4B3 !important;
  }
  body.dark-theme .drop-menu .left-block ul li a:hover {
    color: #9868FF !important;
  }
  body.dark-theme .menu-full-wrap .mobile-schedule .line .left {
    color: #C8C4B3;
  }
  body.dark-theme .menu-full-wrap .mobile-schedule {
    border-top: 1px solid #5D5B63;
  }
  body.dark-theme .swiper-scrollbar {
    background: #4F5050;
  }
  body.dark-theme .steps .col:nth-of-type(1):before {
    background: url("../img/a1.svg") no-repeat center right;
    background-size: contain;
  }
  body.dark-theme .steps .col:nth-of-type(2):before {
    background: url("../img/a2.svg") no-repeat center right;
    background-size: contain;
    top: calc(100% - 60px);
    height: 200px;
  }
  body.dark-theme .steps .col:nth-of-type(3):before {
    background: url("../img/a3.svg") no-repeat center right;
    background-size: contain;
  }
  body.dark-theme .steps .col:nth-of-type(4):after {
    background: url("../img/srick2.svg") no-repeat center right;
    background-size: contain;
  }
  body.dark-theme .menu-full-wrap form {
    display: block;
  }
  body.dark-theme .menu-full-wrap form input {
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    height: 50px;
    background-position-x: 15px !important;
    background-size: 25px;
  }
  body.dark-theme .menu-full-wrap form img {
    width: 30px;
    right: 15px;
  }
}