/** 0. Root */
/** 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; cookies */

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

/** 0. Root */

:root {
  --color-primary: #0077BB;
  --color-secondary: #1E73A7;
  --color-bkg: #FFFFFF;
  --color-bkg-grey: #EEEEEE;
  --color-bkg-input: #DEEAF2;
  --color-success: green;
  --color-error: red;
  --color-border-input: #00378180;
  --border-radius: 1.5rem;
  --font-color-primary: #090108;
  --font-color-secondary: #F6F8F8;
  --font-color-placeholder: #4D4D4D;
  --font-text-head: 'BebasNeue', sans-serif;
  --font-text-primary: 'Montserrat', Arial, sans-serif;
	--font-text-secondary: 'Libre Baskerville', Arial, sans-serif;
}

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

/** 1. Base */

html, body {
	font-size: 62.5%;
  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: 1.6rem;
	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(--color-secondary);
	color: var(--font-color-primary);
}

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

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: 600;}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	color: var(--color-primary);
  font-family: var(--font-text-head);
  margin: 0 0 1rem;
}

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;
}

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

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
	border: 0 none;
	outline: 0.3rem solid var(--color-secondary);
  outline-offset: 0.1rem;
}

a:focus, button:focus, .custom-button:focus {
  outline: 0.3rem solid var(--color-secondary);
  outline-offset: 0.1rem;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.4rem;
  width: 100%
}

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

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

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

[id="bit-notification-bar"],
.impersonation-bar,
.d-none {
  display: none;
}

.underline {
  text-decoration: underline;
}

::-webkit-scrollbar {
  background-color: #efefef;
  width: 1rem;
  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-primary);
  -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;
}

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

/** 2. Layout */

/** 2.1. General */

body {
  display: flex;
  flex-flow: column;
}

main {
  flex: 1;
}

/** 2.2. Header */

.l-header {
  background-color: #ffffff;
  color: var(--font-color-secondary);
  padding: 0;
  width: 100%;
}

.l-header__top {
  background-color: var(--color-primary);
  padding: 0.5rem 0;
}

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

.l-header__container {
  margin: 0 auto;
  max-width: 114rem;
  width: 92%;
}

.l-header__top .l-header__container {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  gap: 2rem;
  justify-content: flex-end;
}

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

.l-header__top a,
.l-header__language span {
  font-size: 1.3rem;
}

.l-header__top a:hover {
  color: var(--font-color-secondary);
  text-decoration: underline;
}

.l-header__top--impersonate {
  background-color: var(--color-secondary);
  color: var(--font-color-primary);
}

.l-header__top--impersonate a {
  color: var(--font-color-primary);
}

.l-header__top--impersonate a:hover {
  color: var(--font-color-primary);
  text-decoration: underline;
}

.l-header__top--impersonate .user > div {
  border-right: 0.1rem solid var(--color-primary);
}

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

.l-header__user,
.user {
  align-items: center;
  color: var(--font-color-secondary);
  display: none;
  flex-flow: row wrap;
  gap: 0;
}

.l-header__user {
  border-bottom: 0;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.user svg,
.l-header__logout svg {
  height: 1.4rem;
  width: 1.4rem;
}

.user > div {
  align-items: flex-start;
  border-right: 0.1rem solid var(--color-bkg);
  display: flex;
  flex-flow: row;
  font-weight: 300;
  gap: 0.5rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 0;
}

.user__info {
  font-size: 1.3rem;
}

.user__points span:last-child {
  font-weight: 600;
  text-transform: uppercase;
}

.user em {
  font-weight: 600;
}

.l-header__content .l-header__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 114rem;
  width: 92%;
}

.l-header__logo {
  width: 5rem;
}

.l-header__logo img {
	display: block;
	width: 100%;
}

.l-header__logout {
  align-items: center;
  color: var(--font-color-secondary);
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
  padding-left: 1rem;
  position: relative;
  text-transform: uppercase;
}

