
/*** Estilos DKP - Estructura **/

/** 1. Base */
/** 2. Layout: l-; 2.1. General; 2.2. Header; 2.3. Menu; 2.4. Page; 2.5. Menu */
/** 3. Componentes: c- */
/** 4. Paginas: p- */
/** 5. Otros: body-fixed */

:root {
	--color-primary: #090108;
	--color-primary-opacity: #09010899;
	--color-secondary: #EBE1D8;
	--color-tertiary: #EEDECE;
	--color-quaternary: #B9B1A9;
	--color-border-input: #000000;
	--color-error: #E80000;
	--color-success: #00C47A;
	--bkg-section: #EEDECE;
	--bkg-section-2: #EBE1D8;
	--font-text-primary: 'Beatrice', Arial, sans-serif;
	--font-text-secondary: 'GT Super Display', Arial, sans-serif;
	--font-color-primary: #090108;
	--font-color-secondary: #000000;
	--font-color-tertiary: #EBE1D8;
	--max-width: 114rem;
}

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

/** 1. Base */

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

body {
	background: transparent none no-repeat scroll 0 0;
	color: var(--font-color-primary);
	font-family: var(--font-text-primary);
	font-size: 1.5rem;
	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: 600;
	-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-weight: 500;
  margin: 0 0 1rem;
}

h4 {
	font-size: 2rem;
}

ul, li {
	font-size: 1.6rem;
	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: 1.5rem; font-weight: normal;}

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

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
	border: 0 none;
	border-bottom: 0.1rem solid var(--color-secondary);
	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: 0.1rem 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: 1.4rem;
}

p {
	color: var(--font-color-primary);
	font-size: 1.5rem;
}

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

::-webkit-scrollbar {
  background-color: #efefef;
  width: 1.4rem;
  height: 0.5rem;
}

::-webkit-scrollbar-thumb {
  height: 0.5rem;
  border: 0 none;
  background-clip: padding-box;
  -webkit-border-radius: 0.7rem;
  border-radius: 0.7rem;
  background-color: var(--color-secondary);
  -webkit-box-shadow: inset -0.1rem -0.1rem 0 rgba(0, 0, 0, 0.05), inset 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset -0.1rem -0.1rem 0 rgba(0, 0, 0, 0.05), inset 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.05);
}

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

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

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

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

/** 2. Layout */

/* 2.1. General */

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

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

/* 2.2. Header */

.l-header {
	background-color: var(--color-primary);
	width: 100%;
}

.l-header__top {
	padding: 1.4rem 0;
}

.l-header__content {
	background-color: var(--color-primary);
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	padding: 2vh 0;
}

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

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

.l-header__content .l-header__container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.l-header__top select {
  border: 0.1rem solid var(--color-primary);
  font-size: 1.3rem;
  padding: 0.2rem;
}

.l-header__language {
  align-items: center;
  display: flex;
  flex-flow: row;
  gap: 1rem;
	margin-left: auto;
	margin-right: 1rem;
}

.l-header__logo {
	display: flex;
	margin-right: 1rem;
}

.l-header__logo img {
	display: block;
	height: 2rem;
	max-width: 100%;
}

.l-header__user {
	display: none;
	overflow: hidden;
	padding: 1rem 0;
	text-align: right;
}

.l-header__user ul {
	margin: 0;
}

.l-header__user li {
	color: var(--font-color-tertiary);
	display: inline-block;
	font-size: 1.2rem;
	padding: 0 1rem;
	position: relative;
}

.l-header__user li::before {
	background-color: var(--font-color-tertiary);
	content: '';
	height: 2rem;
	left: 0;
	margin-top: -1rem;
	position: absolute;
	top: 50%;
	width: 0.1rem;
}

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

.l-header__user li a {
	color: var(--font-color-tertiary);
	font-size: 1.2rem;
	font-weight: 300;
	text-decoration: underline;
}

.l-header__user li a.l-header__link {
	border-bottom: 0.1rem solid;
	padding-bottom: 0.2rem;
	text-decoration: none;
}

.l-header__logout {
	display: block;
	font-size: 1.1rem;
	font-weight: 300;
	padding: 1.5rem 2rem;
	text-transform: uppercase;
}

.l-header__logout svg {
	fill: var(--font-color-tertiary);
	margin-right: 0;
	vertical-align: text-top;
}

.l-header__info {
	background-color: var(--color-secondary);
	border-radius: 5rem 0 0 5rem;
	color: var(--color-primary);
	padding: 1.5rem 2rem 1.5rem 7rem;
	position: relative;
	text-align: left;
}

