.header-priceWrapper {
    max-width: 100%;
    width: 480px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b1b1b;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
}

.oldPrice {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 40px;
    line-height: 47px;
    font-weight: 400;
    text-align: center;
    flex-basis: 50%;
    text-transform: uppercase;
    text-decoration: line-through;
    color: #fff;
}

.newPrice {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 40px;
    line-height: 47px;
    font-weight: 700;
    text-align: center;
    flex-basis: 50%;
    text-transform: uppercase;
    color: #ff9900;
}

.header-priceWrapper::after {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 65%;
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.form {
    display: block;
    padding: 0 28px;
    margin-top: 30px;
    text-align: center;
}

.form .button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    width: 430px;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    color: #1b1b1b;
    font-weight: 900;
    background: #ff9900;
    border: 7px solid #ffcd83;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 40px;
    padding-top: 22px;
    padding-bottom: 22px;
    cursor: pointer;
    max-width: 100%;
}

.order-form__label {
    font-size: 25px;
    line-height: 30px;
    color: #333333;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.order-form__input {
    width: 100%;
    border: 2px solid #c0c0c0;
    font-size: 23px;
    line-height: 27px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 13px;
    padding: 30px 25px;
    box-sizing: border-box;
}

.order-form__input.error {
    border-color: #f00;
    margin-bottom: 2px;
}

.form label.error {
    color: #f00;
    display: block;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    margin: 0 auto 5px;
    padding: 0;
    width: 100%;
}

@media (max-width: 767px) {

    .oldPrice,
    .newPrice {
        font-size: 28px;
    }

    .form {
        padding: 0 15px;
    }

    .order-form__label {
        font-size: 18px;
    }

    .order-form__input {
        font-size: 18px;
        line-height: 20px;
        padding: 20px 15px;
    }

    .form .button {
        font-size: 20px;
        line-height: 23px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}