:root {
  --color-black: #000;
  --color-white: #fff;
}

/*@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}*/
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

body {
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
}

p {
  margin: 0;
}

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

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

* {
  font-family: "Rubik", sans-serif;
}

body.scroll-hide {
  /*overflow: hidden;*/
}

.container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  font-weight: 700;
  font-size: 52px;
  line-height: 62px;
  text-transform: uppercase;
  color: #232323;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.title::before, .title::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 100%;
  height: 1px;
  background: #D9C8EB;
  border: solid #FFF;
  border-width: 0 10px;
}
.title::before {
  margin-left: -100%;
}
.title::after {
  margin-right: -100%;
}

.title-left {
  text-align: left;
}
.title-left::before, .title-left::after {
  display: none;
}

.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hiden-not .page {
  overflow: visible;
}

.breadcrumbs {
  margin: 35px 0;
  position: relative;
  z-index: 5;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
}
.breadcrumbs__list-item {
  display: inline-block;
  padding-left: 60px;
  position: relative;
}
.breadcrumbs__list-item:first-child{
  padding-left: 0;
}
.breadcrumbs__list-item:first-child a > div{
  display: none;
}
.breadcrumbs__list-item a,
.breadcrumbs__list-item span {
  font-weight: 400;
  font-size: 21px;
  line-height: 25px;
  color: #7F6E8F;
  display: block;
}
.breadcrumbs__list-item a:hover {
  text-shadow: 0 0 0.5px #7F6E8F;
}
input.self-postomatli-input {
  text-transform: none !important;
}
.breadcrumbs__list-item:first-child a {
  height: 24px;
  width: 24px;
}

.breadcrumbs__list-item:last-child::after {
  display: none;
}
.breadcrumbs__list-item::before {
  position: absolute;
  content: url("../img/breadcrumbs-icon.svg");
  top: 5px;
  left: 20px;
}
.marg-sec {
  margin: 50px 0;
}
.breadcrumbs__list-item:first-child::before {
  position: absolute;
  content: url("../img/home-icon.svg");
  pointer-events: none;
  top: 0;
  left: 0;
}
.bg-purple {
  background: #F5F3F7;
  padding: 65px 0;
}
.bg-purple.other {
  padding-bottom: 0;
}
.bg-purple .title::before, .bg-purple .title::after {
  display: none;
}
.bg-purple .card-item {
  background-color: #fff;
}

.slider-arrow::after {
  color: #9E8DAF;
  font-size: 33px;
}
.slider-arrow.slider-arrow-next {
  right: -70px;
}
.slider-arrow.slider-arrow-prev {
  left: -70px;
}

.wrapper-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  padding-bottom: 100px;
}

.recommend {
  background: #F4EAFF;
  border-radius: 10px;
  width: 100%;
  padding: 35px 120px;
  position: relative;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: #232323;
  margin-bottom: 50px;
}
.text-blocks .recommend p{
  padding: 0;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
}
.recommend::before {
  position: absolute;
  content: url("../img/recommend-icon.svg");
  left: 15px;
  top: 15px;
}
.recommend::after {
  position: absolute;
  content: url("../img/recommend-icon.svg");
  right: 15px;
  bottom: 15px;
  transform: rotate(180deg);
}

.price-block-mob {
  display: none;
}

.header {
  border: 1px solid #E5E4E6;
  position: relative;
  z-index: 200;
  background: #FFFFFF;
}

.header__top {
  background: #F2F1F3;
  padding: 13px 0;
}

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

.header__top--advan span {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #390076;
  position: relative;
  padding-right: 27px;
  padding-left: 38px;
}
.header__top--advan span::before {
  position: absolute;
  left: 5px;
  top: -3px;
}
.header__top--advan span:nth-child(1)::before {
  content: url("../img/header__top--advan.svg");
}
.header__top--advan span:nth-child(2)::before {
  content: url("../img/header__top--advan2.svg");
  left: 0;
}
.header__top--advan span:nth-child(3)::before {
  content: url("../img/header__top--advan3.svg");
}
.header__top--advan span:nth-child(4)::before {
  content: url("../img/header__top--advan4.svg");
}

.header__top--nav {
  display: flex;
  margin-left: auto;
}
.header__top--nav li {
  padding-right: 30px;
}
.header__top--nav li:last-child {
  padding-right: 0;
}
.header__top--nav a {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #232323;
  transition: all 0.3s ease-in-out;
}
.header__top--nav a:hover {
  opacity: 0.6;
}

.header__center-wrap {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #D9C8EB;
}

.social-circle {
  display: flex;
  -moz-column-gap: 14px;
  column-gap: 14px;
}
.social-circle a {
  background: #5000A5;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}
.social-circle a:hover {
  background: #B774FF;
}
.social-circle a:active {
  background: #7E34CD;
}
.social-circle a img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.link-mail {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #232323;
  position: relative;
  padding-left: 34px;
  margin-left: 30px;
  display: block;
}
.link-mail::before {
  position: absolute;
  content: url("../img/link-mail.svg");
  left: 0;
  top: -3px;
}

.logo {
  height: 92px;
  width: 307px;
  display: block;
  margin: 0 auto;
}
.logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.basket {
  position: relative;
  margin-right: 45px;
  height: 41px;
}
.basket img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.basket__num {
  background: #9B5AE0;
  height: 29px;
  width: 29px;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 50%;
  right: -15px;
  bottom: 0;
}

.header-phone {
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #232323;
}
#menu-top-menu,
.nav__list {
  display: flex;
  justify-content: space-between;
  position: relative;

}
#menu-top-menu > li{
   padding: 30px 0 40px 0;
}
.submenu .submenu-title, .sub-menu .submenu-title{
  display: none;
}

@media (min-width: 1250px) {
  #menu-top-menu > li:hover > .sub-menu,
  .nav__item:hover .submenu {
    pointer-events: painted;
    opacity: 1;
  }
  #menu-top-menu > li:hover > a::before,
  .nav__item:hover .nav__link-arrow::before {
    transform: rotateX(180deg);
  }
}
#menu-top-menu > li > a,
.nav__link {
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
  color: #232323;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#menu-top-menu > li > a,
.nav__link-arrow {
  position: relative;
}
#menu-top-menu > li.menu-item-has-children > a::after,
.nav__link-arrow::after {
    position: absolute;
    content: url(../img/nav__link-arrow.svg);
    height: 14px;
    margin-left: 20px;
    right: -30px;
    top: 35%;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}
#menu-top-menu > li > .sub-menu,
.submenu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #F6F5F7;
  border-radius: 0px 0px 10px 10px;
  padding: 30px 45px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 271px;
  -moz-column-gap: 70px;
  column-gap: 70px;
  row-gap: 26px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.1s ease-in-out;
  z-index: 2000;
}
#menu-top-menu > li > .sub-menu::before,
.submenu::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 40px;
  left: 0;
  top: 100%;
  background-color: transparent;
}
#menu-top-menu > li > .sub-menu > li,
.submenu li {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  position: relative;
  padding-left: 20px;
}
#menu-top-menu > li > .sub-menu > li::before,
.submenu li::before {
  position: absolute;
  content: "";
  background: #9B5AE0;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  left: 0;
  top: 7px;
}
#menu-top-menu > li > .sub-menu > li > a,
.submenu a {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px dashed #b978ff00;
}
#menu-top-menu > li > .sub-menu > li > a:hover,
.submenu a:hover {
  color: #9B5AE0;
  border-bottom: 1px dashed #BA78FF;
}
.submenu .submenu-title {
  display: none;
}

.nav-mobil {
  display: none;
}

.burger {
  background: #5000A5;
  border-radius: 10px;
  width: 53px;
  height: 43px;
  position: relative;
  z-index: 210;
  display: none;
  cursor: pointer;
  margin-left: 50px;
}
.burger span:nth-child(1) {
  background: #FFFFFF;
  position: absolute;
  width: 25px;
  height: 2px;
  top: 13px;
  transition: 0.3s all;
  border-radius: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.burger span:nth-child(2) {
  background: #FFFFFF;
  position: absolute;
  width: 25px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.3s all;
  border-radius: 5px;
}
.burger span:nth-child(3) {
  background: #FFFFFF;
  position: absolute;
  width: 25px;
  height: 2px;
  bottom: 13px;
  transition: 0.3s all;
  border-radius: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.burger.active span:nth-child(1) {
  background: #FFFFFF;
  position: absolute;
  width: 30px;
  height: 2px;
  top: 6px;
  border-radius: 5px;
  transform: rotate(-45deg) translateX(-68%);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  background: #FFFFFF;
  position: absolute;
  width: 30px;
  height: 2px;
  bottom: 6px;
  border-radius: 5px;
  transform: rotate(45deg) translateX(-68%);
}

.baner {
  height: auto;
}
.baner .swiper-pagination {
  bottom: 7%;
}
.baner .swiper-pagination-bullet {
  background: #BE8B00;
  width: 15px;
  height: 15px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 10px !important;
}
.baner .swiper-pagination-bullet-active {
  background: #FFFFFF;
}
.baner .swiper-slide {
  height: 100%;
  display: block;
}
.baner .swiper-slide img {
  width: 100%;
  height: auto;

}
.baner .swiper {
  height: 100%;
}

.different-cases__wrapper {
  position: relative;
}
.slider-sec__wrapper .swiper-wrapper{
  height: auto;
}

.different-cases__item {
  width: 215px;
  display: block;
}

.different-cases__item--block {
  background: #F1EFF3;
  border-radius: 10px;
  position: relative;
  height: 220px;
  width: 100%;
}

.different-cases__item--num {
  font-weight: 400;
  font-size: 92px;
  line-height: 90px;
  text-indent: 5px;
  text-transform: uppercase;
  color: #FDFDFD;
  padding-top: 5px;
  padding-left: 5px;
}

.different-cases__item--img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.different-cases__item--title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #390076;
  text-align: center;
  margin-top: 20px;
}

.slider-sec__wrapper {
  position: relative;
}

.card-item {
  width: 338px;
  border-radius: 10px;
  display: block;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #F5F3F7;
}
.card-item:hover .card-item__btn {
  background: #B774FF;
  border: 1px solid #B774FF;
  color: #fff;
}
.card-item.card-item-bgpurple {
  background: #F5F3F7;
}

.card-item__stickers {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #232323;
  text-align: center;
}
.card-item__stickers div {
  z-index: 2;
  width: 79px;
  height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 10px;
  position: relative;
}
.card-item__stickers div::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.card-item__stickers div span {
  font-size: 24px;
  display: block;
}

.card-item__discount::before {
  content: url("../img/ball-dis.svg");
}

.card-item__color::before {
  content: url("../img/card-item__color.svg");
}

.card-item__text {
  color: #fff;
}
.card-item__text::before {
  content: url("../img/card-item__text.svg");
}

.card-item__img {
  width: 100%;
  height: 336px;
}
.card-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
}

.card-item__info {
  padding: 20px 15px;
  position: relative;
}

.card-item__unavailable {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 15px;
  bottom: 100%;
  width: 100%;
  left: 0;
  text-align: center;
}
.card-item__unavailable::before {
  content: url("../img/card-item__unavailable.svg");
  vertical-align: middle;
  padding-right: 8px;
}

.card-item__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #232323;
  height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  overflow-x: hidden;
}