.l-header__info svg {
	height: 3rem;
	left: 2rem;
	margin-top: -1.5rem;
	position: absolute;
	top: 50%;
	width: 3rem;
}

.l-header__info p {
	color: var(--color-primary);
	font-size: 1.6rem;
	margin: 0 0 0.2rem;
}

.l-header__info p:last-child {
	font-size: 1.4rem;
	margin-bottom: 0;
}

.l-header__nav {
	background-color: #fff;
}

@media (min-width: 991px) {
	.l-menu .l-header__user {
		display: none;
	}

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

	.l-header__logo img {
		height: 3.2rem;
	}

	.l-header__nav {
		border-bottom: 0.1rem solid var(--color-primary);
	}

}

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

/* 2.3. Menu */

.l-menu {
	display: none;	
	padding: 0.7rem 0;
}

.l-menu__nav {
	display: flex;
	flex-flow: row;
	gap: 2rem;
	justify-content: center;
	margin: 0;
	width: 100%;
}

.l-menu__item {
	padding: 0;
}

.l-menu__item a {
	color: var(--color-primary);
	display: block;
	font-size: 1.3rem;
	font-weight: 300;
	padding: 1rem 0;
	text-transform: none;
}

.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;
	}
	.l-menu > .l-header__user {
		display: none;
	}
}

/* 2.3.1. Dropdown */

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

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

.dropdown-menu__content {
	background-color: var(--color-secondary);
	padding: 0.5rem;
}

.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: 15rem;
		width: auto;
	}

	.dropdown-menu::before {
		border: 0.7rem 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 0.5rem 0.5rem 0.5rem;
	}

}

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

/* 2.4. Page */

.p-user .l-page {
	padding: 0 0 2rem;
}

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

.l-page__headline {
	background-color: #fff;
	min-height: 6rem;
	padding: 3rem 0;
	position: relative;
}

.l-page__headline h1 {
	font-size: 2.8rem;
	margin: 0;
}

.l-page__headline h2 {
	font-size: 2.4rem;
	font-weight: 400;
	margin: 0;
}

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

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

.l-page__general {
	padding: 1.2rem 0;
}

.l-page__box {
	background-color: transparent;
	margin-bottom: 1.5rem;
	overflow: hidden;
	padding: 2rem;
	width: 100%;
}

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

.l-page__box h3 {
	color: var(--color-primary);
	margin-bottom: 3rem;
	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: 37rem;
	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: 2rem 0;
	}
	.l-page__data {
		align-items: center;
		flex-flow: row wrap;
		justify-content: space-between;
	}
	.l-page__data p {font-size: 2rem; margin: 0;}
	.l-page__data > strong {font-size: 2rem;}
	.l-page__box {padding: 2.5rem;}
}

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

.l-page__information .l-page__button {
	display: flex;
	flex-flow: row;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 2.5rem;
}

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

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

/* 2.5. Footer */

.l-footer {
	background-color: var(--color-primary);
	overflow: hidden;
	padding: 1.4rem 0;
	position: relative;
	width: 100%;
	z-index: 10;
}

.l-footer .l-page__container {
	display: flex;
	flex-flow: column;
	gap: 1.4rem;
  max-width: var(--max-width);
	width: 94%;
}

.l-footer__logo {
	height: 2rem;
	margin-right: auto;
}

.l-footer__list {
	align-items: flex-end;
	border-top: 0.1rem solid var(--color-tertiary);
	display: flex;
	flex-flow: column;
	gap: 1.5rem;
	justify-content: flex-end;
	margin: 0;
	overflow: hidden;
	padding: 1.5rem 0;
	text-align: right;
	width: 100%;
}

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

.l-footer__list a, .l-footer__list span {
	color: var(--color-tertiary);
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 400;
	padding: 0.6rem 0;
	text-decoration: none;
}
.l-footer__list a:hover {text-decoration: underline;}

@media (min-width: 768px) {

	.l-footer__logo {
		height: 3rem;
	}

	.l-footer__list {
		flex-flow: row wrap;
		gap: 4rem;
	}

}

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

/** 3. Componentes */

/* 3.1 Botones */

