@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--fuente_base: "Poppins", sans-serif;
	--luto25: rgba(0, 0, 0, .25);
	--luto50: rgba(0, 0, 0, .5);
	--luto75: rgba(0, 0, 0, .75);
	--radiado: 40px;
	--granate: #6b3a46;
	--marron: #995548;
	--naranja: #f09169;
	--crema: #fbf3e5;
	--blanco: #ffffff;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline
}


* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-text-size-adjust: none;
	box-sizing: border-box;
	outline: none;
	backface-visibility: hidden;
	text-rendering: optimizeSpeed;
	scrollbar-width: thin
}

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

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

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

:-ms-input-placeholder {
	color: var(--granate);
	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(--granate);
}

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

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

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

::-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%;
	font-style: normal;
	font-weight: 500;
	color: var(--marron);
	background: var(--crema);
	padding: 30px;
}

body.fancybox-active {
	overflow: hidden !important;
}

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: "Poppins", sans-serif;
	font-style: normal;
	-webkit-appearance: none
}

select[disabled] {
	opacity: 1;
}

input[type=number] {
	-moz-appearance: textfield
}

form {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

*[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: currentColor;
	outline: 0
}

ol,
ul {
	margin: 0 0 0 40px
}

.italica {
	font-style: italic
}

.limpia {
	clear: both;
}

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: lowercase;
}

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

.centrado {
	margin: 0 auto
}

.oculto {
	display: none !important;
}

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

html.loaded .transicion {
	transition: all 250ms linear
}

.dialog {
	display: none;
}

.textos_js {
	display: none;
}

.contenedor {
	max-width: 1740px;
	margin: 0 auto;
	width: 95%
}

.contenedorban {
	max-width: 1780px;
	margin: 0 auto;
	width: 97%
}

/* CARGANDO */
@keyframes cargando
{
	0%,
	40%,
	100% {
		transform: scaleY(.5);
	}

	20% {
		transform: scaleY(1);
	}
}

.cargando {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 25;
}

.cargando .interior {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 50px;
	margin: 0 auto;
	text-align: center;
	z-index: 2;
	transform: translate(0, -50%);
}

.cargando .interior div {
	display: inline-block;
	vertical-align: middle;
	width: 5px;
	height: 100%;
	margin-left: 5px;
	background: var(--crema);
	animation: cargando 1.2s infinite ease-in-out;
}

.cargando .interior div:nth-of-type(1) {
	margin-left: 0;
}

.cargando .interior div:nth-of-type(2) {
	animation-delay: -1.1s;
}

.cargando .interior div:nth-of-type(3) {
	animation-delay: -1s;
}

.cargando .interior div:nth-of-type(4) {
	animation-delay: -.9s;
}

.cargando .interior div:nth-of-type(5) {
	animation-delay: -.8s;
}

.cargando .fondo {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--luto75);
	z-index: 1;
}

/* CAMPOS */
.campos .campo {
	position: relative;
	margin-top: 20px;
}

.campos .campo:first-child {
	margin-top: 0;
}

.campos .campo label {
	display: block;
	font-size: 1.5em;
	line-height: 20px;
}

.campos .campo input,
.campos .campo select {
	display: block;
	color: var(--marron);
	width: 100%;
	height: 40px;
	margin-top: 5px;
	padding: 0 10px;
	border-radius: var(--radiado);
	font-size: 1.5em;
	line-height: 40px;
	background: var(--blanco);
}

.campos .campo select {
	cursor: pointer;
	padding-right: 30px;
	background: url('../img/web/desplegar.svg') no-repeat center right 10px var(--blanco);
}

.campos .campo textarea {
	display: block;
	color: var(--marron);
	width: 100%;
	height: 100px;
	margin-top: 5px;
	padding: 10px;
	border-radius: var(--radiado);
	font-size: 1.5em;
	line-height: 20px;
	background: var(--blanco);
	resize: none;
}

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

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

/* CHECKS */
.checks .check {
	margin-top: 10px;
}

.checks .check:first-child {
	margin-top: 0;
}

.checks .check input[type="checkbox"] {
	display: none;
}

.checks .check label {
	position: relative;
	display: block;
	padding-left: 30px;
	font-size: 1.5em;
	line-height: 20px;
	cursor: pointer;
}

.checks .check label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: var(--radiado);
	background: var(--blanco);
}

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

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

/* DESPLEGABLE LEGAL */
.desplegable_legal {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	z-index: 10;
}

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

.desplegable_legal .interior .titulo {
	display: block;
    font-size: 2.5em;
    font-weight: 500;
    line-height: 1em;
}

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

.desplegable_legal .interior .descripcion p,
.desplegable_legal .interior .descripcion ul,
.desplegable_legal .interior .descripcion ol {
	margin: 0;
	margin-bottom: 10px;
	padding-left: 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 {
	position: relative;
	display: block;
	margin-bottom: 5px;
	padding-left: 20px;
}

.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: '•';
	position: absolute;
	top: 0;
	left: 0;
}

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

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

