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

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

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

/** 0. Root */

:root {
	--color-primary: #009ddd;
	--color-secondary: #0082b7;
	--color-tertiary: #c30080;
    --color-grey: #f1f1f1;
	--color-border-input: #C4C4C4;
	--font-text-primary: 'Roboto', sans-serif;
	--font-color-primary: #666;
}

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

/** 1. Base */

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

body {
    background: #f7f7f7 none no-repeat scroll 0 0;
    color: var(--font-color-primary);
    font-family: var(--font-text-primary);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.25;
    position: relative;
    margin: 0;
    padding: 0;
}

/* * {
    margin: 0;
    padding: 0;
} */

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

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

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

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

b, strong {font-weight: bold;}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #FFF;
    font-weight: 700;
    margin: 0 0 1rem;
}

h1, h2, h3, h4, h5, h6 {font-family: var(--font-text-primary);}
h3 {font-size: 2.5rem;}
h4 {font-size: 1.8rem;}

ul, li {
    font-size: 1.5rem;
    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: #FFF;
    border: 1px solid #CCC;
    color: var(--font-color-primary);
    font-size: 1.4rem;
    padding: 1rem;
    width: 100%;
}

input[type="file"] {
    border: 0.1rem solid #ccc;
    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: 1px solid var(--color-tertiary);
    outline: 0;
}

input[type="text"].readonly,
input[type="password"].readonly,
input[type="email"].readonly {
    background-color: #efefef;
}

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

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

#selectProducto {
    text-transform: uppercase;
}

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

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

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

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

/** 2. Layout */

/* 2.1. General */

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

body > .l-container::after {
    clear: both;
    content: "";
    display: block;
    height: 72px;
}

.d-none {
    display: none !important;
}

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

/* 2.2. Header */

.l-header {
    background-color: #FFFFFF;
    border-bottom: .2rem solid #e1e0e0;
    border-top: .6rem solid var(--color-primary);
    min-height: 61px;
    position: relative;
    width: 100%;
}

.l-header .l-page__container {}

.l-header__logo {
    float: left;
    max-width: 106px;
    padding: 1.5rem 0 0;
}
.l-header__logo img {
    display: block;
    width: 100%;
}

.l-header__logout {
    display: none;
}

.l-header__logout a {
    color: var(--color-secondary);
    font-size: 1.3rem;
    position: absolute;
    right: 2rem;
    top: 1rem;
}

.l-header__logout a:hover {
    color: var(--color-tertiary);
}

.l-header__logout i {margin-right: 1rem;}

@media (min-width: 992px) {
    .l-header {
        min-height: 61px;
    }
    .l-header .l-page__container {
        overflow: hidden;
        position: relative;
    }
    .l-header__logo {
        padding: 2rem 0 1rem;
    }
    .l-header__logout {
        display: block;
    }
}

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

/* 2.3. Menu */

.l-menu {
    display: none;
}
.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 {
    border-bottom: .4rem solid transparent;
    color: var(--color-primary);
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem;
    position: relative;
    text-transform: uppercase;
}

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

