:root {
	--fuente_base: 'IBM Plex Mono', sans-serif;
	--fuente_titulos: 'butik-display-normal', serif;
	--luto15: rgba(255, 255, 255, .15);
	--luto25: rgba(255, 255, 255, .25);
	--luto50: rgba(255, 255, 255, .5);
	--luto75: rgba(255, 255, 255, .75);
	--sombra15: rgba(0, 0, 0, .15);
	--sombra25: rgba(0, 0, 0, .25);
	--sombra50: rgba(0, 0, 0, .5);
	--sombra75: rgba(0, 0, 0, .75);
	--blanco: #ffffff;
	--negro: #000000;
	--moka: #6f5c51;
	--crema: #ddd2ba;
	--fondo_1: url('../img/web/fondo_1.jpg') repeat top center;
	--fondo_2: url('../img/web/fondo_2.jpg') repeat center;
	--fondo_3: url('../img/web/fondo_3.jpg') repeat top center;
	--fondo_4: url('../img/web/fondo_4.jpg') repeat top center;
	--fondo_5: url('../img/web/fondo_5.jpg') repeat top center;
/*	--crema: #efece2;*/
/*	--oscuro: #d2cfc1;*/
/*	--marron: #332d0c;*/
}

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-text-size-adjust: none;
	box-sizing: border-box;
	outline: none;
	backface-visibility: hidden;
  	font-feature-settings: 'liga' 0;
}

::-webkit-input-placeholder {
	color: var(--negro);
	opacity: 1;
}

:-moz-placeholder {
	color: var(--negro);
	opacity: 1;
}

::-moz-placeholder {
	color: var(--negro);
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--negro);
	opacity: 1;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-button {
	width: 0;
	height: 0;
}

::-webkit-scrollbar-thumb {
	border: none;
	border-radius: 0;
	background: var(--negro);
}

::-webkit-scrollbar-thumb:active {
	background: var(--negro);
}

::-webkit-scrollbar-track {
	border: none;
	border-radius: 0;
	background: var(--blanco);
}

::-webkit-scrollbar-track:active {
	background: var(--blanco);
}

::-webkit-scrollbar-corner {
	background: transparent;
}

body {
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0;
	font-family: var(--fuente_base);
	font-size: 62.5%;
	color: var(--negro);
	background: var(--fondo_1);
	overflow-x: hidden;
}

img {
	border: 0;
	outline: 0;
	transform-style: preserve-3d;
}

input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="time"],
input[type="date"],
textarea,
select {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	font-family: var(--fuente_base);
	-webkit-appearance: none;
}

form {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

a[role="button"] {
	cursor: pointer;
}

h1,
h2,
h3 {
	display: inherit;
	vertical-align: inherit;
	margin: 0;
	padding: 0;
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	font-style: inherit;
	color: inherit;
	outline: 0;
}

.limpia {
	clear: both;
}

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: lowercase;
}

.centrar {
	text-align: center !important;
}

.oculto {
	display: none !important;
}

.invisible {
	opacity: 0;
	visibility: hidden;
}

.transicion {
	transition: all 250ms linear;
}

.dialog {
	display: none;
}

.textos_js {
	display: none;
}

.mensajes {
	display: none;
}

.contenedor {
	max-width: calc(100% - 100px);
	margin: 0 auto;
}

.contenedora {
	max-width: 1100px;
	margin: 0 auto;
}

.contenedorin {
	max-width: 800px;
	margin: 0 auto;
}

/* CARGANDO */
.cargando {
	position: fixed;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--sombra75);
	z-index: 100;
}

.cargando span {
	display: block;
	aspect-ratio: 1;
	width: 50px;
	padding: 10px;
	border-radius: 100%;
	background: var(--blanco);
	mask: conic-gradient(transparent 25%, var(--negro)), linear-gradient(var(--negro) 0 0) content-box;
	-webkit-mask: conic-gradient(transparent 25%, var(--negro)), linear-gradient(var(--negro) 0 0) content-box;
	mask-composite: subtract;
	-webkit-mask-composite: source-out;
	animation: cargando 1s linear infinite;
}

@keyframes cargando
{
	to {
		transform: rotate(1turn);
	}
}

/* SALTO A DOS LINEAS */
.salto span {
	display: block;
}

/* JQUERY DIALOG */
.ui-dialog {
	position: fixed;
	left: 0;
	right: 0;
	display: none;
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
	z-index: 999;
}

.ui-dialog:before {
	content: '';
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--sombra75);
	z-index: -1;
}