.desplegable_legal .interior .descripcion a {
	text-decoration: underline;
	color: currentColor;
	word-break: break-word;
}

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

.desplegable_legal .fondo {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--luto75);
	z-index: 1;
}

div.format_popup {
	max-width: 960px;
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	cursor: default !important;
	min-width: 260px;
	background: var(--crema);
	border-radius: var(--radiado);
}

div.format_popup .tit {
	color: var(--granate);
	margin-top: 0;
	max-width: 70%;
	font-size: 4em;
	line-height: 40px;
	font-weight: 600;
	text-wrap: pretty
}

div.format_popup h1,
div.format_popup h2,
div.format_popup h3,
div.format_popup h4,
div.format_popup h5 {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-size: 2.25em;
	color: #171917;
	margin: 20px 0
}

div.format_popup table,
div.format_popup ul,
div.format_popup p {
	font-size: 1.667em;
	margin-top: 15px;
	margin-left: 15px;
	font-weight: 400;
	line-height: 1.6;
	list-style: none
}

div.format_popup ol {
	font-size: 1.667em;
	margin-top: 15px;
	margin-left: 15px;
	color: #171917;
	font-weight: 500;
	line-height: 1.6
}

div.format_popup ul {
	margin-left: 20px
}

div.format_popup ol {
	margin-left: 40px
}

div.format_popup p {
	margin-left: 0
}

div.format_popup p {
	text-align: justify
}

div.format_popup b,
div.format_popup strong {
	font-weight: 600
}

div.format_popup a {
	text-decoration: underline;
	color: #171917;
	word-break: break-all;
	font-weight: 600
}

div.format_popup ul ol,
div.format_popup ol ul,
div.format_popup ol ol,
div.format_popup ul ul {
	font-size: inherit
}

div.format_popup li {
	position: relative;
	font-size: 1em;
	padding-left: 20px
}

div.format_popup li p {
	font-size: 1em;
	margin: 0
}

div.format_popup ol li {
	padding-left: 10px
}

div.format_popup ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 5px;
	height: 5px;
	background: var(--granate);
	border-radius: 50%
}

div.format_popup .limit::-webkit-scrollbar {
	width: 5px;
	height: 5px
}

div.format_popup table {
	width: 100%;
	border-collapse: collapse;
	white-space: nowrap
}

div.format_popup tr:nth-of-type(odd) {
	background: #eee
}

div.format_popup th {
	background: #333;
	color: white;
	font-weight: bold
}

div.format_popup td,
div.format_popup th {
	padding: 6px;
	border: 1px solid #ccc;
	text-align: left
}

div.format_popup .fancybox-close-small{
	top: 20px;
	right: 20px;
}

.contenido.legal .scroll_table {
	overflow: auto;
	max-width: 170vw;
	margin-top: 40px;
	margin-bottom: 40px
}

.tablas .descripcion .scroll_table{
	overflow: auto;
	max-width: 170vw;
}

.contenido.legal .scroll_table::-webkit-scrollbar, 
.tablas .descripcion .scroll_table::-webkit-scrollbar {
	width: 22px;
	height: 22px
}

.contenido.legal .scroll_table table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 40px;
	white-space: nowrap
}

.contenido.legal .scroll_table tr {
	background: var(--crema);
	color: var(--marron);
}

.contenido.legal .scroll_table tr:nth-of-type(odd) {
	background: var(--blanco);
}

.contenido.legal .scroll_table th {
	background: var(--granate);
	color: var(--crema);
	font-weight: 500
}

.contenido.legal .scroll_table td,
.contenido.legal .scroll_table th {
	padding: 20px 20px 14px;
	border: 0;
	text-align: left;
	white-space: nowrap
}

#cookie-bar {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 450px;
	padding: 20px;
	background: var(--crema);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
	border-radius: 20px;
	z-index: 50
}
html.loaded #cookie-bar {
	display: block;
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both
}

#cookie-bar p {
	margin: 0
}

#cookie-bar p span {
	display: block;
	margin-bottom: 15px;
	font-size: 1.4em;
	font-weight: normal;
	line-height: 20px;
	color: var(--marron);
}

#cookie-bar a {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-top: 10px;
	padding: 0 20px;
	font-size: 1.667em;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-weight: 500;
	color: var(--crema);
	width: calc(50% - 10px);
	margin-right: 20px;
	text-decoration: none;
	background: var(--marron);
	border: 1px solid var(--marron);
	border-radius: 45px
}

html.loaded #cookie-bar a {
	transition: all 200ms linear
}

#cookie-bar a:last-child {
	margin-right: 0;
	background: var(--naranja);
	border: 1px solid var(--naranja);
	color: var(--crema)
}

@-webkit-keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}

}

@keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}

}