/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 09 2025 | 14:03:20 */
/* ________________ TÍTULOS CON SUBRAYADOS POR LOS LADOS ___________________ */
.pa-heading-line-right h1, .pa-heading-line-left h1, .pa-heading-line-both h1,
.pa-heading-line-right h2,
.pa-heading-line-right h3 {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
}
/* right */
/*add and adjust the lines*/
.pa-heading-line-right h1:after,
.pa-heading-line-right h2:after,
.pa-heading-line-right h3:after {
	content: '';
	border-top: 3px solid #ececec;
	margin: 20px 0 0 20px;
	flex: 1 0 20px;
}
.pa-heading-line-right h3:after {
	margin: 20px 0 0 10px;
}
@media only screen and (max-width: 767px) {
	.pa-heading-line-right h1:after,
	.pa-heading-line-right h2:after,
	.pa-heading-line-right h3:after {
		margin-left: 5px;
	}
}
.pa-heading-line-right.bco h1:after, .pa-heading-line-right.bco h2:after {
	border-top: 3px solid #fdf0d5;
}
 /* left */
 .pa-heading-line-left h1:before {
 	content: '';
	border-top: 2px solid #669bbc;
	margin: 20px 20px 0 0;
	flex: 1 0 20px;
}
.pa-heading-line-left h1:before {
	margin: 20px 20px 0 0;
}

/*add and adjust the lines BOTH */
.pa-heading-line-both h1:before,
.pa-heading-line-both h1:after {
	content: '';
	border-top: 2px solid #669bbc;
	margin: 20px 20px 0 0;
	flex: 1 0 20px;
}
/*add spacing between heading and lines BOTH */
.pa-heading-line-both h1:after {
	margin: 20px 0 0 20px;
}
/* _________________ FIN TÍTULOS _____________ */
