.wceazy_fc_bubble{
    --wceazy_fc_basket_icon_size: 35px;
    --wceazy_fc_basket_icon: url(../../img/modules/floating_cart/basket_icon_1.svg);
    --wceazy_fc_basket_icon_color: #ffffff;
    --wceazy_fc_basket_bg_color: #000000;
    --wceazy_fc_basket_count_color: #ffffff;
    --wceazy_fc_basket_count_bg_color: #d00000;
}
.wceazy_fc_main {
    --wceazy_fc_width: 460px;
    --wceazy_fc_btn_font_size: 18px;
    --wceazy_fc_btn_font_color: #ffffff;
    --wceazy_fc_btn_bg_color: #6E32C9;
    --wceazy_fc_btn_hover_font_color: #ffffff;
    --wceazy_fc_btn_hover_bg_color: #510bbb;
    --wceazy_fc_btn_border_color: #6E32C9;
    --wceazy_fc_btn_border_hover_color: #510bbb;
    --wceazy_fc_btn_border_radius: 4px;

    --wceazy_fc_cross_icon_size: 30px;
    --wceazy_fc_header_basket_icon_size: 30px;
    --wceazy_fc_heading_font_size: 24px;
    --wceazy_fc_heading_font_color: #3a3a3a;
    --wceazy_fc_heading_border_bottom_color: #cccccc;

    --wceazy_fc_item_remove_icon: url(../../img/modules/floating_cart/delete_icon_1.svg);
    --wceazy_fc_remove_icon_size: 16px;
    --wceazy_fc_product_img_width: 100px;
    --wceazy_fc_product_title_color: #6E32C9;
    --wceazy_fc_product_title_font_size: 16px;
    --wceazy_fc_quantity_box_width: 56px;
    --wceazy_fc_quantity_box_border_color: #6E32C9;
    --wceazy_fc_quantity_box_bg_color: #ffffff;
    --wceazy_fc_quantity_box_text_color: #000000;


}

/* ============ Basket Style =========== */
.wceazy_fc_bubble{
    display: block;
    cursor: pointer;
    position: fixed;
    top: auto;
    bottom: 110px;
    right: 60px;
    left: auto;
    z-index: 2147482647;
    background: var(--wceazy_fc_basket_bg_color);
    width: 100px;
    height: 100px;
}
.wceazy_fc_bubble.round{
    border-radius: 50px;
}
.wceazy_fc_bubble .wceazy_fc_basket_img{
    background-color: var(--wceazy_fc_basket_icon_color);
    -webkit-mask-image: var(--wceazy_fc_basket_icon);
    mask: var(--wceazy_fc_basket_icon);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    mask-position: center center;
    -webkit-mask-position: center center;
    mask-size: var(--wceazy_fc_basket_icon_size);
    -webkit-mask-size: var(--wceazy_fc_basket_icon_size);
}
.wceazy_fc_bubble .wceazy_fc_basket_item_count{
    position: absolute;
    background: var(--wceazy_fc_basket_count_bg_color);
    color: var(--wceazy_fc_basket_count_color);
    top: -5px;
    bottom: auto;
    left: -11px;
    right: auto;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}





/* ============ Floating Cart Main =========== */

.wceazy_fc_main{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    outline: 0;
    background: #000000b3;
    overflow: hidden;
    z-index: 2147482647;
}

.wceazy_fc_main_container{
    background: #F6F5FA;
    padding: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--wceazy_fc_width);
    display: flex;
    flex-direction: column;
    max-height: 100%;
    overflow-y: auto;
}
.wceazy_fc_main.right .wceazy_fc_main_container{
    right: 0;
}
.wceazy_fc_main.left .wceazy_fc_main_container{
    left: 0;
}

.wceazy_fc_main_container::-webkit-scrollbar {
    width: 7px;
}
.wceazy_fc_main_container::-webkit-scrollbar-thumb {
    background: #7a7d80;
    border-radius: 8px;
}
.wceazy_fc_main_container::-webkit-scrollbar-thumb:hover {
    background: #7a7d80;
}

