.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: 20px;
}
.price {
  font-size: 40px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}
.circle-svg {
  position: absolute;
  top: -26px;
  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;
}
.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);
  }
}
.header {
  display: flex;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}
.header-container {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  max-width: 700px;
  width: 100%;
  padding: 10px 15px;
}
.header-bottom h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.8rem;
}
.red-header {
  color: #fff;
  background-color: #c00;
}
.header__menu-icon-svg {
  height: 24px;
  width: 24px;
  fill: #0c0c0c;
}
.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;
}
.footer-container {
  margin: 0 auto;
  padding: 20px;
  background-color: #0c0c0c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.footer-many-elements {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 10px;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-one-element h3 {
  font-size: 21px;
  color: #fff;
}
.footer-one-element a {
  color: #fff;
}
.footer-one-element a svg {
  fill: #fff;
  width: 24px;
  height: 24px;
}
.footer-one-element .brand-logo__logo {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: #c00;
  align-items: center;
  justify-content: center;
}
.footer-one-element .brand-logo__logo svg {
  fill: #fff;
  width: 30px;
  height: 22px;
}
.footer-container hr {
  width: 100%;
  opacity: 0.1;
}
.date-styles {
  color: #4c8ae0;
  font-size: 0.9rem;
  margin-left: 8px;
}
.subheader-container {
  padding: 10px;
  color: #818181;
}
.subvideo-banner {
  background-color: #0c0c0c;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 1rem 0;
}
.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 {
  z-index: 1000000;
}
