/*{#-------------------ACCORDEON-----------------------------#}*/
.accordion_faq {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active_faq, .accordion_faq:hover {
    background-color: #ccc;
}
.accordion_faq:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active_faq:after {
    content: "\2212";
}

.panel_faq {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
/*-----------------TAB-----------------------*/
/* Style the tab */
.tab_faq {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab_faq button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab_faq button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab_faq button.active {
    background-color: #1f8aaf;
    color: white;
}

/* Style the tab content */
.tabcontent_faq {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}