.order-simple input[type='text'],
.order-simple select,
.order-simple textarea {
    width: 100%;
}

.order-simple label {
    width: 100%;
    margin-bottom: 0;
}

.order-simple__error {
    color: red;
}

.success_order__btn {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.not_found_left {
    align-items: normal !important;
}

.order_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.6rem;
}

#buyoneclick .order-left {
    width: 100%;
    max-width: 72rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.order-simple__block {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.order-simple__block__title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 80%;
    letter-spacing: -5%;
    color: hsla(217, 36%, 18%, 1);
}

.order-right {
    width: 100%;
}

.order-right .order-simple__block {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.order-simple__price-table {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.order-simple__price-table span:first-child {
    font-size: 1.6rem;
    font-weight: 500;
    color: hsla(215, 23%, 65%, 1);
}

.order-simple__price-table span:last-child {
    font-size: 1.8rem;
    font-weight: 500;
    color: hsla(217, 36%, 18%, 1);
}

.order-simple__price-table div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-simple__price-table hr {
    width: 100%;
    height: 1px;
    color: hsla(213, 29%, 84%, 1);
}

.order-right button {
    width: 100%;
}

#buyoneclick .order-simple__block-btn {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.order-simple__block.errors {
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}

input[type="radio" i] {
    width: 2.3rem;
    height: 2.3rem;
    margin: 0;
    border: 1px solid hsla(213, 29%, 84%, 1);
}

.order-simple__field.radio {
    width: fit-content;
}

.order-simple__field.radio label {
    display: flex;
    align-items: center;
    gap: .8rem;
    cursor: pointer;
}

.order-right .form__consent {
    max-width: 100% !important;
}

.order-simple-success,
.order-simple-success-p {
    margin-bottom: 3.2rem;
}

/* Блокировка кнопки оформления заказа (защита от дублей) */
#buyoneclick .btn__spinner {
    display: none;
    width: 1.8rem;
    height: 1.8rem;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    margin-left: var(--space-2);
    animation: order-simple-spin .7s linear infinite;
}

#buyoneclick .btn.is-loading .btn__spinner {
    display: inline-block;
}

#buyoneclick .btn.is-loading .btn__icon-right {
    display: none;
}

#buyoneclick .btn.is-loading {
    opacity: .75;
    pointer-events: none;
    cursor: wait;
}

@keyframes order-simple-spin {
    to {
        transform: rotate(360deg);
    }
}


@media(max-width: 1024px) {
    .success_order__btn {
        width: 100%;
        flex-wrap: wrap;
    }

    .success_order__btn a {
        width: 100%;
    }
}