@charset "utf-8";
/* CSS Document */

/** 0. Fuentes */
/** 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 */

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

/** 0. Fuentes */

@font-face {
    font-family: 'Roobert ENEL';
    src: url('../fonts/RoobertENEL-Regular.eot');
    src: url('../fonts/RoobertENEL-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/RoobertENEL-Regular.woff2') format('woff2'),
        url('../fonts/RoobertENEL-Regular.woff') format('woff'),
        url('../fonts/RoobertENEL-Regular.ttf') format('truetype'),
        url('../fonts/RoobertENEL-Regular.svg#RoobertENEL-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert ENEL';
    src: url('../fonts/RoobertENEL-Light.eot');
    src: url('../fonts/RoobertENEL-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/RoobertENEL-Light.woff2') format('woff2'),
        url('../fonts/RoobertENEL-Light.woff') format('woff'),
        url('../fonts/RoobertENEL-Light.ttf') format('truetype'),
        url('../fonts/RoobertENEL-Light.svg#RoobertENEL-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert ENEL';
    src: url('../fonts/RoobertENEL-Bold.eot');
    src: url('../fonts/RoobertENEL-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/RoobertENEL-Bold.woff2') format('woff2'),
        url('../fonts/RoobertENEL-Bold.woff') format('woff'),
        url('../fonts/RoobertENEL-Bold.ttf') format('truetype'),
        url('../fonts/RoobertENEL-Bold.svg#RoobertENEL-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

/** 1. Base */

:root {
    --color-primary: #0244C8;
    --color-secondary: #D3135A;
    --color-tertiary: #0066FF;
    --color-quaternary: #333F48;
    --color-bkg: #f7f7f7;
    --color-error: #ef0000;
    --color-success: #00AC48;
    --font-text-primary: 'Roobert ENEL', sans-serif;
    --font-text-secondary: 'Arial', sans-serif;
    --font-color-primary: #333F48;
    --font-color-secondary: #666666;
}

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

body {
    background: var(--color-bkg) none no-repeat scroll top center;
    color: var(--font-color-primary);
    font-family: var(--font-text-primary);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    position: relative;
}

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

*::-moz-selection {
  background: var(--color-secondary);
  color: #fff;
  text-shadow: none;
}

*::selection {
  background: var(--color-secondary);
  color: #fff;
  text-shadow: none;
}

a {
    color: var(--color-primary);
    text-decoration: underline;
    -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 {
    color: var(--color-secondary);
}

b, strong {font-weight: 600;}

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

h3 {font-size: 2.5rem;}
h4 {font-size: 1.8rem;}

h2 span {
    color: var(--color-primary);
    display: inline-block;
}

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

input {font-size: 1.4rem; font-weight: normal;}

/* input[disabled],input[readonly] {}*/


input[type="text"], input[type="password"], input[type="email"], textarea, select {
    background-color: #FFFFFF;
    border: .1rem solid var(--color-tertiary);
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    color: var(--font-color-primary);
    font-size: 1.5rem;
    padding: 1.2rem 1.6rem;
    width: 100%;
}

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

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
    -webkit-box-shadow: 0 0 0;
    -moz-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    border: .1rem solid var(--color-primary);
    outline: 0;
}

input[type="text"].readonly,
input[type="password"].readonly,
input[type="email"].readonly {
    background-color: #e6e6e6;
    border-color: var(--font-color-secondary);
    color: #999;
}

input:focus, input:active, a:focus, a:active {outline: 0;}

input[type="text"]::placeholder, input[type="password"]::placeholder, input[type="email"]::placeholder {
    color: #999;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.6rem;
}

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

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

/** 2. Layout */

/* 2.1. General */

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

.red-dot {
	position: absolute;
	bottom: 100%;
	width: 1rem;
	height: 1rem;
	background-color: var(--color-error);
	border-radius: 50%;
	transform: translateY(25px);
	margin-left: -17%;
}
/* --------------- */

/* 2.2. Header */

.l-header {
    background-color: #fff;
    border-bottom: 0 none;
    min-height: 5.2rem;
    position: relative;
    width: 100%;
}

.l-header .l-page__container {
    max-width: 140rem;
    padding: 2rem 0;
    width: 100%;
}

.l-header__content {
    padding: 0;
}

.l-header__logo {
    display: inline-block;
    vertical-align: middle;
    padding-left: 3%;
}
.l-header__logo--image {
    display: block;
    height: auto;
    width: 12.4rem;
}

.l-header__info {
    background-color: var(--color-primary);
    display: none;
    overflow: hidden;
    padding: 0.5rem 0;
    text-align: right;
    width: 100%;
}

.l-header__info ul {
    margin: 0;
    padding: 0;
}

.l-header__info li {
    color: var(--color-bkg);
    display: inline-block;
    font-size: 1.4rem;
    margin-right: 1rem;
    padding-right: 1rem;
    position: relative;
}

.l-header__info li::before {
    background-color: var(--color-bkg);
    content: '';
    height: 1rem;
    margin-top: -0.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    width: 0.1rem;
}

.l-header__info li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.l-header__info li:last-child::before {
    display: none;
}

.l-header__info a {
    color: var(--color-bkg);
    text-decoration: none;
}

.l-header__info a i {
    margin-right: 0.5rem;
}

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

@media (min-width: 991px) {
    .l-header {
        border-bottom: 0 none;
        min-height: 7.7rem;
    }

    .l-header .l-page__container {
        padding: 0;
        width: 95%;
    }

    .l-header__content {
        padding: 3rem 0 1rem;
    }

    .l-header__info {
        display: block;
    }

    .l-header__logo {
        padding-left: 0;
    }

    .l-header__logo--image {
        width: 19.4rem;
    }

    .l-header__content > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}

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

/* 2.3. Menu */

.l-menu {
    display: none;
    overflow: hidden;
    width: 100%;
}
.l-menu.navbar {
    padding:  0;
}
.l-menu ul {
    display: block;
    float: right;
    text-align: right;
    width: 100%;
}
.l-menu li {
    float: left;
    position: relative;
}
.l-menu a {
    color: var(--color-quaternary);
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.675rem;
    position: relative;
}

.l-menu li a {line-height: 2.1rem;}

.l-menu ul.navbar-nav a > i {
    display: inline-block;
    margin-left: 1rem;
    vertical-align: middle;
}

.dropdown-toggle::after {
    display: none;
}

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

.l-menu .o-info__user {
    display: none;
    padding: 1.5rem 0;
    position: relative;
}

.navbar-nav .dropdown-menu {
    background-color: transparent;
    padding: 0;
}

@media (min-width: 991px) {

    .l-menu {
        overflow: visible;
    }

    .l-menu, .collapse:not(.show) {
        display: inline-block;
        width: auto;
    }
    .l-menu .navbar-collapse {
        overflow: visible;
        text-align: right;
        width: 100%;
    }
    .l-menu ul.navbar-nav  {
        margin-top: 0;
        padding-top: 0;
        width: auto;
    }

    .l-menu ul.navbar-nav li {
        margin-left: 1.5rem;
        position: relative;
    }

    .l-menu ul.navbar-nav a {
        display: block;
        font-size: 1.6rem;
        padding: 2.5rem 1rem;
        position: relative;
        text-decoration: none;
    }

    .l-menu ul.navbar-nav div a.active,
    .l-menu ul.navbar-nav div a.active:hover,
    .l-menu ul.navbar-nav div a:hover {
        background-color: transparent;
        border-top-color: transparent;
        color: var(--color-primary);
    }

    .navbar-nav .dropdown-menu {
        border: 0 none;
        float: none;
        min-width: 240px;
        position: absolute;
        padding-top: 0;
        top: 6rem;
    }

    .dropdown-menu-box {
        background-color: var(--color-bkg);
        -webkit-border-radius: 1.5rem;
        -moz-border-radius: 1.5rem;
        border-radius: 1.5rem;
        padding: 1rem;
    }

    .dropdown-menu-box h2 {
        background-color: transparent;
        font-size: 1.5rem;
        margin: 0.5rem 0;
        padding: .5rem .5rem 1rem ;
    }

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

    .l-menu ul.navbar-nav .dropdown-menu-box a::before,
    .l-menu ul.navbar-nav .dropdown-menu-box a:hover::before {
        background-color: #CCC;
        height: .1rem;
        left: 0;
        width: 100%;
    }

    .l-menu ul.navbar-nav .dropdown-menu-box a:last-child::before {display: none;}

    .l-menu ul.navbar-nav .dropdown-menu-box a.dropdown-item--right {
        border-bottom: 0.1rem solid #ccc;
        padding: 1.5rem 1rem;
    }

    .l-menu ul.navbar-nav .dropdown-menu-box a.dropdown-item--right:last-child {
        border: 0 none;
    }

    .l-menu__mobile {display: none;}
}

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

/* 2.4. Page */

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

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

.l-page__titular {
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
}

.l-page__titular .l-page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
        flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 3.5rem 0 2rem;
}
.l-page__titular h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    margin: 0;
    min-height: 6rem;
    padding: 0 0 1rem 6rem;
    position: relative;
}

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

.l-page__content {
    padding: 5rem 0;
}

.l-page__content--white {
    background-color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.l-page__content--white h2 {
    color: var(--color-primary);
    font-size: 3.4rem;
    line-height: 4rem;
    margin: 0 0 3rem;
    text-align: center;
}

.l-page__content--blue {
    background-color: var(--color-primary);
}

.l-page__content--blue h2 {
    color: #fff;
    font-size: 3.4rem;
    line-height: 4rem;
    margin: 0 0 3rem;
    text-align: center;
}

.l-page__box {
    background-color: #fff;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-top: 0 none;
    box-shadow: 0 0 2rem rgba(0,0,0,0.15);
    overflow: hidden;
    padding: 3rem;
    text-align: center;
    width: 100%;
}

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

.o-box__description {
    -webkit-flex-flow: row wrap;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
}

.o-description__image {
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}
.o-description__image img {
    display: block;
    margin: 0 auto;
    max-width: 320px;
    width: 100%;
}
.o-description__detail {
    width: 100%;
}

.o-box__description p:last-child {margin-bottom: 0;}

.o-box__form {
    overflow: hidden;
    width: 100%;
}

.o-box__content {
    padding: 4rem 2rem;
}

.o-box__form .c-form {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
}

.o-box__error {
    background-color: var(--color-bkg);
    border: 1px solid var(--color-error);
    color: var(--color-error);
    display: inline-block;
    font-weight: bold;
    margin-bottom: 2rem;
    max-width: 1170px;
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.o-box__error p {
    color: var(--color-error);
    margin-bottom: 0;
}

.o-box__success {
    background-color: var(--color-bkg);
    border: 1px solid var(--color-success);
    color: var(--color-success);
    display: inline-block;
    font-weight: bold;
    margin-bottom: 2rem;
    max-width: 1170px;
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.o-box__success p {
    color: var(--color-success);
    margin-bottom: 0;
}

.o-box__title {
    margin-bottom: 3rem;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.o-box__title i {
    border: 2px solid #4baf4c;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #4baf4c;
    font-size: 2rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.o-box__title h3 {
    font-size: 2.2rem;
    margin: 0;
}

.o-title--h3 {margin: 0;text-align: left;}

.l-page__button {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}

.l-page__button-top {
    margin: 0 0 2rem;
}
.l-page__button--left {text-align: left;}
.l-page__button--right {text-align: right;}
.l-page__button--m30 {margin-top: 3rem;}

.o-box__text {
    margin: 2rem 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.o-box__text h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.o-box__text p {line-height: 1.5;}

@media (min-width: 768px) {
    .l-page__general {
        padding: 3.125rem 0;
    }
    .l-page__titular h2 {
        font-size: 4rem;
        line-height: 1.55;
    }
    .l-page__box {
        padding: 4rem;
        text-align: left;
    }

    .o-box__text h3, .o-box__title h3 {
        font-size: 3.2rem;
    }

    .o-description__image {width: 35%;}
    .o-description__detail {width: 63%;}

    .o-box__description--right .o-description__image {order: 2;}
    .o-box__description--right .o-description__detail {order: 1;}
}

.l-page__volver {
    overflow: hidden;
    padding: 1rem 0;
    text-align: left;
    width: 100%;
}

.l-page__data {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
}
.l-page__data p {font-size: 2rem;text-align: left;}

.o-data__info {
    border: 1px solid var(--color-primary);
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    border-radius: 2rem;
    min-height: 3rem;
    padding: 1rem 1rem 1rem 5rem;
    position: relative;
    max-width: 350px;
    width: 100%;
}
.o-data__info img {
    left: 1rem;
    position: absolute;
    top: 1rem;
}

.o-data__info p {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
}

@media (min-width: 768px) {
    .l-page__data {
        align-items: flex-end;
        -webkit-flex-flow: row wrap;
        display: -webkit-flex;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        width: 100%;
    }
    .l-page__data p {margin: 0;}
}

.l-page__info {
    font-size: 1.8rem;
    margin: 0;
    padding: 1.5rem;
    position: relative;
    text-align: center;
    width: 100%;
}

.l-page__info--icon {
    margin-top: 4rem;
    padding-top: 3.5rem;
}

.l-page__info h3 {
    line-height: 1.45;
    margin-bottom: 3rem;
}

.o-info__icon {
    left: 50%;
    margin-left: -43px;
    position: absolute;
    top: -43px;
}

.o-info__buttons {
    text-align: center;
}

.l-page__information .o-info__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
}

.o-info__buttons > div {
    margin-bottom: 1.2rem;
    overflow: hidden;
    width: 100%;
}

.l-page__shadow {
    margin: 1rem auto;
    padding: 2rem;
    width: 100%;
}

.l-page__shadow--small {
    max-width: 60rem;
}

@media only screen and (min-width: 768px){
    .l-page__shadow  {
        max-width: 68rem;
    }

    .l-page__shadow--small {
        max-width: 60rem;
    }
}

@media only screen and (min-width: 992px){
    .l-page__shadow {
        max-width: 90rem;
    }

    .l-page__shadow--small {
        max-width: 65rem;
    }
}

@media only screen and (min-width: 1280px){
    .l-page__shadow {
        max-width: 100%;
    }

    .l-page__shadow--small {
        max-width: 65rem;
    }
}

.l-page__section {
    overflow: hidden;
    padding: 1rem 0 3rem;
    position: relative;
    width: 100%;
}

.l-page__section--grey {
    background-color: var(--color-bkg);
}

.l-page__section--blue {
    background-color: var(--color-primary);
}

.l-page__title {
    margin: 0 auto 1rem;
    overflow: hidden;
    padding-top: 8vh;
    width: 100%;
}

.l-page__title .l-page__container {
    max-width: 110rem;
}

.l-page__title h1,
.l-page__title h2 {
    color: var(--color-primary);
    font-size: 3rem;
    margin: 0;
    text-align: center;
}

.l-page__title p {
    margin: 3rem 0 0;
    text-align: center;
}

@media (min-width: 768px) {
    .l-page__section {
        padding: 1.5rem 0 5rem;
    }

    .l-page__title {
        margin: 0 auto 3rem;
    }

    .l-page__title h2 {
        font-size: 3.5rem;
    }
}

.l-page__information {
    background-color: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-top: 0 none;
    box-shadow: 0 0 2rem rgba(0,0,0,0.15);
    margin: 0 auto;
    max-width: 70rem;
    overflow: hidden;
    padding: 4rem;
    text-align: center;
    width: 96%;
}

.l-page__information--big {
    max-width: 100rem;
}

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

.l-page__information h2 {
    font-size: 3.2rem;
    font-weight: 700;
}

.l-page__information h3 {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.l-page__information h4 {
    font-size: 2rem;
    margin-bottom: 3.5rem;
}

.l-page__information .o-info__buttons a,
.l-page__information .o-info__buttons button {
    margin: 1rem;
}

.l-page__information .o-info__buttons a {
    order: 2;
}

.l-page__information .o-info__buttons button {
    order: 1;
}

@media (min-width: 768px) {
    .l-page__information .o-info__buttons a {
        order: 1;
    }

    .l-page__information .o-info__buttons button {
        order: 2;
    }
}

.l-page__image {
    margin-top: 5rem;
    overflow: hidden;
    text-align: right;
    width: 100%;
}
.l-page__image img {
    display: inline-block;
    max-width: 100%;
}

.l-page__cartela {
    background: var(--color-bkg) url('../images/bkg_title.jpg') no-repeat scroll center center;
    background-size: cover;
    min-height: 14rem;
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.l-page__cartela h1 {
    color:  #fff;
    font-size: 3.6rem;
}

.l-page__cartela h2 {
    color:  #fff;
}

.l-page__points {
    overflow: hidden;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
}

.l-page__points h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.l-page__points ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    max-width: 72.4rem;
    width: 100%;
}

.l-page__points li {
    background-color: var(--color-primary);
    border: 0.4rem solid var(--color-primary);
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
    color: #fff;
    margin: 2% 1%;
    max-width: 28.5rem;
    padding: 2rem;
    width: 98%;
}

.l-page__points li:nth-child(2) {
    box-shadow: 4px 4px 8px var(--color-quaternary);
    margin: 1%;
}

.l-page__points h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.l-page__points span {
    font-size: 1.4rem;
    text-transform: uppercase;
}

.l-page__points h3 {
    font-size: 2.2rem;
}

.l-page__points strong {
    display: block;
    font-size: 3.4rem;
}

.l-page__points em {
    display: block;
    font-size: 1.8rem;
    font-style: normal;
    line-height: 1.85rem;
}

@media (min-width: 768px) {

    .l-page__cartela {
        min-height: 20rem;
        padding: 7.5rem 0 2.5rem;
    }

    .l-page__points li {
        width: 31%;
    }
}

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

/* 2.5. Footer */

.l-footer {
    background-color: var(--color-quaternary);
    min-height: 202px;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
    z-index: 10;
}
.l-footer__list {
    margin: 0;
    overflow: hidden;
    padding: 1rem 0;
    text-align: left;
    width: 100%;
}
.l-footer__list li {
    color: #fff;
    margin: 0 0 1rem;
    text-align: left;
    width: 100%;
}

.c-footer li a {
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
}

.c-footer li a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .l-footer {
        min-height: 72px;
    }

    .l-footer > .l-page__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        max-width: 140rem;
    }

    .l-footer__list {
        margin: auto;
        text-align: left;
        width: auto;
    }

    .l-footer__list li {
        margin-bottom: 0;
        width: auto;
    }

    .c-footer li {
        display: inline-block;
        margin: 0 1.5rem 0 0;
        padding-right: 1.5rem;
        position: relative;
        text-align: left;
    }

    .c-footer li::before {
        background-color: #fff;
        bottom: 50%;
        content: '';
        height: 1.4rem;
        margin-bottom: -0.7rem;
        position: absolute;
        right: 0;
        width: 0.1rem;
    }

    .c-footer li:last-child {
        margin: 0;
        padding-right: 0;
    }

    .c-footer li:last-child::before {
        display: none;
    }

}

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

/** 3. Componentes */

/* 3.1 Botones */

.c-btn {
    background-color: var(--color-secondary);
    border: .2rem solid var(--color-secondary);
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    color: #EFF2F7;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.4rem 3rem 1.1rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.c-btn:hover {
    background-color: var(--color-primary);
    border: .2rem solid var(--color-primary);
    color: #FFF;
    text-decoration: none;
}

.c-btn--underline {
    background-color: transparent;
    border-color: transparent;
    color: var(--color-secondary);
    text-decoration: underline;
}

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

.c-btn--back {
    background-color: transparent;
    border-color: transparent;
    color: var(--color-secondary);
    padding: 1.4rem 0 1.4rem 2rem;
    position: relative;
    text-decoration: back;
}

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

.c-btn--back::before {
    border: solid var(--color-secondary);
    border-width: 0 2px 2px 0;
    content: '';
    display: inline-block;
    left: 0;
    margin-right: 1rem;
    padding: 0.3rem;
    position: absolute;
    vertical-align: middle;
    top: 2rem;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.c-btn--back:hover::before {
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
}

.c-btn--border {
    background-color: transparent;
    background-image: none;
    border: .2rem solid var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}

.c-btn--border:hover {
    background-color: var(--color-primary);
    border: .2rem solid var(--color-primary);
    color: #fff;
}

.c-btn--disabled, .c-btn--disabled:hover, .c-btn--disabled:focus {
    background-color: #DDD;
    border: 0 none;
    color: #929292;
}

.c-btn--cancel {
    color: var(--color-error);
    text-decoration: underline;
    text-transform: inherit;
}

.c-btn--cancel:hover {color: #000;}

.c-button__mobile {
    display: inline-block;
    min-height: 5.2rem;
    overflow: hidden;
    position: absolute;
    right: 0;
    vertical-align: middle;
    top: 0;
}

.c-button__mobile button {
    color: var(--color-primary);
    padding: 1.5rem 1.2rem;
    outline: none;
}

.c-button__mobile button span {
    background-color: var(--color-primary);
    display: block;
    height: 0.3rem;
    margin: 6px 0;
    -webkit-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 3.5rem;
}

.c-button__mobile button:focus{
    outline: none;
}

.c-button__mobile i {font-size: 3.4rem;}

.c-button__mobile i.fa-times {display: none;}

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

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

/* 3.2 Listas */

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

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

.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(--color-primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    display: block;
    height: 0.5rem;
    left: 0;
    position: absolute;
    top: .7rem;
    width: 0.5rem;
}

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

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

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

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

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

/* 3.3 Colores */

.c-color--red {color: var(--color-error);}
.c-color--green {color: var(--color-secondary)};

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

/* 3.4 Enlaces */

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

.c-link--mailto:hover {
    text-decoration: underline;
}

.c-link--table {
    color: var(--color-secondary);
    text-decoration: none;
}

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

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

/* 3.5 Tablas */

.c-table--small {
    max-width: 400px;
    width: 100%;
}

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

.c-table td .c-btn i {
    margin-left: 0;
    margin-right: .4rem;
}

.desktop_view {display: none;}

.mobile_view {display: none;}

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

/* 3.5.1 Datatable */

table.c-table.dataTable thead th {
    border-bottom: .1rem solid var(--color-primary);
    padding-bottom: 1.4rem;
    padding-left: 1rem;
    padding-top: 1.4rem;
}

table.c-table.dataTable tbody td {
    padding: 1.2rem 1rem;
}

table.c-table.dataTable thead .sorting:before,
table.c-table.dataTable thead .sorting:after,
table.c-table.dataTable thead .sorting_asc:before,
table.c-table.dataTable thead .sorting_desc:after,
table.c-table.dataTable thead .sorting_asc:after,
table.c-table.dataTable thead .sorting_desc:before {display: none;}

table.c-table.dataTable.no-footer {border-bottom: 0 none;}

.o-general__content {
    padding: 3rem;
}

.o-general__content h2.center {
    text-align: center;
}

.o-general__content h3 {
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.o-general__content table.dataTable tbody tr {
    background-color: transparent;
}

.o-general__content .dataTables_wrapper .dataTables_info {
    color: var(--font-color-primary);
    font-size: 1.2rem;
    width: 100%;
}

.o-general__content .dataTables_wrapper .dataTables_paginate {
    text-align: right;
    width: 100%;
}

.o-general__content .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.o-general__content .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: transparent none no-repeat scroll 0 0;
    -webkit-box-shadow: 0 0 0;
    -moz-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    border: 0;
    color: var(--color-primary)!important;
    font-size: 1.8rem;
    font-weight: bold;
}

.dataTables_paginate span {
    overflow: hidden;
}

.dataTables_paginate span a {display: inline-block;padding: .8rem!important;}

.o-general__content .dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 0 none!important;
    color: var(--font-color-secondary)!important;
    font-size: 1.5rem;
    font-weight: normal;
}

.o-general__content .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: transparent none no-repeat scroll 0 0;
    -webkit-box-shadow: 0 0 0;
    -moz-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    color: var(--color-primary)!important;
}

.o-general__content .dataTables_wrapper .dataTables_paginate > .paginate_button {
    background-color: var(--color-secondary);
    color: #fff!important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 3.2rem;
    padding: 0.8rem 0 0;
    width: 3.2rem;
}

.o-general__content .dataTables_wrapper .dataTables_paginate > .paginate_button:hover {
    background-color: var(--color-primary);
    color: #fff!important;
}

.o-general__content .o-general__content .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.o-general__content .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: var(--color-tertiary)!important;
}

.dataTables_wrapper .dt-buttons {
    float: right;
    margin-bottom: 1rem;
    text-align: right;
}
.dataTables_wrapper .dt-buttons button {
    background-color: transparent;
    border: 0 none;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: var(--color-secondary);
    cursor: pointer;
    font-size: 1.4rem;
    padding: 1rem;
}

.dataTables_wrapper .dt-buttons button:hover {
    color: var(--color-primary);
}

.dataTables_wrapper .dt-buttons button i {
    margin-right: 0.5rem;
}

[id="user_filter"] {
    overflow: visible;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
    text-align: left!important;
    width: 100%;
}

.dataTables_wrapper .dataTables_filter[id="user_filter"] {
    align-items: flex-end;
    border-radius: 0;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    padding: 0.5rem 1% 0;
    width: 100%;
}

[id="user_filter"] label {
    align-items: center;
    background-color: #fff;
    border: 0;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
    display: flex;
    flex-flow: row;
    float: none;
    gap: 1rem;
    justify-content: space-between;
    margin: 0;
    max-width: 100%;
    min-width: 20rem;
    overflow: hidden;
    padding: 0.8rem;
    position: relative;
}

[id="user_filter"] label i {
    position: absolute;
    right: 1rem;
    top: .8rem;
}
[id="user_filter"] label input {
    background-color: transparent;
    border: 0 none;
    font-size: 1.3rem;
    margin-left: 0!important;
    min-width: 18rem;
    text-align: left;
}

@media (min-width: 768px) {
    [id="user_filter"] {
        width: auto;
    }
}

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

/* 3.6 Imagen */

.c-img--left {float: left;margin-right: 1rem;}

.c-img--right {float: right;margin-left: 1rem;}

.c-img--ranking {
    display: block;
    margin: 0 auto;
    max-width: 100%
}

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

/* 3.7 Select */

.c-select {
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    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;
    overflow: hidden;
    border: 0.1rem solid var(--color-tertiary);
    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-secondary);
    line-height: 1.1;
    margin: 0;
    outline: medium none;
    overflow: hidden;
    padding: 1.5rem 5.5rem 1.5rem 1.5rem;
    width: 100%;
}
.c-select select:focus {
    background-color: transparent;
}

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

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

/* 3.9 Modal */

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

.c-modal--newsletter .c-modal__header {
    padding-bottom: 0;
}

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

.c-modal__body {
    background-color: #fff;
    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 {
    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%;
}

@media (min-width: 768px) {}

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

.c-boxes {
    background-color: rgba(255,255,255,0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.c-modal .c-boxes {
    min-height: 32rem;
}

.boxes {
    height: 32px;
    width: 32px;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    margin-top: 32px;
    -webkit-transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
    transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}

.boxes .box {
    width: 32px;
    height: 32px;
    top: 0px;
    left: 0;
    position: absolute;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.boxes .box:nth-child(1) {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-animation: box1 1s linear infinite;
    animation: box1 1s linear infinite;
}

.boxes .box:nth-child(2) {
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-animation: box2 1s linear infinite;
    animation: box2 1s linear infinite;
}

.boxes .box:nth-child(3) {
    -webkit-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
    -webkit-animation: box3 1s linear infinite;
    animation: box3 1s linear infinite;
}

.boxes .box:nth-child(4) {
    -webkit-transform: translate(200%, 0);
    transform: translate(200%, 0);
    -webkit-animation: box4 1s linear infinite;
    animation: box4 1s linear infinite;
}


.boxes .box > div {
    background: var(--color-primary);
    --translateZ: 15.5px;
    --rotateY: 0deg;
    --rotateX: 0deg;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    -webkit-transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
    transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}

.boxes .box > div:nth-child(1) {
    top: 0;
    left: 0;
    background: var(--color-primary);
}
.boxes .box > div:nth-child(2) {
    background: var(--color-quaternary);
    right: 0;
    --rotateY: 90deg;
}
.boxes .box > div:nth-child(3) {
    background: #447cf5;
    --rotateX: -90deg;
}
.boxes .box > div:nth-child(4) {
    background: #DBE3F4;
    top: 0;
    left: 0;
    --translateZ: -90px;
}

@keyframes box1 {
    0%,
    50% {
        transform: translate(100%, 0);
    }
    100% {
        transform: translate(200%, 0);
    }
}

@keyframes box2 {
    0%{
        transform: translate(0, 100%);
    }
    50% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100%, 0);
    }
}

@keyframes box3 {
    0%,
    50% {
        transform: translate(100%, 100%);
    }
    100% {
        transform: translate(0, 100%);
    }
}

@keyframes box4 {
    0%{
        transform: translate(200%, 0);
    }
    50% {
        transform: translate(200%, 100%);
    }
    100% {
        transform: translate(100%, 100%);
    }
}

/* 3.11 Box */

.c-box {
	border: 0 none;
	margin: 0 0 1.5rem;
}

.c-box > h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.c-box > .o-general__content {
    background-color: var(--color-bkg);
}

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

/* 3.12 Cartela */

.c-cartela__content {
    max-width: 50rem;
    overflow: hidden;
    padding: 3rem 1rem 4rem;
    width: 100%;
}

.c-cartela__content h2 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 400;
    margin: 0 0 2rem;
}

.c-cartela__content h2 span {
    font-weight: bold;
}
.c-cartela__content h2 em {
    color: var(--color-primary);
    display: block;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
}

.c-cartela__content p {
    color: #fff;
    font-size: 2rem;
}

@media (min-width: 768px) {
    .c-cartela__content {
        max-width: 55rem;
        padding: 6rem 0 8rem 5rem;
    }
}

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

/* 3.13 Top */

.c-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    overflow: hidden;
    padding-top: 6vh;
    position: relative;
    width: 100%;
    z-index: 1;
}

.c-top--image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.c-top h2 {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.c-top--large h2 {
    font-weight: 600;
}

.c-top__text {
    padding: 0 0 1.5rem;
    width: 100%;
}

.c-top__text p {
    font-size: 2rem;
    max-width: 50rem;
    width: 100%;
}

.c-top__image {
    display: none;
}

.c-info {
    background-color: var(--color-quaternary);
    border-radius: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #fff;
    padding: 2rem 2rem;
    position: relative;
    margin: 0 auto;
    max-width: 96rem;
    width: 100%;
    z-index: 1;
}

.c-info > div {
    padding: 1rem;
}

.c-info h2,
.c-info p {
    color: #fff;
}

.c-info h2 {
    font-size: 2.2rem;
}

.c-info p {
    font-size: 1.6rem;
}

.c-info__points > p:first-child {
    font-size: 1.8rem;
}

.c-info__points > p b {
    font-size: 2.2rem;
}

.c-info p:last-child {
    margin: 0;
}

.c-info a {
    color: #fff;
    font-weight: bold;
}

.c-info a:hover {
    color: #000;
}

.c-info__profile {
    border-bottom: 0.1rem solid #fff;
    width: 100%;
}

.c-info__points {
    width: 100%;
}

@media (min-width: 768px) {
    .c-top__text {
        padding: 0 2rem 2.5rem;
        width: 50%;
    }

    .c-top__image {
        display: block;
        max-width: 48%;
        width: 100%;
    }

    .c-top h2 {
        font-size: 3.4rem;
        margin-bottom: 3rem;
    }

    .c-top--large h2 {
        font-weight: 600;
        padding: 2rem 0 0;
    }

    .c-top--large .c-top__text {
        flex-grow: 999;
    }

    .c-top--large .c-top__image {
        flex-grow: 1;
    }

    .c-info__profile {
        border-bottom: 0 none;
        border-right: 0.1rem solid #fff;
        width: 70%;
    }

    .c-info__points {
        text-align: right;
        width: 30%;
    }

}

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

/* 3.14 Component blue */

.c-blue {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

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

.c-notices {
    background-color: #fff;
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    margin: 0 0 1.5rem;
    padding: 3.5rem 2.5rem;
    position: relative;
}

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

.c-notices__content {
    height: 31rem;
    overflow: auto;
    overflow: overlay;
    width: 100%;
}

.c-notices__content::-webkit-scrollbar {
    border-radius: 0.5rem;
    display: initial;
    height: 10px;
    background-color: lightblue;
    width: 0.5rem;
}

.c-notices__content:hover::-webkit-scrollbar {
    display: initial;
}

.c-notices__content::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
}

.c-notices__description {
    border-bottom: 0.1rem solid var(--color-bkg);
    overflow: hidden;
    padding: 2rem 1.5rem 2rem 0;
    position: relative;
    width: 100%;
}

.c-notices__description:last-child {
    border-bottom: 0 none;
}

.c-notices__description--image {
    padding: 2rem 1.5rem 2rem 14.5rem;
}

.c-notices__images {
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    height: 12.2rem;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 2rem;
    width: 12.2rem;
}

.c-notices__images img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.c-notices__date {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.l-page__expire {
    background-color: #0244c8;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    font-size: 1.6rem;
    list-style: outside none none;
}

.l-page__expire {
    padding: 1.2rem;
}

.l-page__expire p {
    line-height: 1.8;
    margin-bottom: 0;
}

.l-page__content--blue .c-challenges {
    background-attachment: scroll;
    background-color: var(--color-bkg);
    background-repeat: no-repeat;
    background-position: right bottom;

    -webkit-background-size: cover;
    background-size: cover;
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    padding: 6rem;
    position: relative;
}

.l-page__content--blue .c-challenges::before {
    background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );

    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;

    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.l-page__content--blue .c-challenges p {
    color: #fff;
    position: relative;
    text-transform: uppercase;
}

.l-page__content--blue .c-challenges h3 {
    color: #fff;
    margin-bottom: 4rem;
    position: relative;
}

@media (min-width: 768px) {
    .c-blue--2 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    }
    .c-blue--2 > div.c-notices {
        margin: 0;
        width: 45%;
    }

    .c-blue--2 > div.c-challenges {
        width: 53%;
    }
}

/** 3.15. Help banner */

.c-contactbox {
    display: none;
}

@media (min-width: 991px) {
    .c-contactbox {
        background: transparent url('../images/contact_box_small.png') no-repeat scroll 0 0;
        cursor: pointer;
        display: block;
        height: 8.4rem;
        overflow: hidden;
        padding: 0.5rem 1rem;
        position: fixed;
        right: 0;
        top: 50%;
        width: 11.6rem;
        z-index: 10;
    }

    .c-contactbox__small {
        overflow: hidden;
        padding-top: 0.4rem;
        width: 100%;
    }

    .c-contactbox h2 {
        color: var(--color-primary);
        font-size: 1.6rem;
        text-align: center;
    }

    .c-contactbox h3 {
        color: var(--color-primary);
        font-size: 1.5rem;
        margin: 0;
    }

    .c-contactbox p {
        color: var(--color-primary);
        font-size: 1.4rem;
    }

    .c-contactbox p:last-child {
        margin: 0;
    }

    .c-contactbox.c-contactbox--open {
        background: transparent url('../images/contact_box_big.png') no-repeat scroll 0 0;
        height: 17.5rem;
        width: 29.6rem;
    }

    .c-contactbox.c-contactbox--open .c-contactbox__small {
        display: none;
    }

    .c-contactbox__big {
        display: none;
        text-align: center;
    }

    .c-contactbox.c-contactbox--open .c-contactbox__big {
        display: block;
    }

    .robot-container {
        z-index: 2;
        position: fixed;
        display: flex;
        left: 0;
        top: 45%;
        width: 15rem;
        cursor: pointer;
    }
    .robot-ayuda {
        width: 14rem;
        /*filter: drop-shadow(2px 2px 4px #222);*/
    }
}

@media (max-width: 991px) {
    .robot-container {
        display: none;
    }
}

/** 3.16. Info tech */

.c-tech {
    background-color: rgba(134, 207, 234, 0.5);
    color: var(--color-primary);
    left: 0;
    padding: 0.8rem;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 2;
}

.c-tech p {
    font-family: var(--font-text-secondary);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
}

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

/* 3.17 Featured */

.c-featured {
    display: none;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2%;
    left: auto;
    position: relative;
    top: auto;
    transition: all 5s ease 0s;
    width: 100%;
    z-index: 100;
}

.c-featured__box {
    background-color: #86CFEA;
    border-radius: 0 0 2rem 2rem;
    padding: 1.2rem 2rem 0;
    position: relative;
    transition: all 0.5s ease-in-out 0s;
    width: 31%;
}

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

@media (min-width: 991px) {
    .c-featured {
        gap: 2rem;
    }

    .c-featured__box {
        width: 32rem;
    }
}

.c-featured__box.show {
    border-radius: 0;
}

.c-featured__title {
    border-bottom: 0.1rem solid transparent;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 0.2rem;
    padding-bottom: 1rem;
    position: relative;
    transition: all 0.5s ease 0s;
}

.c-featured__box.show .c-featured__title {
    border-bottom: 0.1rem solid #fff;
}

.c-featured__title img {
    height: 2.7rem;
}

.c-featured__title h2 {
    color: #fff;
    height: 2.7rem;
    line-height: 1.7;
    margin: 0;
}

.c-featured__content {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
}

.c-featured__image {
    border-radius: 2rem;
    flex-basis: 8.8rem;
    flex-grow: 1;
}

.c-featured__image img {
    display: block;
    width: 100%;
}

.c-featured__description {
    flex-basis: 0;
    flex-grow: 999;
}

.c-featured__description p {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.c-featured__description li {
    font-size: 1.6rem;
    font-weight: bold;
    padding-left: 2rem;
    position: relative;
}

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

.c-featured__description p.c-featured__date {
    font-size: 1rem;
}

.c-featured__button {
    overflow: hidden;
    padding-top: 1rem;
    text-align: center;
    width: 100%;
}

.c-featured__button .c-btn {
    padding: 1.1rem 3rem 0.8rem;
}
  
/* Aplica la animación a .c-featured__show */
.c-featured__show {
    border-radius: 0 0 2rem 2rem;
    margin-top: 1rem;
    overflow: hidden;
    opacity: 0;
    padding: 2rem;
    position: absolute;
    background-color: #86CFEA;
    left: 0;
    top: -50rem;
    width: 100%;
}

/* Estilo para el contenido cuando se muestra */
.c-featured__box.show .c-featured__show {
    opacity: 1;
    overflow: hidden;
    transition: all 0.5s ease-in-out, opacity 0.5s ease-in-out;
    top: 4.2rem;
}

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

/** 4. Paginas */

.p-estatica__box {
    border-bottom: 0.1rem solid var(--color-bkg);
    margin-bottom: 3.5rem;
    overflow: hidden;
    padding-bottom: 3.5rem;
    position: relative;
    width: 100%;
}

.p-estatica__box .table-responsive {margin: 3rem 0;}

.p-estatica__box h3 {margin-bottom: 2rem;}

.p-estatica__box h4 {margin-bottom: 1.5rem;}

.p-estatica__box h5 {font-size: 1.6rem; margin-bottom: 1.5rem;}

.p-estatica__box p, .p-estatica__box li {
    font-size: 1.6rem;
}
.p-estatica__box p:last-child {margin-bottom: 0;}

.p-estatica__box p.small {
    font-size: 75%;
}

.txt-center {text-align: center;}

/* 4.2. Fixed */

.p-fixed {
    padding-top: 10rem;
}

.p-fixed .l-header {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.p-fixed .l-header__content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    width: 100%

}

@media (min-width: 991px) {
    .p-fixed {
        padding-top: 7.7rem;
    }
    .p-fixed.p-user {
        padding-top: 10.8rem;
    }
}

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

/** 5. Base */

/* 5.1 Body fixed */

.body--fixed {
    overflow: hidden;
}

.body--fixed .c-button__mobile button span.bar1 {
    -webkit-transform: rotate(-45deg) translate(-7px, 6px);
    transform: rotate(-45deg) translate(-7px, 6px);
    background-color: #fff;
}

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

.body--fixed .c-button__mobile button span.bar3 {
    -webkit-transform: rotate(45deg) translate(-7px, -6px);
    transform: rotate(45deg) translate(-7px, -6px);
    background-color: #fff;
}

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

.body--fixed .c-button__mobile i {color: #fff;}

.body--fixed .o-info__user {
    background-color: var(--color-pr);
    display: block;
    padding: 1.5rem;
    width: 100%;
    border-bottom: 0.1rem solid #fff;
}

.body--fixed  .l-menu .o-info__user li {
    border: 0 none;
    color: #fff;
    display: inline-block;
    margin: 0 0 1.5rem;
    width: 100%;
}

.body--fixed  .l-menu .o-info__user li:last-child {
    margin: 0;
}

.body--fixed  .l-menu .o-info__user li a {
    border: 0 none;
    color: #fff;
    display: inline;
    font-size: 1.6rem;
    padding: 0;
    text-decoration: none;
}

.body--fixed  .l-menu .o-info__user li a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.body--fixed  .l-menu .o-info__user li a i {
    margin-right: 1rem;
}

.body--fixed .o-info__user i.fa-chevron-down {
    right: 1rem;
}

.body--fixed .l-menu {
    align-items: self-start;
    background-color: var(--color-primary);
    display: flex;
    flex-flow: column;
    height: calc(100% - 6.6rem);
    left: 0;
    margin: 0;
    overflow-y: auto;
    padding: 0;
    position: fixed;
    top: 6.6rem;
    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;
}

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

/***********************************HEADER********************************************/


/*****************************************COOKIES */
#cookie-law {
    background: rgba(255, 255, 255, 0.95);
    border: 0 none;
    bottom: 0;
    color: var(--font-color-primary);
    font-family: var(--font-text-primary);
    font-size: 1.5;
    left: 0;
    margin: 0 auto;
    padding: 3rem;
    position: fixed;
    right: 0;
    text-align: center;
    width: 100%;
    z-index: 50;
}

#cookie-law p {color: var(--font-color-primary); font-size: 1.7rem;}

#cookies{
    display:none;
    background-color: #222222;
    color: #cccccc;
    padding: 10px;
    position: absolute;
    bottom: 0;
    max-width:900px;
    margin: auto;
    display: block;
    left: 0;
    right: 0;
}

#cookie-law p a {color: var(--font-color-primary);font-weight: bold;text-decoration: underline;}

.message__warning {
    font-size: 2rem;
    border: 3px solid rgba(70, 63, 63, 0.2);
    padding: 1rem;
    border-radius: 10px;
    background-color: rgba(230, 41, 132, 0.2);
    margin-top: 1rem;
    display: block;
}