/* FAQ
-------------------------------------------------------------------------------------------------------------------------------- */

#faq-content {
	max-width: 1280px;
	padding: 0;
	margin: 0 auto;
	display: flex;
}

.collapsible-content { 
	position: relative; 
	display: none; 
}
.collapsible.start-open .collapsible-content { display: block }
.tooltip-helper {
	display:inline-block;
	width:20px; height:20px;
	background-color:#cecece;
	border-radius:50%;
	text-align:center;
	line-height:20px;
	font-weight:700;
	font-size:16px;
	color:#fff;
}
.tooltip_content { display:none }
.collapsible-button { 
	position:relative; cursor:pointer;
	-webkit-transition:all .3s ease-out;
	-o-transition:all .3s ease-out;
	transition:all .3s ease-out;
}
.collapsible-button::after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 5px; top: 24px;
	background-size: 12px 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 500 500' fill='%23fa5f66'%3E%3Cpath d='M485.1,43.2V42c0-15.5-12.5-28-28-28H51.8c-20.9,0-38,17-38,38s17,38,38,38h304.8L25.5,421.1c-7.2,7.2-11.2,16.8-11.1,27.1 c0.1,10.1,4,19.6,11.2,26.7c7.1,7,16.8,11,26.7,11c10.1,0,19.9-4.1,27-11.3l330-329.8v302.6c0,20.9,17,38,38,38s38-17,38-38V60.7 C486.6,54.9,486.5,48.9,485.1,43.2z'/%3E%3C/svg%3E");
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}
.collapsible.collapsible-open .collapsible-button::after { 
	transform: rotate(90deg);
}

/* > menu ======================================= */
#menu-questions { 
	width: 30%;
	flex: 0 0 auto;
	min-width: 180px;
	position: relative;
	padding: 30px 0 80px;	
	background: #1a1a1a url(../../images/decoration/bgn_deco_2.gif) 10% bottom no-repeat;
    background-size: 140px auto;
}
#menu-questions ul li {
	color:#fff;
	font-size: .875em;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-transition:background-color .2s linear;
	-o-transition:background-color .2s linear;
	transition:background-color .2s linear;
}
#menu-questions ul li a {
	display:block; padding: 10px 20px;
	border-bottom: #434343 1px solid;
	-webkit-transition:color .2s linear, border-color .2s linear;
	-o-transition:color .2s linear, border-color .2s linear;
	transition:color .2s linear, border-color .2s linear;
}
#menu-questions ul li:hover { background-color: #434343; color: #fff; }
#menu-questions ul li:hover a { border-color: #434343; }
#menu-questions ul li.active { background-color: #fa5f66; color: #fff; }
#menu-questions ul li.active a { border-color: #fa5f66 }

/* > liste des questions ======================== */
#list-questions {
	flex: 1 1 auto;
	padding-left: 40px;
}
#list-questions .collapsible:first-child {
	border-top: #d9d8d6 1px solid;
}
#list-questions .collapsible {
    border-bottom: #d9d8d6 1px solid;
}
#list-questions .collapsible-button {
	margin: 0; 
	padding: 20px 40px 20px 0; 
	text-transform: uppercase;
    font-family: 'Muli', sans-serif;
    font-weight: 700;
	font-size: 1em;
	-webkit-transition:color .2s linear;
	-o-transition:color .2s linear;
	transition:color .2s linear;
} 
#list-questions .collapsible-content { padding: 0 0 20px 0; }
#list-questions .collapsible-content a { text-decoration: underline;  }
#list-questions .collapsible-content a:hover { color: #fa5f66 }
#list-questions .collapsible-content p,
#list-questions .collapsible-content ul { margin: 0 0 15px }
#list-questions .collapsible-content li {
	list-style: none;
	background: 0 10px no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='6' height='6'%3E%3Cpath fill-rule='evenodd' fill='%23fa5f66' d='M-0.000,-0.000 L6.000,-0.000 L6.000,6.000 L-0.000,6.000 L-0.000,-0.000 Z'/%3E%3C/svg%3E");
	padding-left: 20px;
	margin: 0 0 5px 0;
}
#list-questions .collapsible-content ol li {
	list-style:decimal;
	padding-bottom: 0.6em;
	margin-left: 1.6em;
}
#list-questions .collapsible-content ol li:first-child {
	padding-top: 0.6em;
}
#list-questions .collapsible-button:hover,
#list-questions .start-open .collapsible-button,
#list-questions .collapsible-open .collapsible-button {
	color: #fa5f66;
}
@media screen and (min-width: 1440px) {
	#faq-content { padding: 40px 100px 80px; }
}
@media screen and (max-width: 1280px) {
	#menu-questions {
		width: 280px;
	}
	#faq-content { padding: 40px; }
	#list-questions { width: calc(100% - 280px); }
	#menu-questions ul li { font-size: 1.125em; }
}

@media screen and (max-width: 860px) {
	#faq-content {
		flex-wrap: wrap;
	}
	#menu-questions {
		width: 100%;
		padding: 0 0 20px;
		background: #fff;
		border-radius: 0;
	}
	#menu-questions ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	#menu-questions ul li {
		background: #9999a4;
		border-radius: 10px;
		margin: 5px;
	}
	#menu-questions ul li a {
		padding: 5px 10px;
		border: none;
		font-size: .75em;
	}
	#menu-questions ul li.active {
		background-color: #fa5f66;
    	color: #fff;
	}
	#list-questions {
		width: 100%; 
		padding: 0
	}
	
	#page-faq #menu-questions { display: none }
}

@media screen and (max-width: 740px) {
	#hp-faq { 
		padding: 0;
		max-width: 640px;
		margin: 0 auto;
	}
	.hp-faq_inner { padding: 0 20px; }
	
}