.card-item__price {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-item__price-new {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #5000A5;
}

.card-item__price-old {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #B6ABC0;
  padding-left: 15px;
}

.card-item__btn {
  height: 50px;
  margin: 25px auto 0 auto;
  display: block;
  background: #F7EEFF;
  border: 1px solid #5000A5;
  border-radius: 10px;
  font-weight: 700;
  font-size: 21px;
  line-height: 25px;
  text-transform: uppercase;
  color: #232323;
  width: 100%;
  max-width: 260px;
  transition: all 0.3s ease-in-out;
}
.card-item__btn:hover {
  background: #B774FF;
  border: 1px solid #B774FF;
  color: #fff;
}
.card-item__btn:active {
  background: #7E34CD;
  border: 1px solid #7E34CD;
}

.news .slider-sec__wrapper {
  margin-bottom: 90px;
}
.text-blocks-row{
  margin-bottom: 45px;
   float: none;
  clear: both;
}
.text-blocks-row.except{
  float: none;
  clear: both;
}
.text-blocks-row h2{
  font-weight: 700;
  font-size: 42px;
  line-height: 50px;
  color: #232323;
  display: block;
  margin-bottom: 35px;
}
.text-blocks p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #232323;
  margin-bottom: 20px;
}
.text-blocks p:last-child {
  margin-bottom: 0;
}
.text-blocks .text-blocks-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 50px;
}
.text-blocks img.alignleft{
    float: left;
    margin: 0px 45px 10px 0;
}
.text-blocks img.alignright{
    float: right;
    margin: 0px 0px 10px 45px;
}
.text-blocks img.alignleft,
.text-blocks img.alignright{
  width: auto;
  height: auto;
  max-width: 100%;
  margin-bottom: 45px;
}
/*.text-blocks__video {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.text-blocks__video.video-right {
  flex-direction: row;
}
.text-blocks__video.video-right .text-blocks__video-text {
  padding-right: 45px;
}
.text-blocks__video.video-left {
  flex-direction: row-reverse;
}
.text-blocks__video.video-left .text-blocks__video-text {
  padding-left: 45px;
}
.text-blocks__video .text-blocks__video-text {
  width: 54%;
} */
.text-blocks .video-block{
  position: relative;
    float: left;
    margin: 0px 45px 45px 0;
    max-width: 45%;
}
.text-blocks .video-block img{
  width: auto;
  height: auto;
  max-width: 100%;
}
.text-blocks img,
.text-blocks figure{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.text-blocks .video-block a{
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.text-blocks .video-block::before {
  position: absolute;
  content: "";
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  background-color: #000;
  opacity: 0.1;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.text-blocks .video-block:hover::before{
  opacity: 0;
}
.text-blocks .video-block a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-block-btn::before, .video-block-btn::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.video-block-btn:before {
  background-color: #F0EFEE;
  height: 118px;
  width: 118px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #F7F8F7;
  background-image: url('../img/video-block__btn.svg');
  background-size: cover;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.video-block-btn::after {
  border: 1px solid #ffffff2a;
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
.video-block-btn:hover:before {
  border: 5px solid #ffffff;
  background-color: #ffffff;
}
.video-block-btn:hover::after {
  border: 3px solid #ffffff5b;
}


.text-blocks__img {
  display: flex;
  background: #F8F6FA;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
}
.text-blocks__img.img-left {
  flex-direction: row;
}
.text-blocks__img.img-right {
  flex-direction: row-reverse;
}
.text-blocks__img img {
  width: 41%;
  -o-object-fit: cover;
  object-fit: cover;
}
.text-blocks__img .text-blocks__img-text {
  width: 59%;
  padding: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.column-text{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  margin: 30px 0 50px 0;
}
.column-text-two li,
.column-text li,
.text-blocks-row.image li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #232323;
  margin-bottom: 0;
  padding-left: 18px;
  position: relative;
}
.text-blocks-row.image li{
  display: list-item;
  padding-left: 0px;
  margin-left: 18px;
  font-size: 18px;
}
.text-blocks-row.image li::marker{
  font-family: 'Arial';
}
.column-text-two li::before,
.column-text li::before {
  position: absolute;
  content: "";
  background: #9B5AE0;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  left: 0;
  top: 12px;
}

.column-text-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}

.img-colum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  margin: 50px 0 70px 0;
}

.img-colum__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #F5F3F7;
  text-align: center;
}
.page-template-page-about .img-colum__item{
  padding-bottom: 35px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
.img-colum__item img {
  width: 100%;
  max-height: 386px;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-template-page-about .img-colum__item img {
  margin-bottom: 24px;
}
.img-colum__item span {
  padding: 17px 55px 25px 55px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  display: flex;
  align-items: center;
  display: block;
}

.possibility-choose {
  padding-bottom: 70px;
}
.possibility-choose ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 80px;
  column-gap: 80px;
  row-gap: 10px;
}
.possibility-choose li {
  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
  text-transform: lowercase;
  color: #000000;
  position: relative;
  padding-left: 25px;
}
.possibility-choose li::before {
  position: absolute;
  content: "";
  background: #9B5AE0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 11px;
}

.possibility-choose__title {
  font-weight: 700;
  font-size: 21px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 30px;
}

.gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.gallery__item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 408px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery__item a img,
.gallery__item button img {
  width: 48px;
  height: 48px;
  position: absolute;
  left: 15px;
  bottom: 15px;
}
.gallery__item:hover .gallery__item-btn {
  opacity: 1;
}
.gallery__item .video-block-btn {
  width: 100%;
  height: 100%;
  padding: 11px;
  left: 0;
  bottom: 0;
  top: inherit;
  transform: translate(0, 0);
  background-size: 20px;
  position: absolute;
  border-radius: 50%;
}
.gallery__item .video-block-btn:before,
.gallery__item .video-block-btn:after{
  width: 48px;
  height: 48px;
  background-size: 50%;
  position: absolute;
  bottom: 15px;
  left: 15px;
  top: auto;
  transform: none;
}
.gallery__item .video-block-btn:after{
  border: 2px solid #F7F8F7;
}
.gallery__item .video-block-btn:hover:after{
  transform: scale(1.2);
}

.gallery__item-btn {
  left: 0;
  bottom: 0;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
}

.block-info {
  background: #F5F3F7;
  padding: 50px 0;
}

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

.block-info__item {
  width: auto;
  display: flex;
  align-items: center;
  position: relative;
}
.block-info__item::before {
  position: absolute;
  content: "";
  background: #D5BBF0;
  width: 57px;
  height: 1px;
  right: -113px;
  top: 50%;
  transform: translateY(-50%);
}
.block-info__item:last-child::before {
  display: none;
}
.block-info__item span {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  color: #232323;
}

.block-info__item--icon {
  background: #EDDBFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 76px;
  width: 76px;
  margin-right: 20px;
}
.block-info__item--icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer {
  background: #2B0058;
  padding: 80px 0 100px 0;
  margin-top: auto;
}
.footer .column-first {
  margin-top: -37px;
}

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

.footer__logo {
  height: 92px;
  width: 307px;
  display: block;
}
.footer__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #C3B4D3;
  width: 310px;
  margin-top: 30px;
}
.footer__text span {
  display: block;
  margin-bottom: 30px;
}
.footer__text span:last-child {
  margin-bottom: 0;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 296px;
  width: 49%;
  margin-right: -128px;
}
.footer__menu li {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}
.footer__menu a {
  font-weight: 400;
  font-size: 19px;
  line-height: 37px;
  color: #FFFFFF;
  padding-left: 30px;
  position: relative;
}
.footer__menu a::before {
  position: absolute;
  content: "";
  background: #8865AC;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  left: 0;
  top: 9px;
}

.footer__contact--title {
  font-weight: 400;
  font-size: 21px;
  line-height: 142.69%;
  color: #C3B4D3;
  margin-bottom: 15px;
}

.footer__contact--link {
  margin-bottom: 25px;
}
.footer__contact--link a {
  font-weight: 400;
  font-size: 21px;
  line-height: 142.69%;
  color: #FFFFFF;
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
.footer__contact--link a::before {
  position: absolute;
  left: 0;
  top: 8px;
}
.footer__contact--link .footer-local::before {
  content: url("../img/footer-local.svg");
}
.footer__contact--link .footer-phone::before {
  content: url("../img/footer-phone.svg");
}
.footer__contact--link .footer-mail::before {
  content: url("../img/footer-mail.svg");
}

.product {
  padding: 10px 0 110px 0;
}

.product-top-mob {
  display: none;
}

.product__wrapper {
  display: flex;
}

.product__slider {
  width: 583px;
  min-width: 583px;
  margin-right: 30px;
}
.product__slider .swiper-wrapper .swiper-slide {
  cursor: pointer;
}
.product__slider .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  height: auto;
  transition: all 0.3s ease-in-out;
  border: 1px solid #5000a500;
}
.product__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product__slider .swiper-slide-thumb-active {
  border: 1px solid #5000A5;
}
.product__slider .product-swiper {
  margin-top: 20px;
}

.product__info {
  width: 100%;
}

.product__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  text-transform: uppercase;
  color: #232323;
}

.product__star {
  margin-top: 30px;
}
.product__star img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product__set {
  margin-top: 30px;
}
.product__set .product__set--title {
  font-weight: 700;
  font-size: 21px;
  line-height: 20px;
  color: #232323;
  margin-bottom: 5px;
}
.product__set li {
  font-weight: 400;
  font-size: 21px;
  line-height: 38px;
  color: #232323;
  padding-left: 15px;
  position: relative;
}
.product__set li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0;
  top: 17px;
  background-color: #5000A5;
}

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

.product-form__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: #5000A5;
}

.product-form__wrapper {
  margin-top: 20px;
  border: 1px solid #D9C8EB;
  border-radius: 10px;
}

.product-form__item {
  padding: 25px 20px 25px 20px;
  border-bottom: 1px solid #ECDFFA;
}
.product-form__item:last-child {
  border-bottom: 0;
}

.product-form__item-wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.product-form__item-wrap .product-form__item {
  width: 48%;
}

.product-form__item--title {
  display: flex;
  flex-wrap: wrap;
}
.product-form__item--title > span {
  font-weight: 700;
  font-size: 21px;
  line-height: 38px;
  color: #232323;
}
.product-form__item--title.item-title-v2 span {
  font-weight: 500;
}

.title-info {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  display: inline-block;
}
.title-info:hover .title-info__icon {
  background: #B774FF;
  color: #fff;
}
.title-info .title-info__text.active {
  opacity: 1;
  pointer-events: painted;
}
.title-info .title-info__icon {
  border: 1.5px solid #9B5AE0;
  min-height: 19px;
  min-width: 19px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #9B5AE0;
  padding-top: 3px;
  cursor: pointer;
}
.title-info .title-info__text {
  position: absolute;
  padding: 30px 25px 25px 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232323;
  border-radius: 10px;
  width: 441px;
  top: 31px;
  left: -20px;
  border: 1px solid #5000A5;
  background: #F9F9F9;
  opacity: 0;
  pointer-events: none;
  /*transition: all 0.3s ease-in-out;*/
  z-index: 20;
}
.title-info .title-info__text::before, .title-info .title-info__text::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #F9F9F9;
  border-top: 1px solid #5000A5;
  top: -5px;
}
.title-info .title-info__text::before {
  transform: rotate(45deg);
  left: 25px;
}
.title-info .title-info__text::after {
  transform: rotate(-45deg);
  left: 24px;
}
.title-info .title-info__text.left{
  left: auto;
  right: -20px;
}
.title-info .title-info__text.left::before{
  transform: rotate(45deg);
  right: 25px;
  left: auto;
}
.title-info .title-info__text.left::after {
    transform: rotate(-45deg);
    right: 26px;
    left: auto;
}
.product-form__item--input {
  width: 100%;
  height: 60px;
  margin-top: 17px;
}
.product-form__item--input input {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #B89AD6;
  border-radius: 10px;
  font-weight: 500;
  font-size: 21px;
  line-height: 38px;
  color: #ac8fc7;
  padding: 0 25px;
}
.product-form__item--input input::-moz-placeholder {
  color: #C2B4CF;
}
.product-form__item--input input:-ms-input-placeholder {
  color: #C2B4CF;
}
.product-form__item--input input::placeholder {
  color: #C2B4CF;
}

.title-check {
  padding-left: 105px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.title-check.title-check-v2 {
  padding-left: 60px;
  margin-left: 10px;
}
.title-check.title-check-v2::before {
  left: -35px;
}
.title-check::before {
  position: absolute;
  content: url("../img/title-check.svg");
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.title-check label {
  font-weight: 400;
  font-size: 21px;
  line-height: 38px;
  color: #232323;
  padding-left: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.title-check input:checked + label {
  color: #702FB5;
  text-shadow: 0.5px 0 0 currentColor;
}
#checkbox .wpcf7-list-item{
  display: flex;
  margin: 0;
}
.contact-form-wrap .contact-form__check{
  margin: 30px 0;
}
#checkbox .wpcf7-list-item .wpcf7-list-item-label{
  display: none;
}
.contact-form-wrap .checkbox input,
.product__info .checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2.5px;
  border: 2px solid #B89AD6;
  background: #FFFFFF;
  min-height: 25px;
  min-width: 25px;
  height: 25px;
  width: 25px;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

.contact-form-wrap .checkbox input::before,
.product__info .checkbox::before {
  content: url("../img/check.svg");
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(57%, 53%);
  opacity: 0;
  transition: 0.1s ease-in;
}

.contact-form-wrap .checkbox input:checked,
.product__info .checkbox:checked {
  background: #A459F4;
  border: 2px solid #A459F4;
}

.contact-form-wrap .checkbox input:checked::before,
.product__info .checkbox:checked::before {
  opacity: 1;
}
.additional_number_first,
.additional_number_second,
.additional_number_color,
.product-form__item--select.item-select-v2 > div:last-child.option_hownumbers_second{
  display: none;
}
.product-form__item--radio {
  display: flex;
  margin-top: 17px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.product-form__item--radio.item-radio-v2 > div {
  margin-right: 25px;
}
.product-form__item--radio div {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.product-form__item--radio div:last-child {
  margin-right: 0;
}
.product-form__item--radio div input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  border: 2px solid #B89AD6;
  background: #FFFFFF;
  min-height: 25px;
  min-width: 25px;
  height: 25px;
  width: 25px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.product-form__item--radio div input::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  background: #9B5AE0;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  opacity: 0;
  transition: 0.1s ease-in;
}
.product-form__item--radio div input:checked {
  border: 2px solid #A459F4;
}
.product-form__item--radio div input:checked::before {
  opacity: 1;
}
.product-form__item--radio div label {
  font-weight: 400;
  font-size: 21px;
  line-height: 25px;
  color: #232323;
  padding-left: 15px;
  transition: all 0.3s ease-in-out;
}
.product-form__item--radio div input:checked + label {
  color: #702FB5;
  text-shadow: 1px 0 0 currentColor;
}

.product-form__item--select {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  row-gap: 25px;
}
.option_print_color .product-form__item--select{
  margin-top: 17px;
}
.product-form__item--select.item-select-v2 > div {
  display: flex;
}
.product-form__item--select.item-select-v2 > div:last-child {
  justify-content: flex-end;
}
.product-form__item--select.item-select-v2 > div span {
  font-weight: 500;
  margin-right: 25px;
}
.product-form__item--select.item-select-v2 > div div {
  max-width: 194px;
}
.product-form__item--select div.width50 {
  width: 48%;
}
.product-form__item--select div.width100 {
  width: 100%;
}
.product-form__item--select div span {
  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
  color: #232323;
  padding-bottom: 15px;
  display: block;
}
.product-form__item--select div div {
  width: 100%;
  position: relative;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.product-form__item--select div div::before {
  position: absolute;
  content: url("../img/select.svg");
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.product-form__item--select div select {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #B89AD6;
  border-radius: 10px;
  height: 60px;
  padding: 0 20px;
  font-weight: 500;
  font-size: 21px;
  line-height: 38px;
  text-transform: lowercase;
  color: #702FB5;
  cursor: pointer;
}

.product-form__bottom {
  margin-top: 50px;
}
.product-form__bottom p {
  font-weight: 400;
  font-size: 21px;
  line-height: 21px;
  color: #7F6E8F;
  margin-top: 40px;
}

.product-form__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 50px;
}

.product-price {
  display: flex;
  align-items: flex-end;
}
.product-price .product-price__new {
  font-weight: bold;
  font-size: 48px;
  line-height: 48px;
  display: flex;
  align-items: center;
  color: #232323;
}
.product-price .product-price__old {
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #B6ABC0;
  padding-left: 20px;
}

.product-form__btn-wrap {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
}

.product-form__btn {
  width: 48%;
  height: 80px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.product-form__btn.btn-send {
  background: #9F56ED;
  color: #fff;
}
.product-form__btn.btn-send:hover {
  background: #B774FF;
}
.product-form__btn.btn-send:active {
  background: #7E34CD;
}
.product-form__btn.btn-deliver {
  border: 1px solid #5000A5;
  color: #5000A5;
}
.product-form__btn.btn-deliver:hover {
  background: #B774FF;
  color: #fff;
  border: 1px solid #B774FF;
}
.product-form__btn.btn-deliver:active {
  background: #7E34CD;
  color: #fff;
  border: 1px solid #7E34CD;
}

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

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

.product-bottom__text {
  max-width: 1036px;
}
.product-bottom__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #232323;
  margin-bottom: 20px;
}

.product-bottom__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 50px;
  color: #232323;
  margin-bottom: 25px;
}

.product-bottom__text--column {
  display: flex;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.product-bottom__text--column div span {
  font-weight: 700;
  font-size: 21px;
  line-height: 28px;
  text-transform: lowercase;
  color: #232323;
  display: block;
  margin-bottom: 30px;
}
.product-bottom__text--column div li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: lowercase;
  color: #232323;
  padding-left: 20px;
  position: relative;
  max-width: 520px;
}
.product-bottom__text--column div li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9B5AE0;
  left: 0;
  top: 11px;
}

.product-bottom__contact {
  background: #FFFFFF;
  border: 1px solid #5000A5;
  border-radius: 10px;
  width: 335px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  margin-top: 20px;
}

.product-bottom__contact--top {
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: url("../img/product-bottom__contact--top.svg") center center/cover no-repeat;
  padding: 30px;
  position: relative;
}
.product-bottom__contact--top::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background: #5000A5;
}

.product-bottom__contact--bottom {
  padding: 40px;
}
.product-bottom__contact--bottom a {
  display: block;
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  text-transform: lowercase;
  color: #232323;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.product-bottom__contact--bottom a:last-child {
  margin-bottom: 0;
}
.product-bottom__contact--bottom a::before {
  width: 24px;
  margin-right: 10px;
}

