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

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

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

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

:root {
	--color-primary: #0f77ae;
	--color-secondary: #009ddd;
	--color-tertiary: #D74114;
    --color-grey: #f1f1f1;
    --color-bkg: #F7F7F7;
	--color-border-input: #C4C4C4;
	--font-text-primary: 'Roboto', sans-serif;
	--font-color-primary: #3D3D3D;
}

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

/** 1. Base */

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

body {
    background: var(--color-bkg) 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;
}

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[type="text"], input[type="password"], input[type="email"], textarea, select {
    background-color: #FFF;
    border: 0.1rem solid var(--color-primary);
    border-radius: 0.5rem;
    color: var(--font-color-primary);
    font-size: 1.4rem;
    padding: 1.5rem 1.25rem;
    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: 0.1rem solid var(--color-tertiary);
    outline: 0.2rem solid #FFD700;
    outline-offset: 0.2rem;
}

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

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

a:focus, button:focus, .custom-button:focus {
    outline: 3px solid #FFD700;
    outline-offset: 3px;
}

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

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

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

@media (min-width: 768px) {
    body > .l-container::after {
        height: 7.2rem;
    }
}

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

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

/* 2.2. Header */

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

.l-header__logo {
    float: left;
    max-width: 21rem;
    padding: 1rem 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: 991px) {
    .l-header {
        min-height: 6.1rem;
    }
    .l-header .l-page__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 2rem;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
        overflow: visible;
        position: relative;
    }
    .l-header__logo {
        max-width: 28rem;
        padding: 1rem 0;
    }
    .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;
}

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

.l-menu a svg {
    height: 1.8rem;
    margin-right: 1rem;
}
.l-menu__logout a {
    align-items: center;
    color: var(--color-tertiary);
    display: flex;
}

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

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

    .l-menu .l-menu__logout a:hover {
        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: 4.5rem 0 1.5rem;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
    width: 100%;
}

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

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

.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--sm {
    max-width: 600px;
}

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

.p-upload .o-box__success p {
    margin: 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 svg {
    color: #4baf4c;
}

.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 h2,
.o-box__text h3 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-block: 1rem 3rem;
}

.o-title--h3 {
    color: var(--color-primary);
}

.o-box__text h6,
.o-box__text > p {
    color: var(--font-color-primary);
    font-weight: normal;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    max-width: 60ch;
    margin-inline: auto;
}

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

@media (min-width: 768px) {
    .l-page__general {
        padding: 5rem 0;
    }
    .l-page__titular {
        margin: 4rem 0 3rem;
    }
    .l-page__titular h1,
    .l-page__titular h2 {
        font-size: 3.8rem;
    }
    .l-page__box {
        padding: 0;
        text-align: left;
    }

    .o-box__text h2,
    .o-box__title h2,
    .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: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    margin: 1rem auto;
    padding: 3rem;
}

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

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

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

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

/* 2.5. Footer */

.l-footer {
    background-color: var(--color-bkg);
    margin-top: -27.5rem;
    min-height: 27.5rem;
    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: block;
    margin: 0 0 0.5rem;
    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.8rem;
}
.l-footer__list a:hover {text-decoration: underline;}

@media (min-width: 768px) {

    .l-footer {
        margin-top: -7.2rem;
        min-height: 7.2rem;
    }

    .l-footer__list li {
        display: inline-block;
        margin: 0 1.2rem 0 0;
    }

    .l-footer__list li::before {
        background-color: var(--font-color-primary);
        content: '';
        height: 1.4rem;
        margin-top: -0.7rem;
        position: absolute;
        right: 0;
        top: 50%;
        width: 0.1rem;
    }
    .l-footer__list li:last-child:before {
        display: none;
    }
    .l-footer__list a {
        padding: 0;
    }
}

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

/** 3. Componentes */

/* 3.1 Botones */

.c-btn {
    background-color: var(--color-tertiary);
    border: 0 none;
    border-radius: 0.5rem;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.4rem 2.5rem;
    text-align: center;
}
.c-btn:hover {
    background-color: var(--color-primary);
    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: #FFFFFF url("../images/download.png") no-repeat scroll center center;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 2rem;
    border: 0.2rem solid var(--color-primary);
    color: var(--color-primary);
    width: 100%;
    max-width: 40rem;
    padding: 5rem 6rem;
    text-transform: none;
}
.c-btn--upload:hover {
    background: #ece8e8 url("../images/download.png") no-repeat scroll center center;
    color: var(--color-secondary);
}
.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 {
	display: inline-block;
	min-height: 5rem;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.c-button__mobile button {
    background-color: transparent;
    border: 0 none;
    height: 4rem;
    margin: 0.9rem 1rem 0;
    outline: 0 none;
    padding: 0;
    width: 4rem;
}

.c-button__mobile span {
	background-color: var(--color-tertiary);
	display: block;
	height: 0.2rem;
	margin: 0 0 1rem;
	width: 4rem;
}

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

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

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

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

/* 3.2 Listas */

.c-list {
    overflow: visible;
    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 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--red {color: #c80028;}
.c-color--yellow {color: var(--color-primary);}

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

/* 3.4 Enlaces */

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

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

/* 3.5 Tablas */

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

/** 3.8 Modal */

.c-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 9999;
}

.c-modal__content {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 50rem;
    position: relative;
    width: 90%;
}

.c-modal h2 {
    color: var(--color-primary);
}

.c-modal[hidden] {
    display: none;
}

.c-modal__backdrop {
    background: transparent;
    inset: 0;
    position: absolute;
}

.c-modal__buttons {
    display: flex;
    flex-flow: row;
    gap: 1.5rem;
    justify-content: space-between;
}

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

/** 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: var(--color-tertiary);
}

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

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

.body--fixed .l-menu {
    align-items: self-start;
    background-color: #FFFFFF;
    display: flex;
    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,
.body--fixed .navbar-collapse {
    width: 100%;
}

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

.body--fixed .l-menu__logout a {
    justify-content: flex-end;
}

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