.box-cart-ctnr {
    background: #f7f7f7;
    padding: 2rem 0px;
}
.main {
    background: #f7f7f7;
}
.cart-customer-group {
    background: #FFF;
    border-radius: 20px;
    margin-bottom: 12px;
    padding: 5px 5px 10px 5px;
    overflow: hidden;
}

.cart-page .box-title {
    border-bottom: 1px dashed #F0F0F0;
    padding: 0 12px;
    line-height: 42px;
    font-family: var(--font-heading-family);
    font-weight: 500;
    font-size: 20px;
    margin: 0;
}
.cart-page .cart-box-group {
    padding: 12px 12px 20px;
}
.cart-page .customer-sex {
    margin-bottom: 5px;
}
.cart-page .customer-sex label {
    display: inline-block;
    margin: 0 20px 12px 0;
}
.label-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.label-container input:checked ~ .checkmark {
    background-color: #FE7801;
    -webkit-box-shadow: 0 0 0 1px #FE7801;
    box-shadow: 0 0 0 1px #FE7801;
}
.label-container .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 1px #C4C4C4;
    box-shadow: 0 0 0 1px #C4C4C4;
}
.label-container input:checked ~ .checkmark::before {
    background: #FE7801;
}
.label-container .checkmark:before {
    content: '';
    background: #fff;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.label-container input:checked ~ .checkmark:after {
    display: block;
}

.label-container .checkmark:after {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background: #fff;
}

