/* contenidos */
.flex_content{
    display: var(--flex-display);
}
.flex_content_center{
    display: flex;
    justify-content: center;
}
.content{
    width: var(--content-width);
    max-width: 1200px;
    margin: auto;
}
.products__list{
    display: var(--flex-display);
    flex-wrap: wrap;
    list-style: none;
}
.products__list{
    width: 100%;
    justify-content: space-between;
}
.products__list li{
    width:49%;
    border-bottom: var(--border-container-gray);
    overflow: hidden;
    margin-top: 20px;
    padding: 12px 10px;
    display: flex;
}
.products__list li button{
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    display: var(--flex-display);
    justify-content: center;
    font-size: 11pt !important;
    cursor: pointer;
}
.products__list li button p{
    font-size: 11pt !important;
    text-align: center;
}
.products__list li button img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 5px;
}
.products__list img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.circle_img{
    border-radius: 10000px;
    -webkit-box-shadow: 0px 0px 3px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 3px -1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 3px -1px rgba(0,0,0,0.75);
}
.circle_img_product{
    width: 80px;
    height: 80px;
    overflow: hidden;
}
.products__list__content{
    margin: 0 auto;
    width: calc(100% - 120px);
}
.products__list__content h3{
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
}
.products__list__content h4{
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 10px;
}
.products__list__content__price{
    margin-top: 20px;
    font-weight: bold;
    color: #0A540A;
}
.item_empty{
    opacity: 0;
}

/*Section text*/
.section__text{
    margin: 30px auto !important;
}

.section__text img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin: auto;
}
.banner_img{
    width: 50%;
    position: relative;
}
.banner_img img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 320px;
    height: 320px;
}
/* FAQ containers */
.faq_container{
    margin: 80px 0;
}
.faq_container_list{
    width: 50%;
    list-style: none;
}
.faq_container_list li{
    padding: 20px 0;
    border-bottom: var(--border-container-gray);
    cursor: pointer;
}
.faq_container_hidden{
    display: none;
}

.faq_container_list h3{
    font-size: 20pt;
    width: 100%;
}
.hiddenfaq{
    display: none;
}
.faq_question{
    display: flex;
}
.faq_answer{
    margin-top: 10px;
}
.faq_question img{
    margin-left: 10px;
    width: 22px;
}

/* content_text */
.img_banner{
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

/* Hidden */
.show_hidde_container{
    list-style: none;
    margin: 20px 0;
}
.show_hidde_container li input[type="checkbox"]{
    display: none;
}
.show_hidde_content{
    display: none;
}
.show_hidde_container li input[type="checkbox"]:checked ~ .show_hidde_content{
    display: var(--flex-display) !important;
}
.show_hidde_container li input[type="checkbox"]:checked ~ .category_title img{
    transform: rotate(-90deg);
}
.category_title label{
    display: var(--flex-display);
    cursor: pointer;
}
.category_title img{
    width: 15px;
    margin-left: 15px;
    transition: all 0.2s;
}

@media(max-width: 800px){
    .products__list li{
        width:100%;
    }
    .faq_container_list{
        width: 90%;
        margin: auto;
        list-style: none;
    }
    .faq_container_list h3{
        font-size:  17pt;
        width: 100%;
    }
    .faq_container {
        margin: 20px 0;
    }
    .banner_img{
        width: 100%;
        text-align: center;
        position: relative;
        margin-top: 20px;
    }
    .banner_img img{
        position: relative;
        left: 0;
        top:0;
        transform: none;
        width: 320px;
        height: 320px;
    }
}