
:root {
	--color-primary: #E06288;
	--color-primary-opacity: #E0628899;
	--color-secondary: #EBE1D8;
	--color-tertiary: #EEDECE;
	--color-quaternary: #C68590;
	--color-border-input: #000000;
	--color-error: #E80000;
	--color-success: #00C47A;
	--bkg: #FEF2F3;
	--bkg-section: #EEDECE;
	--bkg-section-2: #EBE1D8;
	--font-text-primary: 'HelveticaNeue', Arial, sans-serif;
	--font-text-secondary: 'Supera Gothic', Arial, sans-serif;
	--font-color-primary: #090108;
	--font-color-secondary: #595959;
	--font-color-tertiary: #FEF2F3;
	--font-color-quaternary: #FFFFFF;
	--max-width: calc(1140 / 16 * 1rem);
	--max-width-header: calc(1440 / 16 * 1rem);
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 1. Base */

html, body {
	font-size: 100%;
	min-height: 100vh;
}

body {
	background: transparent none no-repeat scroll 0 0;
	color: var(--font-color-primary);
	font-family: var(--font-text-primary);
	font-size: calc(15 / 16 * 1rem);
	font-weight: 300;
	line-height: 1.25;
	margin: 0;
	padding: 0;
	position: relative;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*::-moz-selection {
	background-color: var(--font-color-primary);
	color: var(--color-secondary);
}

*::selection {
	background-color: var(--font-color-primary);
	color: var(--color-secondary);
}

a {
	color: var(--color-primary);
	font-weight: 500;
	-webkit-transition: all 0.1s ease 0s;
	-ms-transition: all 0.1s ease 0s;
	-moz-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}
a:hover, a:focus {color: var(--color-secondary);}

b, strong {font-weight: 500;}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	color: var(--font-color-primary);
	font-family: var(--font-text-secondary);
	font-weight: 300;
  margin: 0 0 calc(10 / 16 * 1rem);
}

h4 {
	font-size: calc(20 / 16 * 1rem);
}

ul, li {
	font-size: calc(15 / 16 * 1rem);
	padding: 0;
	list-style: outside none none;
}

li:last-child {
	margin-bottom: 0;
}

.clear {
    clear: both;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}

.hide-text {
	display: block;
	overflow: hidden;
	text-indent: 101%;
	white-space: nowrap;
}

.d-none {
	display: none;
}

input {font-size: calc(15 / 16 * 1rem); font-weight: normal;}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
	background-color: #FFFFFF;
	border: 1px solid #FFF;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	color: var(--font-color-primary);
	font-size: calc(15 / 16 * 1rem);
	padding: calc(10 / 16 * 1rem);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
	border: 0;
	border-bottom: 1px solid var(--color-primary);
	outline: 0;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder,
select::placeholder {
	color: var(--color-quaternary);
}

input[type="file"] {
    border: 1px solid var(--color-primary);
    display: block;
    padding: 0;
    width: auto;
}

img {
	font-style: italic;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: calc(14 / 16 * 1rem);
}

p {
	color: var(--font-color-primary);
	font-size: calc(15 / 16 * 1rem);
}

[id="bit-notification-bar"] {
	display: none;
}

input[type="text"]:focus-visible,
input[type="password"]:focus-visible,
input[type="email"]:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.visually-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.visually-hidden--focusable:focus {
    clip: auto;
    height: auto;
    left: 0;
    overflow: visible;
    position: static;
    white-space: normal;
    width: auto;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

::-webkit-scrollbar {
  background-color: #efefef;
  width: calc(14 / 16 * 1rem);
  height: calc(5 / 16 * 1rem);
}

::-webkit-scrollbar-thumb {
  height: calc(5 / 16 * 1rem);
  border: 0;
  background-clip: padding-box;
  -webkit-border-radius: calc(7 / 16 * 1rem);
  border-radius: calc(7 / 16 * 1rem);
  background-color: var(--color-secondary);
  -webkit-box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.05), inset 1px 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.05), inset 1px 1px 0 rgba(0, 0, 0, 0.05);
}

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

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

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 2. Layout */

/* 2.1. General */

