/**
* 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.
*/
.frequently-asked-questions-section .section-title{
    color: #24713f;
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    margin-left: -15px;
    margin-bottom: 40px;
    text-align: left;
}

.frequently-asked-questions-section .title{
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.tab-content-text p, .tab-content-text span, .tab-content-text td, .tab-content-text li, .tab-content-text th{
    color: #777777;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
}

.frequently-asked-questions-section .tab-content-text{
    /*display: none;*/
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 300ms ease, opacity 300ms ease;
}

.frequently-asked-questions-section .tab-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.frequently-asked-questions-section{
    /*max-width: 682px;*/
    margin: 0 auto;
    margin-bottom: 70px;
    padding: 0 15px;
}

.tab-content .tab-link img{
    transition: all 0.3s ease-in-out;
}
.tab-content.active .tab-link img{
    transform: rotate(180deg);
}

.frequently-asked-questions-section .tab-content.active .tab-content-text{
    max-height: 2000px;
    opacity: 1;
}

.tab-content-text-gap{
    margin-top: 20px;
}

.frequently-asked-questions-section .tab-content{
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #24713f;
}

.faq_category_title{
    color: #222222;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 12px;
}

.container_for_categorical_faq:not(:last-child){
    margin-bottom: 80px;
}

.wrapper_for_contact_contacts{
    margin-top: 160px;
}

.frequently-asked-questions-section .question_arrow{
    height: 24px;
}

.frequently-asked-questions-section .question_arrow:after{
    content: '\f3d0';
    display: inline-block;
    font-family: "Ionicons";
    font-weight: 500;
    font-size: 24px;
    color: #24713f;
    transition: .6s;
}

.frequently-asked-questions-section .tab-content.active .question_arrow:after{
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .frequently-asked-questions-section .tab-content-text{
        transition: none;
    }
}

@media (max-width: 768px) {
    .frequently-asked-questions-section .section-title{
        font-size: 19px;
        line-height: 24px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .faq_category_title{
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 6px;
    }

    .frequently-asked-questions-section .title{
        font-size: 12px;
        line-height: 20px;
    }

    .tab-content-text-gap{
        margin-top: 18px;
    }

    .tab-content-text p, .tab-content-text span, .tab-content-text td, .tab-content-text li, .tab-content-text th{
        font-size: 11px;
        line-height: 15px;
        margin-bottom: 12px;
    }

    .container_for_categorical_faq:not(:last-child){
        margin-bottom: 48px;
    }

    .wrapper_for_contact_contacts{
        margin-top: 64px;
    }
}