.l-menu a i {margin-right: 1rem}
.l-menu__logout a {color: #acacac;}

@media (min-width: 991px) {
    .l-menu, .collapse:not(.show) {display: block;}
    .l-menu ul {margin-block: 0;width: auto;}
    .l-menu li {padding-left: 2rem;}
    .l-menu a {
        color: var(--color-primary);
        padding: 2rem .6rem;
    }
    .l-menu a:hover, .l-menu a.active {
        color: var(--color-primary);
    }
    .l-menu__logout a {color: var(--color-tertiary);}
}

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

/* 2.4. Page */

.l-page {
    overflow: hidden;
    /*padding-bottom: 2rem;*/
    width: 100%;
}
.l-page__container {
    margin: 0 auto;
    max-width: 120rem;
    width: 94%;
}

.l-page__titular {
    margin: 1.5rem 0 1.5rem;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.l-page__titular .l-page__container {}
.l-page__titular h2 {
    color: var(--color-tertiary);
    font-size: 2.8rem;
    letter-spacing: .1rem;
    line-height: 1.55;
    margin: 0;
    position: relative;
}

.l-page__content {
    padding-bottom: 2rem;
}

.l-page__general {}

.l-page__box {
    overflow: hidden;
    padding: 2rem 0;
    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: #f8f8f8;
    border: 1px solid #c80028;
    color: #c80028;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 2rem;
    max-width: 1170px;
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.o-box__error p {
    color: #c80028;
    margin-bottom: 0;
}

.o-box__success {
    background-color: #f8f8f8;
    border: 1px solid #4b915d;
    color: #4b915d;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 2rem;
    max-width: 1170px;
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.o-box__success p {
    color: #4b915d;
    margin-bottom: 0;
}

.o-box__title {
    margin-bottom: 3rem;
    overflow: hidden;
    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 {
    color: var(--font-color-primary);
    font-size: 2.2rem;
    margin: 0;
}

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

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

.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 {
    color: var(--font-color-primary);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
    .l-page__general {
        padding: 5rem 0;
    }
    .l-page__titular {
        margin: 5rem 0 3rem;
    }
    .l-page__titular h2 {
        font-size: 3.8rem;
    }
    .l-page__box {
        padding: 0;
        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;}
}

@media (min-width: 992px) {
    .l-page__titular--catalogo {
        background-position: center -177px;
    }
    .l-page__titular--cuenta {
        background-position: center -100px;
    }
}

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

.l-page__data {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 1.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 {
    background-color: #FFF;
    -webkit-border-radius: 2rem;
    border-radius: 2rem;
    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;
}
.o-info__buttons > div {
    margin-bottom: 1.2rem;
    overflow: hidden;
    width: 100%;
}

.l-page__shadow {
    background-color: #FFF;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 1rem auto;
    padding: 2rem;
}

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

.l-page__shadow--green {background-color: #e9f5e9;}

    .l-page__shadow {
        max-width: 900px;
    }

    .l-page__shadow--small {
        max-width: 650px;
    }

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

/* 2.5. Footer */

.l-footer {
    background-color: var(--color-grey);
    margin-top: -72px;
    min-height: 72px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 10;
}
.l-footer__list {
    margin: 0;
    overflow: hidden;
    padding: 2.6rem 0;
    text-align: center;
    width: 100%;
}
.l-footer__list li {
    color: var(--font-color-primary);
    display: inline-block;
    margin: 0 1.2rem 0 0;
    padding-right: 1.2rem;
    position: relative;
    text-align: center;
}
.l-footer__list a {
    color: var(--font-color-primary);
    display: block;
    font-size: 1.3rem;
    padding: 0;
}
.l-footer__list a:hover {text-decoration: underline;}

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

/** 3. Componentes */

/* 3.1 Botones */

.c-btn {
    background-color: var(--color-primary);
    border: 0 none;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.4rem 2.5rem;
    text-align: center;
    text-transform: uppercase;
}
.c-btn:hover {
    background-color: var(--color-secondary);
    background-image: none;
    color: #FFF;
    text-decoration: none;
}

.c-btn i {margin-right: 1rem;}

.c-btn--white {
    background-color: #FFF;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.c-btn--white:hover {background-color: var(--color-primary);color: #FFF;}

.c-btn--upload {
    background-color: #efeded;
    background-image: none;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    color: var(--font-color-primary);
    min-width: 30rem;
    padding: 3rem 6rem;
    text-transform: none;
}
.c-btn--upload:hover {background-color: #dcdcdc;color: var(--color-primary);}
.c-btn--upload i {
    margin: 0 0 0 1rem;
}

.c-btn--border {
    background-color: #FFF;
    background-image: none;
    border: 2px solid var(--font-color-primary);
    color: var(--font-color-primary);
}

.c-btn--border:hover {
    background-color: var(--font-color-primary);
    background-image: none;
    color: #FFF;
}

.c-btn--cancel {
    color: #c80028;
    text-decoration: underline;
    text-transform: inherit;
}

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

.c-btn--volver {
    color: var(--font-color-primary);
    font-weight: bold;
}

.c-btn--volver i {margin-right: 1rem;}
.c-btn--volver:hover {
    color: var(--font-color-primary);
    text-decoration: none;
}

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

.c-button__mobile button {
    color: #FFFFFF;
    padding: 0.8rem;
    outline: none;
}
.c-button__mobile button:focus{
    outline: none;
}
.c-button__mobile i {font-size: 3.4rem;}
.c-button__mobile i.fa-bars {
    color: var(--color-tertiary);
}
.c-button__mobile i.fa-times {display: none;}

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

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

/* 3.2 Listas */

.c-list {
    overflow: hidden;
    width: 100%;
}
.c-list li {
    color: var(--font-color-primary);
    margin: 0 0 1rem;
    position: relative;
}

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

.c-list--points {}
.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: .6rem;
    width: 0.5rem;
}

.c-list--points ul {margin-top: 1.2rem;}
.c-list--points ul li::before {
    background-color: #FFF;
    border: 1px 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 {}
.c-color--red {color: #c80028;}
.c-color--yellow {color: var(--color-primary);}

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

/* 3.4 Enlaces */

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

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

/* 3.5 Tablas */

.c-table {}
.c-table thead th, .c-table tbody td {
    background-color: #EEE;
    padding: 1.4rem 0.5rem;
    vertical-align: middle;
}

.c-table thead th {
    border-bottom: 1px solid #eeeeee;
    border-top: 1px solid #eeeeee;
    color: var(--color-primary);
}

 .c-table tbody td {
    background-color: #f8f8f8;
    color: var(--font-color-primary);
 }

.c-table__center {text-align: center;}
.c-table__left {text-align: left;}
.c-table__right {text-align: right;}

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

.c-table .c-table__links:hover {color: var(--font-color-primary);text-decoration: none;}

.c-table td .c-btn {
    display: inline-block;
    font-size: 1.3rem;
    margin: 0 0.6rem;
    padding: 1.2rem 1.6rem;
}
.c-table td .c-btn i {
    margin-left: 0;
    margin-right: 0.4rem;
}
.c-table td .c-btn--download {min-width: 136px;}

.desktop_view {display: none;}
.mobile_view {display: none;}

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

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

/* 3.6 Imagen */

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

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

/* 3.7 Select */

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

.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 right top;
    background-size: auto 100%;
    content: "";
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0 5px 5px 0;
}

.c-select select {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -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;
    line-height: 1.1;
    margin: 0;
    outline: medium none;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
}

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

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

/** 5. Base */

/* 5.1 Body fixed */

.body--fixed {
    overflow: hidden;
}
.body--fixed .l-menu {background-color: #FFFFFF;display: flex;}
.body--fixed i.fa-bars {display: none;}
.body--fixed i.fa-times {display: block;}

.body--fixed .c-button__mobile {background-color: #FFFFFF;}
.body--fixed .c-button__mobile i {color: var(--color-tertiary);}
.body--fixed .l-menu {
    align-items: self-start;
    height: calc(100% - 6.2rem);
    left: 0;
    margin: 0;
    overflow-y: auto;
    padding: 2rem 0 0;
    position: fixed;
    top: 6.2rem;
    width: 100%;
    z-index: 1000;
}

.body--fixed .l-menu li {
    width: 100%;
}

.body--fixed .l-menu a {border-bottom-color: #EEE;padding: 1.6rem;}

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


/*****************************************COOKIES */
#cookie-law {
    background: rgba(0, 0, 143,0.90);
    border: 0 none;
    bottom: 0;
    color: #FFF;
    font-family: arial , sans-serif;
    font-size: 1.5;
    left: 0;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 50;
}

#cookie-law p {color: #FFF;margin: 0 0 2rem;}

#cookie-law #rejectCookies {
    text-decoration: none;
}

#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 a {color: #FFF;font-weight: bold;text-decoration: underline;}


@media (max-width: 991px) {
    .l-page {overflow-x: auto;}
}