body {
  background: #e3e3e3;
  font-family: "Rubik", sans-serif;
  /* font-weight: 400; */
  font-size: 18px;
  line-height: 1.5em;
  color: #333333;
  cursor: default;
}
.countdown {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  transition: 0.5s;
  padding: 0 20px;
  display: flex;
  align-content: center;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
  background: var(--tov-main-color, #6095b7);
  z-index: 1000;
}

.value {
  width: 40%;
}

.countdown h4 {
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  line-height: 1.1em;
  margin-bottom: 0;
  text-align: left;
  text-transform: none;
}

.countdown__timer {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-around;

  color: #fff;
}

.countdown__item {
  display: flex;
  flex-direction: column;

  font-size: 21px;
}

.countdown__label {
  font-size: 11px;
  line-height: 1.1em;
}

.countdown__separator {
  display: inline-block;
  margin: 0 5px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  content: ":";
}

.countdown__separator::after {
  content: ":";
}

.header-bottom {
  position: fixed;
  top: 60px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  max-width: 480px;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 999; /* Немного меньше, чем у .header-top, но все еще высокий, чтобы быть над другим контентом */
}

.header-bottom li {
  font-weight: bold;
}

.header-bottom li a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  padding: 6px 10px 2px 10px;
  display: block;
  border-bottom: 4px solid #ffffff00;
}

.header-bottom li a.active {
  border-bottom: 4px solid #f7931d;
}