.wceazy_fc_main_container .wceazy_fc_loading{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #F6F5FA;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wceazy_fc_main_container .wceazy_fc_loading .wceazy_fc_loader,
.wceazy_fc_main_container .wceazy_fc_loading .wceazy_fc_loader:before,
.wceazy_fc_main_container .wceazy_fc_loading .wceazy_fc_loader:after {
    width: 1rem;
    height: 3rem;
    background-color: #6E32C9;
    animation: wceazy_fc_loader_animation 1s ease-in-out infinite;
}
.wceazy_fc_main_container .wceazy_fc_loading .wceazy_fc_loader {
    animation-delay: -.16s;
    position: relative;
    display: flex;
    align-items: center;
}
.wceazy_fc_main_container .wceazy_fc_loading .wceazy_fc_loader:before {
    position: absolute;
    right: 2rem;
    content: '';
}
.wceazy_fc_main_container .wceazy_fc_loading .wceazy_fc_loader:after {
    position: absolute;
    animation-delay: -.32s;
    content: '';
    left: 2rem;
}
@keyframes wceazy_fc_loader_animation {
    0% {
        height: 3rem;
    }
    50% {
        height: 6rem
    }
    100% {
        height: 3rem
    }
}





/* ======= Header Style ======= */
.wceazy_fc_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--wceazy_fc_heading_border_bottom_color);
    padding: 0 0 9px 0;
}
.wceazy_fc_header .wceazy_fc_header_title{
    font-size: var(--wceazy_fc_heading_font_size);
    color: var(--wceazy_fc_heading_font_color);
    font-weight: 700;
    padding: 0 0 0 40px;
    background: transparent url(../../img/modules/floating_cart/basket_icon_2.svg) no-repeat 0px center / var(--wceazy_fc_header_basket_icon_size);
}
.wceazy_fc_header .wceazy_fc_close{
    outline: 0;
    margin: 0;
    border: 0;
    width: 36px;
    height: 36px;
    background: transparent url(../../img/modules/floating_cart/delete_icon_5.svg) no-repeat center center / var(--wceazy_fc_cross_icon_size);
}

/* ======= Product Style ======= */
.wceazy_fc_products{
    flex: 1;
    margin: 10px 0 0 0;
}

.fixed_footer .wceazy_fc_products{
    min-height: 100px;
    max-height: fit-content;
    overflow-y: auto;
}
.fixed_footer .wceazy_fc_products::-webkit-scrollbar {
    width: 7px;
}
.fixed_footer .wceazy_fc_products::-webkit-scrollbar-thumb {
    background: #7a7d80;
    border-radius: 8px;
}
.fixed_footer .wceazy_fc_products::-webkit-scrollbar-thumb:hover {
    background: #7a7d80;
}

.wceazy_fc_products .wceazy_fc_product_empty{
    display: flex;
    align-items: center;
    justify-content: center;
    height: -webkit-fill-available;
    color: #000000;
    font-size: 16px;
}

.wceazy_fc_product{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #FFFFFF;
    margin: 10px 0;
}
.wceazy_fc_product_part_1{
    margin-right: 15px;
}
.wceazy_fc_product_part_1 img{
    width: var(--wceazy_fc_product_img_width);
    max-width: var(--wceazy_fc_product_img_width);
    height: auto;
}
.wceazy_fc_product_part_2{

}
.wceazy_fc_product_part_2 .wceazy_fc_product_title{
    text-decoration: none;
    color: var(--wceazy_fc_product_title_color);
    font-weight: 600;
    font-size: var(--wceazy_fc_product_title_font_size);
}
.wceazy_fc_product_part_2 .wceazy_fc_product_quantity{
    display: flex;
    align-items: center;
    margin: 5px 0 0 0;
}
.wceazy_fc_product_part_2 .wceazy_fc_product_quantity .wceazy_fc_product_quantity_down,
.wceazy_fc_product_part_2 .wceazy_fc_product_quantity .wceazy_fc_product_quantity_up{
    outline: 0;
    color: #ffffff;
    background: var(--wceazy_fc_quantity_box_border_color);
    border: 1px solid var(--wceazy_fc_quantity_box_border_color);
    padding: 1px 13px;
    font-size: 17px;
}
.wceazy_fc_product_part_2 .wceazy_fc_product_quantity .wceazy_fc_product_quantity_field{
    outline: 0;
    background: var(--wceazy_fc_quantity_box_bg_color);
    border: 1px solid var(--wceazy_fc_quantity_box_border_color);
    padding: 1px 13px;
    font-size: 17px;
    max-width: var(--wceazy_fc_quantity_box_width);
    text-align: center;
    color: var(--wceazy_fc_quantity_box_text_color);
}
.wceazy_fc_product_part_2 .wceazy_fc_product_unit_price{
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #000000;
}
.wceazy_fc_product_part_3{
    margin: 0 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    justify-content: space-between;
}
.wceazy_fc_product_part_3 .wceazy_fc_product_remove{
    background: transparent var(--wceazy_fc_item_remove_icon) no-repeat center center / var(--wceazy_fc_remove_icon_size);
    width: 28px;
    height: 28px;
}
.wceazy_fc_product_part_3 .wceazy_fc_product_total{
    color: #000000;
    font-size: 19px;
    margin: 0;
}



