/**
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2024 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.faq_categories .btn.btn_default_1 {
    border: 1px solid #A6542F;
    color: #A6542F;
    background-color: #fff;
    text-transform: uppercase;
}

.faq_categories .btn.btn_default_1.active:hover::after,
.faq_categories .btn.btn_default_1.active::after {
    display: none;
}

.faq_categories .btn.btn_default_1.active {
    border: 1px solid #202944;
    color: #fff;
    background-color: #202944;
    text-transform: uppercase;
}

.faq_categories .btn.btn_default_1:hover {
    color: #fff;
}

.content_faq .item .content_faq {
    height: 0;
    opacity: 0;
    overflow: hidden;
 
    
}

.content_faq .item.active .content_faq {
    height: fit-content;
    opacity: 1;
    margin-top: 20px;
    padding: 10px;
    padding-top: 0;
}

.content_faq p {
    margin: 0;
    color: #202944;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    text-align: left;
}

.question_block a {
    font-size: 16px;
    font-weight: 700;
    color: #202944;
}

.question_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content_faq .item .question_block {
    cursor: pointer;
    padding: 10px;
}
.content_faq .item {
    border: 1px solid #A6542F;
    margin: 20px 0;
}

.content_faq .item svg {
    transition: 0.3s;
    transform: rotate(0deg);
}

.content_faq .item.active svg {
    transform: rotate(180deg);
}
.content_faq .item li{
    list-style: inside;
}
.content_faq .item strong,
.content_faq .item li a,
.content_faq .item p a{
    font-weight: bold;
}
