/*=================================================quick_cart===================================================*/
.wrap_smart_sidebar {
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.0);
    visibility: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;

}
.smart_sidebar_inner {
    position: fixed;
    z-index: 1100;
    width: 390px;
    max-width: calc(100% - 30px);
    height: 100vh;
    top: 0;
    right: -400px;
    background-color:#ffffff;
    transition: all 0.4s;
    box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);

}
.quick_cart_title{
    background-color: var(--color_six);
    color:#ffffff;
    padding: 14px
}
.show_smart_sidebar{
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.6);
}

.show_smart_sidebar .smart_sidebar_inner {
    right: 0;
}
.hide_smart_sidebar{
    width: 100%;
    height: 100%;
}



.quick_cart::after {
    content: "";
    display: block;
    width: 100%;
    height: 9%;
    min-height: 30px;
}

/*===========================search_icon===============================*/


.search_icon{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: red;

}
/*    .form_control{
        display: block;
        width: 80%;
        height: calc(1.5em + .75rem + 2px);
        padding: .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 2px solid red;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }*/
.form-control.quick_cart_quantity {
    display: block;
    width: 65px;
    height: calc(1.5em + .75rem + 2px);
    text-align: center;
    font-size: -1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.quick_cart_buttom{
    position: absolute;
    bottom: 10px;
}

.close_icon{right: 10px; top: 10px;cursor: pointer;}



.quick_cart_content {
    flex-grow: 1;
    overflow: auto;
    align-content: space-between;
}

.quick_cart_wrapitem {
    flex-grow: 1;
}

.quick_cart_wrapitem {
    max-height: 56vh;
    overflow-y: scroll;
}

.quick_cart_item_name {
    display: block;
    /*font-family: Poppins-Regular;*/
    font-size: 14px;
    color: #555;
    line-height: 1.3;
}

@media (max-width: 575px) {
    .quick_cart {
        padding: 7px;
    }
    .quick_cart-title {
        padding-bottom: 35px;
    }

    .quick_cart_buttom{
        position: relative;

    }
}
/*=========================================================================cart=============================================*/
.shop_cart_table {
    margin-bottom: 0px;
    /*font-size: 1rem;*/
}

.shop_cart_table table {
    width: 100%;
}

.shop_cart_table thead {
    border-bottom: 1px solid #f2f2f2;
}

.shop_cart_table thead th {

    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px;
}

.shop_cart_table tbody tr {
    border-bottom: 1px solid #f2f2f2;
}

.shop_cart_table tbody tr .cart_product_item {
    overflow: hidden;
    width: 585px;
}



.shop_cart_table tbody tr .cart_product_item img {
    float: left;
    margin-right: 25px;
}

.shop_cart_table tbody tr .cart_product_item .cart_product_item_title {
    overflow: hidden;
    padding-top: 23px;
}

.shop_cart_table tbody tr .cart_product_item .cart_product_item_title h6 {
    color: #111111;
    font-weight: 600;
}

.shop_cart_table tbody tr .cart_product_item .cart_product_item_title .rating i {
    font-size: 10px;
    color: #e3c01c;
    margin-right: -4px;
}

.shop_cart_table tbody tr .cart_close span {
    height: 45px;
    width: 45px;
    background: #f2f2f2;
    border-radius: 50%;
    font-size: 18px;
    color: #111111;
    line-height: 44px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
}

.shop_cart_table tbody tr .cart__price {
    font-size: 16px;
    color: #ca1515;
    font-weight: 600;
    width: 190px;
}

.shop_cart_table tbody tr .cart__quantity {
    width: 190px;
}


.shop_cart_table tbody tr .cart__quantity .pro-qty {
    border: none;
    padding: 0;
    width: 110px;
    border-radius: 0;
}

.shop_cart_table tbody tr .cart__quantity .pro-qty .qtybtn {
    font-size: 16px;
    color: #444444;
}

.shop_cart_table tbody tr .cart__quantity .pro-qty input {
    color: #444444;
}

.shop_cart_table tbody tr .cart__quantity .pro-qty .qtybtn {
    font-size: 16px;
    color: #444444;
}

.shop_cart_table tbody tr .cart__total {
    font-size: 16px;
    color: #ca1515;
    font-weight: 600;
    width: 150px;
}

.mobile_show{display: none;}
.mobile_hide{display: block;}
@media (max-width: 575px) {
    .shop_cart_table   .table td, .shop_cart_table  .table th{
        padding: 2px;
    }
    .mobile_hide{display: none;}
    .mobile_show{display: block;}
}


/*====================================================================checkout===========================================*/
/*source: https://codepen.io/ferdisahin/pen/PXXPXM*/

.checkout {
    padding-top: 10px;
    padding-bottom: 70px;
}
.checkout .accordion .card {
    margin-bottom: 15px;
    border: 0;
}

.checkout .accordion .card .card-header {
    border: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    border-radius: 2px;
    padding: 0;
}

.checkout .accordion .card .card-header .btn-header-link {

    display: block;
    text-align: left;
    color: var(--color_one);
    padding:15px;
}

.checkout .accordion .card .card-header .btn-header-link:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
}

