/*======================================================================================================
										SECCIÓN DE "PREGUNTAS FRECUENTES"
=======================================================================================================*/
.bdSeccPF{
	user-select: none;
}
.encabezadoUnaPF{
	user-select: none;
	display: flex;
	justify-content: space-between;	
	align-items: center;
	font-family: fontBold;
	font-size: 17px;
	padding: 10px 20px;
	border-radius: 4px;
	margin-bottom: 15px;
	cursor: pointer;
}
.DK .encabezadoUnaPF{background: rgba(0,0,0,.1)}
.DK .encabezadoUnaPF:hover{background: rgba(0,0,0,.14)}
.MB .encabezadoUnaPF{background: rgba(0,0,0,.04)}
/*----------- Botón "+" de la pregunta frecuente -----------*/
.cruzPF{
	width: 12px;
	height: 12px;
	display: flex;
	position: relative;
	align-items: center;
}
.cruzPF:before,
.cruzPF:after{
	content:'';
	position: absolute;
	left: 50%;
	top: 50%;
	background: #000;
}
.cruzPF:before{ /*palo vertical de la cruz*/	
	width: 3px;
	height: 12px;
	transform: translateY(-50%);
}
.cruzPF:after{ /*palo horizontal de la cruz*/	
	width: 12px;
	height: 3px;
	transform: translate(calc(-50% + 1.5px),-50%);
}
/*---------- Respuesta de la pregunta frecuente ----------*/
.respuestaPF{
	display: none;
	font-family: fontRegular;
	text-align: justify;
	font-size: 16px;
	padding: 0 4px;
	margin-bottom: 25px;
	color: #777;
	white-space: pre-wrap;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
/*-----------------------------------------------------------------
.verRespuestaPF (clase para ver la respuesta de la pregunta frecuente)
la clase .verRespuestaPF se le pone a .encabezadoUnaPF 
-----------------------------------------------------------------*/
.verRespuestaPF + .respuestaPF{ /*expandir el espacio de "respuesta"*/
	display: block;
}
.verRespuestaPF .cruzPF:before{ /*quitar el palo vertical de la cruz*/
	display: none;
}
.pfPlanteada{
	color: #000;
	font-family: fontBold;
	font-size: 16px;
	border: none;
	background: none;
	cursor: pointer;
}
@media (max-width: 500px){
	.pfPlanteada{
		text-align: center;
		font-size: 14px;
		width: calc(100% - 30px);
	}
	.respuestaPF{
		font-size: 14px;
	}
}