/** 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: #22572E;
  --color-secondary: #5BAA15;
  --header-bg: #fff;
  --header-links: #22572E;
  --footer-bg: #22572E;
  --footer-links: #fff;
  --color-success: #5BAA15;
  --color-error: #f80000;
  --color-warning: #FFCC00;
  --font-color-primary: #000000;
  --font-color-secondary: #FFFFFF;
  --font-color-tertiary: #706F6F;
  --font-text-primary: 'Verdana', Arial, sans-serif;
	--font-text-secondary: 'Verdana', Arial, sans-serif;
  --border-color: #E6E6E6;
  --border-input: rgba(46, 20, 82, 0.5);
  --border-radius-xxs: calc(5 / 16 * 1rem);
  --border-radius-xs: calc(10 / 16 * 1rem);
  --border-radius-md: calc(30 / 16 * 1rem);
  --border-radius-lg: calc(50 / 16 * 1rem);
  --box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

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

/** 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(16 / 16 * 1rem);
	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: 400;
	-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-secondary);
  font-family: var(--font-text-secondary);
  margin: 0 0 calc(10 / 16 * 1rem);
}

h1,.h1 {
  font-size: calc(25 / 16 * 1rem)
}

h2,.h2 {
  font-size: calc(20 / 16 * 1rem)
}

h3,.h3 {
  font-size: calc(17.5 / 16 * 1rem)
}

h4,.h4 {
  font-size: calc(15 / 16 * 1rem)
}

h5,.h5 {
  font-size: calc(12.5 / 16 * 1rem)
}

h6,.h6 {
  font-size: calc(10 / 16 * 1rem)
}

ul, li {
	font-size: calc(16 / 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;
}

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(14 / 16 * 1rem);
	padding: calc(10 / 16 * 1rem);
}

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

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

a:focus, button:focus, .custom-button:focus {
  outline: calc(3 / 16 * 1rem) solid var(--color-secondary);
  outline-offset: 0.1rem;
}

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

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

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

.underline {
  text-decoration: underline;
}

@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"], 
.d-none {
  display: none;
}

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

::-webkit-scrollbar-thumb {
  height: calc(5 / 16 * 1rem);
  border: 0 none;
  background-clip: padding-box;
  -webkit-border-radius: calc(7 / 16 * 1rem);
  border-radius: calc(7 / 16 * 1rem);
  background-color: var(--color-primary);
  -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 */

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

main {
  flex: 1;
}

/** 2.2. Header */

.l-header {
  background-color: var(--header-bg);
  color: var(--header-links);
  padding: 0;
  width: 100%;
}

.l-header__top {
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--color-primary);
  color: var(--header-links);
  padding: calc(10 / 16 * 1rem) 0;
}

.l-header__content {
  background-color: var(--header-bg);
  padding: calc(14 / 16 * 1rem) 0;
}

.l-header__container {
  margin: 0 auto;
  max-width: calc(1280 / 16 * 1rem);
  width: 95%;
}

.l-header__top .l-header__container {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  gap: calc(20 / 16 * 1rem);
  justify-content: flex-end;
}

.l-header__top select {
  border: 1px solid var(--header-links);
  font-size: calc(13 / 16 * 1rem);
  padding: calc(2 / 16 * 1rem);
}

.l-header__top a,
.l-header__language span {
  font-size: calc(13 / 16 * 1rem);
}

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

.l-header__top,
.l-header__user,
.user {
  align-items: center;
  display: none;
  flex-flow: row wrap;
  gap: calc(10 / 16 * 1rem);
}

.user svg {
  height: calc(14 / 16 * 1rem);
  width: calc(14 / 16 * 1rem);
}

.user > div {
  align-items: flex-start;
  display: flex;
  flex-flow: row;
  gap: calc(5 / 16 * 1rem);
  line-height: calc(14 / 16 * 1rem);
}

.l-header__content .l-header__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(1280 / 16 * 1rem);
  width: 95%;
}

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

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

.l-header__logout {
  align-items: baseline;
  display: flex;
  flex-flow: row wrap;
  gap: calc(5 / 16 * 1rem);
  padding-left: calc(10 / 16 * 1rem);
  position: relative;
}

.l-header__logout::before {
  background-color: var(--font-color-primary);
  content: '';
  height: calc(12 / 16 * 1rem);
  left: 0;
  position: absolute;
  top: 2px;
  width: 1px;
}

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

@media (min-width: 991px) {
  .l-header__logo {
    width: calc(172 / 16 * 1rem);
  }
  .l-header__top,
  .l-header__top .l-header__user,
  .user {
    display: flex;
  }
}

/** 2.3. Menu */

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