.product-title {
  margin-top: 80px;
  color: #fff;
  font-size: 25px;
  line-height: 1.1em;
  text-align: center;
  font-weight: 600;
  padding: 13px 0 13px;
  background: var(--tov-main-color, #6095b7);
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .product-title {
    font-size: 20px;
    margin-top: 120px;
  }
}

.product-subtitle {
  color: #fff;
  font-size: 20px;
  line-height: 1.1em;
  text-align: center;
  font-weight: 400;
  padding: 9px 0 13px;
  background: var(--tov-main-color, #6095b7);
  text-transform: none;
}

.featured-media img {
  max-width: 480px;
  max-height: 640px;
}

/* Reit */

.reyt {
  background: var(--tov-main-color, #6095b7);
  padding: 12px 0 12px 30px;
  color: #ffffff;
}
.reyt .stars {
  display: inline-block;
  background: url(../img/stars.png) left 3px no-repeat;
  padding: 0 15px 0 116px;
  margin-right: 10px;
  line-height: 24px;
  border-right: 1px solid #dedfe0;
}
.reyt .stars b {
  font-size: 20px;
  color: #ffffff;
}

/* /Reit */

/* Pricing block */

.pricing-block {
  background: url(../img/dswpcvff.png) no-repeat center 4px;
  padding: 0;
  margin: 50px 0;

  display: flex;
  flex-direction: row;
  align-items: baseline;
}

.pricing-block div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.old_price {
  font-size: 16px;
  color: #999999;
}

.old_price span {
  font-size: 18px;
}

.old_price-block {
  text-decoration: line-through;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1em;
}

.discount-percent {
  position: relative;
}

.discount-percent span {
  background: #fe9208;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-8%, -135%);
  white-space: nowrap;
}

.new_price-block {
  font-size: 46px;
  color: #ff3e3e;
  font-weight: 700;
}
/* /Pricing block */

/* Button */

.action-block {
  background-image: linear-gradient(
      to bottom,
      #fff 0%,
      rgba(255, 255, 255, 0) 10%,
      rgba(255, 255, 255, 0) 90%,
      #fff 100%
    ),
    url(../img/c96nz3f4.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-color: #f0f3ee;
  padding-top: 0;
  padding: 35px 0;
}

.big-button {
  display: block;
  margin: 0 auto;
  width: 400px;
  height: 76px;
  border: none;
  border-radius: 38px;
  background: #fe9208;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 76px;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  animation: breathe 2s infinite;
}

/* /Button */

/* Product Description */

h2.title {
  display: block;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1em;
  color: var(--tov-main-color, #6095b7);
}

.product-description {
  padding: 35px 0 30px;
}

.product-description .title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 20px;
}

.presentation > p {
  padding: 0 40px;
  line-height: 1.8em;
  text-align: left;
  margin-bottom: 20px;
  font-size: 18px;
}

.presentation > p > span {
  background: var(--tov-main-color, #6095b7);
  color: #fff;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
  font-size: 22px;
  line-height: 50px;
}

.presentation img {
  width: 100%;
  border-radius: 20px;
}

.video-presentation {
  text-align: center;
}

.video-presentation iframe {
  width: 400px;
  border-radius: 10px;
}

/* /Product Description */

/* Features Block */

.features-block {
  background-color: var(--tov-main-color, #6095b7);
  color: #fff;
  padding: 20px;
  max-width: 600px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 60px;
}

.features-block .title {
  background-color: var(--tov-main-color, #6095b7);
  color: white;
  text-align: center;
  font-size: 24px;
  padding: 10px;
  margin: -45px -20px 20px -20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
}

.feature-image {
  width: 140px;
  height: auto;
  margin: 0 20px;
  border: 3px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.feature-image img {
  width: 100%;
  min-width: 98px;
  min-height: 98px;
  height: auto;
  border-radius: 5px;
}

/* /Features Block */

/* Specifications */

.specifications {
  /* margin: 60px 0; */
  background-color: var(--tov-main-color, #6095b7);
  max-width: 480px;
}

.specifications .title {
  background-color: var(--tov-main-color, #6095b7);
  padding-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
  padding-top: 12px;
  color: #fff;
  font-size: 32px;
}

.specifications img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 20px;
}

.characteristics__list {
  padding: 0;
}

.characteristics__list li {
  background-color: var(--tov-main-color, #6095b7);
  color: #fff;
  text-align: center;
  padding: 15px 0;
  box-sizing: border-box;
  min-height: 50px;
}

.characteristics__list li:nth-child(even) {
  background-color: var(--tov-main-color, #6095b7);
}

/* /Specifications */

/* Reviews */

.swiper-autoheight .swiper-wrapper {
  min-height: 550px !important;
}

.reviews {
  background: var(--tov-main-color, #6095b7);
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.reviews .title {
  color: #fff;
  font-size: 26px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wtsp_item {
  background: #fff;
  border-radius: 20px;
  max-width: 400px;
  min-height: 550px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: left;
}

.wtsp_item .info {
  background: #ffffff url(../img/reviews__wtsp_btn.png) 3px 50% no-repeat;
  padding: 16px 110px 13px 50px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0px 0px;
}

.wtsp_item .info img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.wtsp_item .text small {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.date {
  text-align: center;
}

.wtsp_item .date span {
  background: #d0e7f9;
  color: #333;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  margin: 10px 0;
}

.text-container {
  padding: 0 20px;
}

.message-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

.message_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  position: relative;
  max-width: 100%;
  line-height: 1.4em;
  word-break: break-word;
}

.message.author {
  background: #d0e7f9;
  border-bottom-right-radius: 0;
  align-self: flex-end;
}

.message.client {
  background: #f1f1f1;
  border-bottom-left-radius: 0;
  align-self: baseline;
}

.message .time {
  font-size: 11px;
  color: #888;
  text-align: right;
  margin-top: 5px;
}

.photo-product {
  display: flex;
  justify-content: baseline;
}

.photo-product img {
  border-radius: 20px;
  width: 200px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  background: #fe9208;
  padding: 10px;
  color: white;
  border-radius: 10px;
  font-size: 16px;
}

/* /Reviews */

/* Order */

.order-block {
  background: #f0f3ee url(../img/c96nz3f4.jpg) 50% 100% no-repeat;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 480px; /* Можно настроить по вашему дизайну */
}

.order-title {
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  font-size: 25px;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 8px 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Пример тени: горизонтальное смещение, вертикальное смещение, размытие, цвет */
}

.step:last-child {
  margin-bottom: 0;
}

.step-icon {
  width: 120px; /* Устанавливаем ширину круга */
  height: 120px; /* Устанавливаем высоту круга */
  border-radius: 50%; /* Делаем углы круглыми, создавая круг */
  background-color: black; /* Задаем черный цвет фона */
  display: flex; /* Используем flexbox для центрирования изображения внутри */
  justify-content: center; /* Горизонтальное центрирование содержимого */
  align-items: center; /* Вертикальное центрирование содержимого */
}

.step-icon img {
  display: block; /* Убираем возможные внешние отступы у изображения */
  width: 50%; /* Процентное значение для масштабирования изображения относительно размера .step-icon */
  height: auto; /* Сохраняем пропорции изображения */
}
.step-info {
  margin-left: 15px;
}

.step-title {
  color: #000;
  margin: 0;
  font-size: 20px; /* Можно настроить по вашему дизайну */
}

.step-info p {
  color: #555;
  margin: 5px 0 0;
  font-size: 18px; /* Можно настроить по вашему дизайну */
}

/* /Order */

/* Oder Form */

.order-form form {
  margin: 42px auto 50px;
  background: #f0f3ee url(../img/c96nz3f4.jpg) 50% 100% no-repeat;
  padding: 20px 0px 30px;
  width: 100%;
  border-radius: 20px;
  box-shadow: inset -1px 1px 9px rgb(0 0 0 / 12%),
    -2px 12px 10px rgb(0 0 0 / 12%);
}

.order-form form span input,
.order-form form span select {
  display: block;
  margin: 0 auto 20px;
  padding: 0 20px 0 20px;
  width: 400px;
  height: 66px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 25px;
  background-color: #ffffff;
  font-family: "AvenirNextCyr", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333;
  box-shadow: inset -1px 1px 9px rgb(0 0 0 / 12%),
    -2px 3px 10px rgb(0 0 0 / 12%);
}


.number-discount {
    border: 2px dashed var(--tov-main-color, #000);
    border-radius: 12px;
    padding: 15px;
    margin: 15px;
}

.block-title {
    color: #e67e22;
    text-align: center;
    margin-bottom: 10px;
}
.discount-list {
	padding: 0;
}

.discount-list .discount-item {
    border: 1px dashed var(--tov-main-color, #000);
    border-radius: 8px;
    padding: 8px;
    margin: 6px 0;
	text-align: center;
}

.number-discount .block-title {
	color: var(--tov-main-color, #000);
}


/* /Oder Form */

/* Keyframes for pulsing animation */
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Other */

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

ol,
ul {
  list-style: none;
}

/* /Other */