.ui-dialog .ui-dialog-titlebar {
	position: relative;
	padding: 0 20px;
	padding-top: 60px;
	padding-bottom: 10px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	background: var(--crema);
}

.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
	display: block;
	font-size: 2em;
	line-height: 1em;
}

.ui-dialog .ui-dialog-titlebar .ui-button {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 auto;
	padding: 0;
	border: none;
	border-radius: 0;
	font-size: 0;
	background: url('../img/web/cerrar.svg') no-repeat center;
	cursor: pointer;
	transition: all 250ms linear;
}

.ui-dialog .ui-dialog-content {
	position: relative;
	min-height: unset !important;
	margin: 0;
	padding: 20px;
	padding-top: 0;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	font-family: var(--fuente_base);
	font-size: 1.45em;
	line-height: 20px;
	background: var(--crema);
}

.ui-dialog .ui-dialog-content p {
	margin: 0;
}

.ui-dialog .ui-dialog-content ul {
	margin: 0;
	padding: 0;
}

.ui-dialog .ui-dialog-content ul li {
	display: block;
	margin-bottom: 5px;
}

.ui-dialog .ui-dialog-content ul li:last-child {
	margin-bottom: 0;
}

.ui-dialog .ui-dialog-content ul li:before {
	content: '- ';
}

.ui-dialog .ui-dialog-content ul li:first-child:last-child:before {
	content: none;
}

.ui-dialog .ui-dialog-buttonpane {
	position: relative;
	margin-top: -20px;
	padding: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	text-align: center;
	background: var(--crema);
}

.ui-dialog .ui-dialog-buttonpane .ui-button {
	display: inline-block;
	vertical-align: middle;
	max-width: calc(50% - 5px);
	min-width: 100px;
	margin-right: 10px;
    padding: 0 20px;
	border: none;
	border-radius: 10px;
	font-family: var(--fuente_base);
	font-size: 1.45em;
	line-height: 50px;
	text-align: center;
	color: var(--negro);
	background: none;
	box-shadow: 0 0 0 1px var(--negro) inset;
	cursor: pointer;
	transition: all 250ms linear;
}

.ui-dialog .ui-dialog-buttonpane .ui-button:last-child {
	margin-right: 0;
	color: var(--blanco);
	background: var(--negro);
	box-shadow: none;
}

.ui-dialog ~ .ui-widget-overlay {
	display: none;
}

/* CAMPOS */
.campos .fila {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.campos .fila:last-child {
	margin-bottom: 0;
}

.campos .fila .campo {
	position: relative;
	width: 100%;
}

.campos .fila.mitad .campo {
	width: calc(50% - 5px);
}

.campos .fila.tercio .campo {
	width: calc(100% / 3 - 20px / 3);
}

.campos .fila .campo.grande {
	padding: 0 20px;
	padding-top: 25px;
	padding-bottom: 5px;
	border-radius: 10px;
	background: var(--blanco);
	box-shadow: 0 0 0 1px var(--sombra15) inset;
}

.campos .fila .campo label {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: block;
	padding: 0 20px;
	font-size: 1.45em;
	line-height: 50px;
	color: var(--negro);
	z-index: 1;
	pointer-events: none;
	transition: all 250ms linear;
}

.campos .fila .campo.centrado label {
	text-align: center;
}

.campos .fila .campo input[type="email"]:focus ~ label,
.campos .fila .campo input[type="number"]:focus ~ label,
.campos .fila .campo input[type="tel"]:focus ~ label,
.campos .fila .campo input[type="password"]:focus ~ label,
.campos .fila .campo input[type="text"]:focus ~ label,
.campos .fila .campo select:focus ~ label,
.campos .fila .campo textarea:focus ~ label {
	top: 7.5px;
	font-size: 1.25em;
	line-height: 15px;
	color: var(--sombra50);
}

.campos .fila .campo input[type="email"]:valid ~ label,
.campos .fila .campo input[type="email"]:not(:placeholder-shown) ~ label,
.campos .fila .campo input[type="number"]:valid ~ label,
.campos .fila .campo input[type="number"]:not(:placeholder-shown) ~ label,
.campos .fila .campo input[type="tel"]:valid ~ label,
.campos .fila .campo input[type="tel"]:not(:placeholder-shown) ~ label,
.campos .fila .campo input[type="password"]:valid ~ label,
.campos .fila .campo input[type="password"]:not(:placeholder-shown) ~ label,
.campos .fila .campo input[type="text"]:valid ~ label,
.campos .fila .campo input[type="text"]:not(:placeholder-shown) ~ label,
.campos .fila .campo input[type="date"]:valid ~ label,
.campos .fila .campo input[type="date"]:not(:placeholder-shown) ~ label,
.campos .fila .campo select.sel ~ label,
.campos .fila .campo textarea:valid ~ label,
.campos .fila .campo textarea:not(:placeholder-shown) ~ label {
	top: 7.5px;
	font-size: 1.25em;
	line-height: 15px;
	color: var(--sombra50);
}

.campos .fila .campo input,
.campos .fila .campo select {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 20px;
	padding-top: 15px;
	border-radius: 10px;
	font-size: 1.45em;
	line-height: 40px;
	color: var(--negro);
	background: var(--blanco);
	box-shadow: 0 0 0 1px var(--sombra15) inset;
}

.campos .fila .campo input[type="password"] {
	padding-right: 60px;
}

.campos .fila .campo input[name="fecha_nacimiento"] {
	position: relative;
	padding-right: 50px;
	text-transform: uppercase;
	background: url('../img/web/calendario.svg') no-repeat center right 20px var(--blanco);
}

.campos .fila .campo select {
	padding-right: 50px;
	background: url('../img/web/select.svg') no-repeat center right 20px var(--blanco);
}

.campos .fila .campo textarea {
	position: relative;
	display: block;
	width: 100%;
	height: 140px;
	font-size: 1.45em;
	line-height: 20px;
	color: var(--negro);
	background: var(--blanco);
	resize: none;
}

.campos .fila .campo textarea::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.campos .fila .campo *:-webkit-autofill,
.campos .fila .campo *:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--negro) !important;
	-webkit-box-shadow: 0 0 0px 1px var(--sombra15) inset, 0 0 0px 1000px var(--blanco) inset !important;
}

