@import url(variables-fonts.css);
@import url(pantallas-aisladas.css);

html,
body {
	height: clamp(100dvh, 100dvh, 100dvh);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	font-family: poppinsRegular, sans-serif !important;
	font-size: 15px;
}

main {
	flex-grow: 1;
	color: var(--violetaOscuro) !important;
	background-image: url(assets/pigmento-bg-01.png);
	background-repeat: no-repeat;
	background-size: auto;
}

header,
main,
footer {
	flex-shrink: 0;
}

.subheader {
	background-color: var(--violeta);
}

.subheader h3 {
	font-family: azoRegular, sans-serif;
}

footer {
	background: var(--violetaOscuro);
	color: #fff !important;
}

label {
	font-family: poppinsMedium, sans-serif;
}

input {
	height: 4rem;
	border: 1px solid var(--violetaOscuro) !important;
}

input:focus {
	box-shadow: 0 0 0 0.25rem #9a90c442 !important;
}

a {
	color: #fff !important;
	text-decoration: none !important;
}
.italic{
	font-style: italic;
}
.title-dark {
	font-family: azoRegular, sans-serif;
	color: var(--violetaOscuro) !important;
}

.title-light {
	font-family: azoRegular, sans-serif;
	color: var(--violetaClaro) !important;
	font-size: 2.5rem;
	-webkit-text-stroke: 1px var(--violetaOscuro);
	margin-top: -1rem;
}

.subtitle {
	font-family: poppinsBold, sans-serif;
}

.text-strong {
	font-family: azoRegular, sans-serif;
	color: var(--violetaOscuro) !important;
}

.button-inscribir {
	width: clamp(18rem, 18rem, 20rem);
	font-family: poppinsBold, sans-serif !important;
	background-color: var(--violetaOscuro) !important;
}

.button-inscribir:active {
	border: none;
}

.fechas {
	font-size: 2rem;
}

.direccion {
	font-size: 0.9rem;
	text-align: center;
}

.title-quick-links {
	font-family: poppinsMedium, sans-serif;
}

.quick-links {
	line-height: 1.5rem;
}

.width-info {
	max-width: 45rem;
}

.copyright {
	color: var(--violeta);
	font-family: poppinsMedium, sans-serif;
	font-size: 0.7rem;
}

.container-redes {
	width: 5rem;
	height: 5rem;
	display: grid;
	place-content: center;
}

.facebook {
	background-color: #d8a0c7;
}

.twitter {
	background-color: #f5bb04;
}

.instagram {
	background-color: #17b0d9;
}

/* Hide the default checkbox */
.custom-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom checkbox */
.custom-checkbox {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
	position: relative;
}

.custom-checkbox .custom-checkmark {
	height: 24px;
	width: 24px;
	background-color: #fff;
	border: 1px solid var(--violetaOscuro);
	border-radius: 4px;
	/* Optional: for rounded corners */
	padding: 4px;
	box-sizing: border-box;
	display: inline-block;
	position: relative;
}

/* Add padding inside and background color */
.custom-checkbox .custom-checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 7px;
	top: 1px;
	width: 8px;
	height: 16px;
	border: solid white;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

/* Show checkmark when checked */
.custom-checkbox input:checked~.custom-checkmark {
	background-color: #f5bb04;
	border-color: var(--violetaOscuro);
}

.custom-checkbox input:checked~.custom-checkmark:after {
	display: block;
}