

.order-section {
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 20px;
}
.order-section h1 {
    margin-top: 0;
    margin-bottom: var(--second-margin);
}
.order-block {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    column-gap: 20px;
}

.order_header {
    font-size: 24px;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 32px;
}


.order_block {
    /*flex: 0 1 calc(50% - 10px);*/
}
.order_form {
    flex: 0 1 600px;
    flex-basis: 600px;
    width: 100%;
}
.order-label {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}
.order-label:first-of-type {
    margin-top: 0;
}
.order-label span {
    font-weight: 500;
    line-height: 26px;
    flex: 0 0 150px;
}
.order_form input,
.order-label textarea {
    background-color: #fff;
    border: 1px rgba(0,0,0,.1) solid;
    border-radius: 8px;
    padding: 12px 14px;
    flex: 0 1 400px;
    margin-top: 0;
    font-weight: 500;
    line-height: 26px;
}
.order-label textarea {
    padding-bottom: 30px;
}
.order_form input:focus,.order-label textarea:focus{border-color: #ccc;}
.order_form input::placeholder,
.order-label textarea::placeholder{
    color: var(--gray-color);
}
.order-label-textarea {
    position: relative;
}
.order-label-textarea button {
    position: absolute;
    color: var(--orange-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    bottom: 4px;
    right: 16px;
    cursor: pointer;
    background-color: var(--light-gray-color);
    border-radius: var(--main-border-radius);
    padding: 5px;
}

.sale{
    border: 1px rgba(0,0,0,.1) solid;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px 16px;
    .bonus-label{
        margin-bottom: 0;
    }
}

.promocode{
    margin-bottom: 8px;
    position: relative;
}
    .promocode input{margin: 0;}
    .promocode-apply{
        color: var(--orange-color);
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1.5px;
        line-height: 20px;
        position: absolute;
        right: 24px;
        text-transform: uppercase;
        top: calc(50% - 10px);
    }
.bonus{
    margin-bottom: 8px;
    position: relative;
}
    .bonus-label{margin-bottom: 10px;}
    .order-block-mobile .bonus-label{margin-top: 10px;}
    .bonus-range{
        align-items: center;
        background: #fff;
        border: 1px rgba(0,0,0,.1) solid;
        border-radius: 8px;
        display: flex;
        height: 49px;
        max-width: 100%;
        padding: 0 16px;
        position: relative;
        width: 100%;
    }
        .bonus-apply{
            bottom: 14px;
            color: var(--orange-color);
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            line-height: 20px;
            position: absolute;
            right: 24px;
            text-transform: uppercase;
        }
    .bonus input[type="range"]{
        -webkit-appearance: none;
        appearance: none;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        margin: 0;
        max-width: 65%;
        outline: none;
        padding: 0;
        width: 65%;
    }
    .bonus input[type="range"]::-moz-range-track{
        background: var(--orange-color);
        border-radius: 2px;
        height: 2px;
    }
    .bonus input[type="range"]::-moz-range-thumb{
        -webkit-appearance: none;
        appearance: none;
        background-color: #fff;
        border: 2px var(--orange-color) solid;
        border-radius: 50%;
        height: 10px;
        width: 10px;
    }
    .bonus input[type="range"]::-webkit-slider-runnable-track{
        background: var(--orange-color);
        border-radius: 2px;
        height: 2px;
    }
    .bonus input[type="range"]::-webkit-slider-thumb{
        -webkit-appearance: none;
        appearance: none;
        background-color: #fff;
        border: 2px var(--orange-color) solid;
        border-radius: 50%;
        height: 14px;
        margin-top: -6px;
        width: 14px;
    }
.order_result_block_content{flex: 0 1 530px;}
.order_result_block {
   border: 1px rgba(0,0,0,.1) solid;
    border-radius: var(--main-border-radius);
    padding: 16px 24px;
    position: relative;
}
.order-result {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.order-result p {
    line-height: 140%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.order-result p:last-child{margin-bottom: 0;}
.order_total-price {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    margin-top: 16px;
}
.order-btn {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    transform: translateY(calc(100% + 16px));
}

/*#order-order .popup_header {*/
/*    margin-top: 24px;*/
/*    text-align: center;*/
/*    font-size: 19px;*/
/*}*/
#order-order label {
    max-width: 100%;
    width: 100%;
    margin-top: 24px;
}
#order-order textarea {
    resize: none;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: var(--light-gray-color);
    width: 100%;
    height: 100px;
    font-weight: 500;
    line-height: 25px;
}
#order-order textarea::placeholder {
    color: var(--gray-color)
}
#order-order .popup_button {
    margin: 24px 0 0;
}
.order-star {
    max-width: 140px;
    width: 100%;
    display: block;
}
.order-star img {
    width: 100%;
    height: auto;
}