.user .l-header__logout svg {
  height: 1.8rem;
  width: 1.8rem;
}

@media (min-width: 991px) {
  .l-header__content {
    padding: 1.5rem 0;
  }
  .l-header__logo {
    width: 7rem;
  }
  .l-header__top .l-header__user,
  .user {
    display: flex;
  }
  .user > div {
    margin: 0;
    padding: 0 1rem;
  }
  .user > div.user__info {
    padding-left: 0;
  }
}

/** 2.3. Menu */

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

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

.l-menu__item {
	padding: 0;
}

.l-menu__item a {
	color: var(--color-primary);
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
	padding: 1rem;
}

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

.l-menu a.active,
.l-menu a.active:hover {
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: none;
}

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

  .l-menu__nav {
    border-bottom: 0.1rem solid var(--color-bkg);
    border-top: 0.1rem solid var(--color-bkg);
    margin-left: auto;
    width: max-content;
  }

}

/** 2.4. Page */

.l-page {
  position: relative;
}

.l-page::before {
  background: #1e74a7 url(../images/background/bkg_headline.png) no-repeat scroll top right;
  -webkit-background-size: auto 30rem;
  background-size: auto 30rem;
  content: '';
  height: 30rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.l-page__container {
  margin: 0 auto;
  max-width: 114rem;
  width: 95%;
}

.l-page__content {
	padding: 3rem 0;
  position: relative;
}

.l-page__headline {
  align-items: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 16rem;
  padding: 3rem 0;
  position: relative;
}

.l-page__headline h1 {
  color: var(--font-color-secondary);
  font-size: 3rem;
  margin: 0;
}

.l-page__headline h2 {
  color: var(--font-color-secondary);
  font-family: var(--font-family-primary);
  font-size: 1.8rem;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

.l-page__title {
  overflow: hidden;
  padding: 2rem 0;
  text-align: center;
}

.l-page__title h1 {
  color: var(--font-color-primary);
  text-transform: uppercase;
}

.l-page__button {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
	width: 100%;
}

.l-page__button .c-btn {
	width: max-content;
}

.l-page__button--top {
  margin-bottom: 2rem;
}

.l-page__button--left {
	margin-left: auto;
}

.l-page__button--right {
	margin-right: auto;
}

.l-page__section {
  padding: 1.5rem 0;
  width: 100%;
}

@media (min-width: 991px) {
  .l-page__section {
    padding: 2rem 0;
  }

  .l-page__headline {
    padding: 8rem 0 2rem;
  }
}

/** 2.5. Footer */

.l-footer {
	background-color: var(--color-bkg-grey);
  border-top: 0.1rem solid var(--color-bkg-grey);
	overflow: hidden;
	padding: 2rem 0;
	position: relative;
	width: 100%;
}

.l-footer__container {
  margin: 0 auto;
  max-width: 114rem;
  width: 92%;
}

.l-footer__list {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  justify-content: flex-start;
  margin: 0;
}

.l-footer__list li {
  margin: 0;
}

.l-footer__list li a {
  color: var(--font-color-primary);
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
}

.l-footer__list li a:hover {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .l-footer__list {
    flex-flow: row wrap;
    gap: 3rem;
    justify-content: center;
  }
}

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

/** 3. Componentes */

/* 3.1 Botones */

.c-btn {
	align-items: center;
  background: linear-gradient(to right, rgba(74,167,222,1) 0%,rgba(30,115,167,1) 100%);
	border-radius: var(--border-radius);
	border: 0.2rem solid var(--color-primary);
	color: #ffffff;
	cursor: pointer;
	display: flex;
	flex-flow: row;
	font-size: 1.6rem;
  font-weight: 500;
	gap: 1rem;
	justify-content: center;
	max-width: max-content;
	padding: 1rem 2.5rem 1rem;
	text-align: center;
	text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out 0s;
}

.c-btn:hover,
.c-btn:focus {
  background: linear-gradient(to right, rgba(30,115,167,1) 0%,rgba(74,167,222,1) 100%);
	color: #ffffff;
	text-decoration: none;
}

.c-btn--secondary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--font-color-secondary);
}

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