.contact-mail::before {
  content: url("../img/mail.svg");
}

.contact-tel::before {
  content: url("../img/phone.svg");
}

.basket-sec {
  padding-bottom: 90px;
}

.basket-sec-right {
  max-width: 1070px;
}

.basket__wrapper {
  display: flex;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.basket-block {
  background: #FFFFFF;
  border: 1px solid #E4DFE9;
  border-radius: 10px;
  width: 100%;
}

.basket-block__top {
  background: #F6F4F7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 100px 16px 210px;
  border-radius: 10px 10px 0 0;
}
.basket-block__top span {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #232323;
}
.basket-block__top span:nth-child(2) {
  padding-left: 300px;
}
.basket-block__top span:nth-child(3) {
  padding-left: 11px;
}

.basket-item {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 25px 20px;
  border-bottom: 1px solid #EEE9F3;
}
.basket-item .mod-title {
  display: none;
}

.basket-item__left {
  display: flex;
  margin-right: 70px;
}

.basket-item__closed {
  height: 14px;
  width: 14px;
  position: relative;
  margin-right: 30px;
  top: 58px;
}
.basket-item__closed:hover::before {
  opacity: 0.8;
}
.basket-item__closed::before {
  position: absolute;
  content: url("../img/basket-item__closed.svg");
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}

.basket-item__img {
  height: 117px;
  min-width: 117px;
  width: 117px;
  margin-right: 30px;
}
.basket-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.basket-item__info {
  width: 330px;
}
.basket-item__info h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 16px;
}
.basket-item__info li {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.basket-item__info li:last-child {
  margin-bottom: 0;
}
.basket-item__info li::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background: #9B5AE0;
  border-radius: 50%;
  left: 0;
  top: 13px;
}

.basket-item__price {
  font-weight: 500;
  font-size: 21px;
  line-height: 21px;
  text-transform: lowercase;
  color: #5000A5;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.basket-item__number {
  flex-direction: column;
}

.basket-item__number-wrap {
  display: flex;
}
.basket-item__number-wrap input {
  background: #FFFFFF;
  border: 1px solid #B89AD6;
  border-radius: 5px;
  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
  text-transform: lowercase;
  color: #000000;
  height: 42px;
  width: 48px;
  text-align: center;
}

.basket-item__number--btns {
  flex-direction: column;
  margin-left: 5px;
}
.basket-item__number--btns button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EBE4F1;
  border-radius: 5px;
  height: 20px;
  width: 20px;
  transition: all 0.3s ease-in-out;
}
.basket-item__number--btns button:hover {
  background: #d1c5db;
}
.basket-item__number--btns .btn-plus::before {
  content: url("../img/btn-plus.svg");
}
.basket-item__number--btns .btn-minus {
  padding-bottom: 9px;
  margin-top: 2px;
}
.basket-item__number--btns .btn-minus::before {
  content: url("../img/btn-minus.svg");
}

.basket-item__sum {
  font-weight: 500;
  font-size: 21px;
  line-height: 28px;
  text-transform: lowercase;
  color: #5000A5;
  width: 150px;
}

.basket-result {
  background: #FFFFFF;
  border: 1px solid #5000A5;
  border-radius: 10px;
  width: 335px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  bottom: 95px;
}

.basket-result__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  text-transform: uppercase;
  color: #232323;
  padding: 24px;
  background: #F6F4F7;
}

.basket-result__item {
  padding: 15px 20px 15px 45px;
  border-bottom: 1px solid #EEE9F3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.basket-result__item--name {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #232323;
  position: relative;
  max-width: 150px;
}
.basket-result__item--name::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9B5AE0;
  left: -15px;
  top: 8px;
}

.basket-result__item--price {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  text-transform: lowercase;
  color: #5000A5;
  padding-top: 4px;
  width: 90px;
}

.basket-result__sum {
  padding: 10px 30px 30px 30px;
  border-bottom: 1px solid #EEE9F3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.basket-result__sum--name {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
}

.basket-result__sum--price {
  font-weight: 700;
  font-size: 25px;
  line-height: 28px;
  text-transform: lowercase;
  color: #5000A5;
}

.basket-result__bottom {
  padding: 20px 25px;
}

