* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button, input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
}

ol, ul {
  list-style-position: inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  font-weight: 500;
}

h1 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.125rem;
}

h3 {
  font-size: 1rem;
}

a,
input,
button,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: transparent;
  display: block;
  border: none;
  outline: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

.cap .control-panel,
.home-page__top,
.home-page__bottom,
.catalog-page .panel,
.catalog-page__main {
  display: grid;
  grid-template-columns: 16.5625rem 1fr;
  grid-column-gap: 0.875rem;
}

.catalog-page .filter-range-input input {
  padding: 0.5rem;
  border: 1px solid #BD95FF;
  border-radius: 14px;
  display: block;
  max-width: 100%;
  outline: none;
  text-align: center;
  font-size: 0.6875rem;
}

.catalog-page .filter-range-input input::-moz-placeholder {
  color: #C7CDD4;
  text-align: center;
  line-height: 1.2;
  font-size: inherit;
}

.catalog-page .filter-range-input input:-ms-input-placeholder {
  color: #C7CDD4;
  text-align: center;
  line-height: 1.2;
  font-size: inherit;
}

.catalog-page .filter-range-input input::-ms-input-placeholder {
  color: #C7CDD4;
  text-align: center;
  line-height: 1.2;
  font-size: inherit;
}

.catalog-page .filter-range-input input::placeholder {
  color: #C7CDD4;
  text-align: center;
  line-height: 1.2;
  font-size: inherit;
}

html {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #4B535E;
  background: rgba(245, 245, 245, 0.733);
}

body {
  background-image: url(../images/texture.png);
}

.container {
  width: 80rem;
  margin: 0 auto;
}

.page {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  background-color: rgba(247, 247, 251, 0.9);
}

.page .footer {
  margin-top: auto;
}

.default-page {
  padding-top: 0.5rem;
}

.default-page__content {
  margin-top: 1rem;
}

.breadcrumbs {
  font-size: 0.6875rem;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  line-height: 1rem;
}

.breadcrumbs__item {
  position: relative;
  margin-right: 1.375rem;
}

.breadcrumbs__item a span {
  color: #B9B9B9;
  transition: 0.2s;
}

.breadcrumbs__item a:hover span {
  color: #000;
}

.breadcrumbs__item:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.125rem;
  height: 0.5rem;
  width: 0.75rem;
  background: url(../images/hleb-arrow.svg);
  background-size: 100% 100%;
}

.breadcrumbs__item:last-child span {
  color: #4E4B4B;
  pointer-events: none;
}

.breadcrumbs__item:last-child:after {
  content: none;
}

.cross {
  text-decoration: line-through;
}

.btn {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  border-radius: 0.875rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 120%;
  cursor: pointer;
  transition: 0.2s;
}

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

.btn.icon-btn > *:first-child {
  margin-right: 0.5rem;
  display: block;
}