.l-menu__nav {
	display: flex;
	flex-flow: row;
	gap: calc(15 / 16 * 1rem);
	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: calc(15 / 16 * 1rem);
	font-weight: 400;
	padding: calc(10 / 16 * 1rem) 0;
	text-transform: uppercase;
}

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

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

/** 2.4. Page */

.l-page {
  position: relative;
}

.l-page__container {
  margin: 0 auto;
  max-width: calc(1280 / 16 * 1rem);
  width: 95%;
}

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

.l-page__headline {
  align-items: center;
  background: transparent url(../images/background/headline.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: calc(16 / 16 * 1rem);
  padding: 0;
  position: relative;
}

.l-page__headline::before {
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 97%);
  bottom: 0;
  content: '';
  height: calc(70 / 16 * 1rem);
  position: absolute;
  right: 0;
  width: 100%;
}

.l-page__headline h1 {
  color: var(--font-color-secondary);
  font-size: calc(30 / 16 * 1rem);
  font-weight: normal;
  margin: 0;
}

.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--left {
	margin-left: auto;
}

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

.l-page__button--center {
	justify-content: center;
}

.l-page__section {
  padding: calc(15 / 16 * 1rem) 0;
  width: 100%;
}

@media (min-width: 991px) {
  .l-page__section {
    padding: calc(20 / 16 * 1rem) 0;
  }
}

/** 2.5. Footer */

.l-footer {
	background-color: var(--footer-bg);
	overflow: hidden;
	padding: calc(20 / 16 * 1rem) 0;
	position: relative;
	width: 100%;
}

.l-footer__container {
  margin: 0 auto;
  max-width: calc(1140 / 16 * 1rem);
  width: 92%;
}

.l-footer__list {
  display: flex;
  flex-flow: column;
  gap: calc(15 / 16 * 1rem);
  justify-content: flex-start;
  margin: 0;
}

.l-footer__list li {
  margin: 0;
}

.l-footer__list li a {
  color: var(--footer-links);
  font-size: calc(14 / 16 * 1rem);
  font-weight: 400;
  text-decoration: none;
}

.l-footer__list li a:hover {
  color: var(--footer-links);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .l-footer__list {
    flex-flow: row wrap;
    gap: calc(25 / 16 * 1rem);
    justify-content: center;
  }
}

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

/** 3. Componentes */

/* 3.1 Botones */

.c-btn {
	align-items: center;
	background-color: var(--color-primary);
	border-radius: var(--border-radius-md);
	border: 2px solid var(--color-primary);
	color: var(--font-color-secondary);
	cursor: pointer;
	display: flex;
	flex-flow: row;
	font-size: calc(12 / 16 * 1rem);
	font-weight: 600;
	gap: calc(10 / 16 * 1rem);
	justify-content: center;
	max-width: max-content;
	min-width: auto;
	padding: calc(12 / 16 * 1rem) calc(22 / 16 * 1rem) calc(12 / 16 * 1rem);
	text-align: center;
	text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: all 0.2s ease-in-out 0s;
}