.c-btn--border {
  background: transparent none no-repeat scroll 0 0;
  border: 0.2rem solid #ffffff;
  color: #ffffff;
}

.c-btn--border:hover,
.c-btn--border:focus {
  background: #ffffff none no-repeat scroll 0 0;
  border-color: #ffffff;
  color: var(--color-primary);
}

.c-btn--back {
  background: #ffffff none no-repeat scroll 0 0;
  border: 0.2rem solid var(--color-primary);
  color: var(--color-primary);
}

.c-btn--back:hover,
.c-btn--back:focus {
  background: var(--color-primary) none no-repeat scroll 0 0;
  border-color: var(--color-primary);
  color: #ffffff;
}

.c-btn--link {
  background: transparent none no-repeat scroll 0 0;
  border: 2px solid transparent;
  color: var(--color-primary);
}

.c-btn--link:hover,
.c-btn--link:focus {
  background: transparent none no-repeat scroll 0 0;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.c-button__mobile {
	min-height: 4.8rem;
	overflow: hidden;
}

.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: var(--color-primary);
	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 {
  margin: 0 0 1.5rem;
  overflow: hidden;
  width: 100%;
}

.c-list li {
  color: var(--font-color-primary);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  position: relative;
}

.c-list > li > ul {
  margin-top: 1rem;
}

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

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

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

.c-list--points li ul {
  margin-top: 1.2rem;
}

.c-list--points li ul li::before {
  background-color: var(--font-color-secondary);
  border: 0.1rem solid var(--font-color-primary);
}

.c-list--numbers {
  counter-reset: section;
  padding-left: 0;
}

.c-list--numbers > li {
  counter-increment: section;
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.c-list--numbers > li::before {
  color: var(--font-color-primary);
  content: counter(section) ". ";
  font-size: 1.4rem;
  font-weight: bold;
  left: 0;
  position: absolute;
  top: 0;
}

.c-list--letters {
  counter-reset: section;
  padding-left: 0;
}

.c-list--letters > li {
  counter-increment: section;
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}
.c-list--letters > li::before {
  color: var(--font-color-primary);
  content: counter(section, lower-alpha) ". ";
  font-size: 1.4rem;
  font-weight: bold;
  left: 0;
  position: absolute;
  top: 0;
}

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

/* 3.3 Tablas */

.c-table thead th, .c-table tbody td {
  background-color: transparent;
  border-bottom: 1px solid var(--color-bkg);
  border-top: 0 none;
  padding: 1.4rem 0.5rem;
  vertical-align: middle;
  text-align: left;
}

.c-table thead th {
  border-top: 0 none;
  color: var(--font-color-primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.c-table tbody td {
  color: var(--font-color-primary);
  font-size: 1.4rem;
}

.c-table thead th.c-table__center,
.c-table tbody td.c-table__center {text-align: center;}
.c-table thead th.c-table__left,
.c-table tbody td.c-table__left {text-align: left;}
.c-table thead th.c-table__right,
.c-table tbody td.c-table__right {text-align: right;}

.c-table .c-table__links {
  color: var(--color-primary);
  display: inline-block;
  font-weight: 600;
  margin-right: 1rem;
}
.c-table .c-table__links:last-child {margin-right: 0;}

.c-table .c-table__links:hover {text-decoration: underline;}

.c-table td .c-btn {
  display: inline-block;
  font-size: 1.5rem;
  margin: 0 0.6rem;
  padding: 1.2rem 1rem;
}

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

/* 3.4 Select */

.c-select {
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  background-attachment: scroll;
  background-clip: border-box;
  background-color: #fff;
  /* background-image: url("../images/img_bg_select.png"); */
  background-origin: padding-box;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
  display: flex;
  border: 0.1rem solid var(--color-primary);
  overflow: hidden;
  padding: .1rem 0 0 0;
}

.c-select:focus{
  box-shadow: none !important;
  border-color: var(--color-primary) !important;
}

.c-select__multiple {
  margin-bottom: 2rem;
  overflow: hidden;
  width: 100%;
}

.c-select__multiple select {
  padding: 1.2rem;
}

.c-select::after {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent url("../images/img_bg_select.png") no-repeat scroll 0 0;
  background-size: auto 100%;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 6px;
  width: 3rem;
  height: 3rem;
  border-radius: 0;
}

.c-select select {
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  -moz-appearance: caret;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  appearance: none;
  background: #fff none repeat scroll 0 0;
  border: 0 none;
  cursor: pointer;
  font-size: 1.4rem;
  height: auto;
  color: var(--font-color-primary);
  line-height: 1.1;
  margin: 0;
  outline: medium none;
  padding: 1.5rem 5.5rem 1.5rem 1.5rem;
  width: 100%;
}

.c-select select:focus {
  background-color: transparent;
  outline: 0.3rem solid var(--color-secondary);
}

.c-select select::-ms-expand {
  display: none;
}

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

/* 3.5 Modal */

.c-modal__dialog {
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-top: 0 none;
}

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

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

.c-modal__body {
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  margin: 4%;
  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;
}

.c-modal__description {
  color: var(--font-color-secondary);
  padding-right: 3rem;
  position: relative;
}

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

.c-modal__body h2,
.c-modal__body h3 {
  color: var(--color-secondary);
}

.c-modal__body p {
  color: var(--font-color-secondary);
}

.c-modal--details .c-modal__dialog {
  max-width: 75rem;
}

.c-modal--details .c-modal__body {
  background-color: var(--color-bkg);
}

.c-modal--details .c-modal__list {
  display: flex;
  flex-flow: row wrap;
}

.c-modal--details .c-modal__list li {
  font-size: 1.4rem;
  padding: 1rem;
  width: 50%;
  word-wrap: break-word;
}

.c-modal--details strong {
  display: block;
}

.c-modal--details .c-points {
  padding: 1rem;
}

.c-modal__status {
  color: var(--color-secondary-gold);
  font-weight: 600;
}

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

/* 3.6 Headline */

.c-headline {
  align-items: flex-start;
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  position: relative;
}

.c-headline > div {
  width: 100%;
}

.c-headline__description h1 {
  color: var(--font-color-secondary);
  font-size: clamp(2.2rem, 5vw, 3rem);
}

.c-headline__description h2 {
  color: var(--font-color-secondary);
  font-family: var(--font-text-primary);
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
}

.c-headline .c-btn--border {
  border-color: var(--font-color-secondary);
  color: var(--font-color-secondary);
}

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

.c-headline__info {
  color: var(--font-color-secondary);
  display: flex;
  flex-flow: row wrap;
  font-family: var(--font-text-secondary);
}

.c-headline__info > div {
  padding: 0.5rem 2rem;
}

.c-headline__name p {
  font-size: clamp(1.9rem, 5vw, 2.2rem);
  line-height: 1.1;
}

.c-headline__points {
  border-left: 0.1rem solid var(--color-secondary);
  text-transform: uppercase;
}

.c-headline p {
  color: var(--font-color-secondary);
  margin: 0;
}

.c-headline__points p {
  font-size: 1.4rem;
}

.c-headline__points p strong {
  font-size: 2.6rem;
}

.c-headline__points em {
  text-transform: none;
}

@media (min-width: 991px) {
  .c-headline {
    flex-flow: column;
    justify-content: space-between;
  }

  .c-headline__description {
    max-width: 44.5rem;
  }

  .c-headline > div.c-headline__info {
    width: max-content;
  }
}

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

/** 3.7 Box */

.c-box {
  margin: 0 auto;
  padding: 2rem 2.5rem;
  width: 100%;
}

.c-box--team {
  padding: 2rem 0;
}

.c-box--points {
  max-width: 65rem;
}

.c-box--points p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.c-box--points b,
.c-box--calculator b {
  color: var(--color-secondary);
  font-size: 1.8rem;
}

.c-box__buttons {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  justify-content: center;
  padding: 3rem 0 1rem;
}

.c-box--information {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border: 0;
  padding: 2rem 2.5rem;
  text-align: center;
}

.c-box--information h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
}

.c-box--information p {
  font-weight: 300;
}

.c-box__content {
  margin: 1.5rem 0 0;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 991px) {
  .c-box {
    padding: 4rem 5rem;
  }
  .c-box--team {
    padding: 2rem 0;
  }
}

.c-box--upload {
  max-width: 72rem;
  padding: 0;
}

.c-box--upload .c-box__content {
  margin: 0 0 2.5rem;
  text-align: center;
}

.c-box--upload .c-box__content p {
  font-weight: 300;
}

.c-box--upload .c-form .c-btn--border {
  color: var(--font-color-primary);
}

.c-box--upload .c-form .c-btn--border:hover {
  color: var(--font-color-secondary);
}

.c-box__messages {
  border: 0.1rem solid var(--color-primary);
  margin: 0 0 1.5rem;
  padding: 1rem;
}

.c-box__messages p {
  color: var(--color-error);
  margin: 0;
}

/* 3.8 Loading */

.c-loading {
  background-color: rgba(0,0,0,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-secondary);
-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);
}
}

/* Custom Select */
.select-selected {
  align-items: center;
  color: var(--color-white);
  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.3rem 2.5rem 0.3rem 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-white);
  border-left: 0.1rem solid var(--color-bkg-input);
  color: var(--color-bkg-input);
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem 0.3rem;
}

