._oc_cart h1,
._oc_cart h2,
._oc_cart h3,
._oc_cart h4,
._oc_cart h5,
._oc_cart h6,
._oc_cart p{
    padding:0;
    margin:0;
}
._oc_cart{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index: -1;
    opacity: 0;
    transition: all .1s ease-in-out;
    color:#50555b;
}
._oc_cart.active{
    z-index: 9999;
    opacity: 1;
}

._oc_cart > ._oc_cart_overlay{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: rgba(0,0,0,.2);
}
._oc_cart > ._oc_cart_box{
    position: absolute;
    top:10px;
    right:-100%;
    bottom:10px;
    width:calc(100% - 20px);
    max-width:600px;
    background-color: #fff;
    border-radius:10px;
    box-shadow: 0px 6px 20px rgba(0,0,0,.2);
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    flex:1;
}
.admin-bar ._oc_cart > ._oc_cart_box{
    top:42px;
}
@media(max-width:992px){
    .admin-bar ._oc_cart > ._oc_cart_box{
        top:62px;
    }
}
._oc_cart.active > ._oc_cart_box{
    right:10px;
}

._oc_cart ._oc_header{
    border-bottom: 1px solid #eee;
}
._oc_cart ._oc_header ._oc_header_main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
}
._oc_cart ._oc_header ._oc_header_main > div{
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
    align-items: flex-end;
}
._oc_cart ._oc_header ._oc_shpping_info{
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
    align-items: center;
    padding: 10px 25px;
    background-color: #fafafa;
    border-top: 1px solid #eee;
}
._oc_cart ._oc_header h4{
    font-size: 24px !important;
    line-height: 24px;
}
._oc_cart ._oc_header p:not(._oc_help_text){
    font-size: 16px;
    line-height: 20px;
}
._oc_cart ._oc_close_button{
    appearance: none;
    border:none;
    background: none;
    font-size: 32px;
    display: block;
    line-height: 20px;
    padding-bottom: 4px;
    cursor: pointer;
}
._oc_cart ._oc_close_button:hover,
._oc_cart ._oc_close_button:focus{
    color:#f9615a;
}


._oc_inner{
    display: flex;
    flex-direction: column;
    flex:1;
    overflow-y: auto;
}
._oc_inner ._oc_product{
    padding:10px;
    border-bottom: 1px solid #eee;
    position: relative;
}
._oc_inner ._oc_product > div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
._oc_inner ._oc_product > div._oc_related{
    border-radius: 10px;
    background: #eee;
    align-items: center;
}
._oc_inner ._oc_product:last-child{
    border-bottom: none;
}
._oc_inner ._oc_product > div > img{
    width:33.333%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
}
._oc_inner ._oc_product > div._oc_related > img{
    width:25%;
    margin-left: 4%;
    margin-right: 3%;
}
._oc_inner ._oc_product > div > div{
    width:100%;
    padding: 10px 15px 10px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
._oc_inner ._oc_product > div > div > div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 5px;
}
._oc_inner ._oc_product > div._oc_related > div > div{
    margin-bottom: 15px;
    align-items: flex-start;
}
._oc_inner ._oc_product ._oc_total{
    font-weight: 700;
    line-height: 20px;
    color:#000;
}

._oc_inner ._oc_product > div._oc_related ._oc_total{
    color:#686d71;
    font-weight: 500;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}
._oc_inner ._oc_product > div._oc_related ._oc_total > span{
    text-decoration: line-through;
    font-size:15px;
    line-height:16px;
    color: #F9615A;
}

._oc_inner ._oc_product h3{
    font-size: 18px !important;
    font-weight: 700;
    color:#686d71;
    padding-right: 40px;
    margin-bottom: 20px;
}
._oc_inner ._oc_product h4{
    font-size: 16px !important;
    line-height: 20px;
    font-weight: 500;
    color:#686d71;
}
._oc_inner ._oc_product ._oc_remove{
    position: absolute;
    appearance: none;
    border:none;
    background: white;
    font-size: 24px;
    display: block;
    line-height: 20px;
    padding: 3px 6px;
    border-radius: 9999px;
    cursor: pointer;
    top:15px;
    left:15px;
    color: #f9615a;
}
._oc_inner ._oc_product ._oc_remove:hover,
._oc_inner ._oc_product ._oc_remove:focus{
    color:#f9615a;
}


._oc_inner ._oc_related_multiple{
    position: relative;
}
._oc_inner ._oc_related_multiple > div{
    overflow-x: auto;
    padding: 50px 10px 20px 10px;
    position: relative;
}
._oc_inner ._oc_related_multiple > div > div{
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
    width:fit-content;
    flex:1;
}
._oc_inner ._oc_related_multiple h3{
    position: absolute;
    top:10px;
    left:25px;
    font-size: 20px !important;
    font-weight: 600 !important;
}
._oc_inner ._oc_product_vertical{
    display: flex;
    flex:1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 10px;
    min-width:186px;
    width:186px;
    text-align: center;
}
._oc_inner ._oc_product_vertical > div{
    display: flex;
    flex:1;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 4px;
    width: 100%;
}
._oc_inner ._oc_product_vertical img{
    width:100px;
    height:150px;
    margin:0 auto 20px auto;
    object-fit: contain;
}
._oc_inner ._oc_product_vertical h5{
    font-weight: 700;
    font-size:16px;
    line-height: 22px;
}


._oc_footer{
    padding:20px;
    border-top: 1px solid #eee;
}

._oc_footer_icons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-top: 25px;
}


._oc_button_checkout{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9615a !important;
    color:#fff !important;
    border:3px solid #f9615a;
    width: 100%;
    height:48px;
    border-radius: 9999px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
._oc_button_checkout:hover{
    background-color: #fff !important;
    color:#f9615a !important;
}


._oc_button_addtocart{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color:#f9615a;
    border:2px solid #f9615a;
    width: auto;
    height:32px;
    padding: 0 20px;
    border-radius: 9999px;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
._oc_button_addtocart:hover{
    background-color: #f9615a;
    color:#fff;
}


._oc_help_text{
    font-size:12px;
    line-height:15px;
    opacity: .7;
}
._oc_totals{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:15px 0;
    font-size: 18px;
    font-weight: 700;
}


._oc_qty_controll{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border:1px solid #eee;
    width:90px;
    border-radius: 9999px;
    padding: 1px;
}
._oc_qty_controll > button{
    border:none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 9999px;
    opacity: .5;
}
._oc_qty_controll > button:hover{
    background-color: #eee;
    opacity: 1;
}
._oc_qty_controll > button > img{
    width:18px;
    height: 18px;
    object-fit: contain;
}


._oc_cart_loading{
    position:absolute;
    background:rgba(255,255,255,.9);
    display:none;
    justify-content:center;
    align-items:center;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:9;
    border-radius:10px;
}
._oc_cart_loading:after{
    content:"";
    display:block;
    width:32px;
    height:32px;
    border-radius:9999px;
    border:2px solid transparent;
    border-right-color:#f9615a;
    animation: spin .7s infinite linear;
}


@media(max-width:768px){
    ._oc_inner ._oc_product ._oc_small_on_mob{
        padding-left: 8px !important;
        padding-right: 10px !important;
        font-size: 12px;
    }
    ._oc_inner ._oc_product_vertical{
        min-width:150px;
        width:150px;
    }
}