@charset "UTF-8";
.ripple {
  position: relative;
}

.circle {
  position: absolute;
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: scale 0.5s ease-out;
}

@keyframes scale {
  to {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
body {
  background-color: white !important;
}

input {
  outline: 0;
  outline-offset: 0;
  border: 0;
}

input:hover {
  border: 1px solid var(--primary-accent-color);
}

input:active,
input:focus {
  border: 1px solid var(--primary-accent-color);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number],
input[type=number]:hover,
input[type=number]:focus {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}

button {
  border: 0;
}

.main {
  margin-bottom: 100px;
}

.cart-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 0px;
}

.cart-goods__header {
  display: flex;
  min-height: 45px;
  background-color: var(--light-grey-color);
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 20px;
}

.cart-goods__header-count--text {
  width: 50%;
}

.cart-goods__header-count--delete {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  transition: 0.3s;
  color: var(--primary-accent-color);
}

.cart-goods__header-count--delete:hover {
  color: var(--button-hover-color);
}

.cart-items {
  display: flex;
  gap: 20px;
}

.cart-goods {
  width: 75%;
}

.cart-summury {
  width: 33.3333333333%;
}

.cart-goods-box {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  gap: 10px;
}

.cart-goods-item {
  border-bottom: 3px solid var(--light-grey-color);
}

.cart-goods-box__image-wrapper {
  width: 20%;
  height: 150px;
  min-width: 146px;
  position: relative;
}

.goods-item__comments--cart {
  max-width: 150px;
  height: 25px;
}

.cart-goods-box__image-wrapper--img {
  display: block;
  max-width: 150px;
  width: 100%;
  min-width: 100px;
}

.cart-goods-box__description {
  width: 40%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.cart-goods-box__amount {
  width: 40%;
}

.cart-goods-box__color-wrapper,
.cart-goods-box__size-wrapper,
.cart-goods-box__rost-wrapper {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.goods-item__single-color--cart {
  width: 20px !important;
  height: 20px !important;
  cursor: default !important;
}

.cart-goods-box__amount {
  display: flex;
  justify-content: space-around;
}

.cart-goods-box__counter {
  display: flex;
  flex-direction: column;
}

.cart-goods-box__counter-wrapper {
  display: flex;
  align-items: center;
}

.cart-goods-box__increment-button,
.cart-goods-box__decrement-button {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.cart-goods-box__increment-button:hover,
.cart-goods-box__decrement-button:hover {
  background-color: #FDF1F1;
}

.cart-goods-box__increment-button {
  background: url("/assets/svg/plus.svg") center/cover no-repeat;
}

.cart-goods-box__decrement-button {
  background: url("/assets/svg/minus.svg") center/cover no-repeat;
}

.cart-goods-box__input {
  width: 40px;
  height: 32px;
  font-size: 16px;
  text-align: center;
  transition: 0.3s;
  margin-bottom: 5px;
}

.cart-goods-box__price {
  justify-content: space-between;
  height: 100px;
}

.cart-goods-box__price-price {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cart-goods-box__rub {
  margin-left: 10px;
}

.cart-goods-box__single-price {
  font-size: 13px;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
}
.cart-goods-box__single-price span {
  color: var(--dark-grey-color);
}

.cart-goods-box__additional {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.cart-goods-box__additional .goods-item__favourites {
  opacity: 1;
  position: initial;
  width: 22px;
  height: 22px;
}

.cart-goods-box__counter {
  width: 50%;
  align-items: center;
  justify-content: space-between;
}

.cart-goods-box__price {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-goods-box__title {
  transition: 0.3;
}

.cart-goods-box__title:hover {
  color: var(--primary-accent-color);
}

.cart-goods-box__color-title,
.cart-goods-box__size-title,
.cart-goods-box__rost-title {
  color: var(--dark-grey-color);
}

.cart-goods-box__additional--trash {
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("/assets/svg/trash.svg");
  cursor: pointer;
  transition: 0.3s;
  margin-left: 40px;
}

.cart-goods-box__additional--trash:hover {
  transform: rotate(30deg) scale(1.2);
}

.cart-summary__p {
  font-size: 24px;
  letter-spacing: 1px;
}

.cart-summary__info--left {
  display: flex;
  margin-bottom: 10px;
}

.cart-summary {
  width: 20%;
}

.cart-summary__wrap {
  min-width: 200px;
  border: 1px solid var(--middle-grey-color);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 150px;
  padding: 10px 20px;
  position: sticky;
  top: 160px;
}

.container-cart {
  overflow-x: initial;
}

.cart-summary__count {
  font-weight: 600;
}

.cart-summary__count--itogo,
.cart-summary__rub--itogo {
  font-size: 22px;
  font-weight: 600;
  margin-right: 0;
  margin-left: 0px;
  color: var(--primary-accent-color);
}

.cart-summary__info--right {
  display: flex;
  align-items: center;
}

.cart-summary__count {
  margin: 0 7px;
}

.cart-goods__box {
  margin-bottom: 20px;
}

.cart-h1 {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 5px;
}

.cart-offer {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--middle-grey-color);
  margin-bottom: 20px;
  transition: 0.3s;
}

.cart-offer:hover {
  border: 1px solid var(--primary-accent-color);
}

.cart-offer__title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.cart-offer_body {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cart-offer_body--contacts {
  margin-bottom: 40px;
}

.cart-offer__item {
  display: flex;
  gap: 20px;
}

.cart-offer__icon {
  width: 32px;
  height: 32px;
  background: url("/assets/svg/box.svg") center/cover no-repeat;
}

.cart-offer__icon-receiving {
  width: 32px;
  height: 32px;
  background: url("/assets/svg/man.svg") center/cover no-repeat;
}

.cart-offer__icon-car {
  width: 32px;
  height: 32px;
  background: url("/assets/svg/car.svg") center/cover no-repeat;
}

.cart-offer__icon--mail {
  background: url("/assets/svg/mail.svg") center/cover no-repeat;
}

.cart-offer__icon--schet {
  background: url("/assets/svg/schet.svg") center/cover no-repeat;
}

.cart-offer__icon--money {
  background: url("/assets/svg/money.svg") center/cover no-repeat;
}

.cart-offer__icon--bc {
  width: 32px;
  height: 32px;
  background: url("/assets/svg/bc.svg") center/cover no-repeat;
}

.cart-offer__icon--door {
  width: 32px;
  height: 32px;
  background: url("/assets/svg/door.svg") center/cover no-repeat;
}

.mt40 {
  margin-top: 40px;
}

.poluchenie__image-box--foto {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.cart-offer__number {
  min-width: 34px;
  height: 34px;
  font-size: 20px;
  font-weight: 600;
  background-color: var(--primary-accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

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

.cart-offer__title-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cart-offer--contacts {
  height: auto;
}

.cart-offer__descr {
  width: 88.8888888889%;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.cart-empty__icon {
  width: 60px;
  height: 60px;
  background: url("/assets/svg/empty_cart.svg") center/cover no-repeat;
  margin-bottom: 20px;
}

.cart-empty__title {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.cart-empty__subtitle {
  margin-bottom: 40px;
  text-align: center;
}

.cart-empty__btn {
  width: 200px !important;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;
}

input::-webkit-input-placeholder {
  color: var(--middle-grey-color);
  font-size: 16px;
}

input::-moz-placeholder {
  color: var(--middle-grey-color);
  font-size: 16px;
}

textarea::-webkit-input-placeholder {
  color: var(--middle-grey-color);
  font-size: 16px;
}

.cart-form__username,
.cart-form__mail,
.cart-form__tel {
  border: 1px solid var(--middle-grey-color);
  height: 30px;
  margin-bottom: 10px;
  transition: 0.3s;
  background-color: white;
  padding: 0 5px;
}

.cart-form__message {
  outline: 0;
  outline-offset: 0;
  border: 1px solid var(--middle-grey-color);
  margin-bottom: 10px;
  transition: 0.3s;
  resize: none;
  margin-bottom: 20px;
  padding: 0 5px;
}

.cart-form__message:hover {
  border: 1px solid var(--primary-accent-color);
}

.cart-offer__agreement {
  margin-bottom: 10px;
}

.cart-form__button {
  cursor: pointer;
  background-color: var(--primary-accent-color);
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.cart-form__button:hover {
  background-color: var(--button-hover-color);
}

.cart-form__agree {
  opacity: 0;
  cursor: pointer;
}

.cart-form__agree ~ label::before {
  content: "✓";
  text-align: center;
  color: white;
  font-weight: 700;
  line-height: 1em;
  width: 1em;
  height: 1em;
  border: 2px solid var(--dark-grey-color);
  display: inline-block;
  margin-left: -10px;
  margin-right: 10px;
  cursor: pointer !important;
}

.cart-form__agree:checked ~ label::before {
  color: var(--button-hover-color);
  border: 2px solid var(--button-hover-color);
}

.label-agree {
  cursor: pointer;
  font-size: 15px;
}

.cart-form__username:valid,
.cart-form__mail:valid {
  border: 1px solid var(--middle-grey-color);
  background-color: white;
}

.cart-form__tel:valid {
  border: 1px solid var(--middle-grey-color);
  background-color: white;
}

input:-webkit-autofill {
  -webkit-background-clip: text;
}

.cart-form__message:hover {
  border: 1px solid var(--middle-grey-color);
}

.cart-offer__result {
  height: 40px;
  color: red;
  transition: 0.3s;
}

.cart-offer__result--h35 {
  height: 40px;
}

@media all and (max-width: 1024px) {
  .cart-items {
    flex-direction: column;
  }
  .cart-goods {
    width: 100%;
  }
  .cart-summary {
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: white;
    height: 50px;
    padding: 0 20px 0 0;
    z-index: 10;
  }
  .cart-summary__wrap {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-width: initial;
    width: 100%;
    background-color: var(--light-grey-color);
    min-width: 260px;
    height: inherit;
    padding: 5px 20px;
  }
  .cart-summary__p {
    display: none;
  }
  .cart-summary__info {
    height: 35px;
    width: 100%;
  }
  .cart-summary__info--left {
    display: none;
  }
  .cart-summary__info--right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1024px;
  }
  .cart-summary__count--itogo,
  .cart-summary__rub--itogo,
  .cart-summary__text--itogo {
    display: block;
    max-width: 60px;
  }
  .cart-summary__count--itogo {
    margin-left: auto;
    margin-right: 20px;
  }
  .cart-summary__rub--itogo {
    margin-left: 15px;
    display: none;
  }
}
@media all and (max-width: 768px) {
  .cart-goods-box {
    gap: 10px;
  }
}
@media all and (max-width: 640px) {
  .cart-goods-box {
    flex-wrap: wrap;
  }
  .cart-goods-box__image-wrapper {
    width: 50%;
  }
  .cart-goods-box__description {
    width: calc(50% - 10px);
  }
  .cart-goods-box__amount {
    width: 100%;
    gap: 20px;
  }
  .cart-goods-box__price,
  .cart-goods-box__counter {
    height: initial;
    row-gap: 10px;
  }
  .cart-goods-box__price-price,
  .cart-goods-box__additional {
    justify-content: flex-start;
  }
}
@media all and (max-width: 460px) {
  .label-agree {
    cursor: pointer;
    font-size: 14px;
  }
  .cart-offer__title-text {
    font-size: 16px;
  }
}
.poluchenie {
  width: 100%;
  min-height: 503px;
  display: flex;
  gap: 20px;
}
.poluchenie .poluchenie__text-box .cart-offer {
  margin-bottom: 0;
  height: 100%;
}
.poluchenie .poluchenie__text-box {
  width: 33.3333333333%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.poluchenie .poluchenie__image-box {
  width: 66.6666666667%;
}
.poluchenie .poluchenie__image-box .poluchenie__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 99%;
}
.poluchenie .player {
  max-width: 3000px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 1024px) {
  .poluchenie {
    flex-direction: column;
    height: auto;
  }
  .poluchenie .poluchenie__text-box {
    width: 100%;
  }
  .poluchenie .poluchenie__image-box {
    width: 100%;
    height: 400px;
  }
}
.ymaps-2-1-79-islets_round-button {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.cart-offer__text--market {
  margin-bottom: 10px;
}

.similar-container {
  padding: 0;
  margin-bottom: 100px;
}
.similar-container .goods-item__h2--similar {
  margin-top: 60px;
}
.similar-container .similar-goods .similar-section {
  margin-top: 20px;
  position: relative;
}
.similar-container .similar-goods .similar-section .slick-list {
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.similar-container .similar-goods .similar-section .slick-list .slick-track {
  margin: 0 15px;
}
.similar-container .similar-goods .similar-section .slick-list .slick-track .slick-slide {
  margin: 0 18px;
}
.similar-container .similar-goods .similar-section .slick-list .slick-track .goods-item__prop {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.similar-container .similar-goods .similar-section .slick-list .slick-track .goods-item__prop .goods-item__color {
  justify-content: center;
}
.similar-container .similar-goods .similar-section .slick-list .slick-track .goods-item__prop .goods-item__color .goods-item__single-color {
  width: 20px;
  height: 20px;
}

@keyframes slick-track-anime {
  0% {
    transform: translate(0px);
  }
  15% {
    transform: translate(-50px);
  }
  100% {
    transform: translate(0px);
  }
}
.similar-container {
  display: none;
  padding: 0 10px;
}

.slick-prev {
  left: 1%;
}

.slick-next,
.slick-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
  cursor: pointer;
  position: absolute;
  top: 45%;
  right: 1%;
  transition: 0.3s;
  opacity: 0;
  background-color: var(--primary-accent-color);
}
.slick-next img,
.slick-prev img {
  width: 25px;
  height: 25px;
  filter: brightness(1000%) contrast(100%);
}

.slider-next:hover,
.slider-prev:hover {
  background-color: #FDF1F1 !important;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.slick-dots li {
  height: 4px;
  width: 30px;
  font-size: 0;
}
.slick-dots li button {
  width: 30px;
  height: 4px;
  cursor: pointer;
  background-color: #AEAFAF;
  font-size: 0;
}
.slick-dots li.slick-active > button {
  background-color: var(--primary-dots-color);
}

@media all and (max-width: 540px) {
  .slick-dots li {
    width: 5px;
    height: 3px;
  }
  .slick-dots li button {
    width: 5px;
    height: 3px;
  }
}
body {
  background-color: #F3F3F2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.goods {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  justify-content: center;
  justify-items: center;
  grid-gap: 20px;
}

.goods-item {
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.goods-item__h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.goods-item__img {
  position: relative;
  max-width: inherit;
  width: inherit;
  max-height: 320px;
  min-height: 160px;
  padding-bottom: 100%;
  transition: 0.3s;
  overflow: hidden;
}
.goods-item__img .goods-item__sale[data-sale="1"] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: orange;
  position: absolute;
  bottom: 0%;
  left: 10px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
}
.goods-item__img .goods-item__sale[data-sale="1"] .goods-item__p--sale {
  font-weight: 900;
  font-size: 24px;
}
.goods-item__img .goods-item__link img {
  display: block;
  max-width: inherit;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.goods-item__info {
  display: block;
}

.goods-item__color {
  display: flex;
  height: 30px;
  gap: 5px;
  position: relative;
  transition: 0.3s;
}

.goods-item__single-color {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.no-goods {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.no-goods .goods-item__sale--textbox {
  display: flex;
  justify-content: center;
  width: 100%;
}
.no-goods .goods-item__sale--imgbox {
  display: flex;
  justify-content: center;
}
.no-goods .goods-item__sale--imgbox .goods-item__sale--img {
  width: 70px;
  height: 70px;
  transition: 0.3s;
}
.no-goods .goods-item__sale--imgbox .goods-item__sale--img:hover {
  width: 75px;
  height: 75px;
}

.goods-item__single-color[data-color=Черный] {
  background-color: black;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Белый] {
  background-color: white;
  border: 1px solid var(--middle-grey-color);
}

.goods-item__single-color[data-color=Синий] {
  background-color: #2E6BAB;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Хаки] {
  background-color: DarkKhaki;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Бежевый] {
  background-color: #FFF7AA;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Серый] {
  background-color: grey;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Темно-синий] {
  background-color: DarkBlue;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Бордовый] {
  background-color: DarkRed;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Желтый] {
  background-color: Yellow;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Зеленый] {
  background-color: LightGreen;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Черно-синий] {
  background: linear-gradient(45deg, #000000 45%, #2E6BAB 50%);
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Черно-белый] {
  background: linear-gradient(45deg, #000000 45%, #FFFFFF 50%);
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Голубой] {
  background-color: PowderBlue;
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Камуфляж] {
  background: linear-gradient(45deg, #695535 45%, #696E42 50%);
  border: 1px solid transparent;
}

.goods-item__single-color[data-color=Зеленый_флюоресцент] {
  background-color: #A4E30F;
  border: 1px solid transparent;
}

.goods-item__single-color:hover::after {
  content: attr(data-color);
  position: absolute;
  /* Абсолютное позиционирование */
  left: 1%;
  bottom: 120%;
  /* Положение подсказки */
  background: grey;
  /* Полупрозрачный цвет фона */
  font-family: Arial, sans-serif;
  /* Гарнитура шрифта */
  font-size: 14px;
  /* Размер текста подсказки */
  padding: 0.1em 0.5em;
  /* Поля */
  border-radius: 0.2em;
  color: white;
}

.goods-item__size,
.goods-item__rost {
  width: 100%;
  max-height: 60px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 14px;
  flex-wrap: wrap;
}

.goods-item__single-size,
.goods-item__single-rost {
  height: inherit;
  cursor: pointer;
  transition: 0.3s;
}

.goods-item__single-size:hover,
.goods-item__single-rost:hover {
  color: var(--primary-accent-color);
}

.goods-item__link {
  transition: 0.3s;
  font-size: 16px;
}

.goods-item__link:hover {
  color: var(--primary-accent-color);
}

.goods-item__title {
  margin-bottom: 0px;
}

.goods-item__color {
  margin-bottom: 15px;
}

.goods-item__size {
  margin-bottom: 10px;
}

.prop-name {
  color: var(--dark-grey-color);
}

.goods-item__description {
  margin-bottom: 20px;
}

.goods-item__rost {
  margin-bottom: 15px;
}

.goods-item__btn {
  width: 100%;
  height: 40px;
  cursor: pointer;
  background-color: var(--primary-accent-color);
  color: white;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.2s;
  border: 2px solid transparent;
}

.good-pay {
  background: var(--btn-pay-color);
}

.goods-item__btn:hover {
  background: var(--button-hover-color);
  color: white;
}

.goods-item_btn--incart {
  width: 100%;
  height: 40px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.2s;
  color: var(--button-hover-color);
  border: 2px solid var(--primary-accent-color);
  background: transparent;
}

.show-btn {
  opacity: 1;
}

.goods-item__comments {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
}

.goods-item__p {
  font-size: 14px;
  color: var(--dark-grey-color);
}

.goods-item__p--comments {
  font-size: 13px !important;
  color: white;
}

.goods-item__comments[data-comments="5"] {
  background-color: #03CC03;
}

.goods-item__comments[data-comments="3"] {
  background-color: #F90000;
}

.goods-item__comments[data-comments="4"] {
  background-color: #F90000;
}

.goods-item__comments[data-comments="6"] {
  background-color: #04BAE4;
}

.goods-item__comments[data-comments="2"] {
  background-color: #FF8383;
}

.goods-item__comments[data-comments="7"] {
  background-color: #F90000;
}

.goods-item__favourites {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10;
  background-image: url("/assets/svg/favourites.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.goods-item:hover .goods-item__favourites {
  opacity: 1;
}

.goods-item__favourites:hover {
  transform: rotate(30deg) scale(1.2);
}

.heart-checked {
  transform: scale(1.2);
  background-image: url("/assets/svg/favourites_red.svg") !important;
  opacity: 1;
}

.opacity-fav {
  opacity: 1;
}

.goods-item__price {
  display: flex;
}

.goods-item__h2--rub {
  margin-left: 10px;
}

.sel-item {
  background-color: orange;
}

.sel-color {
  border: 3px solid orange !important;
}

.ripple {
  position: relative;
}

.circle {
  position: absolute;
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: scale 0.5s ease-out;
}

@keyframes scale {
  to {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.goods-box__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.goods-box__select {
  width: 205px;
  height: 36px;
  border: 0;
  font-size: 16px;
  background-color: #EFEFEF;
  padding: 0 5px;
}

.goods-box__select:active,
.goods-box__select:focus {
  border: none;
  outline: none;
}

.zone-0 {
  width: 33.3333333333%;
  height: 100%;
  position: absolute;
  z-index: 3;
}

.zone-1 {
  width: 66.6666666667%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.zone-2 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.goods-item__dots-box {
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: transparent;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.goods-item__dot {
  width: 15px;
  height: 3px;
  background-color: grey;
  margin-left: 5px;
  transition: 0.3s;
}

.goods-item__dot--opacity0 {
  opacity: 0;
}

.goods-item__dot--active {
  background-color: var(--primary-dots-color);
  transition: 0.3s;
}

.goods-box__breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.goods-box__breadcrumb li .goods-box__breadcrumb-icon-home {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.goods-box__breadcrumb li img {
  width: 11px;
  height: 11px;
  margin: 0 5px;
}
.goods-box__breadcrumb li a {
  color: #AEAFAF;
}

.goods-box__breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.goods-box__breadcrumb li:hover a {
  color: var(--primary-accent-color);
}

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  transform: translateY(-2000px);
  transition: 0.3s;
}

.modal__wrap {
  max-width: 320px;
  width: 100%;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  border: 1px solid grey;
  background-color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(-5000px);
  transition: 0.3s;
}

.animmodal {
  animation: anim-modal 0.5s;
}

@keyframes anim-modal {
  0% {
    transform: translateX(-5000px);
  }
  100% {
    transform: translateX(0px);
  }
}
.modal__title {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}

.modal__text {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-grey-color);
  text-align: center;
}

.modal__text--add {
  font-size: 22px;
}

.modal__image {
  width: 100%;
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.modal__btn-body {
  width: 100%;
}

.modal__btn {
  width: 100%;
  height: 40px;
  cursor: pointer;
  background-color: var(--primary-accent-color);
  color: white;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.2s;
  border: 2px solid transparent;
}

.modal__btn:hover {
  background-color: var(--button-hover-color);
}

@media all and (max-width: 940px) {
  .goods {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (max-width: 768px) {
  .goods {
    grid-template-columns: repeat(3, 1fr);
  }
  .goods-item__favourites {
    top: 5px;
    right: 5px;
    opacity: 1;
    padding: 0;
  }
  .goods-box__items {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 640px) {
  .goods {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 460px) {
  .modal__text {
    font-size: 18px !important;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-grey-color);
  }
  .modal__text--add {
    font-size: 22px !important;
  }
}
@media all and (max-width: 420px) {
  .goods-item__p--comments {
    font-size: 12px !important;
  }
  .goods-item__h2 {
    font-size: 20px;
  }
  .goods {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 340px) {
  .goods {
    grid-template-columns: repeat(1, 1fr);
  }
}
.stop-scroll {
  background-color: red;
  overflow-y: hidden !important;
}

.body-singlepage {
  height: initial;
  background-color: #fff;
  height: auto;
  margin-top: 100px;
}
@media all and (max-width: 770px) {
  .body-singlepage {
    height: auto;
  }
}
.body-singlepage .main {
  margin-top: 0px;
  padding-top: 120px;
}
.body-singlepage .container {
  width: 75%;
}
.body-singlepage .goods-box {
  margin-top: 0;
}
.body-singlepage .goods {
  display: block;
}
.body-singlepage .goods-item {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  max-width: 100%;
  gap: 60px;
  margin-bottom: 60px;
}
.body-singlepage .goods-item__img {
  width: 50%;
  padding-bottom: 0;
  min-height: initial;
  max-height: initial;
}
.body-singlepage .goods-item__small-img {
  height: 120px;
}
.body-singlepage .goods-item__info {
  width: 33.3333333333%;
}
.body-singlepage .goods-item__big-img {
  width: 100%;
  cursor: zoom-in;
}
.body-singlepage .goods-item__big-img img {
  width: 100%;
  min-height: inherit;
  max-height: 60vh;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  display: block;
}
.body-singlepage .goods-item__small-img {
  width: 100%;
  display: none;
  align-items: center;
  max-height: 100px;
  justify-content: center;
  gap: 20px;
}
.body-singlepage .goods-item__small-img img {
  display: block;
  max-width: 100px;
  width: 33.3333333333%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}
.body-singlepage .good-item__small-img--active {
  opacity: 1 !important;
  border-bottom: 2px solid var(--primary-accent-color);
}
.body-singlepage .goods-item__p {
  font-size: 16px;
}
.body-singlepage .goods-item__price {
  margin-bottom: 10px;
}
.body-singlepage .goods-item__color,
.body-singlepage .goods-item__size {
  margin-bottom: 20px;
  font-size: 16px;
  gap: 10px;
  max-height: initial;
}
.body-singlepage .goods-item__rost {
  margin-bottom: 40px;
  font-size: 16px;
  gap: 10px;
  max-height: initial;
}
.body-singlepage .goods-item__single-size {
  padding: 5px;
  border: 1px solid grey;
}
.body-singlepage .goods-item__single-rost {
  padding: 5px;
  border: 1px solid grey;
}
.body-singlepage .prop-name {
  color: var(--dark-grey-color);
  margin-bottom: 10px;
}
.body-singlepage .goods-item__description {
  margin-bottom: 60px;
}
.body-singlepage .goods-item__favourites {
  opacity: 1;
  top: 0;
}
.body-singlepage .goods-item__comments {
  top: 0;
}
.body-singlepage .img-magnifier-glass {
  position: absolute;
  border: 1px solid #BCBCBC;
  cursor: none;
  /*Установите размер стекла лупы:*/
  min-width: 200px;
  max-width: 400px;
  width: 100%;
  height: 200px;
  z-index: 100;
}
.body-singlepage .zoom-value {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 5px;
  border-radius: 50%;
  background-color: #ffffff;
}
.body-singlepage .goods-item__btn--tocart {
  width: 100%;
  height: 40px;
}
.body-singlepage .similar {
  margin-top: 40px;
}
@media all and (max-width: 1200px) {
  .body-singlepage .container {
    width: 100%;
  }
}
@media all and (max-width: 1200px) and (max-width: 770px) {
  .body-singlepage .goods-item {
    flex-direction: column;
    height: auto;
  }
  .body-singlepage .goods-item__img {
    width: 100%;
  }
  .body-singlepage .goods-item__info {
    width: 100%;
  }
  .body-singlepage .main {
    padding-top: 50px;
  }
  .body-singlepage .container {
    padding: 0 20px;
  }
  .body-singlepage .goods-item__description {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 1200px) and (max-width: 400px) {
  .body-singlepage .img-magnifier-glass {
    min-width: 200px;
    max-width: 70%;
  }
  .body-singlepage .goods-item__big-img {
    margin-bottom: 20px;
  }
  .body-singlepage .goods-item__big-img img {
    min-height: 300px;
    max-height: 300px;
    max-height: 40vh;
  }
  .body-singlepage .goods-item__small-img {
    gap: 3px;
  }
}
@media all and (max-width: 1200px) and (max-height: 400px) and (orientation: landscape) {
  .body-singlepage .goods-item__big-img {
    margin-bottom: 20px;
  }
  .body-singlepage .goods-item__big-img img {
    min-height: 300px;
    max-height: 300px;
    max-height: 50vh;
  }
}/*# sourceMappingURL=goods.css.map */