.campos .fila .campo .ver_password {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	display: block;
	width: 20px;
	background: url('../img/web/password.svg') no-repeat center;
	cursor: pointer;
}

.campos .fila .campo .ver_password.sel {
	opacity: .25;
}

/* RADIOS */
.radios .radio {
	position: relative;
	display: block;
	font-size: 1.45em;
	line-height: 20px;
	text-align: left;
}

.radios .radio:before {
	content: '';
	position: absolute;
	bottom: -.5px;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--sombra15);
}

.radios .radio:last-child:before {
	content: none;
}

.radios .radio input[type="radio"] {
	display: none;
	border: 0;
	border-radius: 0;
	background: transparent;
	opacity: 0;
}

.radios .radio label {
	position: relative;
	display: block;
	padding: 20px 0;
	padding-left: 40px;
	cursor: pointer;
}

.radios .radio label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	box-shadow: 0 0 0 1px var(--sombra15) inset;
	transform: translate(0, -50%);
}

.radios .radio input[type="radio"]:checked + label:before {
	box-shadow: 0 0 0 7.5px var(--negro) inset;
}

.radios .radio label span {
	display: block;
}

/* CHECKS */
.checks .check {
	position: relative;
	display: block;
	margin-bottom: 10px;
	font-size: 1.45em;
	line-height: 20px;
	text-align: left;
}

.checks .check:last-child {
	margin-bottom: 0;
}

.checks .check.centrado {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.checks .check input[type="checkbox"] {
	display: none;
	border: 0;
	border-radius: 0;
	background: transparent;
	opacity: 0;
}

.checks .check label {
	position: relative;
	display: block;
	padding-left: 30px;
	cursor: pointer;
}

.checks .check.centrado label {
	display: inline-block;
	vertical-align: baseline;
}

.checks .check label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	box-shadow: 0 0 0 1px var(--sombra15) inset;
}

.checks .check input[type="checkbox"]:checked + label:before {
	background: url('../img/web/check_w.svg') no-repeat center var(--negro);
	box-shadow: none;
}

.checks .check label a {
	text-decoration: underline;
	color: inherit;
}

/* DESPLEGABLE LEGAL */
.desplegable_legal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 15;
}

.desplegable_legal .interior {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	max-width: 640px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 20px;
	background: var(--crema);
	z-index: 2;
	transform: translate(0, -50%);
}

.desplegable_legal .interior .titulo {
	display: block;
	max-width: calc(100% - 40px);
	font-size: 2em;
	line-height: 1em;
}

