/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


/** HIDE ARROWS QTY INPUT
/* Chrome, Safari, Edge, Opera */
input.input-text.qty::-webkit-outer-spin-button,
input.input-text.qty::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
/* Firefox */
input.input-text.qty {
  -moz-appearance: textfield !important;
}

.woocommerce .quantity #minus_qty_custom.minus, 
.quantity #plus_qty_custom.plus{
    height: 35px !important;
    width: 35px !important;
    background: #13614F !important;
    border-radius: 5px !important;
    border: none !important;
} 

.woocommerce .quantity #minus_qty_custom.minus:hover,
.quantity #plus_qty_custom.plus:hover{
    background: #eee !important;
    cursor: pointer;
}

.xoo-wsc-cart-active .xoo-wsc-opac{
    background-color: rgba(0,0,0,.75) !important;
    opacity: 1 !important;
}

.modal_popin_tf_custom{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    /* padding: 3%; */
}

.top_modal_tf{
    text-align: center;
    margin-bottom: 40px;
}

.container_modal_popin_tf_custom{
    background: #fff;
    overflow: scroll;
    max-height: 100vh;
}

.col_tf_cust{
    padding: 0px 2vw;
}

.el-product_tf{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    color: #13614F;
    padding: 10px 0;
    max-width: 270px;
}

.col_products_cat_tf_custom{
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.el-product_tf > label{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.el-product_tf > label:hover{
    cursor: pointer;
}

.el-product_tf .image{
    margin-right: 10px;
    width: 35px;
    
}

.el-cat_tf > img{
    margin-left: 10px;
    width: 45px;
}

.el-cat_tf{
    display: flex;
    justify-content: center;
    align-items: center;
}

.el-cat_tf_btn{
    background-color: #1f3b36;
    border-radius: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 250px;
}

.el-cat_tf_btn > h3{
    color: #fff; 
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.accordeon_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eee;
    color: #000;
    font-size: 16px;
    border-radius: 50px;
    padding: 2px 20px;
    margin: 10px 0;
}

.accordeon_title > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.accordeon_title:hover{
    cursor: pointer;
}

.total_container_tf{
    font-family: 'san-miguel',Georgia,"Times New Roman",serif;
    color:#1f3b36;
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 20px 0px;
    flex-wrap: wrap;
}

.total_container_tf .add_container_tf {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.total_container_tf .total_tf{
    font-size: 25px;
    margin-bottom: 15px;
}

.total_container_tf .add_to_cart_tf{
    background: #1f3b36;
    border: none;
    color: #fff;
    padding: 10px 35px;
    border-radius: 50px;
    font-size: 20px;
    min-width: 230px;
}

.total_container_tf .add_to_cart_tf:hover{
    cursor: pointer;
    background-color: #13614F;
}


.total_container_tf .end_cmd_tf{
    color:#000;
    padding: 10px 35px;
    border-radius: 50px;
    font-size: 20px;
    min-width: 230px;
}

.is_accordeon{
    display: none;
}

.is_accordeon.open_on_load{
    display: block;
}

.description_tf{
    white-space: nowrap;
}


.woocommerce-page .quantity span{
    display: none;
}

.woocommerce-page .quantity{
    display: inline;
}

#tf_product_options_modal{
    display: none;
}

#tf_product_options_modal.open{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75);
    z-index: 9999999
}

#tf_product_options_modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}