.label-container {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.label-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.cart-page .cutomer-info-tbl td {
    padding: 5px 0;
}
.cart-page .form-input {
    display: block;
    padding: 5px 12px;
    font-family: 'Roboto';
    margin: 0;
    width: 100%;
    border: 1px solid #DFDFDF;
    border-radius: 5px;
    height: 35px;
    outline: none;
}

table.cutomer-info-tbl {
    width: 100%;
}

.cart-page .box-title i {
    font-weight: 200;
    font-size: 13px;
}

.label-container span {
    font-weight: 400;
}



.cart-page .cart-item {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #fff;
    /* border-radius: 20px; */
}

.cart-col-right {
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}
.cart-page .cart-item .item-left {
    width: 130px;
    text-align: center;
}
.cart-page .cart-item .item-left a {
    color: black;
    line-height: 18px;
}

.cart-page .cart-item .item-img {
    height: 115px;
    position: relative;
    margin-right: 15px;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    margin-bottom: 10px;
}
.cart-page .cart-item a {
    display: block;
    color: #000;
}
.cart-page .cart-item .item-right {
    width: calc(100% - 164px);
    line-height: 18px;
}
.cart-page .cart-item .item-name {
    font-size: 16px;
    margin-bottom: 13px;
}
.cart-page .cart-item .item-price-group {
    margin-bottom: 16px;
}
.cart-page .cart-item .item-price {
    font-weight: 700;
    font-size: 18px;
    color: red;
    margin: 0;
}
.cart-page .cart-item .item-price-group * {
    display: inline-block;
    padding: 0;
}
.cart-page .cart-item .item-discount {
    width: 30px;
    color: #FFF;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    background: #ff312e;
    border-radius: 4px;
}
.cart-page .cart-item .item-old-price {
    color: #999;
    margin: 0 3px;
}
.cart-page .cart-item .item-quantity-group {
    /* border: 1px solid #DFDFDF; */
    border-radius: 5px;
    width: 100%;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.item-right .item-quantity-group .box-quantity {
    padding: 0 5px;
}
.cart-page .cart-item .item-quantity-group a {
    width: 30px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.cart-page .cart-item a {
    display: block;
    color: #000;
}
.cart-page .cart-item .item-quantity-group input {
    border: 0;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 40px;
    border-left: 1px solid #DFDFDF;
    border-right: 1px solid #DFDFDF;
    height: 34px;
}
.cart-page .cart-total-group {
    padding: 12px 12px 15px;
    font-size: 15px;
    line-height: 28px;
}
.cart-page .cart-total-group td:nth-child(2) {
    text-align: right;
}
.cart-page .btn-send-cart {
    display: block;
    margin-top: 9px;
    background: #fc322d;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: 0;
    width: 100%;
    height: 40px;
}

.cart-total-group table {
    width: 100%;
}

.cart-total-price-group {
    background: #fff;
    margin-top: 20px;
    border-radius: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
}
.item-export-intro {
    padding: 10px 0px;
}

.item-export-intro span {
    font-weight: 600;
    margin-left: 5px;
}

.company-group.active {
    display: block;
}

.company-group {
    display: none;
}
.item-quantity-group a svg {
    width: 10px;
    height: 10px;
}
.box-content-cod {
    display: none;
}

label.label-container.active .box-content-cod {
    display: block;
}

.section_cart {
    width: 100%;
    padding: 30px 0;
}
@media (min-width: 992px) {
    .offset-lg-2 {
        margin-left: 0;
    }
}
.box_order_success {
    margin-top: 20px;
}
.box_order_success .box_icon_sucess {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.box_order_success .box_icon_sucess .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgb(87 209 124);
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    position: relative;
}
.box_order_success .box_icon_sucess .icon:before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: rgba(87, 209, 124, 0.3);
    border-radius: 50%;
    left: -10px;
    top: -10px;
}
.box_order_success .box_icon_sucess {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.box_order_success .box_icon_sucess .icon i {
    color: #fff;
    font-size: 31px;
    position: relative;
}
.box_order_success .box_icon_sucess .title_success {
    text-align: center;
    width: 100%;
    font-weight: 700;
    font-size: 23px;
    margin-top: 31px;
}
.box_info_order_success {
    border: 1px solid #ccc;
    padding: 25px;
    font-size: 20px;
    max-width: 750px;
    margin: auto;
}
.box_info_order_success .info_customer {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}
.box_info_order_success .info_customer .name {
    margin-bottom: 4px;
    font-size: 16px;
}
.box_info_order_success .info_customer .phone {
    font-size: 16px;
    margin-bottom: 8px;
}
.box_info_order_success .info_customer .address {
    font-size: 16px;
}
.box_info_order_success .list_sp_order_success {
    width: 100%;
}
.box_info_order_success .list_sp_order_success .item {
    width: 100%;
    margin-bottom: 15px;
}
.box_info_order_success .list_sp_order_success .box {
    display: flex
;
    align-items: center;
}
.list_sp_order_success .cart-product-image img {
    height: 83px;
    padding-right: 20px;
}
.box_info_order_success .list_sp_order_success .box_name {
    width: 75%;
    margin-right: 5%;
}
.box_info_order_success .list_sp_order_success .box_name .name {
    font-weight: 700;
    font-size: 18px;
}
.box_info_order_success .list_sp_order_success .box_info {
    width: 40%;
}
.box_info_order_success .list_sp_order_success .box_info .qty {
    font-size: 14px;
}
.box_info_order_success .list_sp_order_success .box_info .price {
    font-size: 14px;
}
.thank_you {
    width: 100%;
    text-align: center;
    margin-top: 24px;
}
.thank_you .content_thank {
    text-align: center;
    width: 100%;
    font-size: 16px;
    max-width: 700px;
    display: block;
    margin: 0 auto 30px;
}
.group_button_home a.back_home {
    background-color: #ff312e;
    color: #fff;
    margin-right: 15px;
}

.group_button_home a {
    display: inline-block;
    width: 100%;
    max-width: 210px;
    line-height: 40px;
    border-radius: 5px;
}
.box_order_success .box_icon_sucess .icon i svg {
    width: 47px;
    height: 47px;
    margin-bottom: -15px;
}
.cart-page .cart-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.box-cart-top {
    background: #FFF;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 10px;
}

@media(max-width:990px){
    .cart-page .box-title i {
        width: 100%;
        display: block;
    }
    .cart-page .box-title {
        line-height: 35px;
        font-size: 15px;
    }
    .cart-page .cutomer-info-tbl td:nth-child(1) {
        width: 40%;
    }
}