.checkout .accordion .card .card-header .btn-header-link.collapsed {
    background: var(--color_one);
    color: #ffffff;
}

.checkout .h4,  .checkout  h4{
    font-size: 20px;
}

.checkout .accordion .card .card-header .btn-header-link.collapsed:after {
    content: "\f106";
}

.checkout .accordion .card .collapsing {
    line-height: 30px;
}

.checkout .accordion .card .collapse {
    border: 0;
}

.checkout .accordion .card .collapse.show {
    color: #222;
}

.checkout .accordion .card .card-header .btn-header-link ,
.checkout .accordion .card .collapsing, 
.checkout .accordion .card .collapse.show {
    background: #f8f9fa;
}

.not_reach a{
    background: #dddddd!important;
    color: #111111!important;
}


.form-control{margin-bottom: 10px;}
.required .control-label:after {
    content: "*";
    color: red;
}

.control-label{margin-bottom: 0px;}

.payment_method_list input{margin-left: 0px; margin-top: 8px; }
.payment_method_list label{margin-left: 22px;}
.payment_method_list .form-check{margin-bottom: 0px;}
@media (max-width: 575px) {
    #order_item .card-body{
        padding: 0px;
        .compare .even{
            display: none;
        }
    }
}



.compare{
    /*max-height: 450px;*/
        /*overflow: auto;*/
}
.compare .image img{
     width: 287px;
      height: 287px!important;
}
.compare .head{
    background: #4F4F4F;
    color: #fff;
    font-weight: 800;
    padding: 6px 10px;
    text-transform: uppercase;
    font-size: 1.076em;
    width: 100%;

}
.compare_item{
    height: 394px!important;
}
.compare_brief{
    height: 100px;
}
.compare .even {

    border-bottom: 1px solid #dee2e6;
    /*margin-top: 442px;*/
}

.compare .description .btn{
    display: inline-block;
    margin: 10px 0;
    background-color: #4F4F4F;
    border: 0 none;
    color: #FFFFFF;
    font-weight: normal;
    line-height: normal;
    padding: 5px 20px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}


#compare_scroller {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: auto;
    white-space: nowrap;
    text-align: center;
}
#compare_scroller li {
    display: inline-table;
    /*height:635px;*/
      width: 33%;
    float: left;
    border-right:1px solid #dee2e6;
    margin-right: -4px;
    

}
.compare .ecom_item {
    margin-bottom: 30px;
    padding: 0px;
    white-space:initial!important;
    border-radius: 0px;
}

.compare_remove_item{
    cursor: pointer;
    color: red; 
}

.compare .compare_avil{
    height: 49px;
     
}
.compare_price{
    padding: 7px;
}

.compare .description{
        width: 100%;
    overflow: auto;
    text-align: left;
}

.compare  .image{
        padding: 0px 10px;
}

.compare .description h2{
       font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #f5f5f5;
}