.select-options {
  background-color: var(--color-secondary);
  box-shadow: var(--box-shadow);
  color: var(--color-bkg-input);
  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-bkg-input);
}

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

/** 4. Pages */

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

/** 5. Otros */

/* Body fixed */

.body--fixed {
  overflow: hidden;
}

.body--fixed .c-button__mobile button span.bar1 {
  -webkit-transform: rotate(-45deg) translate(-0.7rem, 0.7rem);
  transform: rotate(-45deg) translate(-0.7rem, 0.7rem);
  background-color: var(--color-secondary);
  width: 4rem;
}

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

.body--fixed .c-button__mobile button span.bar3 {
  -webkit-transform: rotate(45deg) translate(-0.7rem, -0.7rem);
  transform: rotate(45deg) translate(-0.7rem, -0.7rem);
  background-color: var(--color-secondary);
  width: 4rem;
}

.body--fixed .navbar .l-header__user {
  align-items: flex-start;
  border-bottom: 0.1rem solid #fff;
  display: flex;
  flex-flow: column;
  padding: 1.5rem;
  width: 100%;
}

.body--fixed .navbar .user {
  color: var(--font-color-secondary);
  display: flex;
}

.body--fixed .navbar .l-header__user a {
  color: var(--font-color-secondary);
  font-size: 1.4rem;
  padding: 0;
}

.body--fixed .navbar .l-header__user a.user > div {
  border-right: 0;
}

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

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

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

.body--fixed .l-header__info {display: none;}

.body--fixed .l-menu ul.navbar-nav  {
  text-align: left;
  flex-flow: column;
  gap: 0;
}

.body--fixed .l-menu ul.navbar-nav  li a {
  color: #fff;
  padding: 1.6rem;
  text-align: left;
  text-decoration: none;
}
.body--fixed .l-menu ul.navbar-nav  li a:hover,
.body--fixed .l-menu ul.navbar-nav  li a.active {
  background-color: var(--color-secondary);
  color: var(--color-bkg-grey);
}

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

.wrap_error .error li {
  padding-top: 0.4rem;
  color: var(--color-error);
  font-size: 1.2rem;
  text-align: left;
}