.btn-default {
  color: #fff;
  background: linear-gradient(to right, #bd95ff, #ab8cfd, #9884fb, #827cf9, #6775f7);
}

.btn-default:hover {
  box-shadow: 0 0 0.5rem 0.125rem rgba(130, 124, 249, 0.363);
}

.btn-light {
  background: #fff;
  color: #6876F8;
}

.btn-light:hover {
  box-shadow: 0 0 12 0 rgba(170, 170, 170, 0.2);
}

.base-product-card {
  background: white;
  padding: 1.125rem 0.75rem;
  box-shadow: 0 0.25rem 1.375rem rgba(171, 186, 240, 0.05);
  border-radius: 0.875rem;
  position: relative;
  transition: 0.2s;
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
}

.base-product-card:hover {
  box-shadow: 0 0 1rem 1px rgba(0, 0, 0, 0.05);
}

.base-product-card-emblems {
  position: absolute;
  z-index: 1;
  top: 0.375rem;
  left: 0.375rem;
  display: flex;
  align-items: center;
}

.base-product-card-emblems__wrap {
  width: 1.5rem;
  height: 1.375rem;
  position: relative;
  overflow: hidden;
  margin-right: 5px;
}

.base-product-card-emblems__wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.base-product-card__photo-place {
  display: block;
  width: 100%;
  height: 10rem;
  position: relative;
  overflow: hidden;
  transition: 0.2s ease;
}
.base-product-card__photo-place:hover {
  opacity: 0.7;
}

.base-product-card__photo-place img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.base-product-card__info {
  width: 100%;
  margin-bottom: 1rem;
}

.base-product-card__title {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.5rem;
  transition: 0.2s ease;
}
.base-product-card__title:hover {
  color: #000;
}

.base-product-card__vendor-code {
  font-size: 0.6875rem;
  text-align: center;
  color: #ABB2BC;
  margin-top: 0.375rem;
}

.base-product-card-price {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
}

.base-product-card-price__old {
  font-size: 0.6875rem;
  text-align: center;
  color: #C4C8F0;
  margin-right: 0.375rem;
}

.base-product-card-price__current {
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  color: #6C7AFC;
}

.base-product-card-panel {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.base-product-card-panel .base-product-card-panel__like,
.base-product-card-panel .base-product-card-panel__pack {
  width: 1.875rem;
  height: 1.875rem;
  background: #F7F7FD;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #AF86F2;
  transition: 0.2s;
}

.base-product-card-panel .base-product-card-panel__like:hover,
.base-product-card-panel .base-product-card-panel__pack:hover {
  transform: scale(1.1);
}

.base-product-card-panel .base-product-card-panel__like svg,
.base-product-card-panel .base-product-card-panel__pack svg {
  width: 1rem;
  height: 1rem;
}

.base-product-card-panel__like:not(.base-product-card-panel__like_active):hover {
  background: #6A79FA !important;
  color: #fff !important;
  opacity: 0.75;
}

.base-product-card-panel__like_active {
  background: #6A79FA !important;
  color: #fff !important;
}

.base-product-card-panel__pack {
  margin-left: 1rem;
}

.base-product-card-panel__pack:not(.base-product-card-panel__pack_active):hover {
  background: #AF86F2 !important;
  color: #fff !important;
  opacity: 0.75;
}

.base-product-card-panel__pack_active {
  background: #AF86F2 !important;
  color: #fff !important;
}

.input-group__label {
  font-size: 0.875rem;
  line-height: 120%;
}

.input-group__desc {
  font-size: 0.75rem;
  line-height: 120%;
  color: #ABB2BC;
  margin-top: 0.375rem;
}

.input-group__input {
  display: block;
  width: 100%;
  height: 2.8125rem;
  padding-left: 1.5rem;
  margin-top: 0.625rem;
  border: 1px solid rgba(199, 205, 212, 0.5);
  border-radius: 0.875rem;
  font-size: 0.875rem;
  outline: none;
  transition: 0.2s ease;
}

.input-group__input:hover, .input-group__input:focus {
  border: 1px solid #AF86F2;
}

.input-group__input::-moz-placeholder {
  color: #ABB2BC;
}

.input-group__input:-ms-input-placeholder {
  color: #ABB2BC;
}

.input-group__input::-ms-input-placeholder {
  color: #ABB2BC;
}

.input-group__input::placeholder {
  color: #ABB2BC;
}

.products-filter__content {
  background: #fff;
  padding: 0.875rem;
  border-radius: 0.875rem;
  margin-bottom: 8px;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.05);
}

.products-filter__search {
  position: relative;
  width: 100%;
  height: 2.8125rem;
  border: 1px solid #D9D9D9;
  border-radius: 1000px;
  outline: none;
  padding-left: 2.6875rem;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.16666667;
  color: #969CA5;
  background-color: rgba(255, 255, 255, 0.6);
  background-image: url(../images/search.svg);
  background-repeat: no-repeat;
  background-position: center left 0.9375rem;
  background-size: 0.9375rem;
  margin-bottom: 0.5rem;
  transition: 0.2s ease;
}

.products-filter__search:hover, .products-filter__search:focus {
  border: 1px solid #AF86F2;
}

.products-filter__search::-moz-placeholder {
  -moz-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.products-filter__search:-ms-input-placeholder {
  -ms-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.products-filter__search::-ms-input-placeholder {
  -ms-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.products-filter__search::placeholder {
  transition: 0.2s ease-in;
}

.products-filter__search:focus.products-filter__search::-moz-placeholder {
  text-indent: 100%;
}

.products-filter__search:focus.products-filter__search:-ms-input-placeholder {
  text-indent: 100%;
}

.products-filter__search:focus.products-filter__search::-ms-input-placeholder {
  text-indent: 100%;
}

.products-filter__search:focus.products-filter__search::placeholder {
  text-indent: 100%;
}

.products-filter-block:not(:last-child) {
  border-bottom: 1px solid #F2F6FB;
}

.products-filter-block-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 1.125rem 0.4375rem 1.125rem 0.4375rem;
}
.products-filter-block-preview:not(.has-subcategories) .products-filter-block-preview__arrow {
  display: none;
}

.products-filter-block-preview:hover {
  background: #fafafa;
  border-radius: 4px;
}
.products-filter-block-preview:hover .products-filter-block-preview__title {
  color: #000;
}

.products-filter-block-elements {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: 0.3s ease;
  list-style: none;
}

.products-filter-block.opened .products-filter-block-preview {
  background: #9d77dc;
  border-radius: 4px;
}
.products-filter-block.opened .products-filter-block-preview:hover {
  background: #b18fe9;
}
.products-filter-block.opened .products-filter-block-preview > * {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.products-filter-block.opened .products-filter-block-elements {
  max-height: 1000px;
  height: auto;
  padding: 0.5rem 0;
}

.products-filter-block.opened .products-filter-block-preview__arrow {
  transform: rotate(0deg);
}

.products-filter-block.opened .products-filter-block-elements li a {
  opacity: 1;
}
.products-filter-block.opened .products-filter-block-elements li a:hover {
  color: #000;
}

.products-filter-block-elements {
  border-left: 1px dashed #F2F6FB;
}
.products-filter-block-elements li a {
  display: block;
  font-size: 0.825rem;
  font-weight: 300;
  padding: 0.5rem 0.4375rem 0.5rem 1rem;
  position: relative;
  opacity: 0;
  transition: 0.2s ease;
}
.products-filter-block-elements li a:after {
  content: "";
  position: absolute;
  right: 7px;
  top: calc(50%);
  width: 6px;
  height: 4px;
  background: url("../images/arrow-show.svg") no-repeat center;
  background-size: contain;
  transform: translateY(-50%) rotate(-90deg);
  transition: 0.2s ease;
}
.products-filter-block-elements li a:hover {
  background: #fafafa;
}
.products-filter-block-elements li a:hover:after {
  right: 3px;
}

.products-filter-block-preview__left {
  display: flex;
}

.products-filter-block-preview__img {
  display: flex;
  align-items: center;
}

.products-filter-block-preview__img img {
  width: 1rem;
}

.products-filter-block-preview__title {
  margin-left: 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.21428571;
  color: #4B535E;
}

.products-filter-block-preview__arrow {
  display: flex;
  transform: rotate(-90deg);
  transition: 0.2s ease;
  align-items: center;
}

.products-filter__btn, .default-btn {
  margin-top: 5px;
  position: relative;
  padding: 0.875rem 1rem 0.875rem 2.6rem;
  background: linear-gradient(253.38deg, #4C5BE2 11.14%, #6c7aff 78.07%);
  width: 100%;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.21428571;
  color: #FFFFFF;
  border-radius: 0.875rem;
  transition: 0.2s ease;
}

.products-filter__btn {
  display: block;
}

.default-btn {
  padding-left: 1rem;
}

.products-filter__btn:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.75rem;
  background-image: url("../images/opencat-button-img.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 1rem;
  top: calc(50% - 0.375rem);
}

.products-filter__btn:hover, .default-btn:hover {
  box-shadow: 0 0 0.5rem 0.125rem rgba(108, 122, 255, 0.36);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

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

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  opacity: 0.5;
  width: 1.0625rem;
  height: 0.75rem;
  background-image: url(../images/slider-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  transition: 0.2s ease;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 1;
}

.slick-prev {
  left: 1.5625rem;
  z-index: 50;
}

.slick-next {
  right: 1.5625rem;
  z-index: 50;
  transform: scale(-1, 1);
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 0.75rem;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 0.1875rem;
  width: 0.625rem;
  margin: 0 0.1875rem;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 0.1875rem;
  width: 0.625rem;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #DCE5F3;
  border-radius: 0.75rem;
}

.slick-dots li.slick-active {
  width: 1.25rem;
}

.slick-dots li.slick-active button {
  width: 1.25rem;
}

.slick-dots li.slick-active button:before {
  background: linear-gradient(to right, #bd95ff, #ab8cfd, #9884fb, #827cf9, #6775f7);
}

.cap {
  padding: 1rem 0;
}

.cap__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.5rem;
}

.cap__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 23.5rem;
}

.cap-phone {
  display: flex;
  align-items: center;
}

.cap-phone__icon img {
  display: flex;
  align-items: center;
  width: 1.375rem;
}

.cap-phone__number {
  margin-left: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.2s ease;
}

.cap-phone__number:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.cap-phone__arrow {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
}

.cap-phone__arrow img {
  width: 0.375rem;
}

.cap-ask {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cap-ask:hover .cap-ask__label {
  color: #000;
}

.cap-ask__icon img {
  width: 1.125rem;
}

.cap-ask__label {
  color: #ABB2BC;
  font-size: 0.75rem;
  margin-left: 0.625rem;
  transition: 0.2s ease;
}

.cap-logo {
  width: 11rem;
  transition: 0.2s ease;
}

.cap-logo:hover {
  opacity: 0.8;
}

.cap-logo img {
  width: 100%;
}

.cap-location {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.2s ease;
  transform: translateY(-500px);
}

.cap-location:hover {
  opacity: 0.8;
}

.cap-location__icon {
  display: flex;
  align-items: center;
}

.cap-location__icon img {
  width: 1.125rem;
}

.cap-location__label {
  font-size: 0.75rem;
  margin-left: 0.375rem;
}

.cap-location__label-city {
  font-weight: 500;
}

.cap-location__arrow {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.cap-location__arrow img {
  width: 0.375rem;
}

.cap-panel {
  display: flex;
  align-items: center;
}

.cap-panel-item {
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  transition: 0.2s;
}

.cap-panel-item:not(:first-child) {
  margin-left: 1rem;
}

.cap-panel-item img {
  width: 1rem;
}

.cap-panel-item__counter {
  width: 0.75rem;
  height: 0.75rem;
  background: #976CDE;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -0.125rem;
  right: -0.125rem;
  border-radius: 50%;
}

.cap-panel-item__counter span {
  font-size: 0.625rem;
  color: #fff;
}

.cap-panel__like {
  background: #ECECFA;
}

.cap-panel__like:hover {
  background: #e4e4ff;
}

.cap-panel__cart {
  background: #AF86F2;
}

.cap-panel__cart:hover {
  background: #c5a5f7;
}

.cap-panel__menu {
  width: 2.5rem;
  height: 2.5rem;
  background: #af86f2;
  border-radius: 0.625rem;
  margin-left: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* GENERAL STYLES */
  /* HAMBURGER 3 */
}

.cap-panel__menu .visuallyHidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.cap-panel__menu .hamburger {
  margin: 0 auto;
  width: 1.3125rem;
  height: 21px;
  position: relative;
}

.cap-panel__menu .hamburger .bar {
  padding: 0;
  width: 1.3125rem;
  height: 3px;
  background-color: #fff;
  display: block;
  border-radius: 0.175rem;
  transition: all 0.4s ease-in-out;
  position: absolute;
}

.cap-panel__menu .bar1 {
  top: 0;
}

.cap-panel__menu .bar2,
.cap-panel__menu .bar3 {
  top: 0.5906rem;
}

.cap-panel__menu .bar3 {
  right: 0;
}

.cap-panel__menu .bar4 {
  bottom: 0;
}

.cap-panel__menu .hamburger .bar1, .cap-panel__menu .hamburger .bar4 {
  transform-origin: 2%;
}

.cap-panel__menu .checkbox3:checked + label > .hamburger > .bar1 {
  transform: rotate(45deg);
  height: 0.1313rem;
  width: 1.875rem;
}

.cap-panel__menu .checkbox3:checked + label > .hamburger > .bar3 {
  transform: rotate(45deg);
  height: 0.1313rem;
  background-color: transparent;
}

.cap-panel__menu .checkbox3:checked + label > .hamburger > .bar2 {
  transform: rotate(-45deg);
  height: 1.3188rem;
  background-color: transparent;
}

.cap-panel__menu .checkbox3:checked + label > .hamburger > .bar4 {
  transform: rotate(-45deg);
  height: 0.1313rem;
  width: 1.875rem;
}

.cap__bottom {
  margin-top: 0.875rem;
}

.cap .control-panel {
  height: 3.125rem;
}

.cap .control-panel .products-filter {
  margin-top: 0.625rem;
}

.cap .control-panel-catalog {
  overflow: hidden;
  transition: 0.4s;
}

#cap-filter-parent {
  max-height: 3.125rem;
}
#cap-filter-parent.opened {
  max-height: unset;
}
#cap-filter-parent.opened .control-panel-catalog__main-link {
  background: #394048;
}
#cap-filter-parent.opened #cap-filter {
  position: absolute;
  z-index: 111;
  width: 16.5625rem;
}

.cap .control-panel-catalog__wrapper {
  height: 100%;
}

.cap .control-panel-catalog__main-link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4B535E;
  border-radius: 0.875rem;
}
.cap .control-panel-catalog__main-link.pointer {
  transition: 0.2s;
  cursor: pointer;
}
.cap .control-panel-catalog__main-link.pointer:hover {
  background: #394048;
}

.cap .control-panel-catalog__icon {
  width: 1.25rem;
  display: flex;
  align-items: center;
}

.cap .control-panel-catalog__icon img {
  width: 100%;
}

.cap .control-panel-catalog__label {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin-left: 0.75rem;
}

.cap .control-panel-catalog__arrow {
  display: block;
  margin-left: 3.375rem;
}

.cap .control-panel-menu {
  height: 100%;
  display: flex;
  border-radius: 0.875rem;
  overflow: hidden;
}

.cap .control-panel-menu__item {
  background: #4B535E;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  white-space: nowrap;
  transition: 0.2s;
}

.cap .control-panel-menu__item:hover, .cap .control-panel-menu__item.selected {
  background: #5c646e;
}

.cap .control-panel-menu__item:not(:last-child) {
  border-right: 1px solid #505863;
}

.cap .control-panel-menu__item:not(:first-child) {
  border-left: 1px solid #454C55;
}

.cap .mobile-menu {
  margin-top: 1.3125rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 1s;
}

.cap .mobile-menu__section {
  border-top: 1px solid #E1EDF4;
  padding: 1.0625rem;
}

.cap .mobile-menu-link {
  display: flex;
}

.cap .mobile-menu-link__img {
  transform: rotate(-90deg);
}

.cap .mobile-menu-link__img img {
  width: 0.5625rem;
}

.cap .mobile-menu-link__title {
  margin-left: 0.875rem;
}

.footer {
  padding-top: 2rem;
}

.footer__wrapper {
  padding: 1.75rem 0;
  background: #4B535E;
  color: #FFFFFF;
}

.footer__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  grid-column-gap: 1.875rem;
}

.footer__section:nth-child(2) {
  padding-left: 3rem;
}

.footer__section:last-child {
  padding-top: 0.5rem;
  padding-left: 2rem;
}

.footer-desc__logo {
  width: 9.5rem;
  display: block;
  transition: 0.2s;
}
.footer-desc__logo:hover {
  opacity: 0.7;
}

.footer-desc__logo img {
  width: 100%;
}

.footer-desc__socials {
  margin-top: 1.75rem;
}

.footer-desc-socials__phone .footer-desc-socials-item__label {
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-desc-socials__phone .footer-desc-socials-item__label:hover {
  text-decoration: underline;
}

.footer-desc-socials-item {
  display: flex;
  align-items: center;
}

a.footer-desc-socials-item:hover .footer-desc-socials-item__label {
  text-decoration: underline;
}

.footer-desc-socials-item:not(:last-child) {
  margin-bottom: 1rem;
}

.footer-desc-socials-item__img {
  width: 0.875rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.footer-desc-socials-item__img img {
  width: 100%;
}

.footer-desc-socials-item__label {
  margin-left: 0.625rem;
  font-size: 0.6875rem;
  line-height: 1.2;
}

.footer-nav {
  padding-top: 0.5rem;
}

.footer-nav__title {
  font-weight: bold;
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.footer-nav-list-item {
  margin-top: 1rem;
  font-weight: 300;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
}

.footer-nav-list-item__icon {
  width: 0.375rem;
  transform: rotate(-90deg);
  display: flex;
  align-items: center;
}

.footer-nav-list-item__icon img {
  width: 100%;
}

.footer-nav-list-item__link {
  margin-left: 0.5rem;
}

.footer-nav-list-item__link:hover {
  text-decoration: underline;
}

.footer-summary .footer-summary-partners__title,
.footer-summary .footer-summary-pays__title {
  font-weight: bold;
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.footer-summary .footer-summary-partners__list,
.footer-summary .footer-summary-pays__list {
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-summary__item:not(:first-child) {
  margin-top: 1.25rem;
}

.footer-summary-partners {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #E1EDF4;
}

.footer-summary-partners__top {
  display: flex;
  justify-content: space-between;
}

.footer-summary-partners__all {
  display: flex;
  align-items: center;
}

.footer-summary-partners__all:hover p {
  color: #fff;
}

.footer-summary-partners__all p {
  transition: 0.2s;
  margin-right: 0.5rem;
  font-size: 0.75rem;
  color: #8F97A1;
}

.footer-summary-partners__all div {
  display: flex;
  align-items: center;
}

.footer-summary-partners__all img {
  width: 0.875rem;
}

.footer-summary-partners-item {
  max-width: 32%;
}
.footer-summary-partners-item img {
  width: 7.1875rem;
  max-width: 100%;
  max-height: 3rem;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer-summary-pays-1 img {
  width: 6.5625rem;
}

.footer-summary-pays-2 img {
  width: 6rem;
}

.footer-summary-pays-3 img {
  width: 4.5rem;
}

.footer-bot {
  margin-top: 1.625rem;
  padding-top: 1.375rem;
  border-top: 1px solid #E1EDF4;
  display: flex;
  justify-content: space-between;
}

.footer-bot__shield {
  font-weight: 300;
  font-size: 0.75rem;
  color: #FBFBFB;
}

.footer-bot-author {
  display: flex;
  align-items: center;
}

.footer-bot-author__label {
  font-size: 0.75rem;
  color: #FBFBFB;
}

.footer-bot-author__img {
  margin-left: 0.5625rem;
  width: 4.875rem;
  display: inline-flex;
}

.footer-bot-author__img img {
  width: 100%;
  transition: 0.2s ease;
}

.footer-bot-author:hover img {
  transform: scale(1.05);
}

.pagination {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
}

.pagination-numbers {
  display: flex;
  align-items: center;
}

.pagination-numbers > span {
  margin-right: 0.5rem;
}

.pagination-numbers__item {
  font-weight: 500;
  cursor: pointer;
}

.pagination-numbers__item:hover {
  color: #6C7AFC;
}

.pagination-numbers__item:not(:last-child) {
  margin-right: 0.5rem;
}

.pagination-numbers__item_active {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #AF86F2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pagination-numbers__item_active:hover {
  color: #fff;
}

.pagination__arrow-prev {
  transform: rotate(90deg);
  margin-right: 0.5rem;
  transition: 0.3s ease;
}

.pagination__arrow-prev:hover {
  transform: rotate(90deg) scale(1.35);
}

.pagination__arrow-next {
  transform: rotate(-90deg);
  margin-left: 0.5rem;
  transition: 0.3s ease;
}

.pagination__arrow-next:hover {
  transform: rotate(-90deg) scale(1.5);
}

.pagination__label-prev {
  margin-right: 1rem;
}

.pagination__label-prev:hover {
  text-decoration: underline;
}

.pagination__label-next {
  margin-left: 1rem;
}

.pagination__label-next:hover {
  text-decoration: underline;
}

.home-page .preview {
  height: 25rem;
}

.home-page .slider {
  position: relative;
  width: 62.5rem;
  margin-bottom: 9px;
  max-height: 25rem;
  overflow: hidden;
}

.home-page .slider .slide {
  height: 25rem;
  width: 100%;
  border-radius: 0.875rem;
  outline: none;
}

.home-page .slider .slide {
  background: linear-gradient(180deg, #F2F5FA 100%, #EDF5FF 100%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: inset 0 0.375rem 1.25rem rgba(116, 159, 223, 0.15);
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
}

.home-page .slider .slide .slide__wrap {
  padding-left: 6.25rem;
  position: relative;
}

.home-page .slider .slide__btn {
  background: -webkit-gradient(278.52deg, rgba(99, 47, 184, 0.7) -5.43%, #bd95ff 77.91%);
  background: linear-gradient(278.52deg, rgba(99, 47, 184, 0.7) -5.43%, #bd95ff 77.91%);
  border-radius: 0rem 0.375rem 0rem 0.5rem;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  font-weight: 300;
  font-size: 0.625rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-page .slider .slide__title {
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #4B535E;
  width: 20rem;
  margin-top: 0.75rem;
}

.home-page .slider .slide__desc {
  font-size: 0.9375rem;
  line-height: 1.125rem;
  color: #8F97A2;
  width: 24.25rem;
  margin-top: 1rem;
}

.home-page .slider .slide-all {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  outline: none;
  transition: 0.2s ease;
  cursor: pointer;
}

.home-page .slider .slide-all:hover {
  opacity: 0.8;
}

.home-page .slider .slide-all p {
  margin-right: 0.625rem;
  font-size: 0.8125rem;
  color: #4B535E;
}

.home-page .slider .slide-all div img {
  width: 0.875rem;
}

.home-page__bottom {
  margin-top: 0.625rem;
}

.home-page .left-banners .left-banner {
  position: relative;
  margin-bottom: 0.625rem;
  width: 16.5625rem;
  height: 15.4375rem;
  border-radius: 0.875rem;
  overflow: hidden;
  display: block;
  transition: 0.2s ease;
  background-color: linear-gradient(318.29deg, #294C7E -2.28%, #404c5e 63.29%);
  background-size: cover;
  background-position: center;
}
.home-page .left-banners .left-banner:hover {
  box-shadow: 0 0 1rem 1px rgba(0, 0, 0, 0.3);
}

.home-page .left-banners .left-banner img {
  transition: 0.2s ease;
}

.home-page .left-banners .left-banner:hover img {
  transform: scale(1.1);
}

.home-page .left-banners .left-banner p {
  color: #fff;
}

.home-page .left-banners .left-banner .title1 {
  font-size: 1.375rem;
  line-height: 1.18181818;
  text-transform: uppercase;
  position: absolute;
  left: 2.125rem;
  top: 2.25rem;
}

.home-page .left-banners .left-banner .title2 {
  position: absolute;
  left: 7.8125rem;
  top: 7.125rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
}

.home-page .left-banners .left-banner .title3 {
  position: absolute;
  top: 7.0625rem;
  left: 8.75rem;
  font-size: 2.75rem;
  text-transform: uppercase;
}

.home-page .section__banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.625rem;
}

.home-page .section .small-banner {
  height: 9.375rem;
  border-radius: 0.875rem;
  position: relative;
  padding-left: 1.5625rem;
  transition: 0.2s ease;
  overflow: hidden;
}

.home-page .section .small-banner:hover .small-banner__link div {
  opacity: 1;
}

.home-page .section .small-banner:hover {
  box-shadow: 0 0 1rem 1px rgba(0, 0, 0, 0.3);
}

.home-page .section .small-banner__title {
  position: absolute;
  top: 50%;
  left: 2.25rem;
  width: 16rem;
  transform: translateY(-50%);
  font-size: 1.125rem;
  line-height: 1.16666667;
  text-transform: uppercase;
  color: #fff;
  transition: 0.2s ease;
}

.home-page .section .small-banner__link {
  position: absolute;
  top: 50%;
  right: 2.25rem;
  transform: translateY(-46%);
  font-size: 1rem;
  line-height: 1.15384615;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 4.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.25rem;
  width: 7rem;
}

.home-page .section .small-banner__link span {
  font-weight: 300;
}

.home-page .section .small-banner__link div {
  margin-top: 0.4375rem;
  opacity: 0;
  transition: 0.2s ease;
  display: inline-flex;
}

.home-page .section .small-banner-1 {
  background: -webkit-gradient(247.34deg, #7A4FC0 -3.96%, #bd95ff 75.32%);
  background: linear-gradient(247.34deg, #7A4FC0 -3.96%, #bd95ff 75.32%);
}

.home-page .section .small-banner__img {
  position: absolute;
  left: 12.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 9.5rem;
}

.home-page .section .small-banner-2 {
  background: linear-gradient(253.38deg, #4C5BE2 11.14%, #707eff 78.07%);
}

.home-page .products {
  margin-top: 1.5rem;
}

.home-page .products__panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-page .products__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  white-space: nowrap;
}

.home-page .products__all {
  display: flex;
  align-items: center;
  transition: 0.2s ease;
  opacity: 0.7;
  font-size: 12px;
}

.home-page .products__all:hover {
  opacity: 1;
}

.home-page .products__all div {
  margin-left: 0.5rem;
  display: flex;
  align-items: flex-end;
}

.home-page .products__all div img {
  width: 0.875rem;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

.products__list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 15.0625rem);
  justify-content: space-between;
  grid-row-gap: 0.625rem;
}

.favorite-page .products__list {
  margin-top: 1.5rem;
  grid-template-columns: repeat(5, 15.425rem);
  grid-row-gap: 0.625rem;
}

.big-banner {
  position: relative;
  height: 8.75rem;
  background: linear-gradient(266.88deg, #293E5B 9.36%, #4b535e 89.73%);
  border-radius: 0.875rem;
  padding: 0 2.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0;
  transition: 0.2s ease;
}

.big-banner:hover {
  box-shadow: 0 0 1rem 1px rgba(0, 0, 0, 0.3);
}

.big-banner__title {
  font-size: 1.125rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

.big-banner__img {
  width: 15.875rem;
  position: absolute;
  bottom: 0;
  left: 25.1875rem;
}

.big-banner__desc {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.375rem;
}

.home-page .form {
  background: linear-gradient(246.71deg, #3A4BE4 15.46%, #bd95ff 79.24%);
  height: 6.6875rem;
  border-radius: 0.875rem;
  margin-top: 1.5rem;
  padding: 0 2.1875rem;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

/*.home-page .form {
    margin: 0 auto;
}*/
.home-page .form:after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 7px;
  background: url("../images/back-form-mail.svg") no-repeat center;
  background-size: contain;
  background-position: center left;
}

.home-page .form__title {
  font-size: 1.125rem;
  line-height: 1.3;
  color: #fff;
  position: relative;
  z-index: 1;
}

.home-page .form__title b {
  text-transform: uppercase;
}

.home-page .form__panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 2.5rem;
  position: relative;
  z-index: 1;
}

.home-page .form__input {
  width: 24rem;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 71.5rem;
  outline: 0;
  padding-left: 2.6875rem;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.16666667;
  color: #fff;
  background: transparent;
  background-image: url(../images/msg3.svg);
  background-repeat: no-repeat;
  background-position: center left 0.9375rem;
  background-size: 0.9375rem;
  margin-right: 0.5rem;
  transition: 0.2s ease;
}

.home-page .form__input::-moz-placeholder {
  -moz-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-page .form__input:-ms-input-placeholder {
  -ms-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-page .form__input::-ms-input-placeholder {
  -ms-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-page .form__input::placeholder {
  transition: 0.2s ease;
}

.home-page .form__input:focus::-moz-placeholder {
  text-indent: 100%;
}

.home-page .form__input:focus:-ms-input-placeholder {
  text-indent: 100%;
}

.home-page .form__input:focus::-ms-input-placeholder {
  text-indent: 100%;
}

.home-page .form__input:focus::placeholder {
  text-indent: 100%;
}

.home-page .form__input:hover {
  box-shadow: 0 0 0.25rem 0.13rem rgba(255, 255, 255, 0.2);
}

.home-page .form__input::-moz-placeholder {
  color: inherit;
}

.home-page .form__input:-ms-input-placeholder {
  color: inherit;
}

.home-page .form__input::-ms-input-placeholder {
  color: inherit;
}

.home-page .form__input::placeholder {
  color: inherit;
}

.home-page .form__btn {
  color: #000;
  border-radius: 1000px;
  width: 9.625rem;
  height: 100%;
  background: #fff;
  font-weight: 500;
  font-size: 0.8125rem;
  transition: 0.2s;
}

.home-page .form__btn:hover {
  box-shadow: 0 0 0.5rem 0.1875rem rgba(255, 255, 255, 0.542);
}

.home-page .info {
  margin-top: 1.875rem;
  border-top: 1px solid #E1EDF4;
}

.home-page .info .text-block {
  margin-top: 1.125rem;
}

.home-page .info .text-block__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
}

.home-page .info .text-block__desc {
  font-size: 0.8125rem;
  line-height: 1.2;
  color: #8F97A1;
  margin-top: 0.625rem;
}

.home-page .info-section-row {
  display: flex;
  margin-top: 1.875rem;
}

.home-page .info-section-row__left {
  padding-right: 1.125rem;
  border-right: 1px solid #DCDCDC;
  display: flex;
  align-items: center;
}

.home-page .info-section-row__left img {
  width: 2.625rem;
}

.home-page .info-section-row__right {
  margin-left: 1rem;
}

.home-page .info-section-row__title {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #4B535E;
}

.home-page .info-section-row__right p {
  font-size: 0.8125rem;
  line-height: 1.2;
  color: #8F97A1;
  margin-top: 0.375rem;
}

.catalog-page .panel {
  margin-top: 1rem;
}

.catalog-page .panel__count {
  font-weight: 500;
  font-size: 1.25rem;
}

.catalog-page .panel-settings {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalog-page .panel-settings__title {
  font-size: 1.25rem;
  font-weight: 500;
}

.catalog-page .panel-settings__wrap {
  display: flex;
}

.catalog-page .panel-settings-config {
  font-size: 0.75rem;
}

.catalog-page .panel-settings-config__option {
  margin-left: 0.75rem;
  color: #B0C1DB;
}

.catalog-page .panel-settings-config__option:hover {
  color: #6C7AFC;
}

.catalog-page .panel-settings-config__option_active {
  color: #6C7AFC;
  font-weight: 700;
}

.catalog-page .panel-settings__show {
  margin-left: 3.125rem;
}

.catalog-page__main {
  margin-top: 1rem;
}

.catalog-page .filter {
  background: #fff;
  padding: 1rem 0.75rem;
  border-radius: 0.875rem;
}

.catalog-page .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6875rem;
}

.catalog-page .filter-header__title {
  font-weight: 500;
  font-size: 1.25rem;
}

.catalog-page .filter-header__img {
  transform: rotate(180deg);
}

.catalog-page .filter-header__img img {
  width: 0.4375rem;
}

.catalog-page .filter-range {
  margin-top: 0.625rem;
  padding-bottom: 1rem;
}

.catalog-page .filter-range__inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.catalog-page .filter-range-input {
  width: 7.3125rem;
}

#ranger-app {
  color: #444;
}

.filter-range .range-slider {
  width: 240px;
  padding: 1em;
  background: rgba(238, 238, 238, 0.7);
  border-radius: 7px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.filter-range .values-group {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 0.7em;
  font-family: Calibri, Arial;
  font-size: 18px;
}

.filter-range .value {
  padding: 0.5rem;
  border: 1px solid rgba(199, 205, 212, 0.5);
  border-radius: 14px;
  display: block;
  max-width: 47%;
  outline: none;
  text-align: center;
  font-size: 0.6875rem;
  transition: 0.1s;
}

.filter-range .value:focus {
  border-color: #BD95FF;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.filter-range .track {
  border: 1px solid rgba(199, 205, 212, 0.5);
  border-radius: 0.1875rem;
  background: #fff;
  position: relative;
  height: 0.375rem;
}

.filter-range .thumb {
  position: absolute;
  top: 0;
  left: 0;
  cursor: ew-resize;
}

.filter-range .thumb::after {
  position: absolute;
  content: "";
  background: #BD95FF;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0.125rem;
  height: 0.875rem;
  width: 0.25rem;
  cursor: pointer;
  z-index: 2;
}

.filter-range .thumb-min::after {
  transform: translate(-50%, -5px);
}

.filter-range .thumb-max::after {
  transform: translate(-50%, -5px);
}

.filter-range .selection {
  border-radius: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  background: linear-gradient(to right, #bd95ff, #ab8cfd, #9884fb, #827cf9, #6775f7);
}

.filter-range .text {
  display: initial;
  margin-bottom: 0.5em;
}

.filter-range .thumb-max.active::after {
  border-color: tomato transparent transparent transparent;
}

.filter-range .thumb-min.active::after {
  border-color: transparent transparent tomato transparent;
}

.filter-range .hide {
  display: none;
}

.range-slider-indicators__item {
  font-size: 0.625rem;
  line-height: 120%;
  color: #C7CDD4;
}

.range-slider-indicators {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4375rem;
}

.catalog-page .filter-section {
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding: 1.25rem 0;
}

.catalog-page .filter-section-header {
  display: flex;
  justify-content: space-between;
  align-content: start;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.catalog-page .filter-section-header__img {
  display: flex;
  align-items: center;
}

.catalog-page .filter-section-header__img__title {
  font-weight: 500;
  font-size: 0.875rem;
}

.catalog-page .filter-section-header__img img {
  transition: border-color 0.2s;
}

.catalog-page .filter-section-options {
  margin-top: 1rem;
}

.catalog-page .filter-section-options-item {
  display: flex;
  align-items: center;
}

.catalog-page .filter-section-options-item:hover {
  cursor: pointer;
}

.catalog-page .filter-section-options-item:not(:first-child) {
  margin-top: 1rem;
}

.catalog-page .filter-section-options-item input[type=checkbox] {
  display: none;
}

.catalog-page .filter-section-options-item input[type=checkbox]:checked + span {
  border: 1px solid #BD95FF;
  background-image: url(../images/check.svg);
  background-size: 0.375rem;
  background-repeat: no-repeat;
  background-position: center;
}

.catalog-page .filter-section-options-item input[type=checkbox]:hover + span {
  border: 1px solid #BD95FF;
  cursor: pointer;
}

.catalog-page .filter-section-options-item span {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid rgba(199, 205, 212, 0.5);
  border-radius: 0.1875rem;
  transition: border 0.2s ease;
}

.catalog-page .filter-section-options-item__label {
  margin-left: 0.4375rem;
  font-size: 0.75rem;
  line-height: 120%;
}

.catalog-page .filter-reset {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.125rem;
  cursor: pointer;
}

.catalog-page .filter-reset__img {
  margin-left: 0.375rem;
}

.catalog-page .filter-reset__label {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 120%;
  color: #C7CDD4;
  transition: 0.2s;
}

.catalog-page .filter-reset__label:hover {
  color: #aaaaaa;
}

.catalog-page-categories {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, 100px);
  align-items: flex-start;
  justify-content: space-around;
  margin: 1rem 0 2rem;
}

.category-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.category-block__link-image {
  display: flex;
  align-items: center;
  height: 100px;
  margin-bottom: 0.5rem;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.category-block__link-image:hover {
  opacity: 0.8;
}
.category-block__image {
  max-width: 100%;
  max-height: 100px;
}
.category-block__title {
  display: block;
  font-size: 0.725rem;
}
.category-block__title:hover {
  color: #bd95ff;
}

.catalog-page-products__list {
  display: grid;
  grid-template-columns: repeat(4, 15.0625rem);
  justify-content: space-between;
  grid-row-gap: 0.625rem;
}

.catalog-page__pagination, .static-page__pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2.25rem;
}

.contacts-page__content {
  margin-top: 1rem;
}

.contacts-page .contacts-title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #4B535E;
}

.contacts-page .contacts__title {
  font-weight: 500;
  font-size: 1.25rem;
}

.contacts-page .contacts__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 0.625rem;
  min-height: 21.625rem;
  align-items: center;
}

.contacts-page .contact {
  border: 1px solid #C4C4C4;
  border-radius: 0.875rem;
  padding: 1rem;
  height: 18.125rem;
  display: flex;
  transition: 0.2s ease;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

/*
.contacts-page .contact:last-child {
  background: #fff;
  height: 20.625rem;
  padding: 3.3rem;
  border: 0.125rem solid #AF86F2;
}
*/
.contacts-page .contact__img {
  width: 2.5rem;
  display: flex;
  align-items: center;
}

.contacts-page .contact__img img {
  width: 100%;
}

.contacts-page .contact__title {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 1.6875rem;
}

.contacts-page .contact__desc {
  display: block;
  margin-top: 1.875rem;
  font-size: 0.8125rem;
  max-width: 150px;
}

.contacts-page .contact__link {
  margin: 1.5rem 0;
  font-size: 0.8125rem;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #AF86F2;
}

.contacts-page .contact__link:hover {
  color: red;
}

.contacts-page .map {
  margin-top: 0.5rem;
}

.contacts-page .map__content {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 0.125rem solid #AF86F2;
  border-radius: 0.875rem;
  margin-top: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-page .map__content .fake-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
}

.contacts-page .callback {
  margin-top: 2rem;
}

.contacts-page .callback-form {
  background: rgba(252, 252, 254, 0.1);
  border: 0.125rem solid #AF86F2;
  border-radius: 0.875rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}

.contacts-page .callback-form input {
  display: block;
  outline: none;
  font-size: 0.8125rem;
  height: 3.25rem;
  border: 1px solid #C4C4C4;
  border-radius: 0.875rem;
  padding-left: 2.25rem;
  transition: 0.2s ease;
  flex-grow: 1;
}

.contacts-page .callback-form input:hover,
.contacts-page .callback-form input:focus {
  border: 1px solid #AF86F2;
}

.contacts-page .callback-form input::-moz-placeholder {
  color: #C7CDD4;
  font-size: inherit;
}

.contacts-page .callback-form input:-ms-input-placeholder {
  color: #C7CDD4;
  font-size: inherit;
}

.contacts-page .callback-form input::-ms-input-placeholder {
  color: #C7CDD4;
  font-size: inherit;
}

.contacts-page .callback-form input::placeholder {
  color: #C7CDD4;
  font-size: inherit;
}

.contacts-page .callback-form input:not(:first-child) {
  margin-left: 1.25rem;
}

.contacts-page .callback-form__btn {
  display: inline-block;
  width: auto;
  margin-left: 1.25rem;
}

.ckeditor-container {
  padding: 10px;
  box-sizing: border-box;
  background-image: none;
  margin-top: 0 !important;
}

.static-page__content {
  margin-top: 1rem;
}

.static-page .preview {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 2.1875rem;
  border-bottom: 1px solid #E1E1E1;
}

.static-page .preview__info {
  max-width: 60.1875rem;
}

.static-page a {
  color: #b086f1;
}
.static-page a:hover {
  text-decoration: underline;
}

.static-page {
  font-size: 0.8125rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.static-page .preview__img {
  position: absolute;
  top: 0.75rem;
  right: -0.75rem;
}

.static-page .preview__img img {
  display: block;
  width: 19.25rem;
}

.static-page .indicators {
  margin-top: 2rem;
}

.static-page .indicators__list {
  margin-top: 2.25rem;
  display: flex;
}

.static-page .indicators__item-wrapper:not(:first-child) {
  margin-left: 3.3125rem;
}

.static-page .indicator {
  position: relative;
  width: 11.75rem;
  height: 11.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.static-page .indicator__info {
  position: relative;
  z-index: 11;
}

.static-page .indicator__title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 120%;
  text-align: center;
}

.static-page .indicator__desc {
  font-size: 0.8125rem;
  line-height: 120%;
  text-align: center;
}

.static-page .indicator__thumb {
  position: absolute;
  z-index: 1;
  width: 1.4375rem;
}

.static-page .indicator__thumb-min {
  width: 1.0625rem;
}

.static-page .indicator .progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.static-page .indicator .progress-ring img {
  width: 100%;
  display: block;
}

.static-page .descriptions {
  margin-top: 2.1875rem;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 2.8125rem;
}

.static-page .descriptions__text {
  line-height: 1.6;
  font-size: 0.8125rem;
  margin-top: 1.375rem;
}

.static-page .descriptions__list {
  display: flex;
  margin-top: 2.1875rem;
}

.static-page .descriptions__wrapper {
  width: 50%;
}

.static-page .descriptions__wrapper:nth-child(1) {
  padding-right: 6.6875rem;
  border-right: 1px solid #E1E1E1;
}

.static-page .descriptions__wrapper:nth-child(2) {
  padding-left: 4.75rem;
}

.static-page .descriptions__wrapper > div:not(:first-child) {
  margin-top: 2.3125rem;
}

.static-page .descriptions .description {
  display: flex;
  font-size: 0.8125rem;
}

.static-page .descriptions .description__title {
  font-weight: 500;
}

.static-page .descriptions .description__desc {
  line-height: 1.15384615;
  color: #ABB2BC;
  margin-top: 0.5rem;
}

.static-page .descriptions .description__left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.1875rem;
  height: 2.1875rem;
  background: linear-gradient(to right, #bd95ff, #ab8cfd, #9884fb, #827cf9, #6775f7);
  border-radius: 0.5625rem;
  flex-shrink: 0;
}

.static-page .descriptions .description__left img {
  width: 1.125rem;
}

.static-page .descriptions .description__right {
  margin-left: 0.8125rem;
}

.static-page .advantages {
  margin-top: 2.1875rem;
}

.static-page .advantages__title {
  font-weight: 500;
  font-size: 1rem;
}

.static-page .advantages__desc {
  line-height: 1.6;
  font-size: 0.8125rem;
  margin-top: 1.125rem;
}

.static-page .advantages__list {
  position: relative;
  display: flex;
  margin-top: 2.25rem;
}

.static-page .advantages__wrapper {
  width: 50%;
}

.static-page .advantages__wrapper:nth-child(1) {
  padding-right: 6.6875rem;
  border-right: 1px solid #E1E1E1;
}

.static-page .advantages__wrapper:nth-child(2) {
  padding-left: 3rem;
  padding-right: 3rem;
}

.static-page .advantages__wrapper > div:not(:first-child) {
  margin-top: 2.375rem;
}

.static-page .advantages .advantage {
  width: 100%;
  display: flex;
  align-items: center;
}

.static-page .advantages .advantage__left {
  width: 2.6875rem;
  flex-shrink: 0;
}

.static-page .advantages .advantage__left img {
  width: 100%;
}

.static-page .advantages .advantage__right {
  margin-left: 1.625rem;
}

.static-page .advantages .advantage__title {
  font-weight: 500;
  font-size: 0.8125rem;
}

.static-page .advantages .advantage__desc {
  font-size: 0.8125rem;
  line-height: 1.15;
  margin-top: 0.625rem;
}

.buy-page__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.4375rem;
  margin-top: 1rem;
  grid-template-areas: "title title2" "main side";
}

.buy-page__title {
  font-weight: 500;
  font-size: 1.25rem;
  grid-area: title;
}

.buy-page__title2 {
  font-weight: 500;
  font-size: 1.25rem;
  grid-area: title2;
  display: none;
}

.buy-page__main {
  grid-area: main;
}

.buy-page__side {
  grid-area: side;
}

.buy-page .buy-radio {
  height: 9.125rem;
  position: relative;
  cursor: pointer;
}

.buy-page .buy-radio:hover .buy-radio__wrapper {
  box-shadow: 0 0 0.625rem 1px #e9e9e9;
}

.buy-page .buy-radio__wrapper {
  transition: 0.2s;
  width: 100%;
  height: 100%;
  border-radius: 0.875rem;
  border: 0.125rem solid rgba(199, 205, 212, 0.5);
  padding: 1.25rem 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.buy-page .buy-radio__title {
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
}

.buy-page .buy-radio__desc {
  font-size: 0.75rem;
  line-height: 120%;
}

.buy-page .buy-radio__price {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 120%;
  text-transform: uppercase;
  color: #6876F8;
}

.buy-page .buy-radio input {
  display: none;
}

.buy-page .buy-radio input:checked + .buy-radio__wrapper {
  border-color: #AF86F2;
}

.buy-page .buy-page-block {
  padding: 1.875rem 3.125rem;
  background: #FCFCFE;
  border: 0.125rem solid #AF86F2;
  border-radius: 0.875rem;
  margin-bottom: 0.875rem;
}

.buy-page .buy-page-block_inactive .buy-page-block__content {
  display: none;
}

.buy-page .buy-page-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.buy-page .buy-page-block__title {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 120%;
}

.buy-page .buy-page-block__title span {
  color: #AF86F2;
  padding-right: 1rem;
}

.buy-page .buy-page-block__arrow {
  cursor: pointer;
  padding: 0.375rem;
}

.buy-page .buy-page-block__arrow img {
  width: 0.625rem;
  display: block;
}

.buy-page .buy-page-block__content {
  margin-top: 2.25rem;
}

.buy-page .buy-first-form {
  display: block;
  margin-top: 1.5rem;
}

.buy-page .buy-first-form__inputs {
  display: grid;
  grid-template-columns: 17.5rem 8.5rem 8.5rem 8.5rem;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.buy-page .buy-first-form-delivery__radio-buttons {
  margin-top: 0.625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.5rem;
}

.buy-page .buy-second-form__inputs {
  margin-top: 1.6875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1rem;
}

.buy-page .buy-second-form__comment {
  margin-top: 1.375rem;
}

.buy-page .buy-second-form .input-group textarea {
  height: 5.5rem;
  padding: 1.5rem;
  resize: none;
}

.buy-page .buy-third-form__title {
  font-size: 0.875rem;
  line-height: 120%;
}

.buy-page .buy-third-form__radio-buttons {
  margin-top: 0.6875rem;
  display: grid;
  grid-template-columns: repeat(2, 14.875rem);
  grid-column-gap: 1.5rem;
}

.buy-page .buy-third-form__radio-buttons .buy-radio__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.buy-page .buy-third-form__panel {
  margin-top: 1.6875rem;
  display: flex;
  align-items: center;
}

.buy-page .buy-third-form__btn {
  padding-left: 3.25rem;
  padding-right: 3.25rem;
  width: auto;
}

.buy-page .buy-third-form__confirm {
  font-size: 0.75rem;
  line-height: 120%;
  color: #ABB2BC;
  width: 23.75rem;
  margin-left: 1.5rem;
}

.buy-page .order {
  background: #fff;
  padding: 1.5625rem;
  border-radius: 0.875rem;
}

.buy-page .order__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 120%;
}

.buy-page .order__products {
  margin-top: 1.4375rem;
  max-height: 15.875rem;
  overflow-y: auto;
  padding-right: 0.625rem;
}

.buy-page .order__products::-webkit-scrollbar-track {
  background-color: #eee;
}

.buy-page .order__products::-webkit-scrollbar {
  background-color: transparent;
  width: 0.1875rem;
}

.buy-page .order__products::-webkit-scrollbar-thumb {
  background: #B994FF;
  border-radius: 0.5rem;
}

.buy-page .order-product {
  position: relative;
  display: flex;
  padding: 1.1875rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.buy-page .order-product__photo {
  width: 4.875rem;
  height: 5.5rem;
  position: relative;
  overflow: hidden;
}

.buy-page .order-product__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.buy-page .order-product-info {
  padding: 0.3125rem 0;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 9.375rem;
}

.buy-page .order-product-info__title {
  width: 100%;
  font-weight: 500;
  font-size: 0.875rem;
}
.buy-page .order-product-info__title:hover {
  text-decoration: underline;
}

.buy-page .order-product-info__id {
  font-size: 0.6875rem;
  color: #ABB2BC;
  margin-top: 0.5rem;
}

.buy-page .order-product-info-price {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.buy-page .order-product-info-price__old {
  font-size: 0.6875rem;
  text-align: center;
  color: #C4C8F0;
  margin-right: 0.375rem;
}
.buy-page .order-product-info-price__current {
  font-weight: bold;
  font-size: 1.25rem;
  color: #6C7AFC;
}

.buy-page .order-product-panel {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.buy-page .order-product-panel__bin {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}

.buy-page .order-product-panel__bin img {
  width: 1rem;
}

.buy-page .order-product-panel__bin:hover {
  background: rgba(238, 238, 238, 0.5);
}

.buy-page .order-product-panel-counter {
  display: flex;
  align-items: center;
}

.buy-page .order-product-panel-counter .order-product-panel-counter__less,
.buy-page .order-product-panel-counter .order-product-panel-counter__more {
  width: 0.9375rem;
  height: 0.9375rem;
  background: #ECECFA;
  border-radius: 50%;
  line-height: 0.9375rem;
  text-align: center;
  color: #AF86F2;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.order-product-panel-counter__less.disabled {
  pointer-events: none;
  opacity: 0.5;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.buy-page .order-product-panel-counter .order-product-panel-counter__less:hover,
.buy-page .order-product-panel-counter .order-product-panel-counter__more:hover {
  transform: scale(1.2);
}

.buy-page .order-product-panel-counter__qty {
  margin: 0 0.875rem;
}

.buy-page .order-info {
  margin-top: 1.25rem;
}

.buy-page .order-info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.875rem;
  line-height: 120%;
  margin-bottom: 0.625rem;
}

.buy-page .order-info-item:last-child {
  margin-bottom: 0;
}

.buy-page .order-info-item__space {
  flex-grow: 1;
}

.buy-page .order-info-item__space span {
  display: block;
  margin: 0 auto;
  width: 95%;
  border-bottom: 0.1375rem dotted #ccc;
  position: relative;
  top: -0.125rem;
}

.buy-page .order-info-item__value {
  color: #B793FF;
  font-weight: 500;
}

.buy-page .order-footer {
  margin-top: 1.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buy-page .order-footer__btn {
  width: 13.625rem;
}

.buy-page .order-footer-total {
  text-align: right;
}

.buy-page .order-footer-total__label {
  font-size: 0.875rem;
  line-height: 120%;
  color: #ABB2BC;
}

.buy-page .order-footer-total__sum {
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 120%;
  color: #6876F8;
}

.product-page__content {
  margin-top: 1rem;
}

.product-page__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #4B535E;
  margin-bottom: inherit;
}

.product-page .product-slider {
  display: grid;
  grid-template-columns: 6.75rem 26.75rem;
}

.product-page .product-slider * {
  outline: none !important;
}

/*.product-page .slider-nav .slick-track {
    display: flex;
    flex-direction: column;
}*/
.product-page .product-slider .slider-nav-slide {
  height: 6.4rem;
  width: 6.75rem;
  padding-bottom: 0.5625rem;
}

.product-page .product-slider .slider-nav-slide:hover {
  cursor: pointer;
}

.product-page .product-slider .slider-nav-slide:hover > div {
  box-shadow: 0 0 1px 1px #AF86F2;
}

.product-page .product-slider .slider-nav-slide.slick-current.slick-active:hover .slider-nav-slide__wrap {
  box-shadow: none;
}

.product-page .product-slider .slider-nav-slide .slider-nav-slide__wrap {
  background: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0.875rem;
  position: relative;
  overflow: hidden;
  transition: 0.2s ease;
}
.product-page .product-slider .slider-nav-slide .slider-nav-slide__wrap.video {
  background-image: url("../images/play.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 36px;
}

.product-page .product-slider .slider-nav-slide .slider-nav-slide__wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-page .product-slider .slick-slide.slick-current .slider-nav-slide__wrap {
  border: 0.125rem solid #AF86F2;
}

.product-page .product-slider .slider-for {
  margin-left: 0.5rem;
  background: #fff;
  border-radius: 0.875rem;
  overflow: hidden;
}

.slick-slider div {
  transition: none;
}

.product-page .product-slider .slider-for-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 27rem;
  max-height: 28rem;
}
.product-page .product-slider .slider-for-slide.youtube iframe {
  width: 100%;
  height: 100%;
}

.product-page .product-slider .slider-for-slide .panel__id {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
}

.product-page .product-slider .slider-for-slide__content {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-page .about {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-page .panel {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}

.product-page .panel__left {
  display: flex;
  align-items: center;
}

.product-page .panel-stars {
  display: flex;
}

.product-page .panel-stars__item {
  margin-right: 0.25rem;
  color: #ececec;
}

.product-page .panel-stars__item_active {
  color: #BD95FF;
}

.product-page .panel-stars__item svg {
  width: 0.8125rem;
  height: 0.75rem;
}

[data-selected-rating="1"] .panel-stars__item:nth-child(-n+1), [data-selected-rating="1"] .form-rating__star:nth-child(-n+1) {
  color: #BD95FF;
}

[data-selected-rating="2"] .panel-stars__item:nth-child(-n+2), [data-selected-rating="2"] .form-rating__star:nth-child(-n+2) {
  color: #BD95FF;
}

[data-selected-rating="3"] .panel-stars__item:nth-child(-n+3), [data-selected-rating="3"] .form-rating__star:nth-child(-n+3) {
  color: #BD95FF;
}

[data-selected-rating="4"] .panel-stars__item:nth-child(-n+4), [data-selected-rating="4"] .form-rating__star:nth-child(-n+4) {
  color: #BD95FF;
}

[data-selected-rating="5"] .panel-stars__item:nth-child(-n+5), [data-selected-rating="5"] .form-rating__star:nth-child(-n+5) {
  color: #BD95FF;
}

.product-page .panel__btn {
  margin-left: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  color: #ABB2BC;
}

.product-page .panel__btn:hover, .product-page .panel__btn.actived {
  color: #6C7AFC;
  cursor: pointer;
}

.product-page .panel__btn.add-favorite:not(.actived) img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.5;
}

.product-page .panel__btn img {
  margin-right: 0.5rem;
  width: 0.875rem;
  display: block;
}

.product-page .share__block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-left: 1rem;
  transition: 0.5s;
  position: relative;
}
.product-page .share__block .panel__btn {
  margin-left: 0;
}
.product-page .share__block:focus, .product-page .share__block:focus-within {
  outline: none;
}
.product-page .share__block:focus:before, .product-page .share__block:focus-within:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 12px;
  border: 6px solid transparent;
  border-bottom: 6px solid white;
  z-index: 11;
}
.product-page .share__block:focus .panel__btn, .product-page .share__block:focus-within .panel__btn {
  color: #6C7AFC;
}
.product-page .share__block:focus .ya-share2, .product-page .share__block:focus-within .ya-share2 {
  max-height: 400px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 0 0.5rem 0.125rem rgba(0, 0, 0, 0.07);
}
.product-page .share__block:focus .ya-share2 .ya-share2__container, .product-page .share__block:focus-within .ya-share2 .ya-share2__container {
  opacity: 1;
}

.ya-share2 {
  transition: 0.5s;
  max-height: 0;
  position: absolute;
  z-index: 1;
  width: 100px;
  border-radius: 6px;
  top: calc(100% + 10px);
  left: -6px;
}
.ya-share2 .ya-share2__container {
  opacity: 0;
  transition: 0.5s;
}

.product-page .panel__id {
  font-size: 0.75rem;
  letter-spacing: 0.0437rem;
  color: #4B535E;
}

.product-page .panel__id span {
  font-weight: 700;
}

.product-page__desc-and-price {
  display: flex;
}

.product-page .descriptions {
  align-self: flex-start;
}

.product-page .descriptions-item {
  width: 26.25rem;
}

.product-page .descriptions-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-page .descriptions-item-title-left {
  font-weight: 500;
  font-size: 0.8125rem;
  color: #4B535E;
}

.product-page .descriptions-item-title-right {
  display: flex;
  align-items: center;
}

.product-page .descriptions-item-title-right__img {
  display: flex;
  align-items: center;
}

.product-page .descriptions-item-title-right__img img {
  width: 0.375rem;
}

.product-page .descriptions-item-title-right__label {
  font-weight: 500;
  font-size: 0.75rem;
  color: #6876F8;
  margin-left: 0.375rem;
}

.product-page .descriptions-item-param {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0.875rem;
  max-width: 600px;
}

.product-page .descriptions-item-param__key {
  font-size: 0.8125rem;
  color: #ABB2BC;
}

.product-page .descriptions-item-param__value {
  font-weight: 500;
  font-size: 0.8125rem;
  color: #4B535E;
}

.product-page .descriptions-item-param__space {
  flex-grow: 1;
}

.product-page .descriptions-item-param__space span {
  display: block;
  margin: 100%;
  margin: 0 0.1875rem;
  border-bottom: 2.2px dotted #ccc;
  position: relative;
  top: -0.125rem;
}

.product-page .descriptions-item:not(:last-child) {
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #eee;
  margin-bottom: 1.25rem;
}

.product-page .descriptions-all {
  display: flex;
  align-items: center;
  margin-top: 1.625rem;
}

.product-page .descriptions-all__img {
  display: flex;
  align-items: center;
}

.product-page .descriptions-all__img img {
  width: 0.875rem;
}

.product-page .descriptions-all__title {
  font-weight: 500;
  font-size: 0.8125rem;
  color: #545454;
  margin-left: 0.5rem;
  line-height: 1.15384615;
  transition: 0.2s ease;
}

.product-page .descriptions-all__title:hover {
  color: #6876F8;
}

.product-page .buy {
  margin-left: 1.375rem;
  width: 16.4375rem;
}

.product-page .buy-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1.125rem 1.625rem;
  background: #fff;
  border-radius: 0.875rem;
}

.product-page .buy-price__title {
  font-weight: bold;
  font-size: 1.75rem;
  color: #6876F8;
}

.product-page .buy-price__cross {
  font-size: 0.875rem;
  color: #C4C8F0;
  margin-left: 0.5rem;
}

.product-page .buy__cart-btn {
  margin-top: 0.625rem;
}
.product-page .buy__cart-btn.in-cart {
  background: #24921d;
}
.product-page .buy__cart-btn.in-cart:hover {
  box-shadow: 0 0 0.5rem 0.125rem rgba(53, 158, 66, 0.36);
}

.product-page .buy__cart-btn img {
  width: 0.875rem;
}

.product-page .buy__get-btn {
  margin-top: 0.625rem;
}

.product-page .buy__get-btn:hover {
  box-shadow: 0 0 0.5rem 0.125rem rgba(0, 0, 0, 0.05);
}

.product-page .appraisal {
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.desc-content-block {
  display: none;
}

.desc-content-block.opened {
  display: block;
}

.product-page .navigation {
  display: flex;
  border-bottom: 1px solid #E1E1E1;
}

.product-page .navigation__item {
  position: relative;
  top: 0.0625rem;
  margin-right: 2rem;
  font-weight: bold;
  font-size: 0.9375rem;
  padding-bottom: 1rem;
  transition: 0.2s ease;
}

.product-page .navigation__item:not(.navigation__item_active):hover {
  color: #6876F8;
}

.product-page .navigation__item_active {
  color: #6876F8;
  border-bottom: 0.0625rem solid;
}

.product-page .characteristics {
  border-bottom: 1px solid #E1E1E1;
  margin-top: 2.5rem;
}

.product-page .characteristics .descriptions-item__params {
  margin-bottom: 2.5rem;
}

.product-page .characteristics .static-page {
  margin-bottom: 2.5rem;
}

.product-page .characteristics-block {
  margin-bottom: 2.125rem;
}

.product-page .characteristics-block__title {
  font-weight: bold;
  font-size: 0.8125rem;
  color: #4B535E;
  text-transform: uppercase;
  line-height: 1.15;
}

.product-page .characteristics-block__text {
  font-size: 0.8125rem;
  color: #4B535E;
  margin-top: 0.5rem;
  line-height: 1.15;
}

.product-page .reviews-item {
  margin-top: 2.75rem;
}

.product-page .reviews-item:not(:last-child) {
  border-bottom: 1px solid #E1E1E1;
}

.product-page .comment {
  display: flex;
  padding-bottom: 2rem;
}

.product-page .comment.answer {
  margin-left: 6.6875rem;
  padding: 2rem 0;
  border-top: 1px solid #E1E1E1;
}

.product-page .comment-photo {
  width: 4.8125rem;
  height: 4.8125rem;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}

.product-page .comment-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-page .comment-photo_cover {
  background: #b086f1;
}
.product-page .comment-photo_cover.admin {
  background: #6876F8;
}

.product-page .comment-photo_cover img {
  -o-object-fit: initial;
  object-fit: initial;
  width: 1.625rem;
}

.product-page .comment-rating {
  display: inline-flex;
  align-items: center;
  margin-left: 0.75rem;
  margin-top: 0.625rem;
}

.product-page .comment-rating img {
  width: 0.75rem;
  margin-right: 0.375rem;
}

.product-page .comment-rating span {
  font-size: 0.6875rem;
  color: #8F97A1;
}

.product-page .comment__right {
  flex-grow: 1;
  margin-left: 1.875rem;
}

.product-page .comment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.product-page .comment-info__product {
  width: 100%;
  margin-top: 0.5rem;
}

.product-page .comment-info__name {
  font-weight: 500;
  font-size: 0.875rem;
  color: #4B535E;
}

.product-page .comment-info__date {
  font-size: 0.625rem;
  line-height: 120%;
  color: #ABB2BC;
}

.product-page .comment__content {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #4B535E;
  margin-top: 0.75rem;
}

.product-page .comment-all {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 1rem;
}

.product-page .comment-all__title {
  font-size: 0.75rem;
  color: #8F97A1;
}

.product-page .comment-all__img {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
}

.product-page .comment-all__img img {
  width: 0.375rem;
}

.product-page .form {
  border: 2px solid #AF86F2;
  border-radius: 0.875rem;
  padding: 2rem 2.25rem;
  margin-top: 2rem;
}

.product-page .form__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 120%;
  color: #4B535E;
}

.product-page .form__inputs {
  display: flex;
  margin-top: 1.625rem;
}

.product-page .form__inputs .input-group {
  flex-grow: 1;
}

.product-page .form__inputs .input-group:not(:last-child) {
  margin-right: 1rem;
}

.product-page .form__textarea-wrap {
  margin-top: 1.1875rem;
}

.product-page .form__warning-text {
  margin-top: 1.1875rem;
  font-size: 0.875rem;
  line-height: 120%;
  color: #aaa;
}

.product-page .form__textarea-wrap .input-group__input {
  height: 5.5rem;
  resize: none !important;
  padding: 1.25rem;
}

.product-page .form__panel {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
}

.product-page .form__btn {
  display: inline-block !important;
  width: auto;
}

.product-page .form-rating {
  margin-left: 1.875rem;
}

.product-page .form-rating__title {
  font-size: 0.875rem;
  line-height: 120%;
  color: #4B535E;
}

.product-page .form-rating__stars {
  display: flex;
  margin-top: 0.5rem;
}
.product-page .form-rating__stars .form-field-error {
  display: none;
}

.product-page .form-rating__star {
  color: #ECECEC;
  margin-right: 0.25rem;
  cursor: pointer;
}
.product-page .form-rating__star:hover {
  opacity: 0.7;
}
.product-page .form-rating__star input {
  display: none;
}

.product-page .form-rating__star svg {
  width: 1rem;
  height: 1rem;
}

.product-page .form-rating__star_active {
  color: #BD95FF;
}

.product-page .still {
  margin-top: 1.625rem;
}

.product-page .still__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #4B535E;
}

.product-page .still__list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, 15.425rem);
  /* -webkit-box-pack: justify; */
  justify-content: space-between;
  grid-row-gap: 0.625rem;
}

.product-page .banner {
  position: relative;
  margin-top: 1.25rem;
  background: linear-gradient(266.88deg, #293E5B 9.36%, #4b535e 89.73%);
  height: 8.75rem;
  color: #FBFBFB;
  text-transform: uppercase;
  border-radius: 0.875rem;
}

.product-page .banner-desktop {
  padding-left: 2.5rem;
  padding-right: 4.375rem;
  display: flex;
  border-radius: 0.875rem;
  transition: 0.2s ease;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.product-page .banner-desktop:hover {
  box-shadow: 0 0 1rem 1px rgba(0, 0, 0, 0.3);
}

.product-page .banner-desktop__title {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.product-page .banner-desktop__title b {
  font-size: 1.375rem;
}

.product-page .banner-desktop__jewelry {
  position: absolute;
  width: 15.875rem;
  left: 32.625rem;
  bottom: 0;
}

.product-page .banner-desktop__desc {
  font-size: 1.375rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FBFBFB;
}

.product-page .banner-mobile {
  position: relative;
  overflow: hidden;
  display: none;
  height: 100%;
  border-radius: inherit;
}

.product-page .banner-mobile__jewelry {
  position: absolute;
  width: 13.1875rem;
  bottom: -3.4375rem;
  left: -3.75rem;
}

.product-page .banner-mobile__title1 {
  position: absolute;
  font-size: 1.375rem;
  top: 1.125rem;
  right: 11.75rem;
}

.product-page .banner-mobile__title2 {
  position: absolute;
  top: 4.625rem;
  right: 11.5rem;
  font-size: 1.125rem;
}

.product-page .banner-mobile__title3 {
  position: absolute;
  font-size: 2.75rem;
  top: 4.5rem;
  right: 5.6875rem;
}

.partners-list {
  margin: 1rem 0;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 24%);
  justify-content: space-between;
  grid-row-gap: 0.625rem;
}

.partners-list-item {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 0.875rem;
  border: 0.125rem solid rgba(199, 205, 212, 0.5);
  padding: 1.25rem 1.875rem;
  transition: 0.2s;
}
.partners-list-item:hover {
  box-shadow: 0 0 0.625rem 1px #e9e9e9;
  border-color: #AF86F2;
  text-decoration: none !important;
}
.partners-list-item:hover img {
  opacity: 1;
}
.partners-list-item__image {
  width: 100%;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-list-item__image img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(1) brightness(0);
          filter: invert(1) brightness(0);
  opacity: 0.7;
  transition: 0.2s;
}
.partners-list-item__title {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
}

.modal-window-layout {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(47, 47, 47, 0.85);
  left: 0;
  top: 0;
  overflow: auto;
  padding: 30px;
  box-sizing: border-box;
}

body.modals-opened {
  overflow: hidden;
}
body.modals-opened .modal-window-layout {
  visibility: visible;
  display: flex;
  opacity: 0;
  animation: 0.3s 0s show linear both;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-window {
  max-width: 700px;
  width: 90%;
  margin: auto;
  background: #fff;
  padding: 50px;
  box-sizing: border-box;
  text-align: left;
  z-index: 11111;
  display: none;
  position: relative;
  overflow: auto;
  max-height: 100%;
}
.modal-window.opened {
  visibility: visible;
  display: flex;
  opacity: 0;
  animation: 0.3s 0s show linear both;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-window[data-modal-id=one-click], .modal-window[data-modal-id=cart-added] {
  max-width: 600px;
}
.modal-window-content {
  width: 100%;
}
.modal-window-content > * {
  width: 100%;
}
.modal-window .modal-information {
  font-size: 15px;
  color: #777;
  text-align: left;
}
.modal-window .form-field {
  width: 100%;
  margin-bottom: 30px;
}
.modal-window .form-field:last-child {
  margin-bottom: 0;
}
.modal-window .form-field input[type=text] {
  width: 100%;
}
.modal-window .close-modal-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.modal-window .close-modal-btn:hover {
  opacity: 0.7;
}
.modal-window .close-modal-btn:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url("../images/close.svg");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.modal-window .title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 45px;
  text-align: left;
  text-transform: uppercase;
}
.modal-window .image {
  width: 180px;
  height: 180px;
  text-align: center;
  margin: 0 auto 20px;
}
.modal-window .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal-window input[type=text] {
  border: 1px solid #E5E5E5;
  font-weight: 300;
  font-size: 16px;
  line-height: 14px;
  padding: 14px;
  box-sizing: border-box;
  border-radius: 0.75rem;
}
.modal-window .description {
  font-weight: 400;
  font-size: 15px;
  color: #777;
  line-height: 24px;
  margin-bottom: 30px;
  text-align: left;
}
.modal-window .default-btn {
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
}
.modal-window .buttons-control {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-window .buttons-control .close-modal {
  border: 2px solid #dee2e5;
  border-radius: 0.875rem;
}
.modal-window .buttons-control .close-modal:hover {
  background: #fafafa;
}
.modal-window .buttons-control > * {
  margin: 0 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  padding: 16px 3px;
  width: calc(50% - 14px);
  text-align: center;
}

.form-message-success {
  padding: 1rem;
  text-align: center;
  background: #58a24f;
  color: #fff;
  border-radius: 0.5rem;
}

@media (max-width: 1279px) {
  .modal-window-layout .modal-window {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .modal-window-layout .modal-window .modal-window-content .title {
    font-size: 24px;
  }
}
@media (max-width: 620px) {
  .modal-window-layout .modal-window {
    padding: 30px 20px;
  }
  .modal-window-layout .modal-window .modal-window-content .buttons-control {
    flex-wrap: wrap;
  }
  .modal-window-layout .modal-window .modal-window-content .buttons-control .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 479px) {
  .modal-window-layout {
    padding: 30px 15px;
  }
  .modal-window-layout .modal-window {
    padding: 20px;
  }
  .modal-window-layout .modal-window .buttons-control {
    margin-top: 20px;
  }
  .modal-window-layout .modal-window[data-modal-id=review-add] form .review-modal-block .form-field input, .modal-window-layout .modal-window .modal-window[data-modal-id=review-add] form .review-modal-block .form-field textarea, .modal-window-layout .modal-window .modal-window[data-modal-id=review-add] form .review-modal-block .form-field select {
    font-size: 15px;
    padding: 14px 12px;
  }
  .modal-window-layout .modal-window .modal-window-content .title {
    font-size: 18px;
    border-left: 0;
    padding-left: 0;
    margin-bottom: 25px;
  }
  .modal-window-layout .modal-window .modal-window-content .online-form .review-modal-block .form-field .btn {
    width: 100%;
  }
}
.alert-container {
  padding: 100px 0;
  text-align: center;
}
.alert-container .alert-text {
  margin-bottom: 40px;
  font-size: 20px;
}
.alert-container .alert-text a {
  color: #AF86F2;
}
.alert-container .alert-text a:hover {
  text-decoration: underline;
}
.alert-container .alert-title {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}
.alert-container img {
  max-width: 80px;
  margin-bottom: 20px;
}

@media screen and (max-width: 620px) {
  .alert-container {
    padding: 80px 20px;
    text-align: center;
  }
  .alert-container .alert-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .alert-container .alert-text {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 26px;
  }
  .alert-container img {
    max-width: 60px;
    margin-bottom: 20px;
  }
}
.form-field-error {
  color: #da5151;
  margin: 0.5rem;
  font-size: 0.75rem;
}

.invalid input, .invalid textarea, .invalid select {
  border-color: #da5151;
}

.empty-items-list {
  margin: 2rem 0;
  text-align: center;
  font-size: 1rem;
  color: #aaa;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 10rem;
}
.empty-items-list:not(.without-image):before {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  background-image: url("../images/empty.svg");
  opacity: 0.2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 5rem;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .desktop-hidden {
    display: none !important;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  html {
    font-size: 9.45px;
  }
}
@media screen and (min-width: 769px) {
  .contacts-page .contact:hover {
    background: #fff;
    border-color: #AF86F2;
    box-shadow: 0 0 1px 1px #AF86F2;
    height: 20.625rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .mobile-hidden {
    display: none !important;
  }

  .container {
    width: 95%;
  }

  .cap .control-panel-catalog__arrow {
    margin-left: auto;
  }

  .cap__top {
    padding-left: 0;
    justify-content: initial;
  }

  .cap__left {
    width: 0;
  }

  .cap-panel {
    margin-left: auto;
  }

  .cap__bottom {
    margin-top: 0;
  }

  .cap .control-panel {
    display: block;
    grid-template-columns: initial;
    grid-column-gap: initial;
    height: auto;
  }

  .cap .control-panel-catalog__main-link {
    height: 3.125rem;
    justify-content: flex-end;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .footer__info {
    display: flex;
    justify-content: center;
    grid-template-columns: initial;
    grid-column-gap: 0;
  }

  .footer-desc {
    display: inline-block;
    width: 15rem;
  }

  .footer-desc__logo {
    margin: 0 auto;
  }

  .footer-nav {
    display: none;
  }

  .footer-summary {
    display: none;
  }

  .footer-bot {
    justify-content: initial;
    flex-direction: column-reverse;
    align-items: center;
  }

  .footer-bot__shield {
    margin-top: 1.3125rem;
  }

  .home-page__top {
    display: block;
  }

  .home-page .preview {
    height: 14.375rem;
  }

  .home-page .slider {
    width: 100%;
    margin-top: 0rem;
  }
  .home-page .slider .slick-prev, .home-page .slider .slick-next {
    display: none !important;
  }

  .home-page .slider .slide {
    height: 14.375rem;
  }

  .home-page .slider .slide .slide__wrap {
    padding-left: 1.375rem;
  }

  .home-page .slider .slide__btn {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
  }

  .home-page .slider .slide__title {
    margin-top: 0.5rem;
    font-size: 1rem;
    width: 65%;
  }

  .home-page .slider .slide__desc {
    width: 65%;
    font-size: 0.8125rem;
    margin-top: 0.5rem;
  }

  .home-page .slider .slide-all {
    margin-top: 0.5rem;
  }

  .home-page .slider .slide-all p {
    font-size: 0.625rem;
  }

  .home-page .slider .slide__rings {
    width: 7.8125rem;
    top: 2.125rem;
    right: 1.875rem;
  }

  .home-page__bottom {
    display: block;
    margin-top: 0;
  }

  .home-page .section__banners {
    display: block;
    width: 100%;
  }

  .home-page .section .small-banner {
    height: 9rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0.625rem;
  }

  .home-page .section .small-banner__title {
    position: static;
    transform: initial;
  }

  .home-page .section .small-banner__link {
    position: static;
    transform: initial;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    padding-left: 0;
    border-left: none;
    margin-top: 0.5rem;
    width: auto;
  }

  .home-page .section .small-banner__link div {
    margin-top: 0;
    margin-left: 0.375rem;
  }

  .home-page .section .small-banner__img {
    width: 7.5625rem;
    top: 1.625rem;
    right: 3.125rem;
    left: calc(100% - 10rem);
    transform: initial;
  }

  .home-page .products__all {
    font-size: 0.75rem;
  }

  .products__list {
    grid-template-columns: repeat(3, 32%) !important;
    grid-row-gap: 0.5rem !important;
  }

  .products__list > div:nth-child(4),
.products__list > div:nth-child(5) {
    display: none !important;
  }

  .home-page .form__panel {
    justify-content: space-between;
  }

  .big-banner {
    flex-direction: column;
    justify-content: center;
    align-items: initial;
    padding: 1.5rem;
  }

  .big-banner__title {
    font-size: 0.8125rem;
    max-width: 12.5rem;
  }

  .big-banner__title b {
    font-size: 1.125rem;
    display: block;
    margin-top: 0.4375rem;
  }

  .big-banner__img {
    width: 15.875rem;
    top: -0.625rem;
    right: -4.5rem;
    left: auto;
  }

  .big-banner__desc {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }

  .home-page .form {
    height: 8.75rem;
    flex-direction: column;
    justify-content: center;
    align-items: initial;
  }

  .home-page .form__title {
    font-size: 0.875rem;
  }

  .home-page .form__title b {
    font-size: 1.125rem;
  }

  .home-page .form__title {
    width: 16.4375rem;
  }

  .home-page .form__panel {
    margin-top: 0.625rem;
  }

  .home-page .form__input {
    height: 2.5rem;
    width: 70%;
  }

  .desktop-catalog-menu {
    display: none;
  }

  .cap .control-panel .products-filter {
    margin-top: 0;
  }

  #cap-filter-parent.opened #cap-filter {
    position: relative;
    width: 100%;
  }

  .products-filter__content {
    margin-top: 0.625rem;
    box-shadow: none;
  }

  .catalog-page .panel {
    display: block;
  }

  .catalog-page .panel-settings {
    display: block;
  }

  .catalog-page .panel-settings__wrap {
    display: block;
  }

  .catalog-page .panel-settings-config {
    margin-top: 1rem;
  }

  .catalog-page .panel-settings__show {
    margin-left: 0;
  }

  .catalog-page__main {
    display: block;
    grid-template-columns: initial;
    grid-column-gap: initial;
  }

  .catalog-page .filter {
    padding: 1.25rem;
  }
  .catalog-page .filter .filter-header__title:before {
    content: attr(data-closed);
  }
  .catalog-page .filter .filter-header__img {
    transform: rotate(0deg);
    display: inline-flex;
    transition: 0.4s;
  }
  .catalog-page .filter .filter-header {
    margin-bottom: 0;
  }
  .catalog-page .filter .filter__content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.4s;
  }
  .catalog-page .filter.filter-opened .filter-header__img {
    transform: rotate(180deg);
  }
  .catalog-page .filter.filter-opened .filter-header__title:before {
    content: attr(data-opened);
  }
  .catalog-page .filter.filter-opened .filter__content {
    opacity: 1;
    margin-top: 1.6875rem;
    max-height: 3000px;
  }

  .catalog-page .filter-range-input {
    width: 48.5%;
  }

  .catalog-page .filter-range-input input {
    width: 100%;
  }

  .catalog-page-products__list {
    grid-template-columns: repeat(3, 32%);
    grid-row-gap: 0.5rem;
    margin-top: 1.3125rem;
  }

  .contacts-page .contacts__list {
    margin-top: 1.3125rem;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.625rem;
  }

  .contacts-page .contact:last-child {
    grid-column-start: 1;
    grid-column-end: -1;
  }

  .contacts-page .contact:last-child .contact__desc {
    width: 14.375rem;
  }

  .contacts-page .map {
    margin-top: 1.5625rem;
  }

  .contacts-page .map__content .fake-map {
    width: 400%;
    left: 90%;
  }

  .contacts-page .callback-form {
    flex-direction: column;
  }

  .contacts-page .callback-form input {
    width: 100%;
    margin-bottom: 0.625rem;
    padding-left: 1.25rem;
  }

  .contacts-page .callback-form input:not(:first-child) {
    margin-left: 0;
  }

  .contacts-page .callback-form__btn {
    display: block;
    width: 100%;
    margin-left: 0;
  }

  .static-page .preview__img {
    position: static;
  }

  .static-page .preview__img img {
    margin: 0 auto;
  }

  .static-page .indicators__list {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .static-page .indicators__item-wrapper:not(:first-child) {
    margin-left: 0;
  }

  .static-page .indicator {
    width: 22vw;
    height: 22vw;
  }

  .static-page .descriptions__list {
    margin-top: 0;
    display: block;
  }

  .static-page .descriptions__wrapper {
    width: 100%;
    margin-top: 2.25rem;
  }

  .static-page .descriptions__wrapper:nth-child(1) {
    border-right: 0;
    padding-right: 0;
  }

  .static-page .descriptions__wrapper:nth-child(2) {
    padding-left: 0;
  }

  .static-page .descriptions__wrapper > div:not(:first-child) {
    margin-top: inherit;
  }

  .static-page .advantages__list {
    display: block;
  }

  .static-page .advantages__wrapper {
    width: 100%;
    margin-top: 2.375rem;
  }

  .static-page .advantages__wrapper:nth-child(1) {
    padding-right: 0;
    border-right: 0;
  }

  .static-page .advantages__wrapper:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }

  .static-page .advantages__wrapper > div:not(:first-child) {
    margin-top: inherit;
  }

  .buy-page__content {
    grid-template-columns: 100%;
    grid-template-areas: "title2" "side" "title" "main";
  }

  .buy-page__title2 {
    display: block;
  }

  .buy-page .buy-page-block {
    padding: 1.5625rem;
  }

  .buy-page .order-product-panel {
    padding-right: 0.1rem;
  }

  .buy-page .order-product-info-price__current {
    font-size: 1rem;
  }

  .buy-page .buy-first-form__inputs {
    grid-template-columns: initial;
    grid-column-gap: 0.625rem;
    grid-row-gap: 1.5rem;
  }

  .buy-page .buy-first-form__inputs .input-group:nth-child(1) {
    grid-column: 1/4;
  }

  .buy-page .buy-first-form__inputs .input-group:nth-child(2) {
    grid-column: 1/2;
  }

  .buy-page .buy-first-form__inputs .input-group:nth-child(3) {
    grid-column: 2/3;
  }

  .buy-page .buy-first-form__inputs .input-group:nth-child(4) {
    grid-column: 3/4;
  }

  .buy-page .buy-first-form-delivery__radio-buttons {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0.625rem;
    grid-row-gap: 0.625rem;
  }

  .buy-page .buy-second-form__inputs {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 1.6875rem;
  }

  .buy-page .buy-second-form__comment {
    margin-top: 1.6875rem;
  }

  .buy-page .buy-third-form__radio-buttons {
    grid-template-columns: repeat(2, 14.875rem);
    grid-column-gap: 0.625rem;
    grid-row-gap: 0.625rem;
  }

  .buy-page .buy-third-form__panel {
    flex-direction: column-reverse;
    align-items: initial;
    margin-top: 0.625rem;
  }

  .buy-page .buy-third-form__btn {
    margin-top: 0.625rem;
    width: 100%;
  }

  .buy-page .buy-third-form__confirm {
    width: 100%;
    margin-left: 0;
  }

  .buy-page .order-footer__btn {
    width: 12.5rem;
  }

  .buy-page .order-footer-total__sum {
    font-size: 1.5rem;
  }

  .buy-page .order__products {
    padding-right: 0;
    height: auto;
  }

  .product-page .product-slider {
    display: flex;
    flex-direction: column-reverse;
    grid-template-columns: initial;
  }

  .product-page .product-slider .slider-nav {
    margin-top: 0.25rem;
  }

  .product-page .product-slider .slider-nav-slide {
    padding: 0.3125rem;
  }

  .product-page .product-slider .slider-for {
    margin-left: 0;
  }

  .product-page .about {
    display: block;
    justify-content: initial;
  }

  .product-page .about__wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
  }

  .product-page .panel__left {
    width: 100%;
    justify-content: space-between;
  }

  .product-page .panel__btn {
    margin-left: 0;
    font-size: 0.875rem;
  }

  .product-page .share__block {
    margin-left: 0;
  }

  .product-page .panel__btn img {
    margin-right: 0.375rem;
  }

  .product-page__desc-and-price {
    display: block;
    width: 100%;
  }

  .product-page .appraisal {
    margin-bottom: 3rem;
  }

  .product-page .navigation__item {
    margin-right: 1.25rem;
  }

  .product-page .descriptions {
    margin-top: 1.375rem;
  }

  .product-page .descriptions-item {
    width: 100%;
  }

  .product-page .buy {
    margin-left: 0;
    width: 100%;
    margin-top: 2.0625rem;
  }

  .product-page .comment.answer {
    margin-left: 3rem;
  }

  .product-page .comment__right {
    margin-left: 1.5rem;
  }

  .product-page .comment-info__date {
    display: none;
  }

  .product-page .form {
    padding: 1.25rem;
  }

  .product-page .form__inputs {
    display: block;
    margin-top: 0;
  }

  .product-page .form__inputs .input-group {
    margin-top: 1.625rem;
  }

  .product-page .form__inputs .input-group:not(:last-child) {
    margin-right: 0;
  }

  .product-page .still__list {
    grid-template-columns: repeat(3, 32%);
  }

  .product-page .still__list > div {
    margin: 0.3125rem 0;
  }

  .product-page .still__list > div:nth-child(n+4) {
    display: none;
  }

  .product-page .banner-desktop {
    display: none;
  }

  .product-page .banner-mobile {
    display: block;
  }

  .product-page .panel {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
  }

  .product-page .product-slider .slider-for-slide {
    max-height: 19rem;
  }

  .product-page .product-slider .slider-nav-slide:hover > div {
    box-shadow: none;
  }

  .base-product-card__photo-place {
    height: 10rem;
  }

  .buy-page .buy-radio__wrapper {
    justify-content: space-around;
  }

  .partners-list {
    grid-template-columns: repeat(3, 32%);
  }

  .partners-list-item {
    padding: 1rem;
  }

  .partners-list-item__image {
    height: 7rem;
  }

  .partners-list-item__title {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 575px) {
  .cap-logo {
    width: 10rem;
  }

  .breadcrumbs {
    font-size: 0.785rem;
  }
  .breadcrumbs ul {
    line-height: 1.125rem;
  }

  .home-page .section .small-banner__img {
    top: 0.625rem;
  }

  .home-page .section .small-banner {
    height: 6.875rem;
  }

  .products__list {
    grid-template-columns: repeat(2, 49%) !important;
  }

  .products__list > div {
    max-width: 230px;
    margin: 0 auto;
  }

  .products__list > div:nth-child(3) {
    display: none !important;
  }

  .home-page .form__input {
    width: 12.9375rem;
  }

  .buy-page .order-footer-total__sum {
    font-size: 1.25rem;
  }

  .order-footer__btn .btn {
    padding: 0.75rem 2rem;
    width: auto;
  }

  .catalog-page-products__list {
    grid-template-columns: repeat(2, 49%);
  }

  .base-product-card {
    max-width: 230px;
    margin: 0 auto;
  }

  .product-page .panel__btn.add-review {
    display: none;
  }

  .product-page .still__list {
    grid-template-columns: repeat(2, 49%);
  }

  .product-page .still__list > div {
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
  }

  .product-page .still__list > div:nth-child(n+3) {
    display: none;
  }

  .product-page .banner-mobile__title1 {
    right: 3.75rem;
  }

  .static-page .indicators__item-wrapper:not(:first-child) {
    margin-left: 0;
  }

  .static-page .indicators__item-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .static-page .indicators__item-wrapper:nth-child(3),
.static-page .indicators__item-wrapper:nth-child(4) {
    margin-top: 1.25rem;
  }

  .static-page .indicator {
    width: 10.9375rem;
    height: 10.9375rem;
  }

  .buy-page .buy-first-form-delivery__radio-buttons {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0.625rem;
  }

  .buy-page .buy-third-form__radio-buttons {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0.625rem;
  }

  .partners-list {
    padding: 1rem;
    grid-template-columns: repeat(2, 49%);
  }

  .ya-share2 {
    width: 40px;
  }
  .ya-share2 .ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item {
    margin: 0;
  }
  .ya-share2 .ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item:not(:last-child) {
    margin-bottom: 6px;
  }

  .ya-share2__list {
    display: flex;
    flex-direction: column;
  }
  .ya-share2__list .ya-share2__title {
    display: none;
  }

  .footer-desc-socials-item__label {
    font-size: 0.785rem;
  }
}
@media screen and (max-width: 395px) {
  html {
    font-size: 15px;
  }

  .home-page .form {
    padding: 0 1rem;
  }

  .catalog-page-categories {
    grid-template-columns: repeat(auto-fill, 90px);
  }

  .category-block__link-image {
    height: 90px;
  }
  .category-block__image {
    max-height: 100px;
  }
}
@media screen and (max-width: 374px) {
  .home-page .products__title {
    font-size: 1.125rem;
  }

  .buy-page .order {
    padding: 1rem;
  }
}