.desplegable_legal .interior .descripcion {
	max-height: calc(100vh - 120px);
	max-height: calc(var(--vh, 1vh) * 100 - 120px);
	margin-top: 20px;
	font-size: 1.45em;
	line-height: 20px;
	overflow-y: auto;
}

.desplegable_legal .interior .descripcion::-webkit-scrollbar {
    width: 15px;
}

.desplegable_legal .interior .descripcion::-webkit-scrollbar-track {
    background: transparent;
}

.desplegable_legal .interior .descripcion::-webkit-scrollbar-thumb {
    border-left: 10px solid transparent;
    background-clip: content-box;
}

.desplegable_legal .interior .descripcion p,
.desplegable_legal .interior .descripcion ul,
.desplegable_legal .interior .descripcion ol {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
}

.desplegable_legal .interior .descripcion p:last-child,
.desplegable_legal .interior .descripcion ul:last-child,
.desplegable_legal .interior .descripcion ol:last-child {
	margin-bottom: 0;
}

.desplegable_legal .interior .descripcion ol {
	counter-reset: contador;
}

.desplegable_legal .interior .descripcion ul li,
.desplegable_legal .interior .descripcion ol li {
	display: block;
	margin-bottom: 5px;
}

.desplegable_legal .interior .descripcion ol li {
	counter-increment: contador;
}

.desplegable_legal .interior .descripcion ul li:last-child,
.desplegable_legal .interior .descripcion ol li:last-child {
	margin-bottom: 0;
}

.desplegable_legal .interior .descripcion ul li:before {
	content: '- ';
}

.desplegable_legal .interior .descripcion ol > li:before {
	content: counter(contador) ' - ';
}

.desplegable_legal .interior .descripcion a {
	text-decoration: underline;
	color: inherit;
	word-break: break-all;
	transition: all 250ms linear;
}

.desplegable_legal .interior .descripcion h2,
.desplegable_legal .interior .descripcion h3 {
	margin-bottom: 10px;
    font-size: 16.5px;
    line-height: 25px;
}

.desplegable_legal .interior .descripcion h2:last-child,
.desplegable_legal .interior .descripcion h3:last-child {
	margin-bottom: 0;
}

.desplegable_legal .interior .descripcion .scroll {
	margin-bottom: 10px;
	overflow-x: auto;
}

.desplegable_legal .interior .descripcion .scroll:last-child {
	margin-bottom: 0;
}

.desplegable_legal .interior .descripcion .scroll::-webkit-scrollbar {
    height: 15px;
}

.desplegable_legal .interior .descripcion .scroll::-webkit-scrollbar-track {
    background: transparent;
}

.desplegable_legal .interior .descripcion .scroll::-webkit-scrollbar-thumb {
    border-top: 10px solid transparent;
    background-clip: content-box;
}

.desplegable_legal .interior .descripcion .scroll table {
	width: 100%;
	min-width: 1000px;
	border-collapse: collapse;
}

.desplegable_legal .interior .descripcion .scroll table tr:nth-of-type(odd) {
	background: var(--blanco);
}

.desplegable_legal .interior .descripcion .scroll table tr th {
	vertical-align: top;
	padding: 5px 10px;
	font-weight: 400;
	text-align: left;
	text-transform: uppercase;
	color: var(--blanco);
	background: var(--negro);
}

.desplegable_legal .interior .descripcion .scroll table tr td {
	vertical-align: top;
	padding: 5px 10px;
	text-align: left;
}

.desplegable_legal .interior .descripcion .scroll table tr:first-child th:first-child,
.desplegable_legal .interior .descripcion .scroll table tr:first-child td:first-child {
	border-top-left-radius: 10px;
}

.desplegable_legal .interior .descripcion .scroll table tr:first-child th:last-child,
.desplegable_legal .interior .descripcion .scroll table tr:first-child td:last-child {
	border-top-right-radius: 10px;
}

.desplegable_legal .interior .descripcion .scroll table tr:last-child th:first-child,
.desplegable_legal .interior .descripcion .scroll table tr:last-child td:first-child {
	border-bottom-left-radius: 10px;
}

.desplegable_legal .interior .descripcion .scroll table tr:last-child th:last-child,
.desplegable_legal .interior .descripcion .scroll table tr:last-child td:last-child {
	border-bottom-right-radius: 10px;
}

.desplegable_legal .interior .cerrar_legal {
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	width: 20px;
	height: 20px;
	background: url('../img/web/cerrar.svg') no-repeat center;
}

.desplegable_legal .fondo {
	position: absolute;
	inset: 0;
	background: var(--sombra75);
	z-index: 1;
}