/**
* 2007-2022 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-2022 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.
*/
  
.kFaq .panel {
	overflow: hidden;
	display: none;
	max-width: 95%;
}

.kFaq .panel.open {
	display: block;
}

.kFaq {
	display: grid;
	grid-template-columns: 25% 75%;
	grid-gap: 2em;
	max-width: 75%;
	margin: auto;
	margin-bottom: 3em;
}

.kFaq ul li {
	border: 1px solid #e8e8ea;
	width: 90%;
	position: relative;
	padding: 1em;
	cursor: pointer;
}

.kFaq ul li:first-child {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.kFaq ul li::before {
	content: "\2039";
	color: #2d42bd;
	font-size: 38px;
	transform: rotate(270deg);
	display: inline-block;
	position: absolute;
	right: 1em;
	top: 15px;
}

.kFaq ul li.closed::before {
	content: "\2039";
	color: #2d42bd;
	font-size: 38px;
	transform: rotate(90deg);
	display: inline-block;
	position: absolute;
	right: 1em;
	top: 15px;
}

.kFaq h3.accordion {
	margin: 0;
	font-size: 18px;
	color: #242947 !important;
	font-weight: 600 !important;
}

.kFaq .panel p {
	padding: 1em 0;
	margin: 0;
}

.kFaq .panel p:empty {
	display: none;
	margin: 0;
}

.kFaq .first-title {
	color: #000629 !important;
	font-size: 26px;
	font-weight: bold !important;
	line-height: 1;
	margin-bottom: 1em;
	position: relative;
}

.kFaq .second-title {
	color: #000629 !important;
	font-size: 22px;
	line-height: 1;
}

.kFaq .first-title::after {
	content: "";
	height: 20px;
	width: 50px;
	background-image: url(https://bioconcept.kwantic.fr/img/cms/trace.svg);
	background-repeat: no-repeat;
	background-position: center bottom;
	position: absolute;
	top: 90%;
	left: 0;
}