.section-form {
  width: 100%;
  max-width: 550px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border: 4px solid lightblue;
}

.form-title {
  margin-top: 10px;
  margin-bottom: 5px;
}

.form img {
  width: 100%;
  max-width: 200px;
  margin: 20px 0;
}

.form-price {
  font-size: 24px;
  margin-bottom: 20px;
}

.form-text {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  color: rgb(113, 113, 113);
}

input {
  font-size: 18px;
  padding: 4px 10px;
  border: 1px solid rgba(53, 130, 237, 0.5);
  margin-bottom: 20px;
  width: 60%;
  outline: none;
}

.btn-submit {
  background-color: #3580ed;
  color: white;
  border: none;
  width: 50%;
  padding: 15px 20px;
  margin-bottom: 30px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.4s ease;
}

@media (hover: hover) {
  .btn-submit:hover {
    transform: scale(0.9);
    transition: 0.4s ease;
  }
}
.animate-show {
  opacity: 0;
  transition: 0.4s ease;
  transform: translateY(20px);
}

.input-container {
  position: relative;
  width: 60%;
}

.input-container input {
  width: 100%;
}

.input-container input[name="phone"] {
  padding-left: 35px;
  /* Добавляем отступ слева для изображения */
}

.input-container img {
  width: 25px;
  position: absolute;
  left: 5px;
  top: -5px;
  transform: translateY(-50%);
}

.div__popup-form {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(1, 1, 1, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999999999999999999999999;
  cursor: pointer;
}

@keyframes animPopupForm {
  0% {
    transform: translateY(-500%);
  }

  100% {
    transform: translateY(0%);
  }
}

.popup-form {
  background-color: white;
  overflow: auto;
  width: 90%;
  max-width: 500px;
  max-height: 90%;
  cursor: default;
  animation: animPopupForm 0.5s ease forwards;
}

.popup-form .form-title,
.popup-form .img-form_cert,
.popup-form .footer-title_form,
.popup-form .termina-form,
.popup-form .timer,
.popup-form .form-text {
  display: none;
}

.popup-form .form {
  margin-bottom: 0px !important;
}

.popup-form .btn-submit {
  margin: 0;
}

.popup-form .prod-form-img {
  margin-top: 0px;
}

.popup-form .div-img-form_cert {
  margin: 0;
  display: none;
}

.popup-form__btn-close {
  position: absolute;
  right: 2%;
  top: 3%;
  z-index: 1;
  font-size: 64px;
  cursor: pointer;
  color: rgb(172, 172, 172);
  transition: 0.3s ease;
  line-height: 1px;
}

.popup-form__btn-close:hover {
  transform: scale(0.9);
  transition: 0.3s ease;
}

.div-section-form {
  margin: 20px auto;
  width: 100%;
}

.popup-form .div-section-form {
  margin: 0px auto;
  width: 100%;
}

.none {
  display: none;
}

.wrap-prod-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.order-btn {
  background-color: orange;
  color: #fff;
  font-size: 24px;
  padding: 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  text-align: center;
  font-family: "BBC Reith Serif", Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.order-btn:hover {
  text-decoration: underline;
}

.price-container {
  display: inline-block;
  position: relative;
  padding: 20px;
}

.price {
  font-size: 40px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}

.circle-svg {
  position: absolute;
  top: -18px;
  left: -27px;
  width: 123px;
  height: 99px;
  transform: rotate(-90deg);
}

.circle {
  fill: none;
  stroke: green;
  stroke-width: 2;
  stroke-dasharray: 282.743;
  stroke-dashoffset: 282.743;
  animation: draw-circle 2s linear infinite;
}

@keyframes draw-circle {
  to {
    stroke-dashoffset: 0;
  }
}

.price-old {
  font-size: 40px;
  font-family: "BBC Reith Serif", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.price-old::before {
  content: "";
  position: absolute;
  top: 43%;
  left: 0;
  width: 100%;
  height: 3px;
  background: red;
  transform: scaleX(0) translateY(-50%);
  transform-origin: left;
  animation: strikethrough 2s linear infinite;
}

@keyframes strikethrough {
  0% {
    transform: scaleX(0);
  }

  50% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(1);
  }
}
