* {
    box-sizing: border-box;
}
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #0f172a;
      color: #e5e7eb;
      line-height: 1.55;
      text-align: center;
    }
    .wrap {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 10px;
    }
    .video-container {
      margin-top: 20px;
      max-width: 800px;
      margin: 0 auto;
      dn
    }

    .note {
      margin-top: 8px;
      font-size: 14px;
      color: #9ca3af;
    }
    .refs {
      margin: 50px auto;
      max-width: 800px;
      font-size: 14px;
      text-align: left;
      color: #cbd5e1;
    }
    .refs h3 {
      margin-bottom: 10px;
      font-size: 16px;
      color: #facc15;
    }
    .refs li {
      margin: 6px 0;
    }
    footer {
      font-size: 13px;
      color: #9ca3af;
      margin: 40px auto 20px;
    }
    footer a {
      color: #fff;
      margin: 0 6px;
      text-decoration: none;
    }
    .legal-disclaimer {
      margin:40px auto;
      font-size:12px;
      line-height:1.6;
      color:#777;
      max-width:900px;
      text-align:left;
    }
    .legal-disclaimer a {
        color: #9ca3af;
    }

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border: 4px solid lightblue;
  background-color: #0f172a;
}

.form-title {
  margin-top: 10px;
  margin-bottom: 5px;
}

.form img {
  width: 100%;
  max-width: 220px;
  margin: 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;
  }
}
.order-btn {
      background-color: orange;
      color: #fff;
      font-size: 24px;
      padding: 15px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 20px;
      text-align: center;
    }

    .price-container {
      display: inline-block;
      position: relative;
padding: 0 0 30px 0;
    }

    .price {
      font-size: 40px;
      font-weight: 700;
      z-index: 1;
      position: relative;
    }

.circle-svg {
    position: absolute;
    top: -45px;
    left: -28px;
    width: 150px;
    height: 150px;
    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;
      position: relative;
    }

    .price-old::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 3px;
      background: red;
      transform: scaleX(0);
      transform-origin: left;
      animation: strikethrough 2s linear infinite;
    }

    @keyframes strikethrough {
      0% {
        transform: scaleX(0);
      }

      50% {
        transform: scaleX(1);
      }

      100% {
        transform: scaleX(1);
      }
    }

    .brand-logo__icon {
      width: 46px;
      height: 22px;
      fill: #c00;
    }

    .brand-logo__theme {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #0c0c0c;
      margin-left: -8px;
    }

    .date-styles {
      color: #4c8ae0;
      font-size: 0.9rem;
      margin-left: 8px;
    }

    .price span {
      padding-right: 50px;
    }

    @media screen and (max-width: 430px) {
      /* .price-container {
        padding: 0;
      } */

      .price-old {
        font-size: 30px;
      }
    }

    .section-comments hr {
      margin: 0 0 20px 0;
      opacity: 0.3;
    }

.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: 100000;
    cursor: pointer;
}
.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;
}

    .header {
      text-align: center;
      padding: 20px;
      font-size: 2rem;
      font-weight: bold;
    }