/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 22 2026 | 19:53:20 */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ÍNDICE

- GENERAL: root, html, body, *, p-__propios__

- PLANTILLA: body, container, main, nav
--- NAV: general, Plantilla App, elementos, menu páginas hermanas
--- MAIN: general, páginas hijas, TOC, p-lista

- OTROS:
--- DearFlip Books

*/

/********** GENERAL **********/

:root {
	--texto-primario: #111827;
	--texto-secundario: #4B5563;
	--texto-terciario: #6B7280;
	--texto-deshabilitado: #9CA3AF;
	--link: #2563EB;
	--fondo: #ffffff;
	--background: rgb(246, 246, 246);
	--ancho: 1200px;
}

html {
	height: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	min-height: 100%;
	overflow-y: auto;
	background: var(--fondo);
	font-size: 16px;
}

body > #wrapper > header, body > #wrapper > footer {
	display: none;
}

* {
	font-family: "Inter", sans-serif;
	color: var(--texto-primario);
}

a {
	color: var(--link);
	text-decoration: none;
}

.p-flex {
	position: relative;
	display: flex;
	height: 100%;
}

.p-expand {
	flex: 1;
	min-width: 0;
}

.p-pointer {
	cursor: pointer;
}

.p-oculto {
	display: none !important;
}

.p-iframe {
	width: 100%;
	height: 50vh;
	margin-bottom: 1rem;
}

/********** PLANTILLA **********/

#p-body {
	position: relative;
	inset: 0;
	width: 100vw;
	min-height: 100vh;
	overflow: visible;
	background: var(--fondo);
	z-index: 500;
}

#p-container {
	position: relative;
	width: 100%;
	max-width: var(--ancho);
	min-height: 100vh;
	margin: 0 auto;
	background: var(--background);
	z-index: 1000;
}

.p-main {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 100px 20px 100px 20px;
	margin: 0 auto;
	background: var(--background);
	z-index: 1500;
}

.p-nav {
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	max-width: var(--ancho);
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px;
	background: rgba(246, 246, 246, 0.95);
	z-index: 3000;
}

/***** NAV *****/

.p-nav, .p-nav * {
	box-sizing: border-box;
}

.p-nav a {
	color: var(--texto-primario);
}

.p-nav h1 {
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}

.p-nav .p-contenedor-titulo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 60px;
}

/* Plantilla App */

.p-app .p-nav .p-contenedor-titulo {
	padding: 10px 15px 10px 15px;
}

/* Elementos NAV */

.p-nav_icon {
	height: 100%;
	margin: 5px;
	padding: 15px;
	background: var(--fondo);
	border-radius: 50px;
	box-shadow: 0 0 5px #e5e5e5;
	line-height: 20px;
}

#p-checkbox-menu, #p-checkbox-modal {
	display: none;
}

.p-nav_menu {
	position: absolute;
	top: calc(100% + 5px);
	right: 5px;
	width: 100%;
	padding: 10px;
	max-height: 70dvh;
	overflow-y: auto;
	background: var(--fondo);
	border-radius: 20px;
	box-shadow: 0 0 5px #e5e5e5;
	z-index: 2500;
	
	transform: scaleY(0);
	transform-origin: top center;
	
	opacity: 0;
	pointer-events: none;

	transition:
		transform .2s ease,
		opacity .15s ease;
}

body:has(#p-checkbox-menu:checked) .p-nav_menu {
	transform: scaleY(1);
	opacity: 1;
	pointer-events: auto;
}

.p-nav_menu li  {
	display: block;
	border-radius: 10px;
	line-height: 1.3em;
}

.p-nav_menu li.current_page_item, .p-nav_menu .toc_list li:has(a.is-active) {
	background: var(--background);
}

.p-nav_menu li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
}

.p-nav_menu li:first-child a {
	padding-top: 5;
}

.p-nav_menu li:last-child a {
	padding-bottom: 5;
}

.p-nav hr {
	border: none;
	height: 1px;
	background: var(--texto-deshabilitado);
	margin: 5px 0 5px 0;
}

/***** MAIN *****/

.p-main p, .p-main li {
	line-height: 1.5rem !important;
	margin-bottom: 1rem;
}

.p-main li > ul {
	margin-top: 1rem;
}

.p-main b, .p-main strong {
	font-weight: bold;
}

.p-main h2 {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.p-main h2:first-child {
	margin-top: 0;
}

.p-main ul {
	list-style-type: disc !important;
	list-style-position: outside !important;
	padding-left: 1.5rem;
	margin-left: 0;
}

.p-main ol {
	list-style-type: decimal !important;
	list-style-position: outside !important;
	padding-left: 1.5rem;
	margin-left: 0;
}

.p-main li {
	display: list-item !important;
}

/* Páginas hijas y TOC */

.p-main .p-paginas-hijas, .p-main .toc_list {
	background: #FFFFFF;
	margin: 0;
	padding: 0;
	border-radius: 20px;
	box-shadow: 0 0 5px #e5e5e5;
	list-style-type: none !important;
}

.p-main .p-paginas-hijas li, .p-main .toc_list li {
	display: block !important;
	margin: 0 !important;
	line-height: 1.3em;
}

.p-main .p-paginas-hijas li a, .p-main .toc_list li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 5px 10px 15px;
	border-bottom: 1px solid rgb(246, 246, 246) !important;
}

/*.p-main .p-paginas-hijas li:has(a img.emoji) a {
	display: flex !important;
	align-items: center;
	justify-content: flex-start;
	padding: 10px 5px 10px 5px;
}

.p-main .p-paginas-hijas li a img.emoji {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 40px;
}*/

.p-main .p-paginas-hijas li:first-child a, .toc_list li:first-child a {
	padding-top: 15px;
}

.p-main .p-paginas-hijas li:last-child a, .toc_list li:last-child a {
	padding-bottom: 15px;
	border-bottom: 0 !important;
}


/* Listas */

.p-main .p-lista ul {
	background: #FFFFFF;
	margin: 0;
	padding: 0;
	border-radius: 20px;
	box-shadow: 0 0 5px #e5e5e5;
	list-style-type: none !important;
}

.p-main .p-lista ul li {
	display: flex !important;
	align-items: center;
	justify-content: flex-start;
	margin: 0 !important;
	line-height: 1.3em;
	border-bottom: 1px solid rgb(246, 246, 246) !important;
}

.p-main .p-lista ul li i {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 40px;
	padding: 0 5px 0 10px;
}

.p-main .p-lista ul li a {
	padding: 10px 5px 10px 0;
	flex-grow: 1;
}

.p-main .p-lista ul li a i {
	padding: 0;
}

.p-main .p-lista ul li:first-child {
	padding-top: 5px;
}

.p-main .p-lista ul li:last-child {
	padding-bottom: 5px;
	border-bottom: 0 !important;
}

/********** OTROS **********/

/* DearFlip Books */

._df_book {
	border: 1px solid #ffffff;
	margin-bottom: 20px;
}

.h5p-content, .h5p-iframe-wrapper {
	border: 1px solid #ffffff;
}