.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.div-section-form {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.form img {
    max-width: 200px;
    margin: 36px 0;
}

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

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

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

.circle-svg {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 123px;
    height: 100px;
    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;
}

.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 draw-circle {
            to {
                stroke-dashoffset: 0
            }
        }

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

            50% {
                transform: scaleX(1)
            }

            100% {
                transform: scaleX(1)
            }
        }

.order-btn {
    background-color: orange;
    color: #fff;
    font-size: 24px;
    padding: 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    text-align: center;
    text-decoration-line: none;
}