.c-btn {
	background-color: var(--color-secondary);
	border: 0.1rem solid var(--color-secondary);
	-webkit-border-radius: 0;
	border-radius: 0;
	color: var(--color-primary);
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: 400;
	max-width: max-content;
	min-width: 14rem;
	padding: 1.4rem 2.4rem;
  position: relative;
	text-align: center;
	text-decoration: none;
  transition: all 0.2s ease-in-out 0s;
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.c-btn b {
	font-weight: 600;
}

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

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

.c-btn--underline {
	background-color: transparent;
	border: 0 none;
	border-bottom: 0.1rem solid var(--color-primary);
	color: var(--color-primary);
	justify-content: flex-start;
	min-width: auto;
	padding: 1.4rem 0 0.4rem;
	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: 1.4rem;
	height: 1.8rem;
}

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

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

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

.c-btn--back {
	background-color: transparent;
	border: 0 none;
	color: var(--color-primary);
	font-size: 1.4rem;
	gap: 1rem;
	justify-content: flex-start;
	min-width: auto;
	padding: 1rem 0;
	width: max-content;
}

.c-btn--back:hover,
.c-btn--back:focus {
	background-color: transparent;
	border: 0 none;
	color: rgba(0,0,0,0.4);
	text-decoration: none;
}

.c-btn--back:hover svg {
	color: rgba(0,0,0,0.4);
}

.c-button__mobile {
	display: inline-block;
	min-height: 4.8rem;
	overflow: hidden;
	position: relative;
}

.c-button__mobile button {
	border: 0 none;
	height: auto;
	margin: 0 0.4rem;
	outline: 0 none;
	padding: 1.1rem 0 0.7rem;
	width: 5rem;
}

.c-button__mobile span {
	background-color: #fff;
	display: block;
	height: 0.2rem;
	margin: 0 0 0.8rem;
	width: 4rem;
}

.c-button__mobile span:nth-child(2) {
	width: 3.5rem;
}

.c-button__mobile span:nth-child(3) {
	width: 3rem;
}

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

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

/* 3.2 Listas */

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

.c-list li {
	font-size: 1.5rem;
	margin: 0 0 1rem;
	position: relative;
}

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

/* 3.2.1. Puntos */

.c-list--points li {
	padding: 0 0 0 2.6rem;
}

.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: 0.6rem;
	left: 0;
	position: absolute;
	top: 0.6rem;
	width: 0.6rem;
}

.c-list--points ul, .c-list--letters ul {margin-top: 1.2rem;}
.c-list--points ul li::before {
	background-color: #FFF;
	border: 0.1rem solid var(--color-primary);
}

/* 3.2.2. Letras */

.c-list--letters li {
	padding: 0 0 0 1.5rem;
}

.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 3rem;
	overflow-x: auto;
	padding: 0 0 4rem;
	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: 2rem;
	max-width: 28rem;
	position: relative;
	scroll-snap-align: center;
	vertical-align: top;
	width: 100%;
}

.c-list--categories li > a {
	border-radius: 1rem;
	display: block;
	height: 24rem;
	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: 1.4rem;
	font-weight: 500;
	left: 0;
	padding: 1.5rem 2.5rem;
	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: 33.4rem;
	}
	.c-list--categories li > a {
		height: 32rem;
	}
}

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

/* 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 {
	overflow: hidden;
	padding: 0 0;
	text-align: center;
	width: 100%;
}

.c-headline h2 {
	font-weight: 300;
	font-size: 1.4rem;
	margin-top: 1rem;
}

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

/* 3.6 Select */

.c-select {
	position: relative;
}

.c-select select {
	-webkit-appearance: none;
		-moz-appearance: none;
      appearance: none;
	padding-right: 3rem;
	width: 100%;
}

.c-select svg {
	color: var(--color-primary);
	position: absolute;
	right: 0.7rem;
	top: 1.7rem;
}

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

/* 3.7 Info */

.c-info {
	background-color: #fff;
	border-radius: 0;
	border: 0.1rem solid var(--color-primary);
	padding: 5vw;
	margin: auto;
	max-width: 61rem;
	text-align: center;
	width: 92%;
}

.c-info--large {
	max-width: 92rem;
}

.c-info h2 {
	color: var(--color-primary);
	margin: 0 0 2rem;
}

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

.c-info__block {
	display: block;
	padding: 1rem 0;
}

.c-info__buttons {
	overflow: hidden;
	padding: 3.5rem 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 none;
	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 none;
}

.c-modal__body {
	background-color: #fff;
	border-radius: 2rem;
	margin: 4% 0;
	padding: 3rem;
}

.c-modal__close {
	background: transparent none no-repeat scroll 0 0;
	border: 0 none;
	cursor: pointer;
	height: 3.5rem;
	outline: 0 none;
	position: relative;
	width: 3.5rem;
}

.c-modal__close::before,
.c-modal__close::after {
	background-color: var(--color-secondary);
	content: '';
	height: 0.2rem;
	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 none;
	width: 95%;
	max-width: 60rem;
}

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

