.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: 230px;
    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);
}

.div-section-form {
    margin: 20px auto;
    width: 100%;
}

.wrap-prod-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.none {
    display: none;
}

.price-wrap {
    margin-top: 15px !important;
}

.form img {
    max-width: 170px !important;
}

.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);
    }
}

.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;
}

@media (max-width: 600px) {
    .subheader-container * {
        font-size: 0.9rem !important;
    }
}