@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

.delete_item {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
main {
  position: relative;
}
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #494648;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
  position: relative;
}

.header__top {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}
.header__navbar {
  margin-bottom: 55px;
}
.logo {
  display: none;
}
.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
.header__navbar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: url(../img/nav-bg.png) no-repeat center center;
  background-size: cover;
}
p{
  color: #494648;
}
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu-item{
  margin-right: 30px;
}
.menu-item a {
  color: #494648;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}
.header__nav .menu-item.current-menu-item a {
  color: #e95096;
}
.header__nav .menu-item:hover a {
  color: #e95096;
}
.header__menu-shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__menu-shop a {
  color: #fff;
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px;
  padding-right: 35px;
  position: relative;
}
.header__search a:before {
  content: '';
  background: url(../img/search-icon.svg) no-repeat center center;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header__cart {
  /*margin-left:30px;*/
  transition: top 0.3s;
  background-color: #e95096;
  border-radius: 15px;
}
.header__profile a:before {
  content: '';
  background: url(../img/profile-icon.svg) no-repeat center center;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header__cart a:before {
  content: '';
  background: url(../img/free_icon_cart.svg) no-repeat center center;
  background-size: contain;
  width: 26px;
  height: 24px;
  display: block;
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mini-cart__count {
  background: #fff;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.42px;
  color: #e95096;
  position: absolute;
  right: 0px;
  top: 0px;
}

.sticky {
  position: fixed;
  position: -webkit-sticky;
  top: 10px;
  right: 10px;
  z-index: 111111;
}

/*@media screen and (max-width: 1200px) {*/
/*  .header__menu-shop span {*/
/*    display: none;*/
/*  }*/
/*}*/
@media (max-width: 820px) {
  .header__top {
    display: none;
  }

  .sticky {
    position: inherit;
    position: -webkit-sticky;
    top: 10px;
    right: 10px;
    z-index: 111111;
  }

  .header__navbar {
    padding: 20px;
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(161, 161, 161, 0.2);
    -moz-box-shadow: 0px 5px 15px 0px rgba(161, 161, 161, 0.2);
    box-shadow: 0px 5px 15px 0px rgba(161, 161, 161, 0.2);
    min-height: 60px;
  }
  .logo {
    display: block;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 99;
  }
  .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    text-decoration: none;
    color: #494648;
    font-weight: 600;
    text-transform: uppercase;
  }
  .logo__img {
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
  }
  .header__navbar-inner {
    display: none;
  }
  .header__nav {
    margin-bottom: 20px;
    background: none;
  }
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-item {
    margin-bottom: 10px;
  }
  .menu__btn {
    display: flex;
    flex-direction: column;
    width: 40px;
    margin-left: auto;
    position: absolute;
    right: 10px;
    top: 15px;
    height: 30px;
    justify-content: space-around;
  }
  .menu__btn-line {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #000000;
  }
  .header__navbar-inner.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 55px;
  }
  .wrapper {
    padding-top: 60px;
  }
  .wrapper--partneram{
    padding-top: 0;
  }
}
@media (max-width: 767px) {

}



/**  footer  */
.footer {
  min-height: 271px;
  background-image: url(../img/footer_Loulou.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 70px;
}
.footer__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__social {
  margin-bottom: 22px;
}
.footer__social-items {
  display: flex;
}

.footer__social-items-main {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  cursor: pointer;
}

.footer__social-vk {
  margin-right: 10px;
}
.footer__social-vk a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.footer__social-vk a:before {
  content: '';
  background: url(../img/vk-icon.svg) no-repeat center center;
  background-size: contain;
  display: block;
  width: 38px;
  height: 38px;
}
.footer__column-contacts a {

  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.footer__copyright {
  font-size: 8px;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #ffffff;
}
.footer__column-contacts {
  position: relative;
}
.menu--footer {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu--footer .menu-item-type-post_type {
  margin-bottom: 15px;
}
.menu--footer li {
  margin-bottom: 15px;
}
.menu--footer li a{
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
.footer__column-service-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer__menu-servis li a {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  text-decoration-color: #ffffff;
  text-transform: none;
}
.footer__column {
  position: relative;
}
.footer__developers {
  color: #ffffff;
  font-size: 8px;
  font-weight: 600;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-writing-mode: tb-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: tb-rl;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .footer__columns {
    flex-direction: column;
    gap: 20px;
  }
  .footer__copyright {
    position: relative;
  }
  .footer__column-contacts {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
/**  footer  */

.swiper-container_main {
  overflow: hidden;
  padding: 0;
  margin-bottom: 30px;
}
.header__slide- {
  background-size: cover;
  max-height: 690px;
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
}

.banner__img {
  max-width: 100%;
}
.banner__container {
  /*display: flex;*/
  padding: 0;
}
.banner__href {
  margin-top: 30px;
}



.sidebar__title{
  font-size: 46px;
  margin: 0;
  color: #e95096;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.banner {
    padding-bottom: 60px;
  }

.category__filter-title, .filter__title {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 2px solid #494648;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #494648;
}
.filter-sort__list li:hover {
  font-weight: 600;
}
.filter-sort__list li {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  color: #494648;
  margin-bottom: 10px;
}
.filter-second__list {
  font-size: 16px;
  padding: 0px 10px;
  color: black;
  font-weight: 500;
  cursor: pointer;
  display: inline;
}
.filter-sort__link {
  display: inline;
}
.filter-sort__list li .filter-second__list.active:before {
  content: '-';
}
.filter-sort__list li .filter-second__list:before {
  content: '+';
}
.filter-sort-list__second {
  display: none;
}
.filter-sort-list__second.active {
  display: block;
  margin: 10px 0px 0px 10px;
}
.filter {
  margin-top: 60px;
}
.filter__color {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  color: #494648;
}
.color__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 220px;
  list-style: none;
  padding: 0;
  gap: 5px;
  margin: 16px 0;
}
.color__group a {
  border: 1px solid #ddd;
  display: block;
  height: 20px;
  padding: 0;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  box-sizing: content-box;
  border-radius: 5px;
}
.color__group a:hover, .color__group .chosen a{
  border: 1px solid #444;
  background-image: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.category__sidebar {
  max-width: 310px;
  width: 100%;
}
.category__wrapper {
  display: flex;
  gap: 150px;
}
.category__categorys {
  width: 100%;
}
@media (max-width: 1024px) {

}
@media (max-width: 767px) {

}
.catalog__item-wishlist path{
  stroke: #cd5c9e;
}
.catalog__item-wishlist-heart path, .catalog__item-wishlist svg:hover path{
  fill: #cd5c9e;
}
.catalog__items {
  display: flex;
}
.category .catalog__item {
  flex: 0 0 33%;
  max-width: 33%;
  position: relative;
}
.catalog__items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 20px;
}
.catalog__item-image-element img {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  object-fit: cover;
  padding: 20px;
  display: block;
  aspect-ratio: 1 / 1;
}
.catalog__item-name-href {
  font-size: 14px;
  line-height: 20px;
}
.catalog__item-price-wrapper {
  display: flex;
  gap: 20px;
}
.catalog__item-price--new {
  color: #494648;
  font-weight: 600;
}
.catalog__item-price--old {
  color: #B0B0B0;
  text-decoration: line-through;
}
.catalog__item-name {
  margin: 16px 0;
}
.catalog__item-purchase-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.catalog__item-base {
  padding-bottom: 30px;
}
.catalog__item-advanced {
  padding-bottom: 46px;
  display: none;

}
.catalog__item-wrapper:hover .catalog__item-advanced{
  display: block;
  z-index: 2;
  position: relative;
  width: calc(100% + 60px);
  margin-left: -30px;
}
.catalog__item-wrapper {
  padding: 20px 20px 0 20px;
}
.catalog__item-container-wrapper {
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.catalog__item-purchase {
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  flex-shrink: 1;
}

.catalog__item-counter {
  border: 1px solid #f2f2f2;
  display: inline-flex;
  flex-wrap: nowrap;
  flex-direction: row;
  -webkit-box-pack: center;
  align-items: center;
}
.qty_button {
  padding: 15px 16px;
  background: #fbfcfd;
  cursor: pointer;
}



.catalog__item-counter .qty_text {
  padding: 15px 3px;
  width: 60px;
  color: grey;
  text-align: center;
}
.catalog__item-purchase-button {
  display: block;
  padding-top: 17px;
  padding-bottom: 17px;
  margin-bottom: 0;
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -ms-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  background-color: #cc5c9e;
}
.catalog__item-wrapper:hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: 105%;
  margin: -10px -10px 0 -10px;
  padding: 30px 30px 0 30px;
  -webkit-box-shadow: 0 16px 32px 0 rgba(27, 30, 37, 0.2);
  -moz-box-shadow: 0 16px 32px 0 rgba(27, 30, 37, 0.2);
  box-shadow: 0 16px 32px 0 rgba(27, 30, 37, 0.2);
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: box-shadow;
  -moz-transition-property: box-shadow;
  -ms-transition-property: box-shadow;
  -o-transition-property: box-shadow;
  transition-property: box-shadow;
  background: white;
  z-index: 3;
}
.catalog__item-image {
  overflow: hidden;
}
.catalog__item-pagination {
  display: flex;
}
.catalog__item-pagination .swiper-pagination-bullet {
  display: block;
  height: 2px;
  background: #F2F2F2;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  border-radius: 0;
  margin: 0 !important;
}
.catalog__item-pagination .swiper-pagination-bullet-active{
  background: #e95096;

}
.catalog__item-image-element {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-width: 100%;
  width: 100% !important;
}
.category__pagination {
  padding-top: 20px;
}
.category__page-numbers {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.category__page-number {
  font-weight: bold;
  text-align: center;
  padding: 6px;
  border-radius: 4px;
  line-height: normal;
  width: 32px;
  height: 32px;
}
.category__page-number:hover, .category__next.page-number:hover {
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.category__page-number.current {
  background-color: #e95096;
}
.category__next.page-number {
  font-weight: bold;
  text-align: center;
  padding: 6px;
  border-radius: 4px;
  line-height: normal;
  width: 32px;
  height: 32px;
}
.category {
  position: relative;
  padding-bottom: 160px;
}
.bg_blue {
  position: absolute;
  width: 100%;
  overflow: hidden;
  max-height: 590px;
  bottom: -70px;
  z-index: -1;
}
.scrollToTop {
  position: absolute;
  left: 10px;
  bottom: 30px;
  display: none;
  width: 48px;
  height: 48px;
  background-color: #cc5c9e;
  border-radius: 100%;
  z-index: 1;
}
.scrollToTop::before {
  content: '';
  background: url(../img/top-icon.svg) no-repeat center center;
  background-size: cover;
  display: block;
  width: 25px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1200px) {
  .category__wrapper {
    display: flex;
    gap: 20px;
  }
}
@media screen and (max-width: 820px) {
  .category__wrapper {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  .category__sidebar {
    max-width: 100%;
    width: 100%;
  }
  .catalog__item-advanced {
    padding-bottom: 46px;
    display: block;
    position: relative;
  }
  .catalog__item-counter .qty_text {
    width: 35px;
    padding: 10px 3px;
  }
  .qty_button {
    padding: 10px 12px;
    background: #fbfcfd;
  }
  .catalog__item-purchase-button {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .catalog__item-base {
    padding-bottom: 10px;
  }
  .category__pagination {
    padding-top: 30px;
  }
  .bg_blue {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .category .catalog__item {
    flex: 0 0 50%;
    max-width: calc(50% - 10px);
  }
  .catalog__item-wrapper {
    padding: 0;
  }
  .catalog__item-pagination .swiper-pagination-bullet{
    margin: 0!important;
  }
  .qty_button {
    padding: 6px 8px;
  }
  .catalog__item-counter .qty_text {
    width: 29px;
    padding: 6px 3px;
  }
  .catalog__item-purchase-button {
     padding-top: 8px;
     padding-bottom: 8px;
   }
  .catalog__item-advanced {
    padding-bottom: 33px;
  }
  .catalog__items {
    justify-content: space-between;
  }
  .category__page-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .bg_blue {
    bottom: -40px;
  }
}


/* товар */
.single-product__mySwiper {
  flex: 0 0 100px;
}
.single-product__gallery {
  display: flex;
  gap: 20px;
  padding-right: 100px;
}
.single-product__columns {
  display: flex;
  padding-bottom: 60px;
}
.single-product__column {
  flex: 0 0 50%;
  max-width: 50%;
}
.single-product__mySwiper2 img{
  max-width: 100%;
}
.single-product__mySwiper .swiper-wrapper {
  flex-direction: column;
  height: auto;
  width: 100%;
}
.single-product__mySwiper .swiper-slide  {
  aspect-ratio: 1 / 1;
  height: auto !important;
}
.single-product__mySwiper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0.5;
}
.single-product__mySwiper img:hover{
  opacity: 1;
}
.single-product__mySwiper .swiper-slide-thumb-active img{
  opacity: 1;
}
.single-product__article {
  color: #1d1d1b;
  font-size: 13px;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.single-product__header {
  margin-bottom: 70px;
  position: relative;
}
.page-back {
  color: #cc5591;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  padding-left: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}
.page-back:before {
  content: '';
  background: url(../img/arrow-back-icon.svg) no-repeat center center;
  background-size: contain;
  width: 18px;
  height: 15px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product__title {
  font-size: 26px;
  font-weight: 600;
  color: #494648;
  width: 45%;
}
.summary.entry-summary {
  padding-top: 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.product__price {
  font-size: 30px;
  font-weight: bold;
  color: #494648;
}
.amount--old {
  color: #B0B0B0;
  text-decoration: line-through;
  font-size: 24px;
  padding-left: 20px;
}
.product__stock {
  color: #0f834d;
}
.product-purchase-container {
  display: flex;
  max-width: 300px;
}
.product__description {
  margin-top: auto;
}
.product__description-title {
  font-size: 46px;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #494648;
}
.product__description-text {
  font-size: 14px;
  font-weight: 400;
  color: #494648;
}
.products-buy__title{
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 65px;
  color: #e95096;
  font-weight: 600;
}


.catalog__items-swiper{
  overflow: hidden;
  padding: 30px 30px 93px;
}
.catalog__item.swiper-slide{
  height: auto;
}
.products-buy {
  padding-bottom: 160px;
}
@media (max-width: 820px) {
  section.single-product {
    padding-top: 30px;
  }
  .single-product__header {
    margin-bottom: 30px;
  }
  .product__title {
    width: 100%;
  }
  .single-product__gallery {
    padding-right: 50px;
  }
  .product__description-title {
    font-size: 36px;
    padding-top: 30px;
  }
  .products-buy__title {
    margin-bottom: 15px;
  }
  .catalog__items-swiper {
    padding: 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  .single-product__columns {
    flex-direction: column;
  }
  .single-product__column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .single-product__gallery {
    flex-direction: column;
    padding-right: 0;
  }
  .single-product__mySwiper{
    order: 2;
  }
  .single-product__mySwiper2{
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .catalog__items-swiper {
    padding: 0;
  }
  .single-product__mySwiper {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .single-product__mySwiper .swiper-wrapper {
    flex-direction: row;
    height: auto;
    width: 100%;
  }
  .single-product__mySwiper .swiper-slide {
    aspect-ratio: 1 / 1;
    height: auto !important;
    width: 70px !important;
  }
  .single-product__mySwiper2 .swiper-slide img {
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
  }
  .product__title {
    font-size: 20px;
  }
  .catalog__item-container-wrapper {
    max-width: fit-content;
  }
  .product-purchase-container {
    max-width: 238px;
  }
  .product__description-title {
    font-size: 30px;
    padding-top: 20px;
    font-weight: 400;
  }
  .products-buy__title {
    margin-bottom: 25px;
    font-size: 20px;
  }
  .bg_blue {
    bottom: 350px;
  }
}



/* страница партнеров!!! */
/* начало СТАТЬПАРТНЁРОМ */
.stat-partneram1{
  background: #f9bad5 url("../img/partners/bg1.jpg") no-repeat top center;
  background-size: contain;
  z-index: 1;
  background-position-x: right;
  background-position-y: bottom;
}

.stat-partneram1-content {
  padding: 152px 0 131px;
  max-width: 1622px;
  margin: auto;
  max-width: 1622px;
  margin: auto;
}
.stat-partneram1-content-title {
  font-size: 90px;
  font-weight: 500;
  color: #CC5D9E;
  margin-top: 0;
  margin-bottom: 136px;
}
.stat-partneram1-content-title span {
  display: block;
  font-weight: 800;
}
.stat-partneram1-content-price {
  border-radius: 40px;
  background: #CB5D9D;
  width: 617px;
  height: 80px;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  column-gap: 32px;
  justify-content: center;
  cursor: pointer;
  margin: 0 0 40px 0;
  display: flex;
}
.stat-partneram1-content-price a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 32px;
  justify-content: center;
}
.stat-partneram1-content-phone {
  color: #CB5D9D;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}
.stat-partneram1-content-phone a{
  color: #CB5D9D;
  text-decoration: none;
}
.page-template-template-partners4 .main-wrapper {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .stat-partneram1-content-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .stat-partneram1-content {
    padding: 50px 20px;
  }
  .stat-partneram1-content-price {
    width: 100%;
    height: 60px;
    font-size: 15px;
    column-gap: 32px;
    margin: 0 0 30px 0;
    max-width: 500px;
  }
  .stat-partneram1-content-price img {
    max-width: 40px;
  }
  .stat-partneram1-content-price a {
    column-gap: 19px;
  }
  .stat-partneram1-content-phone {
    font-size: 20px;
  }
  .stat-partneram1 {
    background-position-y: bottom;
    height: 700px;
  }
}
@media screen and (max-width: 1700px) and (min-width: 1500px) {

  .stat-partneram1-content {
    padding: 45px 120px 131px 152px;
  }
}
@media screen and (max-width: 1500px) and (min-width: 768px){
  .stat-partneram1-content {
    padding: 60px 40px;
  }
  .stat-partneram1-content-title {
    font-size: 60px;
    margin-bottom: 50px;
  }
  .stat-partneram1-content-price {
    font-size: 22px;
    width: 470px;
  }
  .stat-partneram1-content-price a {
    column-gap: 18px;
  }

}
/* конец СТАТЬ ПАРТНЁРОМ */
/* начало Приглашаем к сотрудничеству */
.stat-partneram2-content {
  padding: 155px 0 113px;
  max-width: 1622px;
  margin: auto;
}
.stat-partneram2-content-title {
  font-size: 50px;
  font-weight: 700;
  color: #CB5D9D;
  text-transform: uppercase;
  margin: 0 0 84px 0;
}
.stat-partneram2-content-blocks {
  display: flex;
  justify-content: space-between;
}
.stat-partneram2-content-block-p {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  color: #000;
  margin-bottom: 0;
  margin-top: 53px;
}
.stat-partneram2-content-block-p-db{
  display: block;
}
.stat-partneram3-content-block-img {
  display: block;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .stat-partneram2-content-title {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .stat-partneram2-content {
    padding: 50px 20px;
  }
  .stat-partneram2-content-blocks {
    display: block;
  }
  .stat-partneram2-content-block-img {
    max-width: 150px;
    display: block;
    margin: auto;
  }
  .stat-partneram2-content-block-p {
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 18px;
  }
  .stat-partneram2-content-block:not(:last-child) {
    padding-bottom: 25px;
  }

}
@media screen and (max-width: 1700px) and (min-width: 1500px) {

  .stat-partneram2-content {
    padding: 155px 120px 113px;
  }
}
@media screen and (max-width: 1500px) and (min-width: 768px){
  .stat-partneram2-content {
    padding: 60px 40px;
  }
  .stat-partneram2-content-title {
    font-size: 30px;
    margin-bottom: 50px;
  }
  .stat-partneram2-content-block-p {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .stat-partneram2-content-block-img {
    max-width: 150px;
  }
}
/* конец Приглашаем к сотрудничеству */
/* начало что получают наши партнёры? */

.stat-partneram3{
  background: #91d0c7 url("../img/partners/bg2.jpg") no-repeat top center;
  background-size: contain;
  z-index: 1;
  background-position-x: right;
  background-position-y: bottom;
}

.stat-partneram3-content {
  padding: 131px 0 167px;
  max-width: 1622px;
  margin: auto;
  max-width: 1622px;
  margin: auto;
}
.stat-partneram3-content-block-p {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  margin-top: 0;
}
.stat-partneram3-content-block {
  display: flex;
  column-gap: 40px;
  align-items: center;
}
.stat-partneram3-content-block:not(:last-child) {
  padding-bottom: 58px;
}
.stat-partneram3-content-blocks {
  position: relative;
}
.stat-partneram3-content-blocks-all {
  display: flex;
  column-gap: 174px;
}
.stat-partneram3-content-block-imgs {
  width: 81px;
}
.stat-partneram3-content-block-imgs1 {
  width: 67px;
}
.stat-partneram3-content-block-p-a {
  border-radius: 40px;
  background: #CB5D9D;
  font-size: 30px;
  padding: 21px 45px;
  margin-bottom: 0;
  font-weight: 700;
}
.stat-partneram3-content-block-p-a a{
  color: #FFF;
  text-decoration: none;
}
.stat-partneram3-content-block-href{
  margin-top: auto;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {

  .stat-partneram3-content {
    padding: 50px 20px;
    height: 1030px;
  }

  .stat-partneram3-content-block-p {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 0;
  }
  .stat-partneram3-content-blocks-all {
    flex-wrap: wrap;
  }
  .stat-partneram3-content-block:not(:last-child) {
    padding-bottom: 20px;
  }
  .stat-partneram3-content-block-imgs1, .stat-partneram3-content-block-imgs {
    width: 48px;
  }
  .stat-partneram3-content-block-img {
    width: 48px;
  }
  .stat-partneram3-content-block {
    column-gap: 24px;
    padding-bottom: 40px;
  }
  .stat-partneram3-content-block-href {
    position: relative;
    padding-bottom: 0;
  }
  .stat-partneram3-content-block-p-a {
    font-size: 20px;
  }
  .stat-partneram3-content-blocks {
    width: 387px;
  }
  .stat-partneram3-content-blocks-all {
    justify-content: center;
  }
}
@media screen and (max-width: 1700px) and (min-width: 1500px) {

  .stat-partneram3-content {
    padding: 155px 120px 113px;
  }
}
@media screen and (max-width: 1500px) and (min-width: 768px){
  .stat-partneram3-content {
    padding: 60px 40px;
  }

}
@media screen and (max-width: 1023px) and (min-width: 768px){
  .stat-partneram3-content-block-p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 0;
  }

  .stat-partneram3-content-blocks-all {
    display: flex;
    column-gap: 30px;
  }
  .stat-partneram3-content-block {
    column-gap: 20px;
  }
  .stat-partneram3-content-block:not(:last-child) {
    padding-bottom: 30px;
  }
  .stat-partneram3-content-block-p-a {
    font-size: 18px;
  }
  .stat-partneram3-content-block-img {
    width: 100%;
  }
  .stat-partneram3-content-block-imgs {
    width: 50px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 1024px){
  .stat-partneram3-content-blocks-all {
    display: flex;
    column-gap: 60px;
  }
  .stat-partneram3-content-block-p {
    font-size: 20px;
  }

}
/* конец что получают наши партнёры? */

/* старт Почему мастера выбирают LOULOU? */
.stat-partneram4{
  background: #f3e59e url("../img/partners/bg3.jpg") no-repeat top center;
  background-size: contain;
  z-index: 1;
  background-position-x: right;
  background-position-y: bottom;
}
.stat-partneram4-content {
  padding: 103px 0 103px;
  max-width: 1622px;
  margin: auto;
  max-width: 1622px;
  margin: auto;
}
.stat-partneram4-content-block-p {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  margin-top: 0;
}
.stat-partneram4-content-title {
  font-size: 50px;
  font-weight: 700;
  color: #CB5D9D;
  text-transform: uppercase;
  margin: 0 0 68px 0;
  max-width: 594px;
}
.stat-partneram4-content-block {
  display: flex;
  align-items: center;
  column-gap: 32px;
}
.stat-partneram4-content-block:not(:last-child) {
  padding-bottom: 64px;
}
.stat-partneram4-content-price {
  border-radius: 40px;
  background: #CB5D9D;
  width: 522px;
  height: 80px;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  column-gap: 32px;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  display: flex;
}
.stat-partneram4-content-price a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 33px;
  justify-content: center;
}
@media screen and (max-width: 767px) {

  .stat-partneram4-content {
    padding: 50px 20px;
  }

  .stat-partneram4-content-block-p {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 0;
  }
  .stat-partneram4-content-title {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .stat-partneram4-content-block:not(:last-child) {
    padding-bottom: 20px;
  }
  .stat-partneram4-content-block {
    column-gap: 24px;
  }
  .stat-partneram4-content-block-img {
    max-width: 50px;
  }
  .stat-partneram4-content-price {
    width: 100%;
    height: 60px;
    font-size: 16px;
    margin: 0;
    margin-top: 20px;
  }
  .stat-partneram4-content-price img {
    max-width: 40px;
  }
  .stat-partneram4-content-price a {
    column-gap: 20px;
  }
  .stat-partneram4-content-blocks {
    max-width: 400px;
    margin: auto;
  }
}
@media screen and (max-width: 1700px) and (min-width: 1500px) {

  .stat-partneram4-content {
    padding: 155px 120px 113px;
  }
}
@media screen and (max-width: 1500px) and (min-width: 768px){
  .stat-partneram4-content {
    padding: 60px 40px 110px;
  }
  .stat-partneram4-content-title {
    font-size: 30px;
    margin-bottom: 50px;
    max-width: 100%;
  }
  .stat-partneram4-content-block:not(:last-child) {
    padding-bottom: 34px;
  }
}
/* конец Почему мастера выбирают LOULOU? */

/* старт ТОЛЬКО ДЛЯ НОВЫХ КЛИЕНТОВ */
.stat-partneram5{
  background-image: url("../img/partners/bg4.png");
  background-size: cover;
  z-index: 3;
  margin-top: -50px;
  position: relative;
}
.stat-partneram5-content-title {
  font-size: 50px;
  font-weight: 700;
  color: #CB5D9D;
  text-transform: uppercase;
  margin: 0 0 23px 0;
  text-align: center;
}
.stat-partneram5-content {
  padding: 134px 0 79px 0;
}
.stat-partneram5-content-p {
  background-image: url("../img/partners/stat-partneram5-content-p.png");
  color: #FFF;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  width: 688px;
  height: 106px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .stat-partneram5-content-title {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .stat-partneram5-content {
    padding: 50px 20px;
  }
  .stat-partneram5-content-p {
    font-size: 20px;
    width: 325px;
    height: 50px;
    background-size: contain;
  }
  .stat-partneram5 {
    margin-top: -15px;
  }
  .stat-partneram6 {
    margin-top: -16px;
  }
}
@media screen and (max-width: 1500px) and (min-width: 768px){
  .stat-partneram5 {
    background-size: cover;
  }
  .stat-partneram5-content-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .stat-partneram5-content {
    padding: 60px 40px;
  }
  .stat-partneram5-content-p {
    font-size: 28px;
    width: 375px;
    height: 58px;
    background-size: contain;
  }
}
/* конец ТОЛЬКО ДЛЯ НОВЫХ КЛИЕНТОВ */

/* старт ЗАПОЛНИ АНКЕТУ НА СОТРУДНИЧЕСТВО */
.stat-partneram6{
  background: #8ccaf3 url("../img/partners/bg5.jpg") no-repeat top center;
  background-size: contain;
  z-index: 1;
  background-position-x: right;
  background-position-y: bottom;
  margin-top: -125px;
}
.stat-partneram6-content {
  padding: 295px 0 258px;
  max-width: 1622px;
  margin: auto;
  max-width: 1622px;
  margin: auto;
}
.stat-partneram5-title span {
  font-weight: 700;
}
.stat-partneram5-title {
  font-size: 37px;
  color: #CB5D9D;
  padding-bottom: 36px;
}
.stat-partneram5-contact-form-section-item input {
  border-radius: 40px;
  border: 2px solid #CB5D9D;
  background: none;
  padding: 23px 49px;
  font-size: 25px;
  font-weight: 500;
}
.stat-partneram5-contact-form-section-items-wrapper {
  display: flex;
  flex-flow: column;
  row-gap: 45px;
}
.stat-partneram5-contact-form-section-item br {
  display: none;
}
.stat-partneram5-contact-form-section-item-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
}
.stat-partneram5-contact-form-section-item, .stat-partneram5-contact-form-section-item .partner-name input, .stat-partneram5-contact-form-section-item .partner-city input{
  width: 830px;
}

.stat-partneram5-contact-form-section-item, .stat-partneram5-contact-form-section-item .partner-name input::placeholder, .stat-partneram5-contact-form-section-item .partner-city input::placeholder, .stat-partneram5-contact-form-section-item input::placeholder{
  color: #00000073;
}

.partner-phone input, .partner-phone, .partner-email, .partner-email input {
  max-width: 405px;
}
.stat-partneram5-contact-form-section-item input:focus-visible, .stat-partneram5-contact-form-section-item select:focus-visible {
  background: #FBE0EA;
  border: 2px solid #fbe0ea;
  box-shadow: none;
  outline-color: #FBE0EA;
  font-weight: 600;
  color: #000;
  outline: none;
}
.stat-partneram5-contact-form-section-item-select .stat-partneram5-contact-form-option {
  border-radius: 40px;
  border: 2px solid #CB5D9D;
  background: none;
  padding: 13px 49px;
  font-size: 25px;
  font-weight: 500;
  width: 100%;
  appearance: none;
  position: relative;
  display: block;
}
.stat-partneram5-contact-form-section-item-select .stat-partneram5-contact-form-option select{
  background: none;
  border: none;
  appearance: none;
  color: #00000073;
  padding: 10px 0;
}
.stat-partneram5-contact-form-section-item-select .stat-partneram5-contact-form-option.spec2 {

  background: #FBE0EA;
}


.stat-partneram5-contact-form-section-item-select .stat-partneram5-contact-form-option:before {
  content: ' ';
  position: absolute;
  right: 35px;
  width: 37px;
  height: 22px;
  top: 0;
  background: url("../img/partners/icon.png");
  z-index: 1;
  top: 28px;
}
.stat-partneram5-contact-form-section-item-select .stat-partneram5-contact-form-option.spec2:before{
  transform: rotate(180deg);
}
.stat-partneram5-contact-form-section-item .spec option {
  font-size: 25px;
  font-weight: 600;
}
.partners-shop-button {
  background-color: #e95096;
  color: white;
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 35px 80px;
  display: inline-block;
  border-radius: 15px;
  cursor: pointer;
  margin: 150px 0;
  text-align: center;
  border: none;
  outline: none;
}
.stat-partneram5-submit__wrapper #zakaz_sh_sa {
  height: 80px;
  width: 406px;
  border-radius: 40px;
  font-size: 30px;
  padding: 0;
  margin: 0;
}
.block {
  transform: scale(.97);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  from {
    transform: scale(.97);
  }
  50% {
    transform: scale(1);
  }
  to {
    transform: scale(.97);
  }
}
.stat-partneram5-submit__wrappers {
  margin-top: 55px;
  display: flex;
  width: 830px;
  justify-content: space-between;
}

.stat-partneram5-agree__wrapper {
  max-width: 305px;
}
.stat-partneram5-agree__wrapper .list-item-label {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  display: block;
  width: 305px;
  line-height: 22px;
}
.stat-partneram5-agree__wrapper {
  width: 305px;
  display: flex;
  align-items: center;
}
.stat-partneram5-agree__wrapper .list-item-label:before {
  width: 42px!important;
  height: 42px!important;
}
.stat-partneram5-agree__wrapper .list-item-label:after {
  height: 22px!important;
  width: 22px!important;
  top: 9px!important;
  left: 9px!important;
}
.stat-partneram5-agree__wrapper .list-item-label {
  padding-left: 60px!important;
  width: 309px!important;
}
.stat-partneram5-agree__wrapper .list-item{
  margin: 0;
  display: inline-block;
}
.acceptance {
  position: relative;
}
.stat-partneram5-agree__wrapper .list-item-label {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  display: block;
  padding-left: 60px;
  width: 309px;
  line-height: 22px;
  height: 17px;
  cursor: pointer;
}
.stat-partneram5-agree__wrapper .list-item-label:before {
  width: 40px !important;
  height: 40px !important;
}
[type="checkbox"]:not(:checked)+label:before, [type="checkbox"]:checked+label:before, [type="radio"]:not(:checked)+label:before, [type="radio"]:checked+label:before, [type="checkbox"]:not(:checked)+span:before, [type="checkbox"]:checked+span:before, [type="radio"]:not(:checked)+span:before, [type="radio"]:checked+span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #cc5591;
  border-radius: 100%;
}
[type="checkbox"]:not(:checked)+label:after, [type="checkbox"]:checked+label:after, [type="radio"]:not(:checked)+label:after, [type="radio"]:checked+label:after, [type="checkbox"]:not(:checked)+span:after, [type="checkbox"]:checked+span:after, [type="radio"]:not(:checked)+span:after, [type="radio"]:checked+span:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  display: block;
  background-color: #cc5591;
  border-radius: 100%;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
[type="checkbox"]:not(:checked), [type="checkbox"]:checked, [type="radio"]:not(:checked), [type="radio"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:checked+label:after, [type="radio"]:checked+label:after, [type="checkbox"]:checked+span:after, [type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
[type="checkbox"]:not(:checked)+label:after, [type="radio"]:not(:checked)+label:after, [type="checkbox"]:not(:checked)+span:after, [type="radio"]:not(:checked)+span:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.dont-click .partners-shop-button {
  pointer-events: none;
  opacity: 0.5;
}
.stat-partneram5-submit__wrapper.dont-click{
  cursor: not-allowed;
}
@media screen and (max-width: 1500px) and (min-width: 768px){
  .stat-partneram6-content {
    padding: 60px 40px;
  }
  .stat-partneram6{
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .stat-partneram6-content {
    padding: 50px 20px 50px;
  }

  .stat-partneram5-title {
    font-size: 25px;
    padding-bottom: 40px;
  }
  .partner-phone, .partner-email {
    max-width: 100%;
    width: 100%;
  }
  .partner-phone input, .partner-email input{
    max-width: 100%;
    width: 100%;
  }
  .stat-partneram5-submit__wrappers {
    width: 100%;
  }
  .stat-partneram5-submit__wrapper #zakaz_sh_sa {
    height: 60px;
    width: 100%;
    font-size: 20px;
  }
  .stat-partneram5-agree__wrapper .wpcf7-list-item-label {
    font-size: 18px;
  }
  .stat-partneram5-contact-form-section-item, .stat-partneram5-contact-form-section-item .partner-name input, .stat-partneram5-contact-form-section-item .partner-city input {
    width: 100%;
  }
  .stat-partneram5-contact-form-section-item-two {
    width: 100%;
    display: flex;
    row-gap: 20px;
    flex-wrap: wrap;
  }
  .stat-partneram5-contact-form-section-items-wrapper {
    row-gap: 20px;
  }
  .stat-partneram5-contact-form-section-item input {

    padding: 16px 30px;
    font-size: 20px;
  }
  .trigger {
    font-size: 20px;
  }
  .stat-partneram5-contact-form-section-item-select .stat-partneram5-contact-form-option {
    padding: 6px 30px;
  }
  .stat-partneram5-contact-form-section-item-select .stat-partneram5-contact-form-option:before {
    width: 30px;
    background-size: contain;
    height: 18px;
    top: 20px;
    right: 20px;
  }
  .activetrigger {
    font-size: 20px;
    padding-bottom: 13px;
  }
  .dropcontainer ul{
    font-size: 20px;
  }
  .dropcontainer ul li {
    padding-bottom: 13px;
  }
  .stat-partneram5-submit__wrappers {
    margin-top: 30px;
    display: block;
  }
  .stat-partneram5-agree__wrapper {
    width: 100%;
    max-width: 100%;
    padding-top: 20px;
  }
  .stat-partneram5-agree__wrapper .list-item-label {
    width: 100%!important;
  }
  .stat-partneram6{
    margin-top: 0;
    background: #8ccaf3;
  }
}
@media screen and (max-width: 768px) and (min-width: 495px){
  .stat-partneram5-agree__wrapper .list-item-label:before {
    width: 19px!important;
    height: 19px!important;
  }
  .stat-partneram5-agree__wrapper .list-item-label:after {
    height: 13px!important;
    width: 13px!important;
    top: 3px!important;
    left: 3px!important;
  }
  .stat-partneram5-agree__wrapper .list-item-label {
    padding-left: 30px!important;
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px){
  .stat-partneram5-contact-form-section-item, .stat-partneram5-contact-form-section-item .partner-name input, .stat-partneram5-contact-form-section-item .partner-city input {
    width: 100%;
  }
  .partner-phone, .partner-email {
    max-width: calc((100% - 40px) / 2);
  }
  .partner-phone input, .partner-email input{
    max-width: 100%;
  }
  .stat-partneram5-contact-form-section-item-two {
    column-gap: 40px;
    display: flex;
  }
  .stat-partneram5-submit__wrapper #zakaz_sh_sa {
    height: 60px;
    width: 306px;
    font-size: 20px;
  }
  .stat-partneram5-submit__wrappers {
    width: 100%;
  }
  .stat-partneram5-agree__wrapper .wpcf7-list-item-label {
    font-size: 18px;
  }
}
@media screen and (max-width: 1700px) and (min-width: 1500px){
  .stat-partneram6-content {
    padding: 155px 120px 113px;
  }
  .stat-partneram6{
    margin-top: 0;
  }
}
/* конец ЗАПОЛНИ АНКЕТУ НА СОТРУДНИЧЕСТВО */
/* старт .footer-new */
.footer-new{
  min-height: 385px;
  background-color: #cc5d9e;
  margin-top: -100px;
  z-index: 1;
  position: relative;
}
.footer-new-container{
  background-image: url("../img/partners/bg-footer.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  /*background-color: #8ccaf3;*/
  background-position: center top;
  min-height: 385px;
  width: 1920px;
  margin: auto;
  padding-top: 70px;
  padding-bottom: 68px;
  max-width: 100%;
}
.footer-new .container {
  max-width: 1622px;
  padding: 0;
  margin-left: 75px;
}
.footer-new .footer-column__contacts {
  width: 400px;
}
.footer-new  .footer-new-columns {
  display: flex;
  column-gap: 88px;
}
.footer-new  .footer-column__service.footer-column__service-new {
  width: 308px;
  padding-top: 27px;
}
.footer-column__social {
  display: flex;
  justify-content: space-around;
  column-gap: 39px;
}
.footer-column__social-p {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  text-decoration: none;
}
.footer-column__social-p-img {
  width: 100%;
}
.footer-column__social-p-img {
  width: 66px;
}

.footer-column__social-p-img-main {
  width: 25px;
}
.footer-column__social-ps:last-child .footer-column__social-p-img-main {
  width: 33px;
}

.footer-column__social-ps:last-child .footer-column__social-p-img {
  width: 83px;
}
.footer-column__social-ps:last-child .footer-column__social-p-text {
  padding-top: 4px;
}
.footer-column__social-p-text {
  font-size: 14px;
  color: #FFF;
  font-weight: 500;
  margin: 0;
  margin-top: auto;
  text-align: center;
}
.footer-column__service.footer-column__service-new .footer-column__service-title {
  font-size: 18px;
  font-weight: 500;
}
.footer-new #footer-service-menu {
  list-style: none;
  padding: 0;
  font-size: 18px;
}
.footer-new #footer-service-menu .footer-column__service ul li a {
  font-size: 18px;
  font-weight: 500;

}
.footer-new .footer-contact__email a, .footer-new .footer-contact__phone a {
  font-size: 18px;
  text-transform: none;
  color: #FFF;
}
.footer-new .footer-contact__email {
  padding-top: 42px;
  padding-left: 42px;
}
.footer-new .footer-contact__phone {
  padding-left: 42px;
  margin-bottom: 37px;
}
.footer-new .footer-copyright {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  color: #ffffff;
  padding-left: 42px;
}
.footer-column__socials {
  padding-top: 20px;
}
.footer-new .footer-column__service ul li a {
  text-decoration: underline;
  font-size: 18px;
}
.footer-new .footer-column__service ul li {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .footer-new-container {
    width: 100%;
    background-size: cover;
  }
  .footer-column__socials {
    display: block;
    width: 100%;
    max-width: 335px;
  }
  .footer-column__social {
    column-gap: inherit;
    justify-content: space-between;
    width: 100%;
  }
  .footer-column__social-p-img {
    width: 30px;
  }
  .footer-column__social-p-text {
    display: none;
  }
  .footer-column__social-ps:last-child .footer-column__social-p-img {
    width: 41px;
  }
  .footer-new .container {
    padding: 0;
    margin-left: 0;
    padding: 0 20px;
  }
  .footer-new .footer-column__contacts {
    width: 100%;
    position: relative;
  }
  .footer-logo-img {
    width: 100%;
    max-width: 335px;
  }
  .footer-new-container {

    min-height: 530px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .footer-new {
    min-height: auto;
  }
  .footer-new .footer-new-columns {
    flex-wrap: wrap;
  }
  .footer-new .footer-contact__email {
    padding-top: 0;
    padding-left: 0;
  }
  .footer-new .footer-contact__phone {
    padding-left: 0;
    margin-bottom: 20px;
  }
  .footer-new .footer-copyright {
    font-size: 10px;
    padding-left: 0;
  }
  .footer-new .footer-column__service.footer-column__service-new {
    width: 308px;
    padding-top: 30px;

  }
  .footer-column__service.footer-column__service-new .footer-column__service-title {
    font-size: 14px;
    font-weight: 500;
  }
  .footer-new .footer-column__service ul li a {
    font-size: 14px;
  }
  .footer-column__contact-ff {
    position: absolute;
    top: 325px;
  }
  .footer-new .footer-contact__email a, .footer-new .footer-contact__phone a {
    font-size: 12px;
    text-transform: none;
  }
  .footer-new .footer-column__service ul li {
    margin-bottom: 16px;
  }

  .stat-partneram3{
    background: #91d0c7 url("../img/partners/p_mob_b.jpg") no-repeat bottom center;
    /*        background-position-y: bottom;*/
    background-size: contain;
  }
  .stat-partneram4{
    height: 770px;
    background: #f3e59e url(../img/partners/p_mob_y.jpg) no-repeat bottom center;
    background-size: contain;
  }

}
@media screen and (max-width: 1399px) and (min-width: 768px){

  .footer-new-container {
    width: 100%;
    background-size: contain;
    background-position-x: right;
    padding: 60px 0;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px){
  .footer-column__social {
    column-gap: inherit;
    justify-content: space-between;
    width: 100%;
  }
  .footer-logo-img {
    max-width: 270px;
  }
  .footer-new .footer-contact__email {
    padding-top: 22px;
    padding-left: 33px;
  }

  .footer-new .footer-contact__phone {
    padding-left: 31px;
    margin-bottom: 29px;
  }
  .footer-new .footer-copyright{
    padding-left: 31px;
  }
  .footer-new .footer-new-columns {
    grid-template-areas:
        "contacts service"
        "socials service";
    display: grid!important;
    column-gap: inherit;
    justify-content: space-between;

  }
  .footer-column__contacts {
    grid-area: contacts;
  }
  .footer-column__socials {
    grid-area: socials;
    padding-top: 30px;
  }
  .footer-new .footer-column__service.footer-column__service-new {
    grid-area: service;
    width: 220px;
  }
  .footer-column__social-p-img {
    width: 45px;
  }
  .footer-column__social-p-text {
    display: none;
  }

  .footer-column__social-ps:last-child .footer-column__social-p-img {
    width: 61px;
  }

  .footer-column__social {
    max-width: 270px;
    flex-wrap: wrap;
    justify-content: left;
    column-gap: 20px;
    row-gap: 15px;
    padding-left: 30px;
  }
  .footer-new .footer-new-columns {
    column-gap: inherit!important;
  }
}
@media screen and (max-width: 1399px) and (min-width: 1201px){
  .footer-column__social {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    max-width: 430px;
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .footer-column__social-p-img {
    width: 50px;
    display: block;
    margin: auto;
  }
  .footer-column__social-ps:last-child .footer-column__social-p-img {
    width: 68px;
  }
  .footer-column__social-p-text {
    font-size: 13px;
  }
}
@media screen and (max-width: 1399px) and (min-width:768px){



  .footer-new .container {
    margin-left: 0;
    padding: 0 40px;
  }
  .footer-logo-img {
    max-width: 360px;
  }
  .footer-new .footer-contact__email a, .footer-new .footer-contact__phone a {
    font-size: 16px;
    text-transform: none;
  }
  .footer-new .footer-copyright {
    font-size: 11px;
  }
  .footer-column__service.footer-column__service-new .footer-column__service-title {
    font-size: 16px;
  }
  .footer-new .footer-column__service ul li a {
    font-size: 16px;
  }

  .footer-new .footer-new-columns {
    display: flex;
    column-gap: 114px;
  }
}
@media screen and (max-width: 1699px) and (min-width: 1400px){
  .footer-new .container {
    margin-left: 0;
    padding: 0 40px;
  }
}
@media screen and (max-width: 1919px) and (min-width: 1400px){
  .footer-column__social {
    display: flex;
    justify-content: center;
    column-gap: 51px;
    flex-wrap: wrap;
    row-gap: 25px;
  }
  .footer-new-container {
    /*
        width: 100%;
        background-size: cover;
        background-position-x: right;
        padding: 60px 0;
    */
    width: 100%;
    background-position-x: right;
    padding: 60px 0;
    background-size: contain;
    background-position-y: top;
  }

}
@media screen and (max-width: 1550px) and (min-width: 1400px){

  .footer-column__social {
    max-width: 500px;
    column-gap: 29px;
  }
  .footer-new-container{
    padding-top: 80px;
  }
}
/*
@media screen and (max-width: 1550px) and (min-width: 1400px){
   .footer-column__social {
    max-width: 380px;
    column-gap: 29px;
}

}*/
@media screen and (max-width: 1650px) and (min-width: 1551px){

  .footer-column__social {
    max-width: 550px;
    column-gap: 38px;
  }

}

@media screen and (max-width: 1750px) and (min-width: 1651px){

  .footer-column__social {
    max-width: 650px;
  }

}


@media screen and (max-width: 1700px){
  .footer-new{
    margin-top: 0;
  }
}
/* конец .footer-new */

/* Конец страницы партнеры*/

/** страница контакты */
.contacts__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts__column:first-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 35%;
  flex: 0 1 35%;
  margin-right: 5%;
}
.contacts__column:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
}
.contacts__company {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.contacts__address {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
}
.address__title {
  text-transform: uppercase;
}
.contacts-phone {
  margin-bottom: 45px;
}
.contacts-phone__item a {
  font-size: 17px;
  font-weight: 600;
  color: #494648;
}
.contacts-props {
  background: url(../img/props-bg.png) no-repeat center bottom;
  background-size: cover;
  padding: 25px;
}
.contacts-props__titles {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.contacts-props__item {
  font-size: 13px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000000;
  margin-bottom: 5px;
  display: flex;
  width: 100%;
}
.contacts-props__item>p {
  width: 50%;
}
.contacts-props__value {
  font-size: 13px;
  font-weight: 600;
}
.contacts-props__item:nth-child(5) {
  margin-bottom: 45px;
}
.contacts-props__item:nth-child(6) {
  margin-bottom: 15px;
}
.contacts-props__item:nth-child(8) {
  margin-bottom: 45px;
}
.contacts-props__item:nth-child(9) {
  margin-bottom: 15px;
}
.contacts-map {
  height: 600px;
}
.contacts {
  padding-bottom: 160px;
}
.contacts__page {
  margin-bottom: 130px;
}
@media screen and (max-width: 820px){
  .contacts__column:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    max-width: 50%;
    overflow: hidden;
  }
  .contacts__column:first-child {
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    margin-right: 5%;
    width: 45%;
  }
  .contacts-props {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 767px){
  .contacts__columns {
    flex-direction: column;
    gap: 34px;
  }
  .contacts__column {
    width: 100%!important;
    max-width: 100%!important;
  }
  .contacts__page {
    margin-bottom: 0;
    padding-top: 30px;
  }
  .contacts__title {
    font-size: 28px;
  }
  .contacts__company, .contacts__address {
    margin-bottom: 15px;
  }
}
/** Конец страница контакты */

/**  страница корзины */
.basket-empty {
  max-width: 380px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.basket-empty__title {
  font-size: 24px;
  font-weight: 600;
}
.basket-empty__description {
  font-size: 16px;
  text-align: center;
  line-height: normal;
}
.basket-empty__button a{
  color: #fff;
}
.basket-empty__button {
  background-color: #e95096;
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 25px;
  display: inline-block;
  border-radius: 40px;
  cursor: pointer;
  text-align: center;
  border: none;
  outline: none;
  margin-top: 20px;
}
.basket {
  padding-bottom: 220px;
}
.basket__items {

}
.basket__item {
  display: flex;
  width: 100%;
  border: 1px solid #F2F2F2;
  padding: 30px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 0;
}
.basket__item:last-child {
  border-bottom: 1px solid #F2F2F2;
}
.basket__img img {
  max-width: 120px;
}
.basket__name {
  max-width: 400px;
}
.price-one__amount {
  font-size: 14px;
  padding-bottom: 10px;
}
.price-one__price {
  font-size: 20px;
  font-weight: 600;
}
.basket__price-result {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.basket__price-sum {
  font-size: 26px;
  font-weight: 600;
}
.basket__item:hover {
  z-index: 1;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.082);
  -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.082);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.082);
}
.basket__price-dell:hover path{
  fill:#e95096;
}
.basket__name:hover a{
color: #e95096;
}
.basket__price-dell {
  height: 20px;
}
.basket__item.basket__item--itog {
  justify-content: end;
  gap: 40px;
  border-top: 3px solid #cc5c9e;
}
.draw__go {
  background-color: #cc5c9e;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px;
}
.itog__price {
  display: flex;
  gap: 20px;
  font-size: 16px;
  align-items: baseline;
  padding-bottom: 10px;
}
.itog__weights {
  display: flex;
  font-size: 16px;
  gap: 10px;
}
.itog__all {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .basket__item {
    flex-wrap: wrap;
    row-gap: 0;
    column-gap: 30px;
  }
  .basket__name {
    max-width: 300px;
  }
  .basket__price-result{
    margin-left: auto;
  }
}
@media screen and (max-width: 820px) {
  .basket {
    padding-top: 30px;
  }
  .basket {
    padding-bottom: 120px;
  }

}
@media screen and (max-width: 767px){
  .itog__draw {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px){
  .basket__img {
    margin: auto;
  }
  .basket__item {
    row-gap: 20px;
  }
  .itog__price {
    justify-content: space-between;
  }
  .itog__prices {
    width: 100%;
  }
  .basket__counter {
    margin-top: auto;
  }
}
/** Конец страница корзины */
/** начало страница оформление заказа */
.order_title{
  position: relative;
  line-height: 24px;
  font-weight: bold;
  font-size: 20px;
  margin-left: 42px;
}
.order_title:before{
  content: " ";
  display: block;
  position: absolute;
  top: -3px;
  left: -42px;
  width: 30px;
  height: 30px;
  background-image: url(../img/icons.png);
  background-repeat: no-repeat;
  background-position: 0 -120px;
}
.order__clients {
  border: 2px solid #f2f2f2 !important;
  padding: 20px;
}
.input-text {
  background: #f6f6f6 !important;
  border: 1px solid #efefef !important;
  border-radius: 1px;
  height: auto;
  padding: 8px 13px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
}
.order__label {
  color: #494648;
  padding-bottom: 10px;
  line-height: normal;
  display: block;
}
.order__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  padding-left: 40px;
}
.order__input.order__select .trigger {
  background: #f6f6f6 !important;
  border: 1px solid #efefef !important;
  border-radius: 1px;
  font-size: 14px;
  padding: 8px 13px;
  color: #494648;
  height: 36px;
}
.order__input.order__select .dropcontainer ul {
  font-size: 14px;
  padding-left: 10px;
  padding-top: 10px;
  max-height: 400px;
  overflow: auto;
}
.order__input.order__select .dropcontainer ul li {
  padding-bottom: 5px;
}
.order__input.order__select .dropcontainer a {
  text-decoration: none;
  color: #494648;
  font-weight: 600;
}
.order__input.order__select .activetrigger{
  display: none;
}
.order__select--spec.spec {
  background: #f6f6f6;
  border: 1px solid #efefef;
  border-radius: 1px;
  width: 100%;
  display: block;
}

.order__select--spec.partneram_sel {

  width: 100%;
  display: block;
}
.order__select--spec2.spec {
  background: #f6f6f6;
  border: 1px solid #efefef;
  border-radius: 1px;
  width: 100%;
  display: block;
  padding: 8px 13px;
}
.search-input {
  display: none;
}
.search-input-partneram {
  display: none;
}
.order__select--spec2.spec  .search-input {
  display: block;
  background: none;
  border: 1px solid #efefef;
  width: 100%;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.075);
  font-size: 14px;
  padding: 10px;
  font-weight: 800;
  background: #fff url(/img/search.png) right 12px top 12px no-repeat;
}

.order__select--spec2.partneram_sel  .search-input-partneram {
  display: block;
  background: none;
  width: 95%;
  font-size: 14px;
  padding: 10px;
  font-weight: 800;
}
.suggestions-value {
  color: #000000;
}
.suggestions-nowrap {
  font-size: 14px;
}
.order-form__submit {
  background-color: #cc5c9e;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 16px 12px;
  min-width: fit-content;
  align-self: center;
}
.order__send {
  color: #000;
  display: flex;
  gap: 40px;
  margin-top: 30px;
  justify-content: end;
}
#order-form__checkbox {
  width: 0;
  height: 3px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  left: 0;
}
.order__send--agree{
  padding-left: 30px;
  display: block;
  position: relative;
  font-size: 14px;
  line-height: normal;
}
 [type="checkbox"]:not(:checked)+span.order__send--agree:before, [type="checkbox"]:checked+span.order__send--agree:before, [type="radio"]:not(:checked)+span.order__send--agree:before, [type="radio"]:checked+span.order__send--agree:before, [type="checkbox"]:not(:checked)+span.name-delivery__inner:before, [type="checkbox"]:checked+span.name-delivery__inner:before, [type="radio"]:not(:checked)+span.name-delivery__inner:before, [type="radio"]:checked+span.name-delivery__inner:before
 {
  top: calc(50% - 9px);
}
[type="checkbox"]:not(:checked)+span.order__send--agree:after, [type="radio"]:checked+span.order__send--agree:after,
[type="checkbox"]:checked+span.order__send--agree:after,
[type="checkbox"]:not(:checked)+span.name-delivery__inner:after, [type="radio"]:checked+span.name-delivery__inner:after,
[type="checkbox"]:checked+span.name-delivery__inner:after{
  top: calc(50% - 6px);
  width: 11px;
  height: 11px;
}
.dont-click.order-form__submit {
  pointer-events: none;
  opacity: 0.5;
}
.order__list {
  display: flex;
  gap: 40px;
}
.order__chek {
  border: 2px solid #f2f2f2 !important;
  padding: 20px;
}
.order__cheks {
  width: 26%;
  flex: 0 0 auto;
}
.chek__price {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
}
.chek__priceall {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chek__all {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #f2f2f2;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
}
.order__chek .order-form__submit {
  width: 100%;
}
.delivery__title:before{
  background-position: 0 -90px;
}
.payment__title:before{
  background-position: 0 -60px;
}
.order__paysystem {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  margin-bottom: 30px;
}
.order__paysystem .order__clients {
  flex-shrink: 0;
  flex: 0 0 calc(50% - 15px);
}
.delivery__list {
  color: #494648;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  padding-left: 40px;
}
.delivery__list li {
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 820px){
  .order__list {
    gap: 20px;
  }
  .order__paysystem {
    gap: 20px;
    margin-bottom: 20px;
  }
  .order__paysystem .order__clients {
    flex: 0 0 calc(50% - 10px);
  }
  .order_title {
    line-height: normal;
    font-size: 18px;
  }
  .delivery__list {
    color: #494648;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    padding-left: 40px;
  }
  .name-delivery__inner {
    font-size: 16px;
    line-height: normal;
  }
  .delivery__list li {
    padding-left: 25px;
  }
  .order__label {
    font-size: 16px;
  }
  .chek__price {
    gap: 10px;
    font-size: 14px;
  }
  .chek__all {
    margin-top: 20px;
    padding-top: 20px;
    gap: 10px;
  }
  .order__chek .order-form__submit {
    width: 100%;
    padding: 8px;
  }
  .order__send {
    gap: 30px;
    margin-top: 20px;
  }
  .order__send--agree {
    font-size: 11px;
    line-height: normal;
  }
  .order-form__submit {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px){
  .order__cheks {
    width: 100%;
    order: 1;
  }
  .order__forms {
    order: 2;
  }
  .order__list {
    flex-direction: column;
  }
  .order__paysystem {
    flex-direction: column;
  }
  .order__send {
    flex-direction: column;
  }


}
.page-content__container a{
  display: inline;
}
.page-content__container p {
  margin-bottom: 16px;
}
.page-content__container p:last-child {
  padding-bottom: 0;
}
.page-content__container .h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;

}
.page-content__container {
  padding-bottom: 160px;
}
/** Конец страница оформление заказа */


.contact__social {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 15px;
}

.contact__social-item {
  transition: all 0.2s;
  cursor: pointer;
}

.contact__social-item:hover {
  filter: contrast(0%) brightness(100%);

}

.added_product {
  text-align: left;
  padding-left: 32%;
  background-color: #a3407b;
  background: #a3407b url(/img/icons8-done.svg) 5% 50% no-repeat;
  background-size: 40% 40%;
  /*font-weight: bold;*/
}

.delivery_none {
  display: none;
}

.text_tovar_absent {
  display: block;
  padding-top: 9px;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* color: #FFFFFF; */
  text-align: center;
}

.dont-click.catalog__item-purchase-button-added {
  pointer-events: none;
  opacity: 0.5;
}

.login-form__submit {
  background-color: #494648;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 16px 12px;
  min-width: fit-content;
  align-self: center;
  margin-bottom: 10px;
}


.error-container-page {
  margin-top: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  /*margin-bottom: 20px;*/
  color: #494648;
}

.error-container-page p{
  margin-bottom: 30px;
}

.error-container-page a {
  font-weight: 500;
  font-size: 20px;
  /*text-decoration: underline;*/
  /*text-underline-offset: 5px;*/

}

.error-container-page .error-number{
  color: #e95096;
  font-size: 128px;
  text-shadow: 3px 3px #E39CBDFF;
  letter-spacing: .3rem;
  margin-bottom: 50px;
}


@media screen and (max-width: 767px){
  .error-container-page {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;

  }

  .error-container-page a {
    font-weight: 500;
    font-size: 16px;
  }

  .error-container-page .error-number{
    font-size: 72px;
  }

}

.status_payment--text {
  text-align: center;
  font-size: 48px;
  margin: 20px;
}

.container--status_payment {
  text-align: center;
  margin-bottom: 20px;
}

.promocode-form .control-label {
  color: black;
}

.promocode-form .form-group {
  margin: 15px 0px;
}

.promocode-create h1 {
  margin-top: 40px;
  color: black;
}

.label_promocode--form {
  color: #494648;
}

.promocode-form .field-promocode_value {
  color: #494648;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: baseline;
}

.information__error {
  font-size: 14px;
  margin-top: 10px;
}

.itog__promocode {
  flex: 2;
}

._active-block {
  display: block;
}

.block_none {
  display: none;
}


/*админ галерея*/

.gallery {
  margin-top: 30px;
}

.gallery__title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.gallery__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.gallery__list_commit {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;

}

.gallery_commit {
  margin: 15px;
}

.text_img-commit {
  width: 100%;
}

.gallery__item_commit {

  margin-bottom: 10px;
  /*width: calc((100% / 3) - 30px);*/
  height: 300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 10px;
  position: relative;
  width: 100%;
}


.gallery__item-delete {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 2;
}

.text_center-header {
  text-align: center;
}

.gallery__item_img {
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 30px;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 10px;
  position: relative;
}


.gallery__item_commit:hover .gallery__item-delete {
  display: block;
}
.banner-index, .order-index,.promocode-index h1 {
  margin-top: 30px;
}

.glyphicon-plus:before {
  content: "\2b";
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.glyphicon-remove:before {
  content: "\e014";
}