.basket-result__btn {
  background: #9F56ED;
  border-radius: 10px;
  height: 70px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.basket-result__btn:hover {
  background: #B774FF;
}
.basket-result__btn:active {
  background: #7E34CD;
}
.basket-result__btn::before {
  position: absolute;
  content: url("../img/basket-result__btn.svg");
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.basket-sec__btn {
  border: 1px solid #5000A5;
  border-radius: 10px;
  width: 338px;
  height: 80px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  color: #5000A5;
  position: relative;
  margin-top: 40px;
  transition: all 0.3s ease-in-out;
}
.basket-sec__btn:hover {
  border: 1px solid #B774FF;
  background: #B774FF;
  color: #fff;
}
.basket-sec__btn:hover::before {
  content: url("../img/basket-sec__btn-white.svg");
}
.basket-sec__btn:active {
  border: 1px solid #7E34CD;
  background: #7E34CD;
  color: #fff;
}
.basket-sec__btn:active::before {
  content: url("../img/basket-sec__btn-white.svg");
}
.basket-sec__btn::before {
  position: absolute;
  content: url("../img/basket-sec__btn.svg");
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.basket-sec-wrap {
  display: flex;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.deliver {
  padding-bottom: 70px;
}

.deliver__wrapper {
  display: grid ;
}

.deliver-block {
  background: #5000A5;
  border-radius: 10px;
  width: 100%;
  margin-right: 30px;
}
.deliver-block.hide {
  background: #F6F5F7;
}
.deliver-block.hide .deliver-block__top label {
  color: #232323;
  /*border-bottom: 1px dashed #9B5AE0;*/
}
.deliver-block.hide .deliver-block__item {
  opacity: 0.5;
}
.deliver-block.hide .deliver-block__item--input::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 0;
  top: 0;
  background-color: #FFFFFF;
}
.deliver-block.hide .deliver-block__top {
  border-bottom: 1px solid #E7E6E8;
}
.deliver-block.hide .deliver-block__item--input::before {
  z-index: 2;
  opacity: 0.2;
}
.deliver-block.hide .deliver-block__item--title {
  color: #D2CDD5;
}
.deliver-block.hide .deliver-block__item--title span {
  color: #D2CDD5;
}
.deliver-block.hide .deliver-block__wrap {
  pointer-events: none;
}

[type=date] {
  width: 100%;
  position: relative;
}

[type=date]::-webkit-calendar-picker-indicator {
  width: calc(100% - 0.25em);
  left: -1.5em;
  background-position: 100% 0;
  position: absolute;
  height: 100%;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: none;
}

[type=time] {
  width: 100%;
  position: relative;
}

[type=time]::-webkit-calendar-picker-indicator {
  width: 100%;
  left: -1.5em;
  background-position: 100% 0;
  position: absolute;
}

input[type=time]::-webkit-calendar-picker-indicator {
  background: none;
}

.deliver-block__top {
  padding: 25px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #3C007B;
}
.method-block input,
.method-block input::after,
.deliver-block__top input::after,
.deliver-block__top input {
  min-width: 50px;
  width: 50px;
  height: 50px;
  position: absolute;
  background: #FFFFFF;
  border-radius: 5px;.deliver-block__wrap
  border: 2px solid #B89AD6;
  display: block;
}
.deliver-block__top input{
  min-width: 10px;
  height: 10px;
  width: 10px;
}
.deliver-block__top input::after {
  content: '';
  z-index: 10;
  top: -180%;
  left: -5px;
}
.method-block input::after{
  content: '';
  z-index: 10;
  top:  -20%;
  left: -5px;
}
.deliver-block__top input::before,
.method-block input::before {
  position: absolute;
  content: url("../img/deliver-block__top.svg");
  right: 50%;
  bottom: 50%;
  transform: translate(57%, 53%);
  opacity: 0;
  transition: 0.1s ease-in;
  z-index: 11;
}
.deliver-block__top input:checked,
.method-block input:checked {
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.deliver-block__top input::before  {
  top: -1px;
  left: 8px;
  transform: none;
  right: auto;
  bottom: auto;
}
.method-block input::before{
  top: 12px;
  left: 8px;
  transform: none;
  right: auto;
  bottom: auto;
}
.deliver-block__top input:checked::before,
.method-block input:checked::before{
  opacity: 1;
}
.method-block label,
.deliver-block__top label {
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  margin-left: 75px;
  cursor: pointer;
  position: relative;

}

.deliver-block__wrap {
  padding: 15px 50px 50px 50px;
  display: grid;
  grid-template-columns: 1fr 45px 1fr;
  gap: 50px;
}
.deliver-block__wrap > span {
  color: #FFF;
  font-weight: 500;
  font-size: 21px;
  line-height: 38px;
  text-transform: lowercase;
  margin-top: auto;
  margin-bottom: 40px;
}
.deliver-block.hide .deliver-block__wrap {
  display: none;
}
.deliver-block.active .deliver-block__wrap {
  display: grid;
}
.deliver-block__top label {
  display: flex;
  align-items: center;
}
.deliver-block__top label .icon {
  width: 70px;
  margin-right: 20px;
  background: #FFF;
  padding: 5px 5px;
  height: 50px;
  display: flex;
  align-items: center;
}
.deliver-block__top label .icon img {
  width: 100%;
}
.deliver-block__top label small {
  display: table;
  font-size: 18px;
}
.deliver-block__item {
  margin-bottom: 30px;
}
.deliver-block__item:last-child {
  margin-bottom: 0;
}

.deliver-block__item--title {
  font-weight: 500;
  font-size: 21px;
  line-height: 38px;
  text-transform: lowercase;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.deliver-block__item--title span {
  color: #C187FF;
}

.deliver-block__item--input {
  position: relative;
}
.deliver-block__item--input::before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}
.deliver-block__item--input input,
.deliver-block__item--input select {
  background: #FFFFFF;
  border-radius: 10px;
  width: 100%;
  height: 60px;
  border: none;
  font-weight: 700;
  font-size: 21px;
  line-height: 38px;
  text-transform: lowercase;
  color: #000000;
  padding: 0 10px 0 55px;
}
.deliver-block__item--input select option{
  cursor: pointer;
}
.deliver-block__item--input select option:disabled{
  color:#eee;
  cursor: default;
}
.deliver-block__item--input button {
  position: absolute;
  padding: 22px 20px;
  z-index: 2;
}
.deliver-block__item--input button::before {
  content: url("../img/clean.svg");
}
.deliver-block__item--input.input-calendar::before {
  content: url("../img/calendar.svg");
}
.deliver-block__item--input.input-time::before {
  content: url("../img/time.svg");
}

.deliver__bottom-text {
  border-radius: 10px;
  padding: 20px 70px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  width: 1073px;
  border: 1px solid #B89AD6;
  margin-top: 25px;
  position: relative;
}
.deliver__bottom-text.hide {
  display: none;
}
.deliver__bottom-text.active {
  display: block;
}
.deliver__bottom-text::before, .deliver__bottom-text::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: #F9F9F9;
  border-top: 1px solid #B89AD6;
  top: -8px;
}
.deliver__bottom-text::before {
  transform: rotate(45deg);
  left: 249px;
}
.deliver__bottom-text::after {
  transform: rotate(-45deg);
  left: 248px;
}
.deliver__bottom-text span {
  color: #AD61FF;
  font-weight: 700;
}

.your-data {
  padding-bottom: 70px;
}

.data-form {
  background: #F6F5F7;
  border-radius: 10px;
  max-width: 1073px;
}

.data-form__item {
  padding: 40px;
  border-bottom: 1px solid #E0DCE3;
}
.data-form__item:last-child {
  border-bottom: none;
}

.data-form__input {
  display: grid;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 50px;
}
.data-form__input.three-column {
  grid-template-columns: repeat(3, 1fr);
}
.data-form__input.two-column {
  grid-template-columns: repeat(2, 1fr);
}
.data-form__input.one-column {
  grid-template-columns: repeat(1, 1fr);
}
.data-form__input div.error span {
  color: #EC0000;
}
.data-form__input div.error span::before {
  content: url("../img/error.svg");
  padding-right: 10px;
  padding-top: 5px;
}
.data-form__input div.error input {
  border: 2px solid #EC0000;
}
.data-form__input div span {
  font-weight: 500;
  font-size: 21px;
  line-height: 21px;
  color: #232323;
  display: block;
  margin-bottom: 25px;
}
.data-form__input div input {
  height: 60px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E4DFE9;
  border-radius: 10px;
  font-weight: 500;
  font-size: 21px;
  line-height: 38px;
  color: #8e72a8;
  padding: 0 25px;
}
.wpcf7-not-valid-tip{
  display: none !important;
}
.data-form__input div input.wpcf7-not-valid{
  border-color: #f00;
}
.data-form__input div input::-moz-placeholder {
  color: #C2B4CF;
}
.data-form__input div input:-ms-input-placeholder {
  color: #C2B4CF;
}
.data-form__input div input::placeholder {
  color: #C2B4CF;
}

.data-form__check {
  display: flex;
  align-items: center;
}
.facture-form-fields{
  margin-top: 40px;
}
.data-form__check.error::before {
  content: url("../img/error.svg");
  padding-right: 10px;
}
.data-form__check.error input {
  border: 2.16px solid #FF1E1E;
}
.data-form__check.error label {
  color: #EC0000;
}
.data-form__check input {
  width: 36px;
  height: 36px;
}
.data-form__check label {
  font-weight: 500;
  font-size: 21px;
  line-height: 38px;
  text-transform: lowercase;
  color: #232323;
  padding-left: 25px;
}
.delivery-form-block-hide:last-child{
  margin-bottom: 50px;
}
.data-form__textarea {

}
.deliver-block__wrap.postcode {
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.deliver-block__wrap.postcode .deliver-block__item:last-child  .deliver-block__item--title {
  text-transform: unset;
  text-decoration: underline;
}
.deliver-block__wrap.postcode .deliver-block__item--title a.deliver-block__item--title {
  text-decoration: underline;
}
.wpcf7-form-control-wrap.delivery-date,
.wpcf7-form-control-wrap.delivery-time,
.wpcf7-form-control-wrap.postcode{
  display: none;
}
.deliver-block__item:last-child {
  margin-bottom: -17px;
}
.data-form__textarea div span {
  font-weight: 500;
  font-size: 21px;
  line-height: 21px;
  color: #232323;
  display: block;
  margin-bottom: 25px;
}
.data-form__textarea div textarea {
  height: 212px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E4DFE9;
  border-radius: 10px;
  font-weight: 500;
  font-size: 21px;
  line-height: 38px;
  color: #8e72a8;
  padding: 0 25px;
  padding-top: 10px;
  resize: none;
}
.data-form__textarea div textarea::-moz-placeholder {
  color: #C2B4CF;
}
.data-form__textarea div textarea:-ms-input-placeholder {
  color: #C2B4CF;
}
.data-form__textarea div textarea::placeholder {
  color: #C2B4CF;
}

.pay-method {
  padding-bottom: 95px;
}
.checkbox-agree .wpcf7-checkbox.checkbox label{
  padding-left: 0;
}
.checkbox-agree .wpcf7-checkbox.checkbox input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2.5px;
    border: 2px solid #B89AD6;
    background: #FFFFFF;
    min-height: 25px;
    min-width: 25px;
    height: 25px;
    width: 25px;
    cursor: pointer;
    position: absolute;
    transition: all 0.3s ease-in-out;
}
.checkbox-agree .wpcf7-checkbox.checkbox input:checked{
  background: #A459F4;
  border: 2px solid #A459F4;
}
.checkbox-agree .wpcf7-checkbox.checkbox input + span{
  padding-left: 40px;
}
.checkbox-agree .wpcf7-checkbox.checkbox input + span::before {
    content: url(../img/check.svg);
    left: -4px;
    /*bottom: 50%;*/
    transform: translate(57%, 53%);
    opacity: 0;
    transition: 0.1s ease-in;
    position: absolute;
    display: block;
}
.checkbox-agree .wpcf7-not-valid.wpcf7-checkbox.checkbox input{
  border-color: #f00;
}

.checkbox-agree .wpcf7-checkbox.checkbox input:checked + span::before {
    opacity: 1;
}
.pay-method__wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  max-width: 1073px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.pay-method__wrapper .checkbox {
  position: absolute;
  left: 25px;
  top:  55px;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
}
.pay-method__wrapper .checkbox:checked {
  border: 2px solid #FFFFFF;
}
.pay-method__wrapper .checkbox::before {
  position: absolute;
  content: url("../img/deliver-block__top.svg");
}
.pay-method__wrapper .title-info {
  position: absolute;
  right: 17px;
  top: 12px;
  background: #FFFFFF;
  border-radius: 50%;
  height: 25px;
  width: 25px;
}
.pay-method__wrapper .title-info .title-info__icon {
  height: 25px;
  width: 25px;
}

.method-block {
  background: #5000A5;
  border-radius: 10px;
  padding: 34px;
  position: relative;
  display: flex;
  align-items: center;
  gap:  70px;
}
.method-block.hide {
  background: #F6F5F7;
}
.method-block.hide .method-block__name {
  color: #232323;
}
.method-block.hide .method-block__icon svg {
  fill: #D2CDD4;
  stroke: #D2CDD4;
}
#method-block__icon{
  display: block;
}
.method-block__icon svg {
  width: 87px;
  height: 87px;
  fill: #FFFFFF;
  stroke: #FFFFFF;
}

.method-block__name {
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
}

.pay-method__bottom {
  margin: 70px 0 50px 0;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  max-width: 1073px;
}

.pay-method__check {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid #EEE9F3;
  border-bottom: 1px solid #EEE9F3;
}
.pay-method__check label {
  font-weight: 400;
  font-size: 21px;
  line-height: 24px;
  text-transform: lowercase;
  color: #9B9B9B;
  padding-left: 25px;
}

.pay-method__btn {
  background: #9F56ED;
  border-radius: 10px;
  height: 80px;
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 100%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-method__btn:hover {
  background: #B774FF;
}
.pay-method__btn:active {
  background: #7E34CD;
}
.pay-method__btn::before {
  position: absolute;
  content: url("../img/basket-result__btn.svg");
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.basket-sec-wrap input[type="submit"]{
  display: none;
}
.bottom-error {
  max-width: 1073px;
  font-weight: 700;
  font-size: 21px;
  line-height: 38px;
  text-transform: lowercase;
  color: #C50000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  display: none;
}
.wpcf7-list-item {
    display: flex;
    margin: 0;
}
.wpcf7-form.invalid .req-field{
  color: #EC0000;
}
.wpcf7-form.invalid .req-field::before {
    content: url(../img/error.svg);
    padding-right: 10px;
}
.wpcf7-form.invalid .bottom-error{
  display: block;
}
.checkbox-346 .wpcf7-list-item-label{
    font-weight: 500;
    font-size: 21px;
    line-height: 38px;
    color: #232323;
    padding-left: 25px;
}
.wpcf7-not-valid-tip,
.wpcf7-response-output{
  display: none;
}
.bottom-error span{
  background-image: url("../img/bottom-error.svg");
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  top: 9px;
}
.bottom-error::before, .bottom-error::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 100%;
  height: 1px;
  background: #EEE9F3;
  border: solid #FFF;
  border-width: 0 10px;
}
.bottom-error::before {
  margin-left: -100%;
}
.bottom-error::after {
  margin-right: -100%;
}
.bottom-error img {
  margin-right: 20px;
}

.category-page {
  padding-bottom: 70px;
  display: flex;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.category-left {
  width: 338px;
  min-width: 338px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.category-filter,
#menu-left-filter > li {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E4DFE9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

#menu-left-filter > li > a,
.category-filter__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 28px;
  text-transform: uppercase;
  color: #232323;
  padding: 15px 10px;
  text-align: center;
  position: relative;
  display: block;
}
#menu-left-filter > li > a::before,
.category-filter__title::before {
  position: absolute;
  content: url("../img/category-filter__title.svg");
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.category-filter__item {
  border-top: 1px solid #E4DFE9;
}
#menu-left-filter > li > ul > li > a,
.category-filter__item--title {
  padding: 15px 35px;
  background: #F9F7FA;
  font-weight: 400;
  font-size: 19px;
  line-height: 21px;
  color: #000000;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #e4dfe9;
  display: block;
  width: 100%;
}
#menu-left-filter .current-menu-item > a{
  background: #F2E4FF;
}
#menu-left-filter .current-menu-item > a::after,
.category-filter__item--title::after {
  position: absolute;
  content: url("../img/category-filter__item--title2.svg");
  right: 35px;
  top: -10px;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
#menu-left-filter > li > ul > li.menu-item-has-children{
  position: relative;
}
#menu-left-filter > li > ul > li.menu-item-has-children.active > span,
.category-filter__item--title.toggle__item-title.active::before {
  transform: rotate(90deg);
}
#menu-left-filter > li > ul > li.menu-item-has-children > span,
.category-filter__item--title.toggle__item-title::before {
  position: absolute;
  content: url("../img/category-filter__item--title.svg");
  left: 15px;
  top: 18px;
  width: 8px;
  height: 14px;
  display: block;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul{
  max-height: 0;
  overflow: hidden;
  padding: 10px 55px 20px 55px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul.active{
  display: block;
  max-height: 1000px;
}
#menu-left-filter > li > ul > li.menu-item-has-children.active > a,
.category-filter__item--title.active {
  border-bottom: 1px solid #E4DFE9;
  background: #F2E4FF;
  color: #5000A5;
}
#menu-left-filter > li > ul > li.menu-item-has-children.active > a::after,
#menu-left-filter > li > ul > li:not(.menu-item-has-children) > a::after,
.category-filter__item--title.active::after {
  transform: scale(1);
  opacity: 1;
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul,
.category-filter__item--list {
  padding: 0 55px 0 55px;
  display: block;
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul > li,
.category-filter__item--list li {
  position: relative;
  cursor: pointer;
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul > li,
.category-filter__item--list li.active span {
  color: #5000A5;
  font-weight: 700;
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul > li::before,
.category-filter__item--list li.active span::before {
  background: #9B5AE0;
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul > li> a:hover ,
.category-filter__item--list li:hover a {
  position: relative;
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul > li:hover > a::before,
.category-filter__item--list li:hover a::before {
  position: absolute;
  content: "";
  transform: scale(2);
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul > li > a,
.category-filter__item--list li a {
  font-weight: 400;
  font-size: 21px;
  line-height: 35px;
  text-transform: lowercase;
  color: #000000;
  position: relative;
}
#menu-left-filter > li > ul > li.menu-item-has-children > ul > li > a::before,
.category-filter__item--list li a::before {
  position: absolute;
  content: "";
  background: #D2C9DA;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: -16px;
  top: 11px;
  transition: all 0.3s ease-in-out;
}

.category-baner {
  width: 100%;
  background: #8D4BD3;
  border-radius: 10px;
  overflow: hidden;
}

.category-baner__img {
  width: 100%;
}
.category-baner__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.category-baner__info {
  padding: 20px 25px;
  position: relative;
  z-index: 2;
}
.category-baner__info::before {
  position: absolute;
  content: url("../img/category-baner__info.svg");
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.category-baner__text {
  font-weight: 700;
  font-size: 27px;
  line-height: 37px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 40px;
}
.category-baner__text::before {
  position: absolute;
  content: url("../img/category-baner__text.svg");
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.category-baner__btn {
  display: block;
  width: 100%;
  height: 60px;
  min-height: 60px;
  font-weight: 700;
  font-size: 21px;
  text-align: center;
  line-height: 60px;
  text-transform: uppercase;
  color: #232323;
  background: #FFFFFF;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.category-baner__btn:hover {
  background: #B774FF;
  color: #fff;
}
.category-baner__btn:active {
  background: #7E34CD;
}

.category-right {
  max-width: 1072px;
  width: 100%;
}
.category-right__filter{
  height: 130px;
}
.category-right .swiper {
  padding-bottom: 30px;
}
.category-right .swiper .swiper-wrapper{
  height: 55px;
}
.category-right .swiper-slide {
  background: #FFFFFF;
  border: 1px solid #E4DFE9;
  border-radius: 10px;
  padding: 15px 45px;
  width: auto;
  cursor: pointer;
}
.category-right .swiper-slide.active {
  border: 1px solid #9B5AE0;
  background: #F7EEFF;
}
.category-right .swiper-slide.active a {
  color: #5000A5;
  font-weight: 500;
}
.category-right .swiper-slide.active a::before {
  opacity: 1;
}
.category-right .swiper-slide a {
  font-weight: 400;
  font-size: 21px;
  line-height: 21px;
  text-transform: lowercase;
  color: #000000;
  position: relative;
}
.category-right .swiper-slide a::before {
  position: absolute;
  content: url("../img/category-right__filter.svg");
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.category-right .swiper-button-next:after,
.category-right .swiper-button-prev:after {
  font-size: 0;
}
.category-right .swiper-button-next:after {
  content: url("../img/arrow-right.svg");
}
.category-right .swiper-button-prev:after {
  content: url("../img/arrow-left.svg");
}
.category-right .swiper-button-next,
.category-right .swiper-button-prev {
  top: 90%;
  left: inherit;
  right: inherit;
  position: static;
  margin-top: 0;
}
.category-right .swiper-button-wrap {
  display: flex;
  justify-content: center;
}

.category-product {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}
a.serach_modal svg {
  width: 49px;
}
.search_modal_window .close {
  position: fixed;
  right: 40px;
  top: 60px;
  cursor: pointer;
}
.search_modal_window .close svg {
  width: 40px;
}
.search_modal_window {
  opacity:  0;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(9, 9, 9, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 200;
  transition: all 0.3s ease-in-out;
}
.is-search-icon:hover, form.is-form-style input.is-search-submit:hover {
  background:  unset;
}
.search_modal_window.active {
  display: flex;
  opacity: 1;
}
form.is-search-form.is-form-style.is-form-style-3.is-form-id-13928.is-ajax-search {
  width: 30%;

  padding: 20px;
  display: flex;
}
@media screen and (max-width: 992px) {
  form.is-search-form.is-form-style.is-form-style-3.is-form-id-13928.is-ajax-search {
    width: 80%;

    padding: 20px;
    display: flex;
  }
}
.is-form-style input.is-search-submit, .is-search-icon {
  background: unset;
  border: unset;
}
.is-search-submit svg path {
  fill: #FFF !important ;
}
.is-form-style button.is-search-submit {
  background: 0 0;
  border: 0;
  box-shadow: none !important;
  opacity: 1;
  padding: 0 !important;
  margin: 0;
  line-height: 0;
  outline: 0;
  vertical-align: middle;
  width: 67px;
  height: 62px;
  padding: 20px 0;
  background: #5000a5;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.is-form-style.is-form-style-3 input.is-search-input {
  border-right: 0 !important;
  padding: 29px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
a.serach_modal {
  display: table;
  width: 29px;
  margin-right: 21px;
  margin-left: -21px;
}
@media (max-width: 680px) {
  a.serach_modal {
    order: 2;
  }
  a.serach_modal svg {
    width: 35px;
  }
}
.search_page  .category-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}
.search_page .category-right {
  max-width: 100%;
  width: 100%;
}
.pagination .nav-links{
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  overflow: hidden;
  position: relative;
}
.pagination .nav-links::before, .pagination .nav-links::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 100%;
  height: 1px;
  background: #EEE9F3;
  border: solid #FFF;
  border-width: 0 10px;
}
.pagination .nav-links::before {
  margin-left: -100%;
}
.pagination .nav-links::after {
  margin-right: -100%;
}
.pagination .page-numbers,
.pagination .pagination__link {
  font-weight: 400;
  font-size: 24px;
  line-height: 49px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #C2B4CF;
  border-radius: 50%;
  height: 38px;
  width: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #5000a500;
  transition: all 0.3s ease-in-out;
  padding-left: 4px;
}
.pagination .page-numbers.current,
.pagination .pagination-active {
  border: 1px solid #5000A5;
  color: #5000A5;
  font-weight: 700;
}

.question {
  margin: 70px 0;
  float: none;
  clear: both;
}

.question__item {
  border: 1px solid #C2B4CF;
  border-radius: 10px;
  overflow: hidden;
}

.question__item--title {
  padding: 25px 85px;
  font-weight: 700;
  font-size: 21px;
  line-height: 38px;
  color: #000000;
  background: #F9F7FA;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.question__item--title::before, .question__item--title::after {
  position: absolute;
  left: 20px;
  transition: all 0.3s ease-in-out;
}
.question__item--title::before {
  content: url("../img/question__item--title.svg");
  top: 30px;
}
.question__item--title::after {
  content: url("../img/question__item--title2.svg");
  opacity: 0;
  top: 30px;
}
.question__item--title.active {
  color: #5000A5;
  background: #FFFFFF;
}
.question__item--title.active::before {
  opacity: 0;
}
.question__item--title.active::after {
  opacity: 1;
}

.question__item--descr {
  padding: 45px 55px 55px 30px;
  background-color: #FAF5FF;
  position: relative;
  display: none;
}
.question__item--descr p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.question__item--descr a {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: block;
  margin-top: 30px;
  border-bottom: 1px dashed #9B5AE0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.question__item--descr .closed-descr {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.question__item--descr .closed-descr::before {
  content: url("../img/question__item--descr.svg");
}

.contact {
  padding-bottom: 25px;
}

.contact-top {
  background: #FFFFFF;
  border: 5px solid #DFCEF0;
  border-radius: 10px;
  padding: 50px 60px 50px 100px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.contact-top__column {
  width: auto;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.contact-top__column:nth-child(2) {
  max-width: 409px;
}
.contact-top__column span {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #232323;
  position: relative;
  padding-left: 44px;
}
.contact-top__column span::before {
  position: absolute;
  content: url("../img/clock.svg");
  left: 0;
  top: 5px;
}
.contact-top__column p {
  font-weight: 400;
  font-size: 23px;
  line-height: 33px;
  color: #232323;
}
.contact-top__column a {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #232323;
  display: block;
  border-bottom: 1px dashed #9B5AE0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.contact-top__column a::before {
  position: absolute;
  left: -35px;
  top: 2px;
}
.contact-top__column a.site::before {
  content: url("../img/site.svg");
}
.contact-top__column a.adress::before {
  content: url("../img/adress.svg");
}
.contact-top__column a.phone::before {
  content: url("../img/phone.svg");
}
.contact-top__column a.mail {
  font-weight: 400;
}
.contact-top__column a.mail::before {
  content: url("../img/mail.svg");
}

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

.contact-bottom__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.contact-bottom__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  text-transform: uppercase;
  color: #232323;
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  height: 1040px;
}

.contact-form-wrap {
  background: #5000A5;
  border-radius: 10px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  height: calc(100% - 100px);
}
.contact-form-wrap input {
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  border-radius: 10px;
  font-weight: 500;
  font-size: 21px;
  color: #9c84b3;
  border: none;
  padding: 0 25px;
  margin-bottom: 30px;
}
.contact-form-wrap input::-moz-placeholder {
  color: #C2B4CF;
}
.contact-form-wrap input:-ms-input-placeholder {
  color: #C2B4CF;
}
.contact-form-wrap input::placeholder {
  color: #C2B4CF;
}
.contact-form-wrap textarea {
  width: 100%;
  height: 277px;
  background: #FFFFFF;
  border-radius: 10px;
  font-weight: 500;
  font-size: 21px;
  color: #9c84b3;
  border: none;
  padding: 25px;
}
.contact-form-wrap textarea::-moz-placeholder {
  color: #C2B4CF;
}
.contact-form-wrap textarea:-ms-input-placeholder {
  color: #C2B4CF;
}
.contact-form-wrap textarea::placeholder {
  color: #C2B4CF;
}

.contact-form__check {
  display: flex;
}
.contact-form__check input {
  border: 1px solid #fff;
  border-radius: 5px;
}
.contact-form__check input::before {
  transform: translate(49%, 53%);
}
.contact-form__check label {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #FFFFFF;
  margin-left: 11px;
}
.contact-form__check label a {
  font-weight: 700;
  border-bottom: 1px dashed #BA78FF;
  color: #FFFFFF;
}

.contact-form-wrap input.contact-form__btn {
  background: #FFFFFF;
  display: block;
  border-radius: 10px;
  width: 100%;
  max-width: 395px;
  margin: 10px auto 0 auto;
  height: 72px;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: #5000A5;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.contact-form-wrap input.contact-form__btn:hover {
  background: #B774FF;
  color: #fff;
}
.contact-form-wrap input.contact-form__btn:active {
  background: #7E34CD;
}

.contact-map img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
}

.contact-map-wrap {
  position: relative;
  height: 937px;
  border: 1px solid #9B5AE0;
  border-radius: 10px;
  overflow: hidden;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.price-block {
  margin-bottom: 100px;
  border: 1px solid #E4DFE9;
  border-radius: 10px;
}

.price-block__row {
  display: grid;
  grid-template-columns: 15% 20% 19% 20%;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E4DFE9;
}
.price-block__row:last-child {
  border-bottom: none;
}
.price-block__row div:nth-child(1) {
  text-align: center;
}
.price-block__row.row-title {
  background: #F6F4F7;
  border: 1px solid #E4DFE9;
  border-radius: 10px 10px 0px 0px;
  padding: 23px 0;
}
.price-block__row.row-item div {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
}
.price-block__row.row-item div img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.price-block__row.row-item div:nth-child(1) {
  height: 133px;
}
.price-block__row.row-item div:nth-child(3) {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: lowercase;
  color: #000000;
}
.price-block__row.row-item div:nth-child(4) {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #5000A5;
}

.modal-confirmation {
  width: 705px;
}

.modal {
  background: #FFFFFF;
  border-radius: 10px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 700;
  overflow: hidden;
  display: none;
}

.modal__closed {
  position: absolute;
  right: 20px;
  top: 20px;
}
.modal__closed::before {
  content: url("../img/modal__closed.svg");
}

.modal__title {
  padding: 40px 50px;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 41px;
  line-height: 46px;
  text-transform: uppercase;
  color: #5000A5;
}
.modal__title img {
  margin-right: 30px;
}

.modal-confirmation__body {
  padding: 0 50px 30px 50px;
}
.modal-confirmation__body span:first-child {
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  text-transform: uppercase;
  color: #5000A5;
  display: block;
  margin-bottom: 30px;
}
.modal-confirmation__body span:last-child {
  font-weight: 400;
  font-size: 21px;
  line-height: 25px;
  color: #000000;
}

.modal-confirmation__bottom {
  background: #F3EDF9;
  padding: 30px 50px 45px 50px;
}
.modal-confirmation__bottom p {
  font-weight: 400;
  font-size: 21px;
  line-height: 25px;
  color: #000000;
  margin-bottom: 25px;
}
.modal-confirmation__bottom a {
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  color: #000000;
  position: relative;
  padding-left: 30px;
}
.modal-confirmation__bottom a::before {
  position: absolute;
  left: 0;
}
.modal-confirmation__bottom .modal-phone {
  padding-right: 40px;
}
.modal-confirmation__bottom .modal-phone::before {
  content: url("../img/modal-phone.png");
}
.modal-confirmation__bottom .modal-mail::before {
  content: url("../img/modal-mail.png");
}

.overley {
  background: rgba(9, 9, 9, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 150;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.overley.active {
  opacity: 1;
  pointer-events: painted;
}
.overley.active-two {
  z-index: 600;
  opacity: 1;
  pointer-events: painted;
}

.modal-cookies {
  width: 100%;
  position: fixed;
  bottom: 0;
  background: #FFFFFF;
  z-index: 700;
  padding: 35px 0;
  display: none;
}
.modal-cookies .modal-cookies__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-cookies .modal-cookies__wrapper p {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #232323;
  padding-left: 70px;
  padding-right: 60px;
  position: relative;
  max-width: 960px;
}
.modal-cookies .modal-cookies__wrapper p::before {
  position: absolute;
  content: url("../img/modal-cookies.svg");
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.modal-cookies .modal-cookies__wrapper p::after {
  position: absolute;
  content: "";
  background: #D5BBF0;
  width: 43px;
  height: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.modal-cookies .modal-cookies__wrapper button {
  background: #5000A5;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
  height: 50px;
  width: 215px;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.modal-cookies .modal-cookies__wrapper button:hover {
  background: #B774FF;
}
.modal-cookies .modal-cookies__wrapper button:active {
  background: #7E34CD;
}

.modal-video,
.modal-deliver {
  max-height: 85%;
  overflow-y: auto;
  scrollbar-color: #222332 #fff;
  min-width: 950px;
}
.modal-video{
  width: auto;
  min-width: 0;
  overflow: visible;
}
.modal-video .container{
  padding: 0;
}
.modal-video .modal__closed{
  top: -40px;
  right: -40px;
}
.modal-video .container{
  width: 900px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.modal-video .container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal-deliver::-webkit-scrollbar-track {
  background-color: transparent;
}
.modal-deliver::-webkit-scrollbar {
  height: 8px;
  width: 10px;
  background: #E4DCED;
  border-radius: 22px;
}
.modal-deliver::-webkit-scrollbar-thumb {
  background: #B89AD6;
  border-radius: 47px;
}

.modal-deliver__top {
  background: #F2EDF9;
  padding: 30px 75px;
}
.modal-deliver__top p {
  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
  color: #000000;
  display: flex;
  align-items: center;
}
.modal-deliver__top p::before {
  content: url("../img/modal-deliver__top.svg");
  margin-right: 20px;
  height: 50px;
}

.modal-deliver__body {
  padding: 50px 60px;
}

.modal-deliver__body-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
}

.modal-deliver__info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.modal-deliver__info-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 28px;
  color: #5000A5;
}
.modal-deliver__info-title.info-title-v2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: -10px;
}

.modal-deliver__info-item {
  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
  color: #000000;
  padding-left: 20px;
  position: relative;
  display: block;
}
.modal-deliver__info-item span {
  font-weight: 700;
}
.modal-deliver__info-item::before {
  position: absolute;
  content: "";
  background: #9B5AE0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  left: 0;
  top: 11px;
}

.modal-deliver__time {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 15px;
  padding-bottom: 35px;
}

.modal-deliver__time-column span {
  font-weight: 400;
  font-size: 21px;
  line-height: 34px;
  text-transform: lowercase;
  color: #000000;
  display: block;
  position: relative;
  display: flex;
  align-items: center;
}
.modal-deliver__time-column span::before {
  margin-right: 15px;
  transform: translateY(3px);
  display: block;
}
.modal-deliver__time-column span.clock-1::before {
  content: url("../img/clock-icon.svg");
}
.modal-deliver__time-column span.clock-2::before {
  content: url("../img/clock-icon2.svg");
}
.modal-deliver__time-column span.clock-3::before {
  content: url("../img/clock-icon3.svg");
}
.modal-deliver__time-column span.clock-4::before {
  content: url("../img/clock-icon4.svg");
}
.modal-deliver__time-column span.clock-5::before {
  content: url("../img/clock-icon5.svg");
}
.modal-deliver__time-column span.clock-6::before {
  content: url("../img/clock-icon6.svg");
}
.modal-deliver__time-column span.clock-7::before {
  content: url("../img/clock-icon7.svg");
}

.time-column-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 28px;
  text-transform: lowercase;
  color: #232323;
  max-width: 190px;
  margin-bottom: 10px;
}

.instruction {
  margin-bottom: 100px;
}

.instruction__wrapper {
  background: #F8F6FB;
  border-radius: 10px;
  padding: 50px 85px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 45px;
  column-gap: 45px;
}

.instruction-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.instruction-column:last-child .instruction-column__icon::after {
  display: none;
}

.instruction-column__icon {
  margin-right: 20px;
  width: 110px;
  height: 110px;
  position: relative;
}
.instruction-column__icon::after {
  position: absolute;
  content: url("../img/instruction-column-arrow.svg");
  right: -175%;
  top: 50%;
  transform: translateY(-50%);
}
.instruction-column__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.instruction-column__text {
  margin-top: 30px;
  display: flex;
}

.instruction-column__num {
  font-weight: 500;
  font-size: 60px;
  line-height: 51px;
  color: #C498F1;
}

.instruction-column__descr {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #232323;
  padding-left: 15px;
}
.product-swiper2 {
  height: 690px;
}
.product-swiper2-thumbs{
  height: 130px;
}
.modal-success-buy{
  width: 94%;
  max-width: 705px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 40px 0 0 0;
}
.modal-success-top{
  font-weight: bold;
  font-size: 41px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #5000A5;
  padding: 40px 50px;
}
.modal-success-top img{
  position: relative;
  margin:0 30px 0 0;
}
.modal-success-middle{
  font-size: 21px;
  color: #000000;
  text-align: center;
  padding: 0 50px;
}
.modal-success-middle span{
  display: block;
  font-weight: bold;
  font-size: 28px;
  color: #5000A5;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.modal-success-footer{
  background: #F3EDF9;
  margin-top: 30px;
  padding: 30px 50px 40px 50px;
}
.modal-success-footer span{
  font-size: 21px;
  color: #000000;
  display: block;
  margin-bottom: 40px;
}
.modal-success-footer .modal-success-contacts{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-success-footer .modal-success-contacts a{
  font-weight: bold;
  font-size: 28px;
  line-height: 33px;
  color: #000000;
}
@media (max-width: 1600px) {
  .slider-arrow.slider-arrow-prev {
    left: -35px;
  }

  .slider-arrow.slider-arrow-next {
    right: -35px;
  }

  .container {
    max-width: 1100px;
  }

  .nav__link {
    font-size: 19px;
  }
  .deliver-block__top input::after {
    content: '';
    z-index: 10;
    top: -3px;
    left: -5px;
  }
  .deliver-block__top input::before {
    top: 12px;
    left: 8px;
    transform: none;
    right: auto;
    bottom: auto;
  }
  #menu-top-menu > li.menu-item-has-children > a::after,
  .nav__link-arrow::after {
      position: absolute;
      content: url(../img/nav__link-arrow.svg);
      height: 14px;
      margin-left: 20px;
      right: -28px;
      top: 50%;
      transition: all 0.3s ease-in-out;
      transform: translateX(-50%);
  }


  .header__top--advan span {
    font-size: 11px;
  }

  .header__top--advan span::before {
    transform: scale(0.6);
    top: -7px;
  }

  .header__top--nav a {
    font-size: 11px;
  }

  .logo {
    height: 53px;
    width: 180px;
  }

  .nav__list {
    padding: 20px 0 26px 0;
  }

  .social-circle a {
    height: 35px;
    width: 35px;
  }

  .marg-sec {
    margin: 60px 0;
  }

  .block-info__item span {
    font-size: 16px;
    line-height: 20px;
  }

  .footer__logo {
    height: 81px;
    width: 270px;
  }

  .footer__menu a {
    font-size: 18px;
  }

  .footer__contact--link a {
    font-size: 18px;
  }

  .marg-sec {
    margin: 50px 0;
  }

  .bg-purple {
    padding: 50px 0;
  }

  .question__item--title {
    font-size: 18px;
  }

  .block-info__item::before {
    right: -89px;
  }

  .footer__menu {
    margin-right: 0;
    width: 46%;
  }

  .submenu {
    height: 365px;
  }

  .title-check::before {
    display: none;
  }

  .title-check {
    padding-left: 20px;
  }

  .title-check.title-check-v2 {
    padding-left: 10px;
    margin-left: 0;
  }

  .product-price span {
    white-space: nowrap;
  }

  .submenu a {
    font-size: 18px;
  }

  .breadcrumbs__list-item a,
.breadcrumbs__list-item span {
    font-size: 19px;
  }

  .product-form__price {
    margin-right: 0;
  }
  .product-form__price .product-deliver {
    width: 45%;
  }

  .product-bottom__contact {
    display: none;
  }

  .wrapper-card {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-item {
    width: 100%;
  }

  .basket-item__img {
    width: 90px;
    height: 90px;
    min-width: 90px;
  }

  .basket-item__info {
    width: 240px;
  }

  .basket-item__info li {
    font-size: 14px;
  }

  .basket-item__closed {
    top: 44px;
  }

  .basket-item__left {
    margin-right: 20px;
  }

  .basket-block {
    max-width: 100%;
  }

  .product__slider {
    width: 480px;
    min-width: 480px;
  }

  .product-form__item--select.item-select-v2 > div div {
    max-width: 115px;
  }

  .deliver__wrapper {
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .deliver__bottom-text {
    width: 100%;
  }

  .deliver-block {
    width: 100%;
  }

  .data-form {
    max-width: 100%;
  }

  .pay-method__wrapper {
    max-width: 100%;
  }

  .pay-method__bottom {
    max-width: 100%;
  }

  .basket-block__top span:nth-child(2) {
    padding-left: 250px;
  }

  .basket-block__top {
    padding: 16px 100px 16px 195px;
  }

  .deliver-block__top label {
    margin-left: 70px;
    top: 0;
  }

  .deliver-block {
    margin: 0;
  }

  .category-right {
    max-width: 68%;
  }

  .category-baner {
    display: flex;
    align-items: center;
    height: 230px;
    margin-top: 70px;
  }

  .category-baner__img {
    width: 340px;
    min-width: 340px;
  }

  .category-baner__info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .category-baner__btn {
    width: 290px;
    margin: 0 auto;
    display: block;
  }

  .category-baner__info {
    z-index: 2;
  }
  .category-baner__info::before {
    position: absolute;
    content: url("../img/category-baner__info-right.svg");
    right: 0;
    height: 100%;
    z-index: -1;
  }
  .category-baner__info::after {
    position: absolute;
    content: url("../img/category-baner__info-left.svg");
    left: 0;
    height: 100%;
    top: 0;
    z-index: -1;
  }

  .contact-top__column a.mail {
    margin-left: 35px;
  }

  .contact-top__column {
    row-gap: 20px;
  }

  .contact-top {
    padding: 50px 35px 50px 60px;
    justify-content: space-between;
  }

  .contact-top__column p {
    font-size: 25px;
  }

  .contact-top__column a {
    font-size: 24px;
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .contact-top__column span {
    font-size: 28px;
  }

  .modal-cookies .modal-cookies__wrapper p {
    font-size: 18px;
    line-height: 25px;
  }

  .modal-cookies .modal-cookies__wrapper p::after {
    right: 13px;
  }

  .title {
    font-size: 36px;
  }

  .header-phone {
    font-size: 24px;
  }

  .basket {
    transform: scale(0.8);
    margin-right: 35px;
  }

  .baner {
    height: auto;
    max-height: 320px;
  }
  .different-cases__wrapper{
    height: auto;
    max-height: 224px;
  }
  .slider-sec__wrapper{
    max-height: 460px;
  }
  .different-cases__item {
    width: 162px;
    margin: 0 auto;
  }

  .different-cases__item--block {
    height: 160px;
  }
  .different-cases__item--block img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto;
  }

  .different-cases__item--img {
    width: 70%;
    height: 65%;
  }

  .text-blocks p {
    font-size: 16px;
    line-height: 26px;
  }

  .recommend {
    font-size: 26px;
    line-height: 34px;
    padding: 35px 100px;
  }

  .text-blocks__img .text-blocks__img-text {
    padding: 40px;
  }

  .different-cases__item--num {
    font-size: 68px;
    line-height: 68px;
  }

  .different-cases__item--title {
    font-size: 16px;
    line-height: 21px;
    margin-top: 17px;
  }

  .card-item {
    width: 100%;
    margin: 0 auto;
  }

  .card-item__img {
    height: 190px;
  }

  .card-item__title {
    font-size: 16px;
    line-height: 18px;
    height: 38px;
  }

  .card-item__price {
    margin-top: 15px;
  }

  .card-item__price-new {
    font-size: 21px;
    line-height: 25px;
  }

  .card-item__price-old {
    font-size: 16px;
    line-height: 19px;
  }

  .card-item__btn {
    height: 55px;
    max-width: 185px;
    margin-top: 17px;
  }

  .card-item__unavailable {
    font-size: 10px;
    line-height: 13px;
    padding: 10px;
  }

  .card-item__stickers {
    transform: scale(0.7);
    left: -15px;
    top: -10px;
    width: 80%;
    flex-direction: unset;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 128px;
  }

  .card-item__price-new {
    font-size: 18px;
  }

  .card-item__price-old {
    font-size: 16px;
  }

  .card-item__btn {
    font-size: 16px;
  }

  .card-item__btn {
    height: 40px;
  }

  .card-item__img {
    height: 280px;
  }

  .basket-sec-right {
    max-width: 820px;
  }

  .instruction-column__descr {
    font-size: 16px;
    line-height: 19px;
  }

  .instruction-column__num {
    font-size: 52px;
    line-height: 46px;
  }

  .instruction-column__icon {
    width: 108px;
    height: 108px;
  }

  .instruction-column__icon::after {
    transform: scale(0.7) translateY(-50%);
    right: -150%;
  }

  .basket-item__sum {
    width: 100px;
  }

  .basket-item__closed {
    margin-right: 20px;
  }

  .basket-item__img {
    margin-right: 20px;
  }

  .basket-item__price {
    font-size: 18px;
  }

  .basket-item__sum {
    font-size: 18px;
  }

  .basket-result__item {
    padding: 15px 15px 15px 30px;
  }

  .basket-result__sum--price {
    font-size: 24px;
  }

  .basket-result__title {
    font-size: 20px;
  }

  .basket-result__item--price {
    font-size: 16px;
  }

  .basket-result__sum--price {
    font-size: 20px;
  }

  .basket-result__sum--name {
    font-size: 16px;
  }

  .basket-result__item--name {
    font-size: 14px;
  }

  .basket-result__btn {
    font-size: 16px;
    height: 50px;
  }

  .basket-result__btn::before {
    top: 54%;
  }

  .deliver-block__top label {
    font-size: 24px;
  }

  .deliver-block__top input {
    min-width: 45px;
    width: 45px;
    height: 45px;
  }

  .deliver-block__wrap {
    padding: 15px 40px 40px 40px;
  }

  .data-form__input div input {
    font-size: 18px;
  }

  .data-form__item {
    padding: 30px;
  }

  .method-block__name {
    font-size: 22px;
  }

  .basket-sec__btn {
    width: 300px;
    height: 70px;
    font-size: 20px;
  }

  .basket-sec__btn::before {
    top: 55%;
  }

  .basket-sec {
    padding-bottom: 70px;
  }

  .pay-method__check label {
    font-size: 18px;
  }

  .basket-item__info li {
    font-size: 16px;
  }

  .category-right .swiper-slide a {
    font-size: 16px;
  }

  .category-right .swiper-slide {
    padding: 13px 30px 13px 40px;
  }

  .category-right .swiper-slide a::before {
    left: -25px;
    top: 54%;
  }

  .category-left {
    width: 300px;
    min-width: 300px;
  }

  .category-filter__item--title {
    font-size: 18px;
  }
  #menu-left-filter > li:first-child > a,
  .category-filter__title {
    font-size: 26px;
  }

  .category-filter__item--list li a {
    font-size: 18px;
  }

  .category-baner__text {
    font-size: 22px;
  }

  .pagination .pagination__link {
    font-size: 20px;
  }

  .contact-top__column p {
    font-size: 22px;
  }

  .contact-top__column a {
    font-size: 22px;
  }

  .contact-top__column span {
    font-size: 24px;
  }

  .product__set li {
    font-size: 18px;
  }

  .product__title {
    font-size: 36px;
    line-height: 44px;
  }

  .product-form__item--title > span {
    font-size: 18px;
  }

  .product-form__item--input input {
    font-size: 18px;
  }

  .product-form__item--radio div label {
    font-size: 18px;
  }

  .product-form__item--select div span {
    font-size: 18px;
  }

  .product-form__item--select div select {
    height: 50px;
    font-size: 18px;
  }

  .product-form__item--input {
    height: 50px;
  }

  .product-price .product-price__new {
    font-size: 42px;
  }

  .product-price .product-price__old {
    font-size: 28px;
  }

  .product-form__btn {
    font-size: 18px;
  }

  .product-bottom__title {
    font-size: 38px;
  }

  .product-bottom__text p {
    font-size: 16px;
  }

  .product-bottom__text--column div li {
    font-size: 16px;
  }

  .product-bottom__text--column div span {
    font-size: 19px;
    margin-bottom: 20px;
  }

  .instruction__wrapper {
    padding: 50px 27px;
  }
}
@media (max-width: 1308px) {
  .basket-result {
    display: none;
  }

  .hiden-not .page{
    overflow: hidden;
  }

  .basket-sec-right {
    max-width: 100%;
  }

  .contact-top__column:last-child {
    display: none;
  }
}
@media (max-width: 1250px) {
  .wrapper-card {
    grid-template-columns: repeat(3, 1fr);
  }
  .search_page .category-product {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .text-blocks__img img {
    height: 370px;
  }

  .category-left {
    display: none;
  }

  .category-right {
    max-width: 100%;
  }

  .container {
    max-width: 992px;
  }

  .header__top--advan {
    display: none;
  }

  .header {
    background: #F2F1F3;
  }
  .header .social-circle {
    display: none;
  }
  .header .link-mail {
    display: none;
  }

  .text-blocks__video.video-left .text-blocks__video-text {
    padding-left: 0;
  }

  .logo {
    margin: 0 auto 0 0;
    height: 59px;
    width: 199px;
  }

  .header__top {
    display: none;
  }
 .menu-top-menu-container,
  .nav__list {
    position: fixed;
    background: #5000A5;
    height: 93%;
    top: 90px;
    width: 50%;
    right: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px;
    width: 481px;
    transform: translateX(150%);
    transition: all 0.3s ease-in-out;
  }
  .menu-top-menu-container.active,
  .nav__list.active {
    transform: translateX(0);
  }

  .header__center-wrap {
    padding: 20px 0 20px 0;
    border-bottom: none;
  }

  .logo {
    margin-top: -10px;
  }
  #menu-top-menu > li > a,
  .menu-top-menu-container > ul > li > a,
  .nav__link {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #FFFFFF;
  }
  #menu-top-menu{
    display: block;
  }

  #menu-top-menu > li,
  .menu-top-menu-container > ul > li,
  .nav__item {
    margin-bottom: 20px;
    padding:0 0 0 22px;
    position: relative;
  }
  #menu-top-menu > li:before,
  .nav__item::before {
    position: absolute;
    content: "";
    background: #9B5AE0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0;
    top: 12px;
  }

  .header__top--nav a {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #FFFFFF;
  }

  .header__top--nav {
    flex-direction: column;
  }
  .header__top--nav li {
    margin-bottom: 20px;
    padding-left: 22px;
    position: relative;
  }
  .header__top--nav li::before {
    position: absolute;
    content: "";
    background: #9B5AE0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0;
    top: 12px;
  }
  .menu-top-menu-container > ul > li.menu-item-has-children::after,
  .nav__link-arrow::before {
    content: url("../img/nav__link-arrow2.svg");
    right: -10px;
    height: auto;
    top: 5px;
    position: absolute;
    display: inline-block;
    width: 15px;
  }
  #menu-top-menu > li > .sub-menu,
  .submenu {
    background: #5000A5;
    opacity: 1;
    pointer-events: painted;
    width: 50%;
    right: 0;
    left: inherit;
    position: fixed;
    background: #5000A5;
    height: 100%;
    top: 0;
    padding: 60px;
    row-gap: 5px;
    width: 541px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding-top: 105px;
    padding-bottom: 140px;
    transform: translateX(150%);
    transition: all 0.3s ease-in-out;
  }
  #menu-top-menu > li > .sub-menu.active,
  .submenu.active {
    transform: translateX(0);
  }
  #menu-top-menu > li > .sub-menu li,
  .submenu li {
    width: 200px;
  }
  .submenu .submenu-title,
  .sub-menu .submenu-title {
    display: block;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #C38BFF;
    padding-left: 50px;
    position: relative;
    width: 100%;
    position: absolute;
    top: 50px;
  }
  #menu-top-menu > li > .sub-menu .submenu-title::before,
  .submenu .submenu-title::before {
    position: absolute;
    content: url("../img/submenu-title.svg");
    left: 0;
  }
  #menu-top-menu > li > .sub-menu > li::before,
  .submenu li::before {
    top: 12px;
  }
  #menu-top-menu > li > .sub-menu > li > a,
  .submenu a {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 32px;
  }

  .overley.active {
    display: none;
  }

  .header {
    border: none;
    position: fixed;
    width: 100%;
    top: 0;
  }

  .burger {
    display: block;
  }

  .page {
    padding-top: 90px;
  }

  .title::before,
.title::after {
    display: none;
  }

  .different-cases {
    margin-bottom: 10px;
  }

  .title {
    margin-bottom: 40px;
  }

  .slider-arrow-wrap {
    position: absolute;
    bottom: -25px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .slider-arrow {
    position: static;
  }

  .swiper-button-prev:after {
    content: url("../img/arrow-left.svg");
  }

  .swiper-button-next:after {
    content: url("../img/arrow-right.svg");
  }

  .slider-sec__wrapper .swiper {
    padding-bottom: 30px;
  }

  .card-item {
    width: 100%;
  }

  .card-item__unavailable {
    font-size: 14px;
    line-height: 13px;
  }

  .card-item__btn {
    max-width: 230px;
    line-height: 21px;
    height: 44px;
  }

  .card-item__img {
    height: 300px;
  }

  .text-blocks__video {
    flex-direction: column !important;
  }

  .text-blocks__video .text-blocks__video-text {
    width: 100%;
  }

  .text-blocks__video .video-block {
    width: 100%;
    margin-top: 36px;
    height: 460px;
  }

  .recommend {
    padding: 35px 80px;
  }

  .text-blocks__img img {
    height: 370px;
    width: 383px;
    border-radius: 10px;
    position: absolute;
  }

  .text-blocks__img .text-blocks__img-text {
    width: 100%;
    padding: 30px;
  }
  .text-blocks__img .text-blocks__img-text p:first-child {
    width: 55%;
    margin-left: auto;
    margin-bottom: 190px;
  }
  .text-blocks__img .text-blocks__img-text p:last-child {
    width: 100%;
  }

  .block-info__item::before {
    display: none;
  }

  .nav-mobil {
    display: block;
  }

  .footer {
    padding-top: 55px;
  }

  .footer__menu {
    width: 59%;
  }

  .footer__contact--title {
    display: none;
  }

  .footer__contact {
    margin-top: 30px;
  }

  .news {
    margin-top: 0;
  }

  .product-top-mob {
    display: flex;
    margin-bottom: 40px;
  }

  .product__wrapper {
    flex-direction: column;
  }

  .product__star {
    margin-top: 0;
  }

  .product__title {
    width: 50%;
    padding: 0 65px;
    border-right: 1px solid #ECDFFA;
  }

  .product-top-mob__info {
    width: 50%;
    padding: 0 60px;
  }

  .product {
    padding-top: 0;
  }

  .product__slider {
    width: 100%;
  }

  .product-swiper2 {
    height: 758px;
  }
  .product-swiper2 .swiper-slide {
    border-radius: 0;
  }

  .product__slider .product-swiper {
    margin-top: 30px;
  }

  .product-form__item--select.item-select-v2 > div div {
    max-width: 298px;
  }

  .product-form__item-wrap {
    justify-content: space-between;
  }

  .product-price {
    flex-direction: row;
  }

  .product .container {
    padding: 0;
  }

  .product-top-mob {
    padding: 0 15px;
  }

  .product__info {
    padding: 0 15px;
  }

  .basket-item__info li {
    font-size: 16px;
    line-height: 28px;
  }

  .category-right .swiper {
    padding-bottom: 20px;
  }

  .contact-bottom__wrapper {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 70px;
  }

  .contact-form-wrap {
    height: auto;
  }

  .contact-bottom__title {
    line-height: 48px;
  }

  .contact-form {
    height: auto;
  }

  .contact-map img {
    width: 100%;
  }

  .contact-gallery {
    position: relative;
    padding-bottom: 120px !important;
  }
  .contact-gallery::before {
    position: absolute;
    content: url("../img/contact-gallery.svg");
    left: 50%;
    transform: translateX(-50%);
    bottom: 65px;
  }
  .contact-gallery .gallery__wrapper {
    grid-template-columns: auto;
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .contact-gallery .gallery__wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .gallery__item{
    height: 308px;
  }
  .contact-gallery .gallery__wrapper .gallery__item {
    min-width: 48%;
  }


  .img-colum__item span {
    padding: 17px 45px;
    font-size: 16px;
    line-height: 24px;
  }

  .text-blocks__img.img-right {
    flex-direction: row;
  }

  .slider-arrow-wrap {
    bottom: 50%;
  }

  .different-cases {
    margin-bottom: 20px;
  }

  .instruction__wrapper {
    padding: 50px 15px;
  }

  .instruction-column__icon::after {
    right: -142%;
  }
  .baner {
    max-height: 250px;
  }
  .slider-sec__wrapper{
    max-height: 520px;
  }
}
@media (max-width: 1024px) {
  .slider-arrow-wrap {
    bottom: auto;
    top: 50%;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}
@media (max-width: 1000px) {
  .modal-deliver {
    min-width: 600px;
  }
  .modal-deliver .modal__title {
    font-size: 35px;
  }

  .modal-deliver__top {
    padding: 20px 20px 20px 40px;
  }

  .modal-deliver__body {
    padding: 40px 15px;
  }

  .modal-deliver__time-column span {
    font-size: 16px;
    line-height: 27px;
  }

  .time-column-title {
    font-size: 16px;
    line-height: 22px;
  }

  .modal-deliver__info-item {
    font-size: 16px;
    line-height: 24px;
  }

  .modal-deliver__info-title {
    font-size: 16px;
    line-height: 22px;
  }

  .modal-deliver__body-title {
    font-size: 25px;
    line-height: 30px;
  }

  .modal-deliver__top p {
    font-size: 16px;
    line-height: 22px;
  }

  .modal-deliver__time {
    padding-bottom: 20px;
  }

  .modal-deliver__info-title.info-title-v2 {
    font-size: 18px;
  }

  .modal-cookies .modal-cookies__wrapper p::after {
    display: none;
  }

  .modal-cookies .modal-cookies__wrapper button {
    min-width: 120px;
  }

  .modal-cookies {
    padding: 30px 0;
  }

  .gallery__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .instruction__wrapper {
    -moz-column-gap: 35px;
    column-gap: 35px;
  }

  .instruction-column__icon::after {
    right: -139%;
    transform: scale(0.65) translateY(-50%);
  }
  .modal-video .container{
    width: 800px;
  }
}
@media (max-width: 991px) {
  .text-blocks img.alignleft,
  .text-blocks img.alignright{
    width: auto;
    height: auto;
    float: none;
    clear: both;
    margin: 15px auto;
    position: relative;
    max-width: 100%;
  }
  .modal-video .container{
    width: 760px;
  }
  .marg-sec {
    margin: 0 0 20px 0;
  }
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 5px;
  }
  .contact-form-wrap input.contact-form__btn{
    font-size: 20px;
    padding: 0 15px;
  }
}
@media (max-width: 950px) {
  .logo {
    height: 52px;
    width: 177px;
  }
  .search_page .category-product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .header-phone {
    font-size: 28px;
    line-height: 33px;
  }

  .page {
    padding-top: 84px;
  }

  .nav__list {
    top: 84px;
  }

  .bg-purple {
    padding: 20px 0;
  }

  .text-blocks__img .text-blocks__img-text p:first-child {
    width: 100%;
    margin-bottom: 0;
  }

  .text-blocks__img img {
    position: static;
    width: 100%;
    border-radius: 0;
  }

  .text-blocks__img {
    flex-direction: column !important;
  }

  .text-blocks__img .text-blocks__img-text {
    padding: 15px;
  }

  .block-info__item {
    flex-direction: column;
    text-align: center;
  }

  .block-info__item--icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .block-info {
    padding: 35px 0;
  }

  .block-info__wrapper {
    align-items: flex-start;
  }

  .block-info__item span {
    font-size: 16px;
    line-height: 19px;
  }

  .footer__text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid #3A0D68;
  }
  .footer__text p {
    max-width: 300px;
  }

  .footer__contact {
    margin-top: 0;
  }

  .footer {
    padding: 60px 0 50px 0;
  }

  .footer__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer__menu {
    width: 100%;
    max-width: 625px;
  }

  .footer__logo {
    height: 64px;
    width: 214px;
    display: block;
    margin-bottom: 35px;
  }
  .product__title {
    padding-left: 0;
    padding-right: 30px;
  }

  .product-top-mob__info {
    padding-left: 30px;
    padding-right: 0;
  }

  .product__set .product__set--title {
    font-size: 18px;
  }

  .product__set li {
    font-size: 18px;
    line-height: 30px;
  }

  .product-swiper2 {
    height: 690px;
  }

  .product-form__item--select.item-select-v2 > div div {
    width: 50%;
  }

  .product-bottom__text--column div {
    width: 50%;
  }

  .product-bottom {
    padding-bottom: 70px;
  }

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

  .product-form__item--radio {
    flex-wrap: nowrap;
  }

  .product-price .product-price__new {
    font-size: 42px;
  }

  .product-price .product-price__old {
    font-size: 32px;
  }

  .product-form__price .product-deliver {
    width: 48%;
  }

  .basket-item {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 20px 55px 20px 20px;
    align-items: center;
  }

  .basket-item__left {
    width: 100%;
    padding-bottom: 20px;
    padding-left: 55px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EEE9F3;
  }

  .basket-item__number {
    margin: 0 65px;
  }

  .basket-item__closed {
    margin-left: -55px;
  }

  .basket-block__top {
    display: none;
  }

  .basket-item .mod-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-transform: lowercase;
    color: #232323;
    display: block;
    margin-bottom: 20px;
  }

  .basket-block {
    padding: 20px 0;
  }

  .category-baner__img {
    width: 250px;
    min-width: 250px;
    height: 100%;
  }

  .category-baner {
    margin-top: 40px;
  }

  .question__item--title {
    font-size: 18px;
    line-height: 24px;
  }

  .contact-top {
    padding: 30px 80px 50px 70px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-top__column p {
    font-size: 24px;
    line-height: 28px;
  }

  .contact-top__column span {
    font-size: 24px;
    line-height: 28px;
  }

  .contact-top__column a {
    font-size: 24px;
    line-height: 28px;
  }

  .price-block__row.row-item div:nth-child(3) {
    font-size: 18px;
    line-height: 28px;
  }

  .price-block__row {
    grid-template-columns: 15% 35% 22% 20%;
  }

  .img-colum {
    grid-template-columns: repeat(2, 1fr);
  }

  .instruction__wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
    position: relative;
  }
  .instruction__wrapper::before {
    position: absolute;
    content: url("../img/instruction-column-arrow.svg");
    left: 50%;
    transform: translateX(-50%) scale(0.7);
    top: 15%;
  }
  .instruction__wrapper::after {
    position: absolute;
    content: url("../img/instruction-column-arrow.svg");
    left: 50%;
    transform: translateX(-50%) rotate(180deg) scale(0.7);
    bottom: 40%;
  }

  .instruction-column__descr {
    max-width: 200px;
  }

  .instruction-column {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .instruction-column:nth-child(3) {
    order: 4;
  }
  .instruction-column:nth-child(3) .instruction-column__descr {
    max-width: 150px;
  }

  .instruction-column__text {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    padding-bottom: 10px;
  }

  .instruction-column__icon {
    margin-right: 5px;
    width: 90px;
    height: 90px;
    transform: translateY(50px);
  }

  .instruction-column__num {
    margin-right: 100px;
    margin-bottom: 20px;
  }

  .instruction-column__icon::after {
    display: none;
  }
}
@media (max-width: 890px) {
  .deliver-block__wrap {
    padding: 15px 35px 30px 35px;
  }

  .data-form__input {
    -moz-column-gap: 35px;
    column-gap: 35px;
  }

  .data-form__input div span {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 800px) {
  .column-text-two {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0;
  }

  .column-text {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }

  .contact-form-wrap {
    padding: 40px 40px 60px 40px;
  }

  .contact-bottom {
    padding-bottom: 70px;
  }

  .baner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 767px) {
  .deliver__wrapper {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .deliver__bottom-text {
    display: none !important;
  }
  .modal-video .container{
    width: 600px;
  }
  .title-info .title-info__text{
    width: 320px;
  }
  .gallery__item{
    height: 254px;
    width: 290px;
  }
  .baner {
    max-height: 110px;
  }
  .slider-sec__wrapper{
    max-height: 380px;
  }
}
@media (max-width: 740px) {
  .different-cases .swiper-slide {
    width: auto;
  }
  .deliver-block__item--title {
    font-size: 18px;
  }
  .deliver-block__wrap {
    padding: 15px 50px 50px 50px;
    display: grid;
    grid-template-columns: 1fr 45px 1fr;
    gap: 13px;
  }
  .deliver-block__item--input input, .deliver-block__item--input select {
    background: #FFFFFF;
    border-radius: 10px;
    width: 100%;
    height: 60px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    padding: 0 10px 0 46px;
  }
  .card-item {
    width: 100%;
    height: 300px;
  }

  .card-item__btn {
    font-size: 14px;
    line-height: 18px;
    margin-top: auto;
    height: 50px;
  }

  .card-item__img {
    height: 130px;
  }

  .card-item__title {
    font-size: 14px;
    line-height: 17px;
    height: 35px;
  }

  .card-item__price {
    flex-direction: column;
  }

  .card-item__info {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .card-item__price-new {
    font-size: 18px;
    line-height: 21px;
  }

  .card-item__price-old {
    font-size: 14px;
    line-height: 17px;
    padding-left: 0;
  }

  .card-item__stickers {
    transform: scale(0.6);
    left: -10px;
    top: -10px;
  }

  .recommend {
    padding: 50px 30px;
    font-size: 21px;
    line-height: 28px;
  }

  .recommend::after {
    transform: rotate(180deg) scale(0.7);
  }

  .recommend::before {
    transform: scale(0.7);
  }

  .product__title {
    padding-right: 0;
    border: none;
    width: 100%;
  }

  .product-top-mob__info {
    margin-top: 50px;
    padding-left: 0;
  }

  .product-form__btn {
    font-size: 18px;
    line-height: 21px;
    height: 65px;
  }

  .product-form__btn-wrap {
    margin-top: 26px;
  }

  .product-form__price {
    flex-direction: column;
  }

  .product-form__price .product-deliver {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .product-form__bottom p {
    text-align: center;
    font-size: 16px;
    line-height: 19px;
    margin-top: 30px;
  }

  .product-form__item--title > span {
    font-size: 16px;
    line-height: 19px;
  }

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

  .product-form__item--title {
    align-items: center;
  }

  .product-form__item {
    padding: 20px 15px;
  }

  .product-form__item--select div select {
    height: 50px;
    font-size: 16px;
  }

  .product-form__item--input {
    height: 50px;
  }

  .product-form__item--input input {
    font-size: 16px;
  }

  .product-form__item--radio div label {
    font-size: 16px;
  }

  .product-form__item--select div span {
    font-size: 16px;
  }

  .card-item__stickers {
    left: -23px;
    top: -17px;
  }

  .wrapper-card {
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
  }

  .wrapper-card {
    padding-bottom: 70px;
  }

  .product-top-mob__info {
    width: 100%;
  }

  .product-form__wrapper {
    margin: 20px -15px 0 -15px;
    border-radius: 0;
    border-right: none;
    border-left: none;
  }

  .product-form__title {
    font-size: 21px;
  }

  .data-form__input.three-column {
    grid-template-columns: 1fr;
  }

  .data-form__input {
    row-gap: 30px;
  }

  .data-form__item {
    padding: 30px 15px;
  }

  .data-form__input.two-column {
    grid-template-columns: 1fr;
  }

  .data-form__textarea div span {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .modal {
    width: 95%;
  }

  .modal__title img {
    width: 52px;
    height: 47px;
  }

  .modal__title {
    font-size: 22px !important;
    line-height: 26px;
    padding: 30px 20px;
  }

  .modal-confirmation__body span:first-child {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 16px;
  }

  .modal-confirmation__body span:last-child {
    font-size: 16px;
    line-height: 19px;
  }

  .modal-confirmation__body {
    padding: 0 20px 20px 20px;
  }

  .modal-confirmation__bottom p {
    font-size: 16px;
    line-height: 19px;
  }

  .modal-confirmation__bottom {
    padding: 20px;
  }

  .modal-confirmation__bottom a {
    font-size: 21px;
    line-height: 25px;
  }

  .modal__closed {
    transform: scale(0.6);
    right: 10px;
    top: 10px;
  }

  .contact-top {
    grid-template-columns: repeat(1, 1fr);
    padding: 30px 15px 30px 60px;
    margin: 0 -15px 50px -15px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .contact-top__column:nth-child(2) {
    margin-left: -40px;
    margin-top: 20px;
  }

  .contact-form-wrap {
    padding: 20px 15px;
    padding-bottom: 50px;
  }

  .contact-form-wrap > input {
    height: 50px;
    font-size: 16px;
  }

  .contact-form-wrap textarea {
    font-size: 16px;
    height: 277px;
  }

  .contact-map-wrap {
    height: 500px;
  }

  .text-blocks__video.video-left .text-blocks__video-text {
    padding-left: 0;
  }

  .modal-deliver {
    min-width: auto;
  }

  .card-item__price {
    height: 40px;
  }
}
@media (max-width: 680px) {
  .header-phone {
    order: 4;
    width: 100%;
    text-align: center;
    margin-top: 18px;
    display: none;
  }
  .basket-item__info h3 {
    text-align: center;
  }
  .header-phone::before {
    content: url("../img/header-phone.svg");
    padding-right: 10px;
    padding-top: 3px;
  }

  .burger {
    order: 3;
    margin-left: 40px;
    width: 35px;
    height: 28px;
    border-radius: 7px;
  }
  .burger span {
    width: 16px !important;
  }
  .burger span:first-child {
    top: 7px;
  }
  .burger span:last-child {
    bottom: 7px;
  }

  .basket {
    order: 2;
    margin-right: 0;
    width: 21.76px;
    height: 30.7px;
  }

  .basket__num {
    width: 21px;
    height: 21px;
    font-size: 13px;
    line-height: 16px;
  }

  .logo {
    order: 1;
    height: 38px;
    width: 130px;
  }

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

  .page {
    padding-top:119px;
  }
  .menu-top-menu-container,
  .nav__list {
    top: 72px;
    width: 100%;
    padding: 20px;
  }
  #menu-top-menu > li > .sub-menu,
  .submenu {
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: nowrap;
    padding: 20px;
    padding-top: 60px;
    padding-bottom: 120px;
  }
  #menu-top-menu > li > .sub-menu > li,
  .submenu li {
    width: 100%;
  }
  #menu-top-menu > li > a,
  .nav__link {
    font-size: 22px;
  }

  .sub-menu .submenu-title,
  .submenu .submenu-title {
    top: 21px;
  }

  .burger.active span:nth-child(1) {
    top: 5px;
  }

  .title {
    font-size: 28px;
    line-height: 36px;
  }

  .different-cases__item {
    width: 140px;
  }

  .different-cases__item--block {
    height: 130px;
    width: 100%;
  }

  .footer__text {
    flex-direction: column-reverse;
    align-items: center;
  }

  .footer__menu {
    height: auto;
    flex-wrap: nowrap;
    width: 200px;
  }

  .footer__menu a {
    font-size: 16px;
    line-height: 34px;
  }

  .footer__menu a::before {
    left: 4px;
    top: 6px;
  }

  .footer__text p {
    width: 100%;
    max-width: 100%;
    padding-top: 20px;
    border-top: 1px solid #3A0D68;
    margin-top: 20px;
  }

  .text-blocks__img img {
    height: 444px;
  }

  .text-blocks__video .video-block {
    height: 360px;
  }

  .baner {
    height: auto;
  }

  .card-item__stickers {
    width: 100%;
  }

  .pay-method__wrapper {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 8px;
  }

  .pay-method__bottom {
    margin: 40px 0 30px 0;
    grid-template-columns: repeat(1, 1fr);
  }

  .pay-method__check {
    border: none;
    padding: 0;
    margin-bottom: 40px;
  }
  .method-block input:after{
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .bottom-error::before,
.bottom-error::after {
    display: none;
  }

  .method-block {
    padding: 20px 15px;
  }

  .method-block__name {
    font-size: 28px;
    line-height: 33px;
  }

  .pay-method__wrapper .checkbox {
    width: 10px;
    height: 10px;
    min-width: 10px;
    position: absolute;
  }

  .pay-method__wrapper .checkbox::before {
    left: 2px;
    top: 5px;
    right: auto;
    bottom: auto;
    transform: none;
    opacity: 0;
    transition: 0.1s ease-in;
    z-index: 11;
  }

  .bottom-error {
    font-size: 16px;
    line-height: 19px;
    text-align: left;
    width: 200px;
    margin: 0 auto;
  }

  .your-data {
    padding-bottom: 60px;
  }

  .category-baner__text {
    font-size: 24px;
    line-height: 37px;
  }

  .category-baner__text {
    padding-bottom: 20px;
  }

  .category-baner__text::before {
    bottom: 2px;
  }

  .column-text {
    grid-template-columns: repeat(1, 1fr);
  }

  .text-blocks__video.video-right .text-blocks__video-text {
    padding-right: 0;
  }

  .price-block {
    display: none;
  }

  .price-block-mob {
    display: block;
    margin-bottom: 100px;
    border: 1px solid #E4DFE9;
    border-radius: 10px;
  }
  .price-block-mob div {
    display: grid;
    grid-template-columns: 70% 20%;
    padding: 20px;
    border-bottom: 1px solid #E4DFE9;
    justify-content: space-between;
    align-items: center;
  }
  .price-block-mob div.price-block-mob__title span:last-child {
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #232323;
    font-weight: 400;
  }
  .price-block-mob div:last-child {
    border-bottom: none;
  }
  .price-block-mob div span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-transform: none;
    color: #232323;
  }
  .price-block-mob div span:last-child {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: #5000A5;
  }

  .possibility-choose ul {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }

  .modal-deliver__time {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
    justify-content: center;
    width: 160px;
    margin: 15px auto 0 auto;
  }

  .time-column-title {
    text-align: center;
  }

  .modal-deliver__top {
    position: relative;
  }

  .modal-deliver__top p::before {
    transform: scale(0.4);
    position: absolute;
    left: -5px;
    top: 8px;
  }
}
@media (max-width: 625px) {
  .product__slider .product-swiper {
    display: none;
  }

  .product-form__item--radio {
    flex-wrap: wrap;
  }

  .product__slider {
    min-width: inherit;
  }

  .product-swiper2 {
    height: 480px;
  }

  .product-form__item--select {
    flex-direction: column;
    row-gap: 20px;
  }

  .product-form__item--select div.width50 {
    width: 100%;
    flex-direction: column;
  }

  .product-form__item--select.item-select-v2 > div div {
    width: 100%;
    max-width: 100%;
  }

  .product__title {
    font-size: 34px;
    line-height: 40px;
  }
  .gallery__wrapper {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }

  .breadcrumbs__list-item a,
.breadcrumbs__list-item span {
    font-size: 16px;
  }

  .category-baner {
    flex-direction: column;
    height: auto;
  }

  .category-baner__img {
    width: 100%;
  }

  .product-form__item--select.item-select-v2 > div span br {
    display: none;
  }
  .modal-video .container{
    width: 320px;
  }
}
@media (max-width: 580px) {
  .wrapper-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-bottom__text--column div span {
    margin-bottom: 20px;
  }

  .basket-item {
    background: #F9F7FB;
    padding: 0;
    overflow: hidden;
  }

  .basket-item__left {
    background: #fff;
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    padding: 15px 20px 30px 20px;
  }

  .basket-block {
    padding: 0;
  }

  .basket-item__closed {
    margin: 0;
    position: relative;
    background: #EBE4F1;
    border-radius: 38px;
    height: 30px;
    width: 30px;
    top: inherit;
  }

  .basket-item__img {
    height: 176px;
    width: 229px;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 0;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .basket-item__closed::before {
    opacity: 1;
    transform: translate(-50%, -41%);
  }

  .basket-item__price {
    margin-left: 35px;
  }

  .basket-item__number {
    margin: 0 0 40px 0;
  }

  .basket-item {
    justify-content: space-between;
  }

  .basket-item__sum {
    width: auto;
    margin-right: 35px;
  }

  .deliver-block__top label {
    font-size: 28px;
    line-height: 33px;
    top: 10px;
  }
  .deliver-block__top input{
    width: 10px;
    height: 10px;
  }

  .method-block input:after, .deliver-block__top input:after{
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .pay-method__wrapper .checkbox::before{
    left: 2px;
  }
  .deliver-block__top input::before,
  .method-block input::before {
    position: absolute;
    content: url(../img/deliver-block__top.svg);
    left: 0;
    top: 5px;
    right: auto;
    bottom: auto;
    transform: none;
    opacity: 0;
    transition: 0.1s ease-in;
    z-index: 11;
  }

  .deliver-block__item--input input {
    height: 50px;
  }

  .deliver-block__item--input button {
    top: -4px;
  }

  .deliver-block__wrap {
    padding: 15px 15px 30px 15px;
  }

  .deliver-block__top {
    padding: 20px 15px;
  }

  .data-form__check label {
    font-size: 16px;
    line-height: 24px;
  }

  .data-form__check input {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }

  .data-form__input div input {
    font-size: 16px;
    line-height: 24px;
  }

  .data-form__textarea div textarea {
    font-size: 16px;
    line-height: 24px;
  }

  .title {
    text-align: center;
  }

  .data-form__textarea {
    margin-top: 30px;
  }

  .data-form__input div input {
    height: 50px;
  }

  .modal-confirmation__bottom a {
    display: block;
  }

  .modal-confirmation__bottom .modal-phone {
    margin-bottom: 15px;
  }

  .modal__title img {
    margin-right: 16px;
  }

  .category-product {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
  }

  .category-right .swiper-slide span {
    font-size: 18px;
    line-height: 22px;
  }

  .category-right .swiper-slide {
    padding: 12px 25px;
    padding-left: 30px;
  }

  .img-colum {
    grid-template-columns: repeat(1, 1fr);
    margin: 30px -15px;
  }

  .img-colum__item span {
    text-align: center;
    padding: 20px;
  }

  .img-colum__item {
    border-radius: 0;
  }

  .text-blocks__img {
    margin: 0 -15px 30px -15px;
  }

  .text-blocks .video-block {
    margin: 45px auto;
    border-radius: 0;
    float: none;
    width: 100%;
    max-width: 100%;
  }

  .modal-cookies .modal-cookies__wrapper {
    flex-direction: column;
  }

  .modal-cookies .modal-cookies__wrapper button {
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
    height: 40px;
  }

  .modal-cookies .modal-cookies__wrapper p::before {
    transform: scale(0.5);
    left: -17px;
    top: -14px;
  }

  .modal-cookies .modal-cookies__wrapper p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 5px 0 30px;
  }

  .instruction__wrapper::before {
    display: none;
  }

  .instruction__wrapper::after {
    display: none;
  }

  .instruction__wrapper {
    row-gap: 24px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding: 30px 15px 60px 15px;
  }

  .instruction-column {
    flex-direction: column;
    transform: translateY(0);
    position: relative;
    align-items: center;
    justify-content: flex-start;
  }

  .instruction-column__icon {
    transform: translateY(0);
    margin-left: auto;
    margin-right: 50px;
    margin-bottom: 10px;
    width: 70px;
    height: 70px;
  }

  .instruction-column:nth-child(3) {
    order: 3;
  }

  .instruction-column:nth-child(4) {
    order: 4;
  }

  .instruction-column__text {
    flex-direction: row;
  }

  .instruction-column__num {
    margin: 0;
    position: absolute;
    font-size: 42px;
    top: 13px;
  }

  .instruction-column__descr {
    font-size: 14px;
    line-height: 22px;
    padding-left: 0;
  }
  .title-info .title-info__text.left{
    width: 300px;
  }
  .title-info .title-info__text::before,
  .title-info .title-info__text::after{
    display: none;
  }
}
@media (max-width: 520px) {
  .product-form__item--title {
    flex-direction: column;
    align-items: flex-start;
  }
  .deliver-block.active .deliver-block__wrap {
    display: grid;
    grid-template-columns: 1fr;
  }
  .title-check {
    padding-left: 0;
    padding-top: 10px;
  }

  .product-bottom__text--column {
    flex-direction: column;
    row-gap: 40px;
  }

  .product-bottom__text--column div {
    width: 100%;
  }

  .product-form__btn-wrap {
    flex-direction: column;
    row-gap: 17px;
  }

  .product-form__btn {
    width: 100%;
  }

  .instruction {
    margin-bottom: 70px;
  }
  .deliver-block__top input::after {
    content: '';
    z-index: 10;
    top: -10px;
    left: -10px;
  }
  .deliver-block__top input::before {
    position: absolute;
    content: url(../img/deliver-block__top.svg);
    left: -2px;
    top: 0px;
    right: auto;
    bottom: auto;
    transform: none;
    opacity: 0;
    transition: 0.1s ease-in;
    z-index: 11;

  }
  .deliver-block {
    margin: 0;
    position: relative;
  }
  .deliver-block__top input {
    width: 10px;
    height: 10px;
    position: absolute;
    background: transparent;
    border-color: transparent;
    position: absolute;
    top: 20px;
    left: 25px;
  }
  .method-block {
    padding: 20px 15px;
    display: grid;
    gap: 32px;
    justify-items: center;
  }
  ..method-block {
    position: relative;
  }
  .pay-method__wrapper .checkbox {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
  }
  .deliver-block__wrap > span {
    color: #FFF;
    font-weight: 500;
    font-size: 21px;
    line-height: 38px;
    text-transform: lowercase;
    margin-top: auto;
    margin-bottom: 0;
    text-align: center;
  }
  .deliver-block__item--title {
    font-size: 18px;
    text-align: center;
  }
  .deliver-block__item {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .block-info__wrapper {
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .block-info__item {
    width: 50%;
  }

  .product-form__item-wrap {
    flex-direction: column;
    padding-bottom: 10px;
    margin-top: 20px;
    border-bottom: 1px solid #ECDFFA;
  }

  .product-form__item-wrap .product-form__item {
    width: 100%;
    padding: 0 15px;
    border: none;
  }

  .product-price {
    flex-direction: column;
    align-items: center;
  }

  .product-swiper2 {
    height: 345px;
  }

  .product-form__item--title > span {
    padding-right: 40px;
  }

  .basket-item {
    flex-direction: column;
  }

  .basket-item__price {
    display: flex;
    align-items: center;
  }

  .basket-item__sum {
    display: flex;
    align-items: center;
    margin-left: 35px;
    margin-bottom: 40px;
  }

  .basket-item__number {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 30px 0 30px 35px;
  }

  .basket-item .mod-title {
    margin-bottom: 0;
    margin-right: 25px;
  }

  .title {
    margin-bottom: 30px;
  }

  .breadcrumbs {
    margin: 30px 0;
  }

  .basket-sec__btn {
    width: 100%;
    padding: 0 50px;
  }

  .deliver-block__top label {
    width: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .question__item--title {
    font-size: 16px;
    line-height: 24px;
    padding: 30px 20px 30px 60px;
  }

  .question__item--title::before,
.question__item--title::after {
    left: 11px;
  }

  .question__item--descr {
    padding: 25px 15px 55px 15px;
  }

  .pagination .pagination__link {
    font-size: 18px;
  }

  .contact-gallery .gallery__wrapper .gallery__item {
    min-width: 100%;
  }

  .contact-form__btn {
    width: 100%;
  }

  .text-blocks__img img {
    height: 225px;
  }
  .slider-arrow-wrap {
      bottom: auto;
      top: 0;
      width: 100%;
      left: 0;
      transform: translateX(0);
      z-index: 10;
      position: relative;
      text-align: center;
      margin-top: 25px;
  }
  .slider-arrow.slider-arrow-prev,
  .slider-arrow.slider-arrow-next {
    position: relative;
    left: auto;
    right: auto;
  }
  .swiper-button-prev:after{
    content: url(../img/slider-arrow.png) !important;
    transform: rotate(180deg);
  }
  .swiper-button-next:after{
      content: url(../img/slider-arrow.png) !important;

  }
  .different-cases__wrapper{
    height: 244px;
  }
  .slider-sec__wrapper{
    height: 350px;
    padding-bottom: 40px;
  }
  .marg-sec{
    padding-bottom: 40px;
  }
}
@media (max-width: 420px) {
  .category-baner__info::after {
    display: none;
  }

  .category-baner__info::before {
    content: url("../img/category-baner__info.svg");
  }

  .category-baner__btn {
    width: 100%;
  }

  .category-baner__info {
    padding: 20px 15px;
  }

  .instruction-column__icon {
    margin-right: 15px;
  }
  .modal-video .container{
    width: 300px;
  }
}
@media (max-width: 370px) {
  .card-item__stickers {
    width: 125%;
  }
  .search_page .category-product {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.products-in-order{
  display: none;
}
#lightbox img{
  width: auto !important;
  max-height: 86vh !important;
}
.image-container{
 width: 100vw;
 height: 100%;
}
/*# sourceMappingURL=main.css.map */
