@import "helper.css";
@import "icons.css";

.bcp-row{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 20px;
}
.bcp-row-2{
    grid-template-columns: 1fr 1fr;
}
.bcp-row-3{
    grid-template-columns: 1fr 1fr 1fr;
}
.bcp-row-4{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.bcp-row-5{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.bcp-row-6{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.bcp-align-start{
    align-items: start!important;
}
.bcp-card,.bcp-modal,.bcp-section,.bcp-tabs,.bcp-instant-offer{
    direction: rtl!important;
    text-align: right!important;
}
html[dir=ltr] .bcp-card,
html[dir=ltr] .bcp-modal,
html[dir=ltr] .bcp-section,
html[dir=ltr] .bcp-tabs,
html[dir=ltr] .bcp-instant-offer{
    direction: ltr!important;
    text-align: left!important;
}
.bcp-card a{
    text-decoration: none!important;
}
.bcp-card,.bcp-card *,
.bcp-modal,.bcp-modal *,.bcp-tabs,.bcp-tabs * ,.bcp-instant-offer,.bcp-instant-offer *{
    box-sizing: border-box!important;
}

/*********************************************
******************** Card 1 ******************
*********************************************/
.bcp-card-1{
    width: auto;
    min-height: 330px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    transition: 500ms;
    position: relative;
}
.bcp-card-1:hover{
    box-shadow: -1px 3px 20px rgba(0,0,0,0.25);
}
.bcp-card-1-image{
    width: 50%;
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
.bcp-card-1-image.with-separator{
    border-left: 1px solid #ddd;
}

.bcp-card-1-image.fill img{
    height: 100%!important;
    object-fit: cover;
    width: 100%!important;
}
.bcp-card-1-image > a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bcp-card-1-image img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}
.bcp-card-1-image img:hover{
}
.bcp-card-1-content{
    padding: 20px;
    width: 50%;
    margin-right: 50%;
    display: flex;
    flex-direction: column;
}

.bcp-card-1 .bcp-card-1-title{
    display: block;
    margin: 0 0 15px 0;
    font-weight: bold;
    color: #222;
    font-size: 20px;
    line-height: 28px;
}

.bcp-card-1-description{
    font-weight: 300;
    color: #666;
    font-size: 14px;
    line-height: 27px;
    display: block;
    margin: 0 0 15px 0;
}
.bcp-card-1-price{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: auto 0 20px 0;
}
/* WooCommerce Price (Default) */

.bcp-card-1-price > span.woocommerce-Price-amount.amount,
.bcp-card-1-price ins .woocommerce-Price-amount.amount,
.bcp-modal-price > span.woocommerce-Price-amount.amount,
.bcp-modal-price ins .woocommerce-Price-amount.amount
{
    font-weight: 700;
    color: #111;
    font-size: 16px;
}
.bcp-card-1-price ins,
.bcp-modal-price ins
{
    text-decoration: none;
}
/* WooCommerce Price (Main Price) */
.bcp-card-1-price > del .woocommerce-Price-amount.amount,
.bcp-modal-price > del .woocommerce-Price-amount.amount
{
    font-weight: 700;
    font-size: 16px;
    color: #777;
}




.bcp-card-1-buttons{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.bcp-card-1-add-btn{
    display: block;
    min-height: 40px;
    line-height: 40px;
    background: #333;
    color: #fff;
    border-radius: 100px;
    padding: 0 12px;
    text-align: center;
    font-size: 12px;
    transition: 500ms;
}
.bcp-card-1-add-btn:visited{
    color: #fff;
}
.bcp-card-1-add-btn:hover{
    color: #fff;
}
.bcp-card-1-more-btn{
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    color: #222;
    transition: 500ms;
    flex-shrink: 0;
}
.bcp-card-1-more-btn:visited{
    color: #222;
}
.bcp-circle-scale-hover{
    position: relative;
}
.bcp-circle-scale-hover:before{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    background: #222;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 500ms;
}
.bcp-card-1-more-btn i{
    position: relative;
}

.bcp-card-1:hover .bcp-card-1-more-btn{
    background: #eee;
}
.bcp-card-1 .bcp-card-1-more-btn:hover{
    color: #fff;
}
.bcp-circle-scale-hover:hover:before{
    opacity: 1;
    visibility: visible;
    height: 100%;
    width: 100%;
}
.bcp-transform-hover:hover{
    transform: translate(0,-2px);
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}






/*********************************************
***************** pagination *****************
*********************************************/
.bcp-pagination{
    display: flex;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.bcp-pagination .page-numbers{
    text-decoration: none!important;
    display: inline-block;
    background: #bbb;
    color: #222;
    font-weight: 400;
    width: 40px;
    height: 40px;
    line-height: 43px;
    font-size: 16px;
    border-radius: 5px;
    transition: 400ms;
    margin: 3px;
    box-sizing: content-box;
}
.bcp-pagination a.page-numbers:hover{
    background: #222;
    color: #fff;
}
.bcp-pagination .page-numbers.next,.bcp-pagination .page-numbers.next{
    line-height: 40px;
}


.bcp-add-to-cart.loading {
    pointer-events: none !important;
    overflow: hidden;
}
.bcp-add-to-cart{
    position: relative;
}
.bcp-add-to-cart.loading i{
    display: none !important;
}

.bcp-add-to-cart.loading:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.73);
    background: linear-gradient(90deg, #000000cf, #000000b8,#00000054);
    z-index: 1;
}
.bcp-add-to-cart.loading:after{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-right-color: transparent;
    animation: spin linear 1s infinite;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
    z-index: 2;
}
.bcp-card-1 a.added_to_cart.wc-forward {
    position: absolute;
    top: 0;
    right: 0;
    background: #13ab5b;
    color: #fff;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 14px;
    z-index: 3;
}
.bcp-card-1 a.added_to_cart.wc-forward:hover{
    background: #0e8044;
}
.bcp-card-1 a.added_to_cart.wc-forward:before{
    content: "\e92b";
    font-family: 'bcp-icons' !important;
    display: inline-block;
    margin-left: 5px;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.p-top-right{
    position: absolute!important;
    top: 0!important;
    right: 0!important;
}
.p-top-left{
    position: absolute!important;
    top: 0!important;
    left: 0!important;
}
.p-bottom-right{
    position: absolute!important;
    bottom: 0!important;
    right: 0!important;
}
.p-bottom-left{
    position: absolute!important;
    bottom: 0!important;
    left: 0!important;
}


.bcp-card-1-badge{
    z-index: 2;
}
.bcp-card-1-badge .onsale{
    direction: ltr;
    display: inline-block;
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: #c3392c;
    font-weight: normal;
    padding: 0 10px;
}
.bcp-card-1-badge-percentage{
    display: inline-block;
}
.bcp-card-1-out-of-stock{
    display: inline-block;
    font-weight: 600;
    color: #c3392c;
    font-size: 15px;
}
.bcp-card-1-out-of-stock:before{
    content: '';
    width: 30px;
    display: inline-block;
    background: #c3392c;
    height: 3px;
    margin-left: 4px;
    vertical-align: middle;
}
.bcp-card-1-rating .star-rating,
.bcp-card-2-rating .star-rating,
.bcp-card-3-rating .star-rating,
.bcp-single-card-rating .star-rating,
.bcp-modal .star-rating {
    float: none!important;
    margin-bottom: 10px;
}
.bcp-card-2-rating .star-rating{
    font-size: 13px!important;
    margin: 0 16px 16px!important;
}
.bcp-card-3-rating .star-rating{
    margin: 0 auto 16px auto!important;
    font-size: 14px!important;
}
.bcp-single-card-rating .star-rating{
    margin: 0 0 16px auto!important;
    font-size: 14px!important;
}

.bcp-carousel-nav{
    height: 0;
}
.bcp-carousel-nav.disabled{
    display: none!important;
}
.owl-next.disabled,
.owl-prev.disabled {
    display: none!important;
}
.bcp-owl-chevron{
    z-index: 2;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
    font-size: 20px;
    transition: 200ms;
}
.bcp-owl-chevron.right{
    right: 10px;
}
.bcp-owl-chevron.left{
    left: 10px;
}
.bcp-owl-chevron:hover{
    background: #111;
}
.bcp-carousel-nav .owl-next,
.bcp-carousel-nav .owl-prev,
.bcp-carousel-dot{
    border: none!important;
    background: transparent!important;
    outline: none!important;
    padding: 0!important;
}
.owl-carousel.owl-carousel-outside-arrows{
    padding-right: 60px;
    padding-left: 60px;
}
.owl-carousel-outside-arrows .bcp-owl-chevron.right{
    right: 0;
}
.owl-carousel-outside-arrows .bcp-owl-chevron.left{
    left: 0;
}
.owl-carousel-hide-arrows .bcp-owl-chevron{
    display: none!important;
}
.bcp-carousel-dots{
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}
.bcp-carousel-dots.disabled{
    display: none!important;
    height: 0!important;
}
.bcp-carousel-dot span{
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8a8a8a;
    transition: 200ms;
    margin-left: 8px;
    cursor: pointer;
}
.bcp-carousel-dot.active span{
    background: #111;
}

.bcp-card-1-overly{
    position: absolute;
    bottom: 0;
    left: 100%;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    transition: 400ms;
    z-index: 4;
}
.bcp-card-1-compare .compare-button .compare{
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    color: #303030!important;
    background: #fff;
    box-shadow: -3px 3px 15px rgba(0, 0, 0, 0.16);
    transition: 350ms;
    font-size: 18px;
    padding: 0!important;
    width: 40px;
    height: 40px;
    margin-left: 8px;
    line-height: 38px;
    overflow: hidden;
}
.bcp-card-1-compare .compare-button .compare:hover{
    background: #ddd;
}
.bcp-card-1-compare .compare-button .compare.added{
    background: #fff;
    color: #fff!important;
    overflow: hidden;
}
.bcp-card-1-compare .compare-button .compare.added:after{
    color: #0e8044;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.bcp-card-1:hover .bcp-card-1-overly {
    left: 0;
}
.bcp-card-1-overly .yith-wcwl-add-to-wishlist,
.bcp-card-digistyle-overly .yith-wcwl-add-to-wishlist,
.bcp-card-2-footer-overly .yith-wcwl-add-to-wishlist,
.bcp-card-3-footer-overly .yith-wcwl-add-to-wishlist
{
    margin-top: 0;
}
.bcp-card-1-overly .yith-wcwl-add-button i:before,
.bcp-card-digistyle-overly .yith-wcwl-add-button i:before
{
    font-family: 'bcp-icons' !important;
    content: "\e97d"!important;
}

.bcp-card-1-overly .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-1-overly .delete_item,
.bcp-card-1-overly .quick-look-button
{
    display: inline-block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    line-height: 45px;
    padding: 0!important;
    background: #fff;
    text-align: center;
    border-radius: 100px;
    color: #303030;
    box-shadow: -3px 3px 15px rgba(0, 0, 0, 0.16);
    transition: 350ms;
    font-size: 18px;
    margin-left: 8px;
    cursor: pointer;
}
.bcp-card-1-overly .quick-look-button{
    float: right;
    line-height: 40px!important;
}
.bcp-card-1-overly .delete_item
{
    color: #c3392c!important;
}
.bcp-card-1-overly .yith-wcwl-add-button,
.bcp-card-1-overly .bcp-card-1-favorite,
.bcp-card-1-overly .bcp-card-1-compare,
.bcp-card-1-overly .bcp-card-1-quick-look {
    height: 40px;
}
.bcp-card-1-overly .yith-wcwl-add-button a.add_to_wishlist:hover,
.bcp-card-1-overly .delete_item:hover,
.bcp-card-1-overly .quick-look-button:hover
{
    background: #ddd;
}
.bcp-row .add_to_wishlist span,
.bcp-row .delete_item span
{
    display: none!important;
}
.bcp-card-1-overly .add_to_wishlist i,
.bcp-card-digistyle-overly .add_to_wishlist i,
.bcp-card-1-overly .delete_item i,
.bcp-card-digistyle-overly .delete_item i
{
    margin: 0!important;
}
.bcp-card-1-overly .yith-wcwl-wishlistexistsbrowse,
.bcp-card-1-overly .yith-wcwl-wishlistaddedbrowse{
    width: 40px;
    height: 40px;
    background: #fff;
    color: #c3392c!important;
    box-shadow: -3px 3px 15px rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    text-align: center;
    padding: 0;
    line-height: 43px;
    overflow: hidden;
}
.bcp-card-1-overly .yith-wcwl-wishlistexistsbrowse i,
.bcp-card-1-overly .yith-wcwl-wishlistaddedbrowse i{
    margin: 0!important;
}
.bcp-row .yith-wcwl-wishlistexistsbrowse a,
.bcp-row .yith-wcwl-wishlistaddedbrowse a {
    display: none;
}



/*********************** modal ****************/
.bcp-backdrop{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(79, 79, 79, 0.5);
    top: 0;
    right: 0;
    z-index: 15;
    display: none;
}

/* Modal Content */
.bcp-modal {
    overflow: hidden;
    position: fixed;
    z-index: 16;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-height: 480px;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 992px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    transform: translate(0 , -30px);
    transition: 500ms;
    display: flex;
    flex-wrap: wrap;
    visibility: hidden;
    opacity: 0;
}
.bcp-modal.show{
    visibility: visible!important;
    opacity: 1!important;
    transform: translate(0,0)!important;
}
.bcp-modal-image{
    width: 480px!important;
    height: 480px;
    flex-shrink: 0;
    border-left: 1px solid #ddd;
}
.bcp-modal-image .bcp-owl-chevron{
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    width: 40px!important;
    height: 40px!important;
    line-height: 39px!important;
    color: #222!important;
    background: #fff!important;
    border-radius: 50%!important;
}
.bcp-modal-image .owl-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
}
.bcp-modal-image .owl-item img{
    height: 480px;
    width: 100%!important;
    margin: auto;
    object-fit: contain;
}
.bcp-modal-body {
    width: calc(100% - 480px);
    padding: 15px 15px 100px 15px;
    height: 100%;
    position: relative;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
}
/* width */
.bcp-modal-body::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.bcp-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.bcp-modal-body::-webkit-scrollbar-thumb {
    background: #d3d3d3;
    border-radius: 10px;
}

/* Handle on hover */
.bcp-modal-body::-webkit-scrollbar-thumb:hover {
    background: #9d9d9d;
}

.bcp-modal-close {
    z-index: 2;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    color: black;
    font-size: 20px;
    opacity: 0.7;
    cursor: pointer;
    transition: 200ms;
}
.bcp-modal-close:hover,
.bcp-modal-close:focus {
    opacity: 1;
}
.bcp-modal-title{
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: black;
    display: block;
    margin: 15px 0;
}
.bcp-modal-rating{
    margin-bottom: 15px;
}
.bcp-modal-stock {
    padding-bottom: 10px;
    border-bottom: 1px solid #9dccb5;
    margin-bottom: 10px;
    color: #6da58a;
    font-weight: 400;
    font-size: 14px;
}
.bcp-modal-stock.outofstock{
    border-color: #ab4141;
    color: #ab4141;
    font-size: 18px;
    border-bottom: none;
    padding: 0;
}
.bcp-modal-description{
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 27px;
}
.bcp-modal-description ul,
.bcp-modal-description ol {
    list-style: inside;
}
.bcp-modal-footer{
    margin-top: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 480px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 0 15px;
    height: 100px;
    justify-content: center;
    z-index: 1;
}
html[dir=ltr] .bcp-modal-footer{
    left: auto;
    right: 0!important;
}
.bcp-modal-more{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 8px;
    padding: 10px 10px 10px 20px;
    font-size: 15px;
    font-weight: 500;
    background: var(--colorMain);
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    transition: 300ms;
    margin-top: 8px;
}
.bcp-modal-more:hover{
    background: #333;
    color: #fff;
    padding-left: 10px;
}
html[dir=ltr] .bcp-modal-more i{
    transform: rotate(180deg);
}

.bcp-attributes-list{
    margin: 15px 0 0;
    padding: 0;
}
.bcp-attributes-list li{
    display: none;
    padding: 5px;
    font-size: 13px;
    border-top: 1px solid #ddd;
    background: #fff;
}
.bcp-attributes-list li:nth-of-type(odd){
    background: #f9f9f9;
}
.bcp-attributes-list li:nth-child(1),
.bcp-attributes-list li:nth-child(2),
.bcp-attributes-list li:nth-child(3)
{
    display: block;
}
.bcp-attributes-list.open li {
    display: block!important;
}
.bcp-see-more-attr {
    margin-top: 5px;
    display: inline-block;
    color: #2488ff;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    user-select: none;
}
.bcp-see-more-attr i {
    margin-left: 4px;
}


/********************* digistyle card *********************/
.bcp-card-digistyle{
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.bcp-card-digistyle-image{
    position: relative;
    padding: 25px 25px 10px 25px;
}
.bcp-card-digistyle-image img{
    width: 100%;
    height: auto;
}
.bcp-card-digistyle-cat{
    position: absolute;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    background: #e3e3e3;
    color: #111!important;
    text-decoration: none;
    z-index: 1;
    top: 0;
    right: 0;
    margin: 12px 12px 0 0;
    font-size: 13px;
}
.bcp-card-digistyle-cat:hover{
    background: #ddd;
}
.bcp-card-digistyle-content{
    margin-top: auto;
    padding: 0 25px 25px;
}
.bcp-card-digistyle .bcp-card-digistyle-title{
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin: 10px 0;
    line-height: 27px;
    color: #111;
    min-height: 60px;
    height: 7px;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}
.bcp-card-digistyle-price-container{
    display: flex;
    justify-content: end;
    width: 100%;
    min-height: 50px;
    align-items: center;
}
.bcp-card-digistyle-percent{
    display: inline-block;
    flex-shrink: 0;
    border-radius: 5px;
    color: #fff;
    background: #111;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 44px;
    margin-right: 10px;
    font-weight: 300;
    font-size: 15px;
}
html[dir=ltr] .bcp-card-digistyle-percent{
    margin: 0 0 0 10px!important;
}
html[dir=ltr] .bcp-card-digistyle-price{
    align-items: start!important;
}
.bcp-card-digistyle-price{
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
}
/** main price ***/
.bcp-card-digistyle-price > del .woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol{
    display: none!important;
}
.bcp-card-digistyle-price > del{
    line-height: normal!important;
}
.bcp-card-digistyle-price > del .woocommerce-Price-amount.amount{
    color: #777;
    font-size: 13px;
    font-weight: 300;
    display: block;
}

/*** sale price **/
.bcp-card-digistyle-price > ins{
    line-height: normal!important;
    text-decoration: none !important;
}
.bcp-card-digistyle-price > ins .woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol,
.bcp-card-digistyle-price > span.woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol
{
    margin-right: 3px;
}
.bcp-card-digistyle-price > ins .woocommerce-Price-amount.amount,
.bcp-card-digistyle-price > span.woocommerce-Price-amount.amount{
    font-size: 14px;
    color: #111;
    font-weight: 500;
    display: block;
}

/** variable price **/
.bcp-card-digistyle-price span.bcp-variable-price-text {
    display: inline-block;
    font-size: 13px;
    color: #777;
    font-weight: 300;
}
.bcp-card-digistyle-price .woocommerce-Price-amount.amount.variable{
    display: flex!important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%!important;
}
.bcp-card-digistyle-price span.woocommerce-Price-currencySymbol{
    margin-left: 0!important;
}


.bcp-card-digistyle-overly {
    background: #fff;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    margin: auto;
    width: 120px;
    height: 38px;
    padding: 0 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 2px 7px rgba(0, 0, 0, 0.2);
}
.bcp-card-digistyle:hover .bcp-card-digistyle-overly{
    transition: 400ms;
    top: calc(50% - 19px);
}



.bcp-card-digistyle-quick-look,
.bcp-card-digistyle-compare,
.bcp-card-digistyle-favorite {
    width: 100%;
}

.bcp-card-digistyle a.compare.button,
.bcp-card-digistyle .quick-look-button,
.bcp-card-digistyle .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-digistyle .delete_item
{
    display: inline-block;
    width: 100%;
    padding: 0;
    height: 44px;
    line-height: 45px;
    font-size: 17px;
    text-align: center;
    background: transparent!important;
    color: #111!important;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
}
.bcp-card-digistyle a.compare.button:hover,
.bcp-card-digistyle .quick-look-button:hover,
.bcp-card-digistyle .yith-wcwl-add-button a.add_to_wishlist:hover,
.bcp-card-digistyle .delete_item:hover{
    opacity: 0.7;
}
.bcp-card-digistyle .delete_item
{
    color: #c3392c!important;
}

.bcp-card-digistyle .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-digistyle .delete_item,
.bcp-card-digistyle .quick-look-button
{
    display: inline-block;
    height: 44px;
    overflow: hidden;
    line-height: 45px;
    padding: 0!important;
}
.bcp-card-digistyle .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-digistyle .delete_item{
    line-height: 49px!important;
}
i.yith-wcwl-icon {
    vertical-align: middle!important;
}
.bcp-card-digistyle .yith-wcwl-add-button{
    height: 44px;
    overflow: hidden;
}
.bcp-card-digistyle-quick-look,
.bcp-card-digistyle-favorite,
.bcp-card-digistyle-compare
{
    height: 44px;
    overflow: hidden;
    line-height: 48px;
    text-align: center;
}
.yith-wcwl-icon{
    margin: 0!important;
}
.yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon.fa-heart,
.yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon.fa-heart
{
    color: #c3392c!important;
}

.bcp-card-digistyle .compare-button .compare.added{
    background: #fff;
    color: #fff!important;
    overflow: hidden;
}
.bcp-card-digistyle .compare-button .compare.added:after{
    color: #0e8044;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.bcp-modern-owl .bcp-owl-chevron{
    width: 34px;
    height: 60px;
    line-height: 59px;
    background: #fff;
    color: #555;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
.bcp-modern-owl .bcp-owl-chevron.right{
    right: -10px;
}
.bcp-modern-owl .bcp-owl-chevron.left{
    left: -10px;
}

.bcp-modern-owl .bcp-carousel-dot span{
    border: 1px solid #111;
    background: transparent;
}

.bcp-modern-owl .bcp-carousel-dot.active span {
    background: #111;
}

/********************* horizontal card *********************/
.bcp-card-horizontal{
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    border: 1px solid #eee;
    transition: 300ms;
}
.bcp-card-horizontal:hover{
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.bcp-card-horizontal-image{
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.bcp-card-horizontal-image img{
    width: 100%;
    height: auto;
}
.bcp-card-horizontal-content{
    width: 100%;
    border-right: 1px solid #ddd;
    padding-right: 15px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 70px;
    overflow: hidden;
}
html[dir=ltr] .bcp-card-horizontal-content{
    padding: 0 0 0 15px!important;
    margin: 0 0 0 15px!important;
    border-right: none;
    border-left: 1px solid #ddd;
}
.bcp-card-horizontal-content > a{
    display: block;
    width: 100%;
}

.bcp-card-horizontal-content .bcp-card-horizontal-title{
    margin: 0 0 7px;
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 10px;
    font-size: 13px;
    font-weight: normal;
    color: #111;
}
.bcp-card-horizontal-price-container{
    display: flex;
}
.bcp-card-horizontal-percent{
    display: inline-block;
    flex-shrink: 0;
    border-radius: 5px;
    color: #fff;
    background: #111;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 34px;
    margin-left: 10px;
    font-weight: 300;
    font-size: 13px;
}
.bcp-card-horizontal-price{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.bcp-card-horizontal-price-regular{
    font-size: 13px;
    text-decoration: line-through;
    color: #777;
    margin-left: 5px;
    font-weight: 400;
}
.bcp-card-horizontal-price-off{
    font-size: 13px;
    color: #111;
    font-weight: 400;
}
.bcp-card-horizontal-quick-look .quick-look-button {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 35px;
    font-size: 14px;
    text-align: center;
    background: #dcdcdc;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
    z-index: 1;
}

/********************* bestselling card *********************/
.bcp-card-bestselling{
    display: flex;
    align-items: stretch;
    text-decoration: none!important;
    outline: none!important;
}
.bcp-card-bestselling-image{
    width: 90px;
    min-height: 90px;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bcp-card-bestselling-image img{
    width: auto;
    height: 100%;
    max-width: 100%;
}
.bcp-card-bestselling-count{
    font-size: 35px;
    font-weight: 800;
    color: #1ac2d7;
    margin: 0 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.bcp-card-bestselling-content{
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.bcp-card-bestselling .bcp-card-bestselling-title{
    font-size: 13px;
    font-weight: 400;
    color: #111;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    text-decoration: none;
    margin: 0;
}

/********************* selected card *********************/
.bcp-row-selected{
    grid-gap: 1px;
    background: #eee;
}
.bcp-card-selected{
    display: flex;
    flex-direction: column;
    text-decoration: none!important;
    background: #fff;
    padding: 10px;
}
.bcp-card-selected:hover{
    position: relative;
}
.bcp-card-selected-image{
    width: 100%;
    padding: 15px;
}
.bcp-card-selected-image img{
    width: 100%;
    height: auto;
}
.bcp-card-selected-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl!important;
}
.bcp-card-selected-price{
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
}
.bcp-card-selected-price-regular{
    text-decoration: line-through;
    color: #777;
    font-size: 13px;
}
.bcp-card-selected-price-sale{
    color: #111;
    font-weight: 600;
    font-size: 15px;
}
.bcp-card-selected-percent{
    display: inline-block;
    padding: 4px 10px;
    color: #fff;
    background: #ef394e;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 400;
    flex-shrink: 0;
}

/********************* onsale card *********************/
.bcp-card-onsale{
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    transition: 300ms;
    border-radius: 4px;
}
.bcp-card-onsale:hover{
    border-color: #bbb;
}
.bcp-card-onsale-image{
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}
.bcp-card-onsale-image img{
    width: 100%;
    height: auto;
}
.bcp-card-onsale-badge{
    line-height: normal;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    user-select: none;
    background: var(--colorMain);
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    border-radius: 17px 15px 24px 21px;
    padding: 7px;
    z-index: 1;
}
.bcp-card-onsale-content{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.bcp-card-onsale .bcp-card-onsale-title{
    color: #111;
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
    margin: 0 0 15px 0;
}
.bcp-card-onsale-price{
    margin-top: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: self-end;
    direction: rtl!important;
}
.bcp-card-onsale-price-regular{
    color: #777;
    text-decoration: line-through;
    font-size: 13px;
    margin-left: 16px;
    display: inline-block;
}
.bcp-card-onsale-price-sale{
    background: var(--colorMain);
    position: relative;
    padding: 3px 15px;
    border-radius: 0 4px 4px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}
.bcp-card-onsale-price-sale:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 100%;
    left: 0;
    border-right: 16px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 12px solid var(--colorMain);
}

/********************* onsale card *********************/
.bcp-section{
    width: 100%;
    border-radius: 10px;
    background: #3f51b5;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}
.bcp-section-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.bcp-section-holder{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.bcp-section .bcp-section-title{
    display: block;
    font-weight: bold;
    font-size: 17px;
    color: #fff;
    line-height: normal;
    margin: 0;
}
.bcp-section-title:before{
    content: '';
    display: inline-block;
    width: 12px;
    height: 6px;
    background: var(--colorMain);
    margin-left: 6px;
    border-radius: 3px;
}
.bcp-section-subtitle{
    display: block;
    font-size: 13px;
    color: #fff;
    margin: 7px 0 0 0;
    font-weight: 300;
}
a.bcp-section-more,a.bcp-section-more:not([href]):not([tabindex]){
    flex-shrink: 0;
    display: block;
    padding: 4px 12px;
    border-radius: 100px;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    font-size: 13px;
    text-decoration: none!important;
    transition: 300ms;
}
.bcp-section-more i{
    margin-right: 4px;
}
.bcp-section-more span{
    display: inline-block;
}
html[dir=ltr] .bcp-section-more i{
    transform: rotate(180deg);
    display: inline-block;
    margin: 0 0 0 5px;
}
html[dir=ltr] .bcp-custom-owl-navs.bcp-mr-auto{
    margin-right: 0!important;
    margin-left: auto!important;
}
html[dir=ltr] .bcp-custom-owl-navs{
    direction: rtl!important;
}
html[dir=ltr] .bcp-section-title:before{
    margin: 0 6px 0 0!important;
}
html[dir=ltr] .bcp-section-image{
    margin: 0 40px 0 0!important;
}
html[dir=ltr] .bcp-card-2-footer-overly,
html[dir=ltr] .bcp-card-3-footer-overly{
    left: 60px;
    right: auto;
    padding: 0 8px 0 0;
}
html[dir=ltr] .bcp-card-2-price-sale{
    direction: ltr!important;
}

html[dir=ltr] .bcp-card-3-cart{
    direction: rtl!important;
}
html[dir=ltr] .bcp-card-3-cart span{
    display: inline-block;
}

a.bcp-section-more:hover,a.bcp-section-more:not([href]):not([tabindex]):hover{
    background: #fff;
    color: var(--colorMain);
}
.bcp-section-content{
    padding: 30px;
    display: flex;
    align-items: center;
}
.bcp-section-image{
    width: 170px;
    margin-left: 40px;
    float: right;
}
.bcp-section-content.left{
    flex-direction: row-reverse!important;
}
.bcp-section-content.left .bcp-section-image{
    margin: 0 40px 0 0;
}
.bcp-section-image img{
    width: 100%;
    height: auto;
}
.bcp-section .bcp-row{
    float: left;
    width: calc(100% - 210px)!important;
}

.bcp-custom-owl-navs{
    display: flex;
    align-items: center;
    padding: 0 20px;
    cursor: default;
}
.bcp-custom-owl-nav{
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 29px;
    font-size: 15px;
    color: #111;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    transition: 100ms;
}
.bcp-custom-owl-nav:hover{
    background: #111;
    color: #fff;
}
.bcp-custom-owl-nav.left{
    margin-right: 5px;
}
.bcp-mr-auto{
    margin-right: auto!important;
}


/********************* tabs *********************/
.bcp-tabs{
    display: block;
    width: 100%;
}
.bcp-tabs-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.bcp-tabs-head-title {
    font-size: 18px;
    font-weight: 400;
    color: #111;
    border-bottom: 3px solid var(--colorMain);
}
.bcp-tabs-nav{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}
.bcp-tabs-nav-item{
    display: inline-block;
    color: #666;
    cursor: pointer;
    text-decoration: none!important;
    margin-left: 10px;
    padding: 3px 10px;
    line-height: 30px;
    position: relative;
    transition: 300ms;
    font-size: 16px;
    font-weight: 500;
    flex-shrink: 0;
    z-index: 1;
}
.bcp-tabs-nav .bcp-tabs-nav-item:last-of-type{
    margin-left: 0!important;
}
.bcp-tabs-nav-item:before{
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: 300ms;
    z-index: -1;
    border-radius: 6px;
}
.bcp-tabs-nav-item.active:before{
    width: 100%!important;
    height: 100%;
    background: var(--colorMain);
}
.bcp-tabs-nav-item:hover:before{
    background: var(--colorMain);
}
.bcp-tabs-nav-item:hover{
    color: var(--colorMain);
}
.bcp-tabs-nav-item.active{
    color: #fff!important;
}
.bcp-tabs-content{
    position: relative;
}
.bcp-tab-content{
    width: 100%;
}
.bcp-tab-content:not(.active){
    display: none;
}


/********************* instant offer *********************/
.bcp-instant-offer{
    width: 100%;
    position: relative;
}
.bcp-instant-offer-timeline{
    height: 5px;
    position: absolute;
    background: rgba(23,206,162,0.31);
    border-radius: 5px;
    margin-bottom: 4px;
    overflow: hidden;
    z-index: 2;
    right: 0;
    top: -8px;
    width: 100%;
}
.bcp-instant-offer-timeline-filled{
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--colorMain);
    animation: linear bcptimeline 5000ms infinite;
}
@keyframes bcptimeline {
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}


/********************* banta card 2 *********************/
.bcp-card-2{
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.16);
    overflow: hidden;
    transition: 400ms;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bcp-card-2:hover{
    transform: translate(0,-2px);
    box-shadow: 0 8px 10px rgba(0,0,0,0.16);
}
.bcp-section .bcp-card-2,
.bcp-section .bcp-card-3 {
    transform: none!important;
}

.bcp-instant-offer .bcp-card-2,
.bcp-instant-offer .bcp-card-3
{
    transform: none!important;
    box-shadow: none;
}

.bcp-card-2-image{
    height: 200px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.bcp-card-2-image.fill img{
    height: 100%!important;
    object-fit: cover;
    width: 100%!important;
}
.bcp-card-2-image img{
    width: auto!important;
    max-width: 100%!important;
    height: auto!important;
    max-height: 100%!important;
}
.bcp-card-2-badge{
    position: absolute;
    margin: 10px;
    display: inline-block;
    padding: 6px 10px;
    background: var(--colorMain);
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    user-select: none;
}
.bcp-card-2-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.bcp-card-2 .bcp-card-2-title{
    font-size: 14px;
    color: #111;
    font-weight: normal;
    display: block;
    margin: 0 16px 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bcp-card-2-footer{
    background: #eee;
    padding: 0 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}
.bcp-card-2-footer-overly{
    height: 100%;
    width: calc(100% - 60px);
    position: absolute;
    bottom: 100%;
    right: 60px;
    transition: 400ms;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 1;
    padding-left: 8px;
}
.bcp-card-2:hover .bcp-card-2-price{
    opacity: 0!important;
}
.bcp-card-2:hover .bcp-card-2-footer-overly{
    opacity: 1;
    bottom: 0;
}
.bcp-card-2-cart{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    font-size: 16px;
    background: #ddd;
    color: #777;
    border-radius: 5px;
    transition: 400ms;
}
.bcp-card-2:hover .bcp-card-2-cart{
    background: var(--colorMain);
    color: #fff;
}
.bcp-card-2-price{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 1;
    transition: 400ms;
}
.bcp-card-2-price-sale{
    font-size: 14px;
    color: #111;
    direction: rtl;
    font-weight: normal;
}
.bcp-card-2-price-regular{
    font-size: 12px;
    color: #777;
    font-weight: normal;
    text-decoration: line-through;
}

.bcp-card-2-quick-look,
.bcp-card-2-compare,
.bcp-card-2-favorite {
    min-width: 40px;
}
.bcp-card-2 a.compare.button,
.bcp-card-2 .quick-look-button,
.bcp-card-2 .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-2 .delete_item
{
    display: inline-block;
    width: 100%;
    padding: 0;
    height: 44px;
    line-height: 45px;
    font-size: 17px;
    text-align: center;
    background: transparent!important;
    color: #111!important;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
}
.bcp-card-2 a.compare.button:hover,
.bcp-card-2 .quick-look-button:hover,
.bcp-card-2 .yith-wcwl-add-button a.add_to_wishlist:hover,
.bcp-card-2 .delete_item:hover{
    opacity: 0.7;
}
.bcp-card-2 .delete_item {
    color: #c3392c!important;
}
.bcp-card-2 .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-2 .delete_item,
.bcp-card-2 .quick-look-button
{
    display: inline-block;
    height: 44px;
    overflow: hidden;
    line-height: 47px;
    padding: 0!important;
}
.bcp-card-2 .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-2 .delete_item{
    line-height: 49px!important;
}
i.yith-wcwl-icon {
    vertical-align: middle!important;
}
.bcp-card-2 .yith-wcwl-add-button{
    height: 44px;
    overflow: hidden;
}
.bcp-card-2-quick-look,
.bcp-card-2-favorite,
.bcp-card-2-compare
{
    width: 44px;
    height: 44px;
    overflow: hidden;
    line-height: 44px;
    text-align: center;
}
.yith-wcwl-icon{
    margin: 0!important;
}
.yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon.fa-heart,
.yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon.fa-heart
{
    color: #c3392c!important;
}
.bcp-card-2 .bcp-card-2-footer-overly .compare-button > a.compare.added{
    background: #fff;
    color: transparent!important;
    overflow: hidden;
}
.bcp-card-2 .compare-button .compare.added:after{
    color: #0e8044;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

/********************* banta card 3 *********************/
.bcp-card-3{
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.16);
    overflow: hidden;
    transition: 400ms;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bcp-card-3:hover{
    transform: translate(0,-2px);
    box-shadow: 0 8px 10px rgba(0,0,0,0.16);
}
.bcp-card-3-image{
    height: 200px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.bcp-card-3-image.fill img{
    height: 100%!important;
    object-fit: cover;
    width: 100%!important;
}
.bcp-card-3-image img{
    width: auto!important;
    max-width: 100%!important;
    height: auto!important;
    max-height: 100%!important;
}
.bcp-card-3-badge{
    position: absolute;
    margin: 10px;
    display: inline-block;
    padding: 6px 10px;
    background: var(--colorMain);
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    user-select: none;
}
.bcp-card-3-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.bcp-card-3 .bcp-card-3-title{
    font-size: 14px;
    color: #111;
    font-weight: normal;
    display: block;
    margin: 0 16px 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}
.bcp-card-3-footer{
    padding: 0 10px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}
.bcp-card-3-footer-overly{
    height: 100%;
    width: calc(100% - 60px);
    position: absolute;
    bottom: 0;
    right: 100%;
    transition: 400ms;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 1;
    padding-left: 10px;
}
.bcp-card-3:hover .bcp-card-3-footer-overly{
    opacity: 1;
    right: 60px;
}
.bcp-card-3-cart{
    display: inline-block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background: #ececec;
    color: #777;
    border-radius: 50px;
    transition: 400ms;
    padding: 1px 2px 0 0;
}
.bcp-card-3-cart span{
    font-size: 13px;
    font-weight: normal;
    margin-right: 8px;
}
.bcp-card-3:hover .bcp-card-3-cart{
    width: 40px;
}
.bcp-card-3:hover .bcp-card-3-cart span{
    display: none;
}
.bcp-card-3:hover .bcp-card-3-cart{
    background: var(--colorMain);
    color: #fff;
}
.bcp-card-3-price{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    gap: 10px;
    margin-bottom: 8px;
}
.bcp-card-3-price-sale{
    font-size: 15px;
    color: var(--colorMain);
    font-weight: 600;
}
.bcp-card-3-price-regular{
    font-size: 12px;
    color: #777;
    font-weight: normal;
    text-decoration: line-through;
}

.bcp-card-3-quick-look,
.bcp-card-3-compare,
.bcp-card-3-favorite {
    min-width: 42px;
}
.bcp-card-3 a.compare.button,
.bcp-card-3 .quick-look-button,
.bcp-card-3 .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-3 .delete_item
{
    display: inline-block;
    width: 100%;
    padding: 0;
    height: 44px;
    line-height: 45px;
    font-size: 17px;
    text-align: center;
    background: transparent!important;
    color: #111!important;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
}
.bcp-card-3 a.compare.button:hover,
.bcp-card-3 .quick-look-button:hover,
.bcp-card-3 .yith-wcwl-add-button a.add_to_wishlist:hover,
.bcp-card-3 .delete_item:hover{
    opacity: 0.7;
}
.bcp-card-3 .delete_item {
    color: #c3392c!important;
}
.bcp-card-3 .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-3 .delete_item,
.bcp-card-3 .quick-look-button
{
    display: inline-block;
    height: 44px;
    overflow: hidden;
    line-height: 47px;
    padding: 0!important;
}
.bcp-card-3 .yith-wcwl-add-button a.add_to_wishlist,
.bcp-card-3 .delete_item{
    line-height: 49px!important;
}
i.yith-wcwl-icon {
    vertical-align: middle!important;
}
.bcp-card-3 .yith-wcwl-add-button{
    height: 44px;
    overflow: hidden;
}
.bcp-card-3-quick-look,
.bcp-card-3-favorite,
.bcp-card-3-compare
{
    width: 44px;
    height: 44px;
    overflow: hidden;
    line-height: 44px;
    text-align: center;
}
.yith-wcwl-icon{
    margin: 0!important;
}
.yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon.fa-heart,
.yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon.fa-heart
{
    color: #c3392c!important;
}
.bcp-card-3 .bcp-card-3-footer-overly .compare-button > a.compare.added{
    background: #fff;
    color: transparent!important;
    overflow: hidden;
}
.bcp-card-3 .compare-button .compare.added:after{
    color: #0e8044;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

/********************* banta single card *********************/
.bcp-single-card{
    position: relative;
    width: 100%;
    height: 400px;
}
.bcp-single-card-image{
    top: 0;
    left: 0;
    position: absolute;
    width: calc(60% - 70px);
    height: 100%;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 400ms;
    border-radius: 20px;
    overflow: hidden;
}
.bcp-single-card .bcp-single-card-image > a{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bcp-single-card .bcp-single-card-image img{
    width: auto!important;
    max-width: 100%;
    height: auto!important;
    max-height: 100%;
}
.bcp-single-card-image.fill img{
    height: 100%!important;
    object-fit: cover;
    width: 100%!important;
}
.bcp-single-card-content{
    width: calc(50% - 70px);
    flex-shrink: 0;
    background: #ffffff;
    height: 200px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 170px;
    margin: auto;
    z-index: 1;
    border-radius: 20px;
    padding: 20px;
    transition: 500ms;
    box-shadow: -2px 3px 10px rgb(0 0 0 / 15%);
    display: flex;
    flex-direction: column;
    align-items: start;
}
.bcp-single-card-badge{
    line-height: normal;
    position: absolute;
    display: inline-block;
    user-select: none;
    background: var(--colorMain);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    padding: 15px 25px;
    margin: 20px;
    z-index: 1;
}
.owl-item.active .bcp-single-card-content{
    right: 70px;
}
.bcp-single-card-content .bcp-single-card-title-link{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bcp-single-card .bcp-single-card-title{
    font-size: 18px;
    font-weight: bold;
    color: #111;
    display: block;
    margin: 0 0 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bcp-single-card-footer{
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    direction: rtl!important;
}

.bcp-single-card-cart{
    display: block;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background: var(--colorMain);
    background: linear-gradient(45deg, var(--colorMain), #673ab7);
    color: #fff;
    font-size: 14px;
    min-width: 180px;
    text-align: center;
    transition: 300ms;
    font-weight: 400;
}
.bcp-single-card-cart span{
    margin-right: 5px;
}
html[dir=ltr] .bcp-single-card-cart span{
    margin: 0 0 0 5px!important;
}
.bcp-single-card-cart:hover{
    color: #fff;
    box-shadow: -2px 2px 8px rgba(23, 206, 162, 0.5);
}
.bcp-single-card-price{
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-right: auto;
}
.bcp-single-card-price-regular{
    font-size: 14px;
    color: #777;
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}
.bcp-single-card-price-sale{
    font-size: 17px;
    font-weight: bold;
    display: block;
    color: #111;
}

.owl-single-card-navs .bcp-owl-chevron{
    width: 50px!important;
    height: 50px!important;
    line-height: 50px!important;
}
.owl-single-card-navs .bcp-owl-chevron.left{
    right: 0!important;
    left: auto!important;
    top: -60px!important;
}
.owl-single-card-navs .bcp-owl-chevron.right{
    right: 0!important;
    top: 60px!important;
}


/********************* banta slide item *********************/
.bcp-slide-item{
    position: relative;
    min-height: 100px;
}
.bcp-slide-item img{
    width: 100%;
    height: auto;
    display: block;
}
.bcp-slide-item .bcp-slide-item-title{
    position: absolute;
    margin: 20px;
    background-color: var(--colorMain);
    color: #111;
    padding: 20px;
    border-radius: 8px 0 0 8px;
    border-right: 4px solid black;
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    font-weight: bold;
}
.bcp-slide-item .bcp-slide-item-title:after{
    content: '';
    display: block;
    position: absolute;
    right: calc(100% + 4px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 80%;
    background: var(--colorMain);
    border-radius: 50px;
}
.bcp-slide-item .bcp-slide-item-title:before{
    content: '';
    display: block;
    position: absolute;
    right: calc(100% + 13px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 50%;
    background: var(--colorMain);
    border-radius: 50px;
}



.bcp-owl-full-height .owl-stage{
    display: flex!important;
}
.bcp-owl-full-height .owl-item{
    flex-shrink: 0;
}
.bcp-owl-full-height .owl-item > .bcp-card{
    height: 100%!important;
}


@media (max-width: 992px) {
    .bcp-section-head{
        padding: 15px;
    }
    .bcp-single-card{
        height: auto;
    }
    .bcp-single-card-image{
        position: static;
        margin: 0 auto 0 0;
        height: 240px;
        width: calc(100% - 50px)!important;
        border-radius: 20px 20px 0 0;
    }
    .bcp-single-card-image img{
        padding: 20px;
    }
    .bcp-single-card-content{
        position: static;
        width: 100%;
        height: auto;
        border-radius: 0 20px 20px 20px;
        box-shadow: none;
        border: none;
    }
    .owl-single-card-navs .bcp-owl-chevron.left{
        bottom: auto!important;
        top: 0!important;
        width: 30px!important;
        border-radius: 20px;
    }
    .owl-single-card-navs .bcp-owl-chevron.right{
        bottom: auto!important;
        width: 30px!important;
        border-radius: 20px;
    }

    .bcp-tabs-head{
        flex-direction: column;
        align-items: start;
    }
    .bcp-tabs-head-title{
        margin-bottom: 25px;
    }
    .bcp-hide-992{
        display: none!important;
    }
    .hide-in-tablet{
        display: none;
    }
    .bcp-row-tablet-1{
        grid-template-columns: auto!important;
    }
    .bcp-row-tablet-2{
        grid-template-columns: 1fr 1fr!important;
    }
    .bcp-row-tablet-3{
        grid-template-columns: 1fr 1fr 1fr!important;
    }
    .bcp-row-tablet-4{
        grid-template-columns: 1fr 1fr 1fr 1fr!important;
    }

    .bcp-card-1-overly{
        flex-direction: column;
        align-items: start;
        padding: 10px;
        width: auto;
        height: auto;
        left: auto;
        right: 0;
        bottom: 0;
    }
    .bcp-card-1-overly .bcp-card-1-compare,
    .bcp-card-1-overly .bcp-card-1-quick-look,
    .bcp-card-1-overly .bcp-card-1-favorite{
        margin: 5px 0 0 0!important;
    }
    .bcp-card-1-overly .yith-wcwl-add-button,
    .bcp-card-1-overly .bcp-card-1-favorite,
    .bcp-card-1-overly .bcp-card-1-compare,
    .bcp-card-1-overly .bcp-card-1-quick-look {
        height: 30px;
    }
    .bcp-card-1-overly .quick-look-button{
        line-height: 30px!important;
    }
    .bcp-card-1-overly .add_to_wishlist,
    .bcp-card-1-overly .delete_item,
    .bcp-card-1-overly .quick-look-button
    {
        height: 30px;
        width: 30px;
        line-height: 32px;
        font-size: 15px;
    }
    .bcp-card-1-overly .yith-wcwl-wishlistexistsbrowse,
    .bcp-card-1-overly .yith-wcwl-wishlistaddedbrowse{
        width: 30px!important;
        height: 30px!important;
        line-height: 32px!important;
    }

    .bcp-card-1-compare .compare-button .compare{
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-size: 15px;
    }
    .bcp-card-1-overly .add_to_wishlist.single_add_to_wishlist{
        width: 30px !important;
        height: 30px !important;
        line-height: 34px !important;
    }

    .bcp-modal-image{
        width: 100%!important;
        height: auto!important;
        border-left: none;
    }
    .bcp-modal-image .owl-item{
        height: auto!important;
    }
    .bcp-modal-image .owl-item img{
        height: auto;
        max-height: 330px;
    }
    .bcp-modal{
        max-height: calc(100% - 100px);
        display: block;
        top: 50px;
        width: calc(100% - 20px);
        bottom: auto;
        overflow-y: auto;
    }

    .bcp-modal-body{
        width: 100%;
        padding: 15px;
    }
    .bcp-modal-close{
        background: #fff;
        border-radius: 0 0 12px 0;
    }
    .bcp-modal-footer{
        position: sticky;
        width: 100%;
    }
    .bcp-modal-more{
        margin-top: 10px;
        padding: 10px;
        border-radius: 6px;
        font-weight: 500;
        font-size: 14px;
    }
    .bcp-card-horizontal-image{
        width: 60px;
        height: 60px;
    }

    .bcp-section-content{
        padding: 15px;
        margin-left: 15px;
        margin-bottom: 5px;
        overflow-x: auto;
    }
    .bcp-section-image{
        width: 120px!important;
        margin: 0 0 0 20px!important;
        float: right!important;
    }

    .bcp-section .bcp-row{
        float: left!important;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        width: calc(100% - 140px)!important;
    }
    .bcp-section .bcp-row .bcp-card{
        flex-shrink: 0;
        width: 190px;
    }
    .bcp-section-more{
        font-size: 12px;
    }
    .bcp-section-subtitle{
        font-size: 11px;
    }
    /* width */
    .bcp-section-content::-webkit-scrollbar {
        height: 4px;
    }

    /* Track */
    .bcp-section-content::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .bcp-section-content::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.35);
        border-radius: 10px;
    }

    /* Handle on hover */
    .bcp-section-content::-webkit-scrollbar-thumb:hover {
        background: #fff;
    }
}

@media (max-width: 768px) {
    .bcp-card-1-image{
        width: 40%;
    }
    .bcp-card-1-content{
        width: 60%;
        margin-right: 40%;
        padding: 15px 10px;
    }
    .bcp-card-1-add-btn{
        min-height: 34px;
        line-height: 34px;
    }
    .bcp-card-1-more-btn{
        width: 34px;
        height: 34px;
        line-height: 34px;
    }
    .bcp-tabs-nav-item{
        font-size: 14px;
        margin-left: 5px;
    }

}

@media (max-width: 576px) {
    .bcp-single-card-image{
        height: 200px;

    }
    .bcp-single-card-cart{
        min-width: auto;
        padding: 10px 14px;
        font-size: 12px;
    }


    .hide-in-tablet{
        display: block;
    }
    .hide-in-mobile{
        display: none!important;
    }
    .bcp-row-mobile-1{
        grid-template-columns: auto!important;
    }
    .bcp-row-mobile-2{
        grid-template-columns: 1fr 1fr!important;
    }
    .bcp-row-mobile-3{
        grid-template-columns: 1fr 1fr 1fr!important;
    }
    .bcp-row-mobile-4{
        grid-template-columns: 1fr 1fr 1fr 1fr!important;
    }

    .bcp-card-1.bcp-card-1-mobile-vertical{
        flex-direction: column;
    }

    .bcp-card-1-mobile-vertical .bcp-card-1-image.with-separator{
        border-left: none;
        border-bottom: 1px solid #ddd;
    }

    .bcp-card-1.bcp-card-1-mobile-vertical .bcp-card-1-image{
        position: relative;
        width: 100%;
        height: auto;
        max-height: 220px;
    }
    .bcp-card-1.bcp-card-1-mobile-vertical .bcp-card-1-content{
        width: 100%;
        margin-right: 0;
    }
    .bcp-card-1.bcp-card-1-mobile-vertical .bcp-card-1-image > a{
        height: auto;
    }
}
