.card-product__body {
  grid-template-columns: repeat(4, minmax(280px, 1fr));
}
@media (max-width: 1199px) {
	.card-product__body {
		grid-template-columns: repeat(3, minmax(280px, 1fr));
	}
}
@media (max-width: 899px) {
	.card-product__body {
		grid-template-columns: repeat(2, minmax(280px, 1fr));
	}
}
@media (max-width: 640px) {
	.card-product__body {
		grid-template-columns: repeat(1, minmax(280px, 1fr));
	}
}


.info-label p {
  line-height: 1.2;
}

@supports (font-size: clamp( 0.875rem , 0.8208333333rem  +  0.2222222222vw , 1rem )) {
  .info-label p {
    font-size: clamp( 0.875rem , 0.8208333333rem  +  0.2222222222vw , 1rem );
  }
}

@supports not (font-size: clamp( 0.875rem , 0.8208333333rem  +  0.2222222222vw , 1rem )) {
  .info-label p {
    font-size: calc(0.875rem + 0.125 * (100vw - 24.375rem) / 56.25);
  }
}

.info-label ul li {
  position: relative;
  line-height: 1.2;
  margin-left: 1.25rem;
}

@supports (font-size: clamp( 0.875rem , 0.8208333333rem  +  0.2222222222vw , 1rem )) {
  .info-label ul li {
    font-size: clamp( 0.875rem , 0.8208333333rem  +  0.2222222222vw , 1rem );
  }
}

@supports not (font-size: clamp( 0.875rem , 0.8208333333rem  +  0.2222222222vw , 1rem )) {
  .info-label ul li {
    font-size: calc(0.875rem + 0.125 * (100vw - 24.375rem) / 56.25);
  }
}

.info-label ul li::before {
  content: "·";
  position: absolute;
  top: 0;
  left: -0.9375rem;
}


.wpcf7-response-output,
.wpcf7-not-valid-tip {
	display: none!important;
}

.wpcf7-not-valid {
	border-color: red;
}

.checkbox-form-popup__checkbox:checked + span .checkbox__label:before {
  background-color: #f2f2f2;
  border: none;
}

.checkbox-form-popup__checkbox:checked + span .checkbox__label::after {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.625rem;
  top: 0.25rem;
  left: 0.1875rem;
  background: url("https://myrvn.com/wp-content/uploads/2024/08/checkbox.svg") no-repeat;
}

.checkbox__input:checked + span .checkbox-contact-footer__label::before {
  background-color: #5d635f;
  border: none;
}

.checkbox__input:checked + span .checkbox-contact-footer__label::after {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.625rem;
  top: 0.25rem;
  left: 0.1875rem;
  background: url("https://myrvn.com/wp-content/uploads/2024/08/checkbox-light.svg") no-repeat;
}

.wpcf7-acceptance .wpcf7-list-item {
	margin: 20px 0 0;
}

.form-top-footer__input {
	max-width: 360px;
}

.success {
	padding: 150px 0;
}

.success .body-popup__text{
	margin-top: 20px;
}

.success .button{
	padding: 14px 24px;
	display: block;
	margin: 20px auto 0;
	max-width: fit-content;
}
body._preloader {
	overflow: hidden;
}
.preloader {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
}

.preloader__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

@media (max-width: 540px) {
	.preloader svg {
		max-width: 300px;
	}
}

.preloader svg .rotate {
	animation: 4s preloader-rotate;
	transform-origin: 32% 17%;
}

@keyframes preloader-rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}