/* ======= Coupon Style ======= */
.wceazy_fc_coupon{
    margin: 20px 0 0 0;
}

.wceazy_fc_coupon .wceazy_fc_coupon_title{
    text-align: center;
    padding: 0;
    margin: 0 0 5px 0;
    font-size: 20px;
    color: #000000;
}

.wceazy_fc_coupon .wceazy_fc_coupon_box{
    display: flex;
    align-items: stretch;
}
.wceazy_fc_coupon .wceazy_fc_coupon_box .wceazy_fc_coupon_field{
    flex: 1;
    border: 1px solid var(--wceazy_fc_btn_border_color);
    background: #ffffff;
    box-shadow: inherit;
    border-radius: var(--wceazy_fc_btn_border_radius) 0 0 var(--wceazy_fc_btn_border_radius);
    width: 100%;
    padding: 10px;
}
.wceazy_fc_coupon .wceazy_fc_coupon_box .wceazy_fc_coupon_field:hover,
.wceazy_fc_coupon .wceazy_fc_coupon_box .wceazy_fc_coupon_field:focus{
    border: 1px solid var(--wceazy_fc_btn_border_hover_color);
}
.wceazy_fc_coupon .wceazy_fc_coupon_box .wceazy_fc_coupon_apply_btn{
    font-size: var(--wceazy_fc_btn_font_size);
    background: var(--wceazy_fc_btn_bg_color);
    color: var(--wceazy_fc_btn_font_color);
    border-radius: 0 var(--wceazy_fc_btn_border_radius) var(--wceazy_fc_btn_border_radius) 0;
    border: 1px solid var(--wceazy_fc_btn_border_color);
    outline: 0;
}
.wceazy_fc_coupon .wceazy_fc_coupon_box .wceazy_fc_coupon_apply_btn:hover{
    background: var(--wceazy_fc_btn_hover_bg_color);
    color: var(--wceazy_fc_btn_hover_font_color);
    border: 1px solid var(--wceazy_fc_btn_border_hover_color);
}



/* ======= Stats Style ======= */
.wceazy_fc_stats{
    margin: 22px 0 10px 0;
    border-top: 1px solid #cccccc;
    padding: 14px 0 0 0;
}
.wceazy_fc_stats .wceazy_fc_stats_subtotal{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px 0;
}
.wceazy_fc_stats .wceazy_fc_stats_discount{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wceazy_fc_stats .wceazy_fc_stats_shipping{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wceazy_fc_stats .wceazy_fc_stats_total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 10px 0;
}

.wceazy_fc_stats .wceazy_fc_stats_title{
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.wceazy_fc_stats .wceazy_fc_stats_title.bold{
    font-size: 20px;
    font-weight: 600;
}
.wceazy_fc_stats .wceazy_fc_stats_value{
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.wceazy_fc_stats .wceazy_fc_stats_value.bold{
    font-size: 20px;
    font-weight: 600;
}


/* ======= Last Action Links ======= */
.wceazy_fc_main .wceazy_fc_main_action_btn{
    text-decoration: none;
    color: var(--wceazy_fc_btn_font_color);
    background: var(--wceazy_fc_btn_bg_color);
    text-align: center;
    display: block;
    font-size: var(--wceazy_fc_btn_font_size);
    font-weight: 500;
    padding: 13px 13px;
    margin: 2px 0;
    border-radius: var(--wceazy_fc_btn_border_radius);
    border: 1px solid var(--wceazy_fc_btn_border_color);
}
.wceazy_fc_main .wceazy_fc_main_action_btn:hover{
    background: var(--wceazy_fc_btn_hover_bg_color);
    color: var(--wceazy_fc_btn_hover_font_color);
    border: 1px solid var(--wceazy_fc_btn_border_hover_color);
}