.l-container {
	display: flex;
  flex-flow: column;
	min-height: 100vh;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

/* --------------- */

/* 2.2. Header */

.l-header {
	width: 100%;
}

.l-header__top {
	background-color: var(--color-primary);
	padding: calc(8 / 16 * 1rem) 0;
}

.l-header__content {
	background-color: transparent;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
}

.l-header__container {
	margin: auto;
	max-width: var(--max-width-header);
	width: 94%;
}

.l-header__top .l-header__container {
	align-items: center;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
}

.l-header__general {
	position: relative;
}

.l-header__general .l-header__container {
	display: flex;
	flex-flow: row wrap;
	gap: calc(20 / 16 * 1rem);
	justify-content: space-between;
	padding: calc(10 / 16 * 1rem) 0;
}

.l-header__logo img {
	display: block;
	max-width: calc(140 / 16 * 1rem);
	width: 100%;
}

.l-header__user {
	margin: 0;
	margin-left: auto;
	padding: 0;
	text-align: right;
}

.l-header__user ul {
	margin: 0;
}

.l-header__user li {
	color: var(--font-color-tertiary);
	display: inline-block;
	font-size: calc(12 / 16 * 1rem);
	padding: 0 calc(10 / 16 * 1rem);
	position: relative;
}

.l-header__user li::before {
	background-color: var(--font-color-tertiary);
	content: '';
	height: calc(12 / 16 * 1rem);
	left: 0;
	margin-top: calc(-6 / 16 * 1rem);
	position: absolute;
	top: 50%;
	width: 1px;
}

.l-header__user li:first-child::before {
	display: none;
}

.l-header__user li a {
	color: var(--font-color-tertiary);
	font-size: calc(12 / 16 * 1rem);
	font-weight: 300;
	text-decoration: underline;
}

.l-header__user li a.l-header__link {
	padding-bottom: 2px;
	text-decoration: none;
}

.l-header__user li a.l-header__link:hover {
	text-decoration: underline;
}

.l-header__logout {
	font-size: calc(11 / 16 * 1rem);
	font-weight: 300;
}

.l-header__logout svg {
	height: calc(18 / 16 * 1rem);
	width: calc(18 / 16 * 1rem);
}

.l-header__info {
	background-color: var(--color-secondary);
	border-radius: calc(50 / 16 * 1rem) 0 0 calc(50 / 16 * 1rem);
	color: var(--color-primary);
	padding: calc(15 / 16 * 1rem) calc(20 / 16 * 1rem) calc(15 / 16 * 1rem) calc(70 / 16 * 1rem);
	position: relative;
	text-align: left;
}

.l-header__info svg {
	height: calc(30 / 16 * 1rem);
	left: calc(20 / 16 * 1rem);
	margin-top: calc(-15 / 16 * 1rem);
	position: absolute;
	top: 50%;
	width: calc(30 / 16 * 1rem);
}

.l-header__info p {
	color: var(--color-primary);
	font-size: calc(15 / 16 * 1rem);
	margin: 0 0 2px;
}

.l-header__info p:last-child {
	font-size: calc(14 / 16 * 1rem);
	margin-bottom: 0;
}

@media (min-width: 991px) {

	.l-header__user {
		display: block;
		padding: 0;
	}

	.l-header__general .l-header__container {
		padding: calc(15 / 16 * 1rem) 0;
	}

	.l-header__logo img {
		max-width: calc(200 / 16 * 1rem);
	}

	.l-header__content {
		min-height: calc(375 / 16 * 1rem);
	}

	.l-header__content--small {
		min-height: 0;
	}

}

.l-header__headline {
	display: flex;
	flex-flow: column;
	flex: 1;
	justify-content: stretch;
	padding: 2vh 0;
}

@media (min-width: 991px) {

	.l-header__headline {
		padding: 1vh 0;
	}

}

/* --------------- */

/* 2.3. Menu */

.l-menu {
	display: none;	
	padding: calc(7 / 16 * 1rem) 0;
}

.l-menu__nav {
	display: flex;
	flex-flow: row;
	gap: calc(20 / 16 * 1rem);
	justify-content: flex-end;
	margin: 0;
	width: 100%;
}

.l-menu__item {
	padding: 0;
}

.l-menu__item a {
	color: var(--font-color-primary);
	display: block;
	font-size: calc(15 / 16 * 1rem);
	font-weight: 300;
	padding: calc(10 / 16 * 1rem) 0;
	text-transform: none;
}

.l-menu a.active {
	font-weight: bold;
}

.l-menu a:hover, .l-menu a.active {
	color: var(--color-primary);
	text-decoration: underline;
}

@media (min-width: 991px) {
	.l-menu {
		display: flex;
		flex-grow: 1;
	}
}

@media (min-width: 1281px) {
	.l-menu {
		padding-right: calc(150 / 16 * 1rem);
	}
}



/* 2.3.1. Dropdown */

.dropdown-menu {
	background-color: transparent;
	border: 0;
	margin: 0;
	padding: 0;
}

.dropdown-menu.show {
	width: 100%;
}

.dropdown-menu__content {
	background-color: var(--color-secondary);
	padding: calc(5 / 16 * 1rem);
}

.l-menu .dropdown-menu__content a {
	color: var(--color-primary);
}

.l-menu .dropdown-menu__content a.active,
.l-menu .dropdown-menu__content a:hover {
	color: var(--color-primary);
	text-decoration: underline;
}

@media (min-width: 991px) {

	.dropdown-menu.show {
		min-width: calc(150 / 16 * 1rem);
		width: auto;
	}

	.dropdown-menu::before {
		border: calc(7 / 16 * 1rem) solid var(--color-secondary);
		border-top-color:transparent;
		border-right-color:transparent;
		content: '';
		display: block;
		position: relative;
		width: max-content;
	}

	.dropdown-menu__content {
		border-radius: 0 calc(5 / 16 * 1rem) calc(5 / 16 * 1rem) calc(5 / 16 * 1rem);
	}

}

/* --------------- */

/* 2.4. Page */

.p-user .l-page {
	padding: 0 0 calc(20 / 16 * 1rem);
}

.l-page {
	flex: 1;
	position: relative;
	width: 100%;
}

.l-page__headline {
	background-color: #fff;
	min-height: calc(60 / 16 * 1rem);
	padding: calc(30 / 16 * 1rem) 0;
	position: relative;
}

.l-page__headline h1 {
	font-size: calc(28 / 16 * 1rem);
	margin: 0;
}

.l-page__headline h2 {
	font-size: calc(24 / 16 * 1rem);
	font-weight: 400;
	margin: 0;
}

.l-page__content {
	position: relative;
	width: 100%;
}

.l-page__content--white {
	background-color: #fff;
}

.l-page__content--pink {
	background-color: var(--bkg);
}

.l-page__container {
	margin: 0 auto;
	max-width: var(--max-width);
	width: 92%;
}

.l-page__general {
	padding: calc(12 / 16 * 1rem) 0;
}

.l-page__box {
	background-color: transparent;
	margin-bottom: calc(15 / 16 * 1rem);
	overflow: hidden;
	padding: calc(20 / 16 * 1rem);
	width: 100%;
}

.l-page__box:last-child {margin-bottom: 0;}

.l-page__box h3 {
	color: var(--color-primary);
	margin-bottom: calc(30 / 16 * 1rem);
	text-align: center;
}

.l-page__button {
	overflow: hidden;
	text-align: center;
	width: 100%;
}
.l-page__button .c-btn {
	width: max-content;
}

.l-page__button--left {
	text-align: left;
}

.l-page__button--right {
	text-align: right;
}

.l-page__button--center .c-btn {
	margin: auto;
}

.l-page__button--left .c-btn {
	margin: 0;
}

.l-page__button--right .c-btn {
	margin-left: auto;
}

.l-image {
	height: calc(370 / 16 * 1rem);
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.l-image::before {
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.55) 65%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.l-image > .l-image__background {
	height: 100%;
	object-fit: cover;
	object-position: top;
	width: 100%;
}

.l-image > .l-image__watermark {
	max-height: 100%;
	right: 0;
	position: absolute;
	top: 0;
}

@media (min-width: 768px) {
	
	.l-page__general {
		padding: calc(20 / 16 * 1rem) 0;
	}
	.l-page__data {
		align-items: center;
		flex-flow: row wrap;
		justify-content: space-between;
	}
	.l-page__data p {font-size: calc(20 / 16 * 1rem); margin: 0;}
	.l-page__data > strong {font-size: calc(20 / 16 * 1rem);}
	.l-page__box {padding: calc(25 / 16 * 1rem);}
}

.l-page__information {
	text-align: center;
}

.l-page__information .l-page__button {
	display: flex;
	flex-flow: row;
	gap: calc(15 / 16 * 1rem);
	justify-content: center;
	margin-top: calc(25 / 16 * 1rem);
}

.l-page__information .l-page__button a {
	margin: 0;
}

/* --------------- */

/* 2.5. Footer */

.l-footer {
	background-color: var(--font-color-secondary);
	display: flex;
	flex-flow: column;
	padding: calc(22 / 16 * 1rem) 0;
	position: relative;
	width: 100%;
}

.l-footer .l-page__container {
	align-items: center;
	display: flex;
	flex-flow: column;
	gap: calc(14 / 16 * 1rem);
	justify-content: space-between;
  max-width: var(--max-width);
	width: 94%;
}

.l-footer__logo {
	margin-right: auto;
	width: calc(145 / 16 * 1rem);
}

.l-footer__list {
	align-items: center;
	display: flex;
	flex-flow: row wrap;
	gap: calc(15 / 16 * 1rem);
	justify-content: flex-start;
	margin: 0;
	overflow: hidden;
	padding: 0;
	text-align: center;
	width: auto;
}

.l-footer__list--media {
	gap: calc(17 / 16 * 1rem);
	margin-left: auto;
}

.l-footer__list li {
	margin: 0;
	text-align: center;
	width: max-content;
}

.l-footer__list a, .l-footer__list span {
	color: var(--font-color-tertiary);
	display: inline-block;
	font-size: calc(12 / 16 * 1rem);
	font-weight: 400;
	padding: calc(6 / 16 * 1rem) 0;
	text-decoration: none;
}
.l-footer__list a:hover {text-decoration: underline;}

.l-footer__media {
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	gap: calc(5 / 16 * 1rem);
	margin-left: auto;
}

.l-footer__media p {
	color: var(--font-color-quaternary);
	font-size: calc(12 / 16 * 1rem);
	font-weight: 500;
	margin: 0;
	text-align: right;
}

@media (min-width: 768px) {

	.l-footer .l-page__container {
		flex-flow: row wrap;
		justify-content: space-between;
	}

	.l-footer__list {
		flex-flow: row wrap;
		gap: calc(40 / 16 * 1rem);
	}

	.l-footer__list--media {
		gap: calc(17 / 16 * 1rem);
		margin-left: 0;
	}

}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 3. Componentes */

/* 3.1 Botones */

.c-btn {
	align-items: flex-start;
	background-color: var(--color-primary);
	border-radius: calc(100 / 16 * 1rem);
	border: 1px solid var(--color-primary);
	color: var(--font-color-quaternary);
	cursor: pointer;
	display: flex;
	flex-flow: row;
	font-size: calc(15 / 16 * 1rem);
	font-weight: normal;
	gap: calc(10 / 16 * 1rem);
	justify-content: center;
	max-width: max-content;
	min-width: calc(140 / 16 * 1rem);
	padding: calc(9 / 16 * 1rem) calc(24 / 16 * 1rem) calc(6 / 16 * 1rem);
	text-align: center;
	text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out 0s;
}

.c-btn strong {
	font-weight: 500;
}

.c-btn:hover,
.c-btn:focus {
	background-color: transparent;
  border-color: var(--color-primary);
	color: var(--color-primary);
	text-decoration: none;
}

.c-btn:hover svg {
  color: var(--font-color-quaternarycolor-secondary);
}

.c-btn--underline {
	background-color: transparent;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid var(--color-primary);
	color: var(--color-primary);
	justify-content: flex-start;
	min-width: auto;
	padding: calc(14 / 16 * 1rem) 0 calc(4 / 16 * 1rem);
	text-decoration: none;
	transition: none;
	width: max-content;
}

.c-btn--underline:hover,
.c-btn--underline:focus {
	background-color: transparent;
	border-bottom-color: rgba(0,0,0,0.5);
	color: rgba(0,0,0,0.5);
}

.c-btn--underline svg {
  color: var(--color-primary);
	width: calc(14 / 16 * 1rem);
	height: calc(18 / 16 * 1rem);
}

.c-btn--underline:hover svg,
.c-btn--underline:focus svg {
	color: rgba(0,0,0,0.5);
}

.c-btn--border {
	background-color: transparent;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
}

.c-btn--border:hover,
.c-btn--border:focus {
	background-color: var(--color-primary);
	border: 2px solid var(--color-primary);
	color: var(--color-tertiary);
}

.c-btn--back {
	background-color: transparent;
	color: var(--color-primary);
	font-size: calc(14 / 16 * 1rem);
	gap: calc(10 / 16 * 1rem);
	justify-content: flex-start;
	min-width: auto;
	width: max-content;
}

.c-btn--back:hover,
.c-btn--back:focus {
	background-color: transparent;
	border-color: var(--font-color-primary);
	color: var(--font-color-primary);
	text-decoration: none;
}

.c-btn--back:hover svg {
	color: var(--font-color-primary);
}

.c-button__mobile {
	display: inline-block;
	min-height: calc(48 / 16 * 1rem);
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.c-button__mobile button {
	border: 0;
	height: auto;
	margin: 0 calc(4 / 16 * 1rem);
	padding: calc(11 / 16 * 1rem) 0 calc(7 / 16 * 1rem);
	width: calc(50 / 16 * 1rem);
}

.c-button__mobile button:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.c-button__mobile span {
	background-color: var(--color-primary);
	display: block;
	height: 2px;
	margin: 0 0 calc(8 / 16 * 1rem);
	width: calc(40 / 16 * 1rem);
}

.c-button__mobile span:nth-child(2) {
	width: calc(35 / 16 * 1rem);
}

.c-button__mobile span:nth-child(3) {
	width: calc(30 / 16 * 1rem);
}

@media (min-width: 991px) {
	.c-button__mobile {
		display: none;
	}
}

/* --------------- */

/* 3.2 Listas */

.c-list {
	overflow: hidden;
	width: 100%;
}

.c-list li {
	font-size: calc(15 / 16 * 1rem);
	margin: 0 0 calc(10 / 16 * 1rem);
	position: relative;
}

.c-list li:last-child {
	margin-bottom: 0;
}

/* 3.2.1. Puntos */

.c-list--points li {
	padding: 0 0 0 calc(26 / 16 * 1rem);
}

.c-list--points li::before {
	background-color: var(--color-primary);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	content: '';
	display: block;
	height: calc(6 / 16 * 1rem);
	left: 0;
	position: absolute;
	top: calc(6 / 16 * 1rem);
	width: calc(6 / 16 * 1rem);
}

.c-list--points ul, .c-list--letters ul {margin-top: calc(12 / 16 * 1rem);}
.c-list--points ul li::before {
	background-color: #FFF;
	border: 1px solid var(--color-primary);
}

/* 3.2.2. Letras */

.c-list--letters li {
	padding: 0 0 0 calc(15 / 16 * 1rem);
}

.c-list--letters li span {
	color: var(--color-secondary);
    font-weight: bold;
    left: 0;
    line-height: 1.2;
    position: absolute;
    top: 0;
}

/* 3.2.3. Categorias */

.c-list--categories {
	cursor: grab;
	margin: 0 0 calc(30 / 16 * 1rem);
	overflow-x: auto;
	padding: 0 0 calc(40 / 16 * 1rem);
	scroll-snap-type: x mandatory;
	text-align: left;
	white-space: nowrap;
	width: 100%;
}

.c-list--categories:active {
  cursor: grabbing; /* Añadir cursor de agarre activo */
}

.c-list--categories li {
	display: inline-block;
	margin-right: calc(20 / 16 * 1rem);
	max-width: calc(28 / 16 * 1rem);
	position: relative;
	scroll-snap-align: center;
	vertical-align: top;
	width: 100%;
}

.c-list--categories li > a {
	border-radius: calc(10 / 16 * 1rem);
	display: block;
	height: calc(240 / 16 * 1rem);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.c-list--categories li > a::before {
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
	filter: progid:dximagetransform.microsoft.gradient(startColorstr="#00000000", endColorstr="#a6000000", GradientType=0);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.c-list--categories li > a:hover::before {
	background: rgba(0, 0, 0, 0.6);
}

.c-list--categories li img {
	display: block;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	width: 100%;
}

.c-list--categories li h3 {
	bottom: 0;
	color: #fff;
	font-size: calc(14 / 16 * 1rem);
	font-weight: 500;
	left: 0;
	padding: calc(15 / 16 * 1rem) calc(25 / 16 * 1rem);
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	white-space: normal;
	z-index: 2;
}

@media (min-width: 991px) {
	.c-carousel--categories li {
		max-width: calc(334 / 16 * 1rem);
	}
	.c-list--categories li > a {
		height: (320 / 16 * 1rem);
	}
}

/* --------------- */

/* 3.3 Colores */

.c-color--red {color: #d52b1e;}

/* --------------- */

/* 3.4 Enlaces */

.c-link--mailto {
	color: var(--color-primary);
	font-weight: bold;
}
.c-link--mailto:hover {
	color: var(--color-secondary);
}

.c-link--table {
	color: var(--color-primary);
	font-weight: 600;
}
.c-link--table:hover {
	color: var(--color-secondary);
}

/* --------------- */

/* 3.5. Headline */

.c-headline {
	display: flex;
	flex-flow: column;
	gap: calc(12 / 16 * 1rem);
	justify-content: flex-start;
	max-width: calc(420 / 16 * 1rem);
	padding: 0 0;
	text-align: left;
	width: 100%;
}

.c-headline h1, 
.c-headline h2,
.c-headline p {
	margin: 0;
}

.c-headline h1 {
	font-size: calc(42 / 16 * 1rem);
}

.c-headline p {
	color: var(--font-color-primary);
}

/* --------------- */

/* 3.6 Select */

.c-select {
	position: relative;
}

.c-select select {
	-webkit-appearance: none;
		-moz-appearance: none;
      appearance: none;
	padding-right: calc(30 / 16 * 1rem);
	width: 100%;
}

.c-select svg {
	color: var(--color-primary);
	position: absolute;
	right: calc(7 / 16 * 1rem);
	top: calc(17 / 16 * 1rem);
}

/* --------------- */

/* 3.7 Info */

.c-info {
	background-color: #fff;
	border-radius: calc(20 / 16 * 1rem);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	border: 0;
	padding: 5vw;
	margin: auto;
	max-width: calc(610 / 16 * 1rem);
	text-align: center;
	width: 92%;
}

.c-info--large {
	max-width: calc(920 / 16 * 1rem);
}

.c-info h2 {
	color: var(--color-primary);
	margin: 0 0 calc(20 / 16 * 1rem);
}

.c-info p {
	color: var(--font-color-primary);
}

.c-info__block {
	display: block;
	padding: calc(10 / 16 * 1rem) 0;
}

.c-info__buttons {
	overflow: hidden;
	padding: calc(35 / 16 * 1rem) 0 0;
	text-align: center;
	width: 100%;
}

.c-info__buttons .c-btn {
	justify-content: center;
	margin: auto;
}

/* 3.8 Modal */

.c-modal {
	background-color: rgba(0,0,0,0.5);
}

.c-modal__dialog {
	-webkit-border-radius: 0;
	border-radius: 0;
	border-top: 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	height: 100%;
	justify-content: center;
	margin: 0;
	max-width: none;
	padding: 2vh 0;
	width: 100%;
}

.c-modal--legal .c-modal__dialog {
	height: auto;
}

.c-modal__header {
	border-bottom: 0;
}

.c-modal__body {
	background-color: #fff;
	border-radius: calc(20 / 16 * 1rem);
	margin: 4% 0;
	padding: calc(30 / 16 * 1rem);
}

.c-modal__close {
	background: transparent none no-repeat scroll 0 0;
	border: 0;
	cursor: pointer;
	height: calc(35 / 16 * 1rem);
	outline: 0;
	position: relative;
	width: calc(35 / 16 * 1rem);
}

.c-modal__close::before,
.c-modal__close::after {
	background-color: var(--color-secondary);
	content: '';
	height: 2px;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
			transform-origin: center;
	width: 100%;
}

.c-modal__close::before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
			transform: rotate(45deg);
}

.c-modal__close::after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
			transform: rotate(-45deg);
}

.c-modal .c-modal__content {
	background-color: transparent;
	border: 0;
	width: 95%;
	max-width: 60rem;
}

.c-modal--legal .c-modal__content {
	max-width: 90rem;
}

.c-modal__description {
	padding-right: calc(30 / 16 * 1rem);
	position: relative;
}

.c-modal__description .c-modal__close {
	color: #fff;
	position: absolute;
	right: 0;
	top: calc(30 / 16 * 1rem);
}

.c-modal__body h2 {
	font-size: calc(24 / 16 * 1rem);
}

.c-modal__body h3 {
	color: var(--color-primary);
	font-size: calc(21 / 16 * 1rem);
}

.c-modal__title {
	margin: 0 0 calc(10 / 16 * 1rem);
	overflow: hidden;
	width: 100%;
}

.c-modal__title p {
	color: #7C878E;
	margin: 0;
	text-transform: uppercase;
}

.c-modal--detail .c-modal__body h2 {
	border-bottom: 1px solid var(--color-primary);
	color: var(--color-primary);
	font-size: calc(24 / 16 * 1rem);
	margin: 0 0 calc(15 / 16 * 1rem);
	padding: 0 0 calc(15 / 16 * 1rem);
}

.c-modal--detail .c-modal__body p {
	color: #7C878E;
}

.c-modal--detail .c-modal__dialog {
	max-width: 80rem;
}

.c-modal__text {
	overflow: hidden;
	width: 100%;
}

[id="modalForm"] .c-modal__body > h2 {
	margin: calc(10 / 16 * 1rem) 0 calc(20 / 16 * 1rem);
	text-align: center;
}

[id="modalForm"] .c-modal__body > p {
	text-align: center;
}

[id="modalForm"] [id="form_submit"] {
	-webkit-border-radius: calc(10 / 16 * 1rem);
	align-items: center;
	background-color: var(--color-secondary);
	border-radius: calc(10 / 16 * 1rem);
	border: 1px solid var(--color-secondary);
	color: var(--color-primary);
	cursor: pointer;
	display: flex;
	flex-flow: row;
	font-size: calc(15 / 16 * 1rem);
	font-weight: 600;
	justify-content: center;
	margin: auto;
	min-width: calc(140 / 16 * 1rem);
	padding: calc(14 / 16 * 1rem) calc(24 / 16 * 1rem);
	text-align: center;
  position: relative;
  transition: all 0.2s ease-in-out 0s;
}

[id="modalForm"] [id="form_submit"]:hover {
	background-color: var(--color-primary);
  border-color: var(--color-primary);
	color: var(--color-secondary);
	text-decoration: none;
}

.c-modal--success .c-modal__body {
	background-color: var(--color-primary);
	text-align: center;
}

.c-modal--success .c-modal__body > svg {
	color: #fff;
	display: block;
	margin: calc(20 / 16 * 1rem) auto;
}

.c-modal--success .c-modal__body h2 {
	color: #fff;
	margin-bottom: calc(30 / 16 * 1rem);
}

.c-modal--success .c-modal__body p {
	color: #fff;
	margin-bottom: calc(30 / 16 * 1rem);
}

.c-modal--success .c-modal__body .c-btn:hover {
	border-color: var(--color-secondary);
}

.c-modal--success .l-page__button {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	gap: calc(10 / 16 * 1rem);
}

.c-modal--success .c-btn--border {
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}

.c-modal--success .c-btn--border:hover,
.c-modal--success .c-btn--border:focus {
	background-color: var(--color-secondary);
	color: var(--color-primary);
}

.c-modal--video .c-modal__content {
	max-width: 70rem;
}

.c-modal--video .c-modal__content iframe {
	width: 100%;
}

[id="modalDirection"] .c-modal__buttons {
	margin-top: calc(20 / 16 * 1rem);
}

[id="modalDirection"] .c-modal__buttons a {
	margin: auto;
}

/* 3.9 Loading */

.c-loading {
	background-color: rgba(255,255,255,0.8);
	display: none;
	height: 100%;
	-webkit-box-pack: center;
			-ms-flex-pack: center;
					justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width:100%;
	z-index: 1100;
}

.c-loading > div {margin: auto;}

.lds-ellipsis {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-ellipsis div {
position: absolute;
top: 33px;
width: 13px;
height: 13px;
border-radius: 50%;
background: var(--color-primary);
-webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
				animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
left: 8px;
-webkit-animation: lds-ellipsis1 0.6s infinite;
				animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
left: 8px;
-webkit-animation: lds-ellipsis2 0.6s infinite;
				animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
left: 32px;
-webkit-animation: lds-ellipsis2 0.6s infinite;
				animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
left: 56px;
-webkit-animation: lds-ellipsis3 0.6s infinite;
				animation: lds-ellipsis3 0.6s infinite;
}
@-webkit-keyframes lds-ellipsis1 {
0% {
	-webkit-transform: scale(0);
					transform: scale(0);
}
100% {
	-webkit-transform: scale(1);
					transform: scale(1);
}
}
@keyframes lds-ellipsis1 {
0% {
	-webkit-transform: scale(0);
					transform: scale(0);
}
100% {
	-webkit-transform: scale(1);
					transform: scale(1);
}
}
@-webkit-keyframes lds-ellipsis3 {
0% {
	-webkit-transform: scale(1);
					transform: scale(1);
}
100% {
	-webkit-transform: scale(0);
					transform: scale(0);
}
}
@keyframes lds-ellipsis3 {
0% {
	-webkit-transform: scale(1);
					transform: scale(1);
}
100% {
	-webkit-transform: scale(0);
					transform: scale(0);
}
}
@-webkit-keyframes lds-ellipsis2 {
0% {
	-webkit-transform: translate(0, 0);
					transform: translate(0, 0);
}
100% {
	-webkit-transform: translate(24px, 0);
					transform: translate(24px, 0);
}
}
@keyframes lds-ellipsis2 {
0% {
	-webkit-transform: translate(0, 0);
					transform: translate(0, 0);
}
100% {
	-webkit-transform: translate(24px, 0);
					transform: translate(24px, 0);
}
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 4. Pages */

.p-bono__content {
	margin: 0 auto;
	max-width: 800px;
	overflow: hidden;
	width: 100%;
}

.p-bono__content h2 {
	color: var(--font-color-secondary);
	margin: 0 0 calc(30 / 16 * 1rem);
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/** 5. Base */

/* 5.1 Body fixed */

.body--fixed {
	overflow: hidden;
}

.body--fixed .l-header__content {
	background: var(--bkg) none no-repeat scroll 0 0;
}

.body--fixed .c-button__mobile button span.bar1 {
	-webkit-transform: rotate(-45deg) translate(1px, 15px);
	transform: rotate(-45deg) translate(1px, 15px);
	background-color: var(--color-primary);
	width: calc(32 / 16 * 1rem);
}

.body--fixed .c-button__mobile button {
	padding-bottom: 0;
}

.body--fixed .c-button__mobile button span.bar2 {
	opacity: 0;
}

.body--fixed .c-button__mobile button span.bar3 {
	-webkit-transform: rotate(45deg) translate(1px, -16px);
	transform: rotate(45deg) translate(1px, -16px);
	background-color: var(--color-primary);
	width: calc(32 / 16 * 1rem);
}

.body--fixed .l-menu {
	align-items: self-start;
	background-color: var(--bkg);
	display: flex;
	flex-flow: column;
	height: calc(100% - calc(48 / 16 * 1rem));
	left: 0;
	margin: 0;
	overflow-y: auto;
	padding: 0;
	position: fixed;
	top: calc(100 / 16 * 1rem);
	width: 100%;
	z-index: 1000;
}

.body--fixed .l-menu__nav {
	gap: 0;
	flex-flow: column;
}

.body--fixed .l-menu__nav li a {
	padding: calc(20 / 16 * 1rem);
}

.body--fixed .l-menu li {
	border-bottom: 1px solid #fff;
	width: 100%;
}

.body--fixed .l-header__user li a {
	font-size: calc(12 / 16 * 1rem);
}

.body--fixed .navbar-collapse {width: 100%;}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Cookies */

[id="cookie-law"] {
	background-color: rgba(0, 0, 0, 0.95);
	bottom: 0;
	color: #fff;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: calc(20 / 16 * 1rem);
	padding: calc(20 / 16 * 1rem);
	position: fixed;
	width: 100%;
	z-index: 999;
}

.text-cookie-banner {
	flex-grow: 1;
}
.text-cookie-banner h2 {color: #fff;}
.text-cookie-banner p {color: #FFF;line-height: 1.4;}
.text-cookie-banner p a {
  color: #FFF;
  font-weight: bold;
  text-decoration: underline;
}

.text-cookie-banner p a:hover,
.text-cookie-banner p a:focus {
  color: #ffffff;
}

.text-cookie-banner p a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

[id="cookie-law"] .c-btn {
  justify-content: center;
}

[id="cookie-law"] .c-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@media (min-width: 991px) {
	[id="cookie-law"] {
		flex-flow: row;
	}
}