.c-modal__description {
	padding-right: 3rem;
	position: relative;
}

.c-modal__description .c-modal__close {
	color: #fff;
	position: absolute;
	right: 0;
	top: 3rem;
}

.c-modal__body h3 {
	color: var(--color-primary);
}

.c-modal__title {
	margin: 0 0 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: 0.1rem solid var(--color-primary);
	color: var(--color-primary);
	font-size: 2.4rem;
	margin: 0 0 1.5rem;
	padding: 0 0 1.5rem;
}

.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: 1rem 0 2rem;
	text-align: center;
}

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

[id="modalForm"] [id="form_submit"] {
	-webkit-border-radius: 1rem;
	align-items: center;
	background-color: var(--color-secondary);
	border-radius: 1rem;
	border: 0.1rem solid var(--color-secondary);
	color: var(--color-primary);
	cursor: pointer;
	display: flex;
	flex-flow: row;
	font-size: 1.6rem;
	font-weight: 600;
	justify-content: center;
	margin: auto;
	min-width: 14rem;
	padding: 1.4rem 2.4rem;
	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: 2rem auto;
}

.c-modal--success .c-modal__body h2 {
	color: #fff;
	margin-bottom: 3rem;
}

.c-modal--success .c-modal__body p {
	color: #fff;
	margin-bottom: 3rem;
}

.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: 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%;
}

/* 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);
}
}

/** 3.10 Custom Select */

.select-selected {
  align-items: center;
	background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0;
  line-height: 1.25;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}

.select-selected strong {
  margin-right: 0.8rem;
	padding: 0.2rem 2.5rem 0.2rem 0.6rem;
  position: relative;
}

.select-selected strong::before {
  background: transparent url(../images/arrows.png) no-repeat scroll right -1.5rem;
  content: '';
  display: block;
  height: 0.6rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
}

.select-selected.selected strong::before {
  background-position: right 0;
}

.select-selected span {
  align-items: center;
  background: var(--color-primary);
  border-left: 0.1rem solid var(--color-secondary);
  color: var(--color-secondary);
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  padding: 0.6rem 0.6rem 0.2rem;
}

.select-options {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  text-align: left;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform: translateY(-30px);
  opacity: 0;
  padding: 0.4rem;
  visibility: hidden;
  text-transform: uppercase;
  z-index: 10;
}

.select-options li {
  cursor: pointer;
  font-size: 13px;
  padding: 0.5rem 1rem 0 1rem;
  line-height: 1;
}

.select-options li::after {
  content: '';
  background: var(--color-gray-light);
  display: block;
  height: 1px;
  width: 60%;
  margin: 0.5rem auto 0 auto;
}

.select-options li:hover {
  font-weight: 600;
}

.select-options li:last-child::after {
  background: var(--color-white);
}

.select-options.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  width: 100%;
}

.select__custom {
  position: relative;
  order: -2;
  width: max-content;
}

.select__custom.select__custom--secondary {
  background: var(--color-white);
  margin-left: auto;
}

.select__custom.select__custom--secondary .select-selected {
  border: 0.1rem solid var(--color-secondary);
}

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

/** 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 3rem;
}

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

/** 5. Base */

/* 5.1 Body fixed */

.body--fixed {
	overflow: hidden;
}

.body--fixed .c-button__mobile {background-color: var(--color-primary);}

.body--fixed .c-button__mobile button span.bar1 {
	-webkit-transform: rotate(-45deg) translate(1px, 14px);
	transform: rotate(-45deg) translate(1px, 14px);
	background-color: #fff;
	width: 3.2rem;
}

.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, -17px);
	transform: rotate(45deg) translate(1px, -17px);
	background-color: #fff;
	width: 3.2rem;
}

.body--fixed .l-menu {
	align-items: self-start;
	background-color: rgba(255,255,255,0.95);
	display: flex;
	flex-flow: column;
	height: calc(100% - 7.6rem);
	left: 0;
	margin: 0;
	overflow-y: auto;
	padding: 0;
	position: fixed;
	top: 7.6rem;
	width: 100%;
	z-index: 1000;
}

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

.body--fixed .l-menu__nav li a {
	padding: 2rem;
}

.body--fixed .l-menu .l-header__user {
	background-color: var(--color-primary);
	display: block;
}

.body--fixed .l-menu .l-header__user li {
	border-bottom: 0 none;
	font-size: 1.2rem;
	width: auto;
}

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

.body--fixed .l-menu .l-header__user li a {
	font-size: 1.2rem;
}

.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: 2rem;
	padding: 2rem;
	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 {color: #ffffff;}

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

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