.c-btn:hover,
.c-btn:focus {
	background-color: var(--color-secondary);
  border-color: var(--color-secondary);
	color: var(--font-color-secondary);
	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, 
.c-btn--back {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-transform: none;
}

.c-btn--back {
  border-color: transparent;
  color: var(--color-secondary);
  gap: calc(10 / 16 * 1rem);
  padding: 0;
}

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

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

.c-button__mobile {
	min-height: calc(48 / 16 * 1rem);
	overflow: hidden;
}

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

.c-button__mobile span {
	background-color: var(--color-secondary);
	display: block;
	height: calc(2 / 16 * 1rem);
	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 {
  margin: 0 0 calc(15 / 16 * 1rem);
  overflow: hidden;
  width: 100%;
}

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

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

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

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

.c-list--points li ul {
  margin-top: calc(12 / 16 * 1rem);
}

.c-list--points li ul li&::before {
  background-color: #fff;
  border: 1px solid #000;
}

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

.c-list--numbers li {
  counter-increment: section;
  list-style: none;
  margin-bottom: calc(10 / 16 * 1rem);
  padding-left: calc(20 / 16 * 1rem);
  position: relative;
}

.c-list--numbers li::before {
  color: var(--font-color-primary);
  content: counter(section) ". ";
  font-size: calc(14 / 16 * 1rem);
  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: calc(10 / 16 * 1rem);
  padding-left: calc(20 / 16 * 1rem);
  position: relative;
}
.c-list--letters li::before {
  color: var(--font-color-primary);
  content: counter(section, lower-alpha) ". ";
  font-size: calc(14 / 16 * 1rem);
  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: calc(14 / 16 * 1rem) calc(5 / 16 * 1rem);
  vertical-align: middle;
  text-align: left;
}

.c-table thead th {
  border-top: 0 none;
  color: var(--font-color-primary);
  font-size: calc(15 / 16 * 1rem);
  font-weight: 600;
}

.c-table tbody td {
  color: var(--font-color-primary);
  font-size: calc(14 / 16 * 1rem);
}

.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: calc(10 / 16 * 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: calc(15 / 16 * 1rem);
  margin: 0 calc(6 / 16 * 1rem);
  padding: calc(12 / 16 * 1rem) calc(10 / 16 * 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: 1px solid var(--color-secondary);
  padding: .1rem 0 0 0;
}

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

.c-select__multiple {
  margin-bottom: calc(20 / 16 * 1rem);
  overflow: hidden;
  width: 100%;
}

.c-select__multiple select {
  padding: calc(12 / 16 * 1rem);
}

.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: calc(10 / 16 * 1rem);
  top: calc(6 / 16 * 1rem);
  width: calc(30 / 16 * 1rem);
  height: calc(30 / 16 * 1rem);
  border-radius: 0;
}

.c-select select {
  -webkit-border-radius: calc(10 / 16 * 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: calc(14 / 16 * 1rem);
  height: auto;
  color: var(--font-color-primary);
  line-height: 1.1;
  margin: 0;
  outline: medium none;
  padding: calc(15 / 16 * 1rem) calc(55 / 16 * 1rem) calc(15 / 16 * 1rem) calc(15 / 16 * 1rem);
  width: 100%;
}

.c-select select:focus {
  background-color: transparent;
  outline: calc(3 / 16 * 1rem) 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: calc(900 / 16 * 1rem);
}

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

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

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

.c-modal__close::before,
.c-modal__close::after {
  background-color: #fff;
  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 none;
}

.c-modal__description {
  color: var(--font-color-secondary);
  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, 
.c-modal__body h3,
.c-modal__body p a {
  color: var(--color-primary);
}

.c-modal__body h2 {
  margin-bottom: calc(25 / 16 * 1rem);
}

.c-modal__body p,
.c-modal__body .c-form p {
  color: var(--font-color-primary);
  font-size: calc(14 / 16 * 1rem);
}

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

/* 3.6 Headline */

.c-headline {
  align-items: flex-start;
  display: flex;
  flex-flow: row;
  gap: calc(20 / 16 * 1rem);
  justify-content: space-between;
  position: relative;
}

.c-headline__description {
  display: flex;
  flex-flow: column;
  gap: calc(12 / 16 * 1rem);
  justify-content: flex-start;
  max-width: calc(500 / 16 * 1rem);
  padding: calc(40 / 16 * 1rem) 0;
  width: 100%;
}

.c-headline__description p {
  color: var(--font-color-secondary);
  font-size: calc(20 / 16 * 1rem);
  font-weight: 400;
  margin: 0;
}

.c-headline__description .c-btn {
  text-transform: none;
}

.c-headline__points {
  background-color: var(--color-primary);
  display: none;
  flex-flow: column;
  min-width: calc(150 / 16 * 1rem);
}

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

.c-headline__points > div {
  padding: calc(15 / 16 * 1rem);
}

.c-headline__greeting {
  border-bottom: 1px solid var(--font-color-secondary);
}

.c-headline__points p span:first-child {
  text-transform: uppercase;
}

.c-headline__points strong {
  font-size: calc(22 / 16 * 1rem);
}

.c-headline__points p span:last-child {
  text-transform: lowercase;
}

@media (min-width: 768px) {
  .c-headline__points {
    display: block;
  }
}

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

/** 3.7 Box */

.c-box {
  background-color: var(--color-bkg);
  margin: 0 auto;
  padding: calc(10 / 16 * 1rem) calc(15 / 16 * 1rem);
  width: 100%;
}

.c-box--small {
  max-width: calc(770 / 16 * 1rem);
}

.c-box__buttons {
  display: flex;
  flex-flow: row wrap;
  gap: calc(10 / 16 * 1rem);
  justify-content: center;
  padding: 3rem 0 1rem;
}

.c-box--information {
  padding: calc(20 / 16 * 1rem) calc(25 / 16 * 1rem);
  text-align: center;
  margin: 0 auto;
  max-width: calc(840 / 16 * 1rem);
}

.c-box--information h2 {
  color: var(--color-primary);
  font-size: clamp(calc(20 / 16 * 1rem), 5vw, calc(25 / 16 * 1rem));
  font-weight: 700;
  margin-bottom: calc(25 / 16 * 1rem);
}

.c-box--information h3 {
  color: var(--font-color-primary);
  font-size: clamp(calc(16 / 16 * 1rem), 5vw, calc(19 / 16 * 1rem));
}

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

.c-box__content h2 {
  color: var(--color-primary);
  font-size: clamp(calc(20 / 16 * 1rem), 5vw, calc(25 / 16 * 1rem));
  font-weight: 700;
  margin-bottom: calc(25 / 16 * 1rem);
  text-align: center;
}

.c-box__content > p {
  font-size: calc(18 / 16 * 1rem);
  text-align: center;
}

.c-box__error {
  border: 1px solid var(--color-error);
  color: var(--color-error);
  padding: calc(10 / 16 * 1rem);
  margin-bottom: calc(10 / 16 * 1rem);
  text-align: center;
}

.c-box--team .c-box__title {
  display: flex;
  flex-flow: column;
  gap: calc(10 / 16 * 1rem);
  justify-content: space-between;
}

.c-box--team .c-box__title > div {
  display: flex;
  flex-flow: column;
  gap: calc(8 / 16 * 1rem);
  max-width: max-content;
  width: 100%;
}

.c-box--team .c-box__title > div label,
.c-box--team .c-box__title > div p {
  color: #fff;
}

.c-box--team .c-box__title > div p {
  font-size: calc(12 / 16 * 1rem);
}

@media (min-width: 991px) {
  .c-box {
    padding: calc(20 / 16 * 1rem) calc(30 / 16 * 1rem);
  }
}

/* 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: calc(80 / 16 * 1rem);
height: calc(80 / 16 * 1rem);
}
.lds-ellipsis div {
position: absolute;
top: calc(33 / 16 * 1rem);
width: calc(13 / 16 * 1rem);
height: calc(13 / 16 * 1rem);
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: calc(8 / 16 * 1rem);
-webkit-animation: lds-ellipsis1 0.6s infinite;
        animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
left: calc(8 / 16 * 1rem);
-webkit-animation: lds-ellipsis2 0.6s infinite;
        animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
left: calc(32 / 16 * 1rem);
-webkit-animation: lds-ellipsis2 0.6s infinite;
        animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
left: calc(56 / 16 * 1rem);
-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(calc(24 / 16 * 1rem), 0);
          transform: translate(calc(24 / 16 * 1rem), 0);
}
}
@keyframes lds-ellipsis2 {
0% {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
100% {
  -webkit-transform: translate(calc(24 / 16 * 1rem), 0);
          transform: translate(calc(24 / 16 * 1rem), 0);
}
}

/* Custom Select */
.select-selected {
  align-items: center;
  color: var(--color-white);
  font-size: calc(12 / 16 * 1rem);
  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: calc(8 / 16 * 1rem);
	padding: calc(6 / 16 * 1rem) calc(25 / 16 * 1rem) calc(2 / 16 * 1rem) calc(6 / 16 * 1rem);
  position: relative;
}

.select-selected strong::before {
  background: transparent url(../images/arrows.png) no-repeat scroll right -calc(15 / 16 * 1rem);
  content: '';
  display: block;
  height: calc(6 / 16 * 1rem);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(11 / 16 * 1rem);
}

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

.select-selected span {
  align-items: center;
  background: var(--color-white);
  border-left: 1px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  padding: calc(6 / 16 * 1rem) calc(6 / 16 * 1rem) calc(2 / 16 * 1rem);
}

.select-options {
  background-color: var(--color-secondary);
  box-shadow: var(--box-shadow);
  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(-calc(30 / 16 * 1rem));
  opacity: 0;
  padding: calc(4 / 16 * 1rem);
  visibility: hidden;
  text-transform: uppercase;
  z-index: 10;
}

.select-options li {
  cursor: pointer;
  font-size: calc(13 / 16 * 1rem);
  padding: calc(5 / 16 * 1rem) calc(10 / 16 * 1rem) 0 calc(10 / 16 * 1rem);
  line-height: 1;
}

.select-options li::after {
  content: '';
  background: var(--color-gray-light);
  display: block;
  height: 1px;
  width: 60%;
  margin: calc(5 / 16 * 1rem) 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: 1px solid var(--color-primary);
}

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

/** 4. Pages */

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

/** 5. Otros */

/* Body fixed */

.body--fixed {
  overflow: hidden;
}

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

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

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

.body--fixed .navbar .l-header__user {
  align-items: flex-start;
  border-bottom: 1px solid #fff;
  display: flex;
  flex-flow: column;
  padding: calc(15 / 16 * 1rem);
  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: calc(14 / 16 * 1rem);
  padding: 0;
}

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

.body--fixed .l-menu li {
  border-bottom: 1px 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: calc(16 / 16 * 1rem);
  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-primary);
}

/* 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 {color: #ffffff;}

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

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