
.simplecheckout-step {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.simplecheckout-left-column {
    width: calc(55% - 30px);
}
.simplecheckout-right-column {
    width: calc(45% - 30px);
}

.simplecheckout-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    /*border-bottom: 1px solid rgb(167, 167, 167);*/
}
#simplecheckout_cart {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
#simplecheckout_payment,
#simplecheckout_comment {
    border-bottom: none;
}

.simple-content .checkout-heading {
   display: block;
   border: none;
   color: #333;
   font-size: 24px;
   font-weight: 600;
   margin-bottom: 15px;
}

#simplecheckout_comment .checkout-heading {
    font-weight: 600;
    color: #333;
    position: relative;
    font-size: 16px;
    margin-bottom: 5px;
    padding-left: 25px;
}

.simplecheckout-block-content {
    padding: 0 15px;
    max-width: 380px;
}
#simplecheckout_comment .simplecheckout-block-content {
    max-width: 100%;
}

fieldset {
    display: block;
    border: none;
    margin: 0;
    padding: 0;
}
fieldset .form-group {
    margin-bottom: 20px;
}

.control-label {
    display: block;
    font-weight: 500;
    color: #333;
    position: relative;
    font-size: 16px;
    margin-bottom: 5px;
    padding-left: 0;
}
fieldset input,
.simplecheckout-block-content textarea {
    display: block;
    width: 100%;
    padding: 10px 20px 11px;
    margin-bottom: 5px;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    border: 1px solid rgb(180, 180, 180);
    font-size: 16px;
    resize: none;
    transition: .2s;
}
fieldset input::placeholder {
    color: rgb(183, 183, 183);
    text-align: center;
    
}
fieldset .has-error input {
    border: 1px solid #e30613
}

.simplecheckout-block-content textarea {
    height: 100px;
}


.simplecheckout-error-text {
    display: block;
    padding-left: 0;
    font-size: 14px;
    color: #e30613;
}




#simplecart {
    display: block;
    border: 1px solid #e30613;
    border-radius: 10px;
    padding: 30px 30px 20px;
}





.cart-product {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 30px;
}
.cart-product__image {
    width: 130px;
}
.cart-product__info {
    width: calc(100% - 145px);
}

.product-name {
    display: block;
    color: #333;
    transition: .2s;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
}
.product-name:hover {
    color: #e30613;
}


.product-model {
    display: block;
    font-size: 14px;
    color: rgb(132, 132, 132);
}

.product-quantity {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.product-quantity .popupcart-item__quantity input {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 45px;
}

.product-quantity .product-price {
    display: block;
    font-weight: 600;
    color: #e30613;
    position: relative;
    font-size: 20px;
}
.product-quantity .product-price:before {
    content: 'x';
    display: inline-block;
    margin-right: 5px;
}
.product-quantity .product-remove {
    cursor: pointer;
}
.product-quantity .product-remove svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: #333;
}


.simplecart__totals .simplecart__total {
    display: none;
}
.simplecart__totals .simplecart__total:last-child {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-end;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.simplecart__total-value {
    color: #e30613;
    margin-left: 10px;
}


#simplecheckout_payment_form {
    width: calc(55% - 30px);
    border-bottom: none;
    padding-left: 15px;
}
#simplecheckout_payment_form h1,
#simplecheckout_payment_form h2,
#simplecheckout_payment_form h3,
#simplecheckout_payment_form h4 {
    display: block;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 15px;
    color: rgb(118, 118, 118);
}
#simplecheckout_payment_form p {
    display: block;
    font-weight: 300;
    font-size: 18px;
    margin: 0 0 10px;
    color: rgb(118, 118, 118);
}



.simplecheckout-button-block.buttons {
    margin-bottom: 40px;
    width: calc(55% - 30px);
}

.simplecheckout-proceed-payment {
    display: none;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

#simplecheckout_button_confirm,
#button-confirm {
    display: block;
    text-decoration: none;
    border-radius: 30px;
    transition: .2s;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 9px 35px 5px;
    background: #e30613;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    border: none;
    height: auto;
    line-height: 1.6;

}
#simplecheckout_button_confirm:hover,
#button-confirm:hover {
    background: #d90011;
}


/*select*/

.form-group {
    position: relative;
}
.form-group select {
    display: block;
    width: 100%; /* от ширины блока div */
    padding: 11px 20px 10px;/* отступы от текста до рамки */
    background: none; /* убираем фон */
    border: 1px solid rgb(180, 180, 180); /* рамка */
    border-radius: 5px;/* скругление полей формы */
    -webkit-appearance: none;/* Chrome */
    -moz-appearance: none;/* Firefox */
    appearance: none;/* убираем дефолнтные стрелочки */
    font-family: inherit;/* наследует от родителя */
    font-size: 16px;
    color: rgb(183, 183, 183);
    cursor: pointer;
}
.row-shipping_address_country_id:after,
.row-shipping_address_city:after,
.row-shipping_address_zone_id:after {
    content: "";
    display: block;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #000 transparent transparent transparent;
    pointer-events: none;
    position: absolute;
    top: calc(48px);
    right: 20px;
    z-index: 1;
}

/*end select*/

/*radio*/

.radio {
    margin-bottom: 10px;
}
.radio input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 7px;
}
.radio__text {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: rgb(109, 109, 110);
}

.radio__text:before {
    content: '';

    cursor: pointer;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    position: relative;
    background: #fff;
    transition: .2s;
    border-radius: 3px;
    border: 1px solid rgb(154, 154, 154);

   

    
}
.radio__text:after {
    content: '✓';
    position: absolute;
    color: #e30613;
    font-size: 18px;
    top: 0px;
    left: 5px;
    opacity: 0;
    transition: .2s;
}
.radio input:checked + .radio__text:after {
    opacity: 1;
}
.radio input:focus + .radio__text:before {
    box-shadow: 0 0 0 3px rgba(255,255,0,.7);
}

/*end radio*/




/*header*/

.checkout-header {
    margin-bottom: 30px;
}
.checkout-header .container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding: 10px 15px;
}

.checkout-header .container .header-logo {
    width: 350px;
}
.checkout-header .container .header-info {
    width: calc(100% - 380px);
    padding: 0;
    justify-content: flex-end;
    -ms-align-items: center;
    align-items: center;
}



@media(max-width: 992px) {
    header {
        padding: 15px 0;
    }
    .checkout-header .container {
        display: block;
        padding: 0px 15px;
    }
    .checkout-header .header-middle__links {
        justify-content: flex-end;
    }

    .simplecheckout-right-column {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
    }
    .simplecheckout-left-column,
    .simplecheckout-button-block.buttons {
        order: 2;
        width: 100%;
    }
    #simplecheckout_button_confirm, 
    #button-confirm {
        padding: 9px 20px 5px;
    }

    .product-quantity .popupcart-item__quantity input {
        width: 40px;
    }
}
@media(max-width: 500px) {
    #simplecart {
        padding: 20px 10px 15px;
        border-radius: 30px;
    }
    .cart-product__image {
        display: none;
    }
    .cart-product__info {
        width: 100%;
    }
    .product-quantity .popupcart-item__quantity input {
        width: 30px;
    }
}