/* Header */
#mainNav {
    padding: 0 !important;
    align-items: center;
    flex-direction: row;
    box-sizing: border-box;
    display: flex;
    background-color: #fff;
    color: #000;
    z-index: 3;
    position: fixed;
    top: 0;
    width: 100%;
}
#mainNav > .container-fluid, footer .container-fluid, #main-content > .container-fluid  {
    max-width: 1200px;
}
#logo-header {
    height: 50px;
}
.navbar-brand {
    margin: 0.5rem 1rem 0.5rem 0;
    display: flex;
    align-items: center;
}
#header-label {
    color: var(--primary);
    font-size: 1rem;
    margin-left: 0.5rem;
    line-height: 1.2;
}
#header-label strong {
    font-weight: bold;
}
#mainNav .ico-search {
    font-size: 20px;
}
#mainNav .navbar-toggler-icon {
    background-image: url(
"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(110, 121, 159, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
opacity: 0.75;
}
#mainNav .close {
    opacity: 0.75;
}
.profile {
    display: flex;
}
.profile .boton {
    display: flex;
    align-items: center;
    margin: 0 1rem;
    padding: 0.1rem 0;
    cursor: pointer;
    border-radius: 0.8rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.profile .boton span {
    display: none;
}
.profile .boton .ico {
    font-size: 24px;
    padding: 0.5rem;
    background-color: var(--cyan);
    color: var(--info);
}
.profile.logged .boton .ico {
    background-color: var(--primary);
}
.profile .dropdown-toggle::after {
    border: 0px !important;
    content: none;
}
.profile .dropdown-menu {
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    right: 0.5rem;
}
.profile .dropdown-item-text {
    padding: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: center;
}
.profile .dropdown-item {
    color: var(--dark);
    white-space: nowrap;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile .dropdown-item:hover {
    color: var(--dark);
    background-color: var(--cyan);
}
.profile hr {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    width: 90%;
}
#search {
    margin: 0.5rem 0;
    border: 1px solid var(--lilac);
    border-radius: 40px;
    padding: 0.375rem 2.5rem 0.375rem 1rem;
    font-size: 0.95rem;
}
#search:focus {
    outline: 0;
    border: 1px solid var(--info);
}
#search::placeholder {
    color: #ced4da;
}
#search-btn {
    position: absolute;
    border: 0;
    background-color: transparent;
    right: 0.5rem;
}
#search-btn:focus {
    border: none;
    outline: none;
}
.search-toggler {
    border: none;
    padding: 0.25rem 0;
}
.search-toggler .ico {
    padding: 0.5rem 0;
}
@media (max-width: 991px) {
    .navbar-brand {
        margin-left: 15px;
    }
    #search-btn {
        top: 0;
        margin: 0.25rem 0.75rem 0.25rem 0;
    }
    #searchNav {
        padding: 0 1rem;
    }
    #search {
        margin: 0 0 0.5rem 0;
    }
    .query-center {
        justify-content: center;
        align-items: center;
    }
}
@media (min-width: 769px) {
    .profile .boton span {
        display: inline-block;
        padding: 0 1rem;
        color: var(--dark);
    }
    .profile .boton:hover {
        background-color: var(--cyan);
    }
    .profile .boton:hover span {
        color: var(--dark);
    }
    .profile.logged .boton span {
        color: var(--primary);
    }
    .profile.logged .boton:hover {
        background-color: var(--primary);
    }
    .profile.logged .boton:hover span {
        color: #fff;
    }
}
@media (max-width: 576px) {
    .navbar-brand {
        margin: 0.5rem;
    }
    #logo-header {
        height: 40px;
    }
    #header-label {
        font-size: 0.75rem;
    }
    .profile .boton .ico, #mainNav .ico-search {
        font-size: 18px;
        padding: 0.35rem;
    }
    .profile .boton {
        margin: 0 0.5rem 0 0;
    }
    .profile .dropdown-menu {
        right: 0;
        margin-top: 0.6rem;
    }
}
/* Footer */
#up {
    position: fixed;
    bottom: 60px;
    right: 36px;
    z-index: 1;
    cursor: pointer;
}
#up .ico {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    line-height: 2.8rem;
    color: var(--info);
    background: var(--cyan);
    border-radius: 100%;
    border: 2px solid var(--info);
}
footer {
    border-top: 1px solid var(--info);
    padding: 1.5rem 0;
    color: var(--dark);
    background-color: #fff;
}
#logo-footer {
    height: 70px;
    padding-right: 1rem;
}
footer .info {
    width: 100% !important;
    display: flex;
}
.footer-label {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    max-width: 260px;
}
footer .dir {
    flex-grow: 2;
}
footer .contacto, footer .redes {
    flex-grow: 1;
}
footer .social {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 22px;
    text-align: center;
    text-decoration: none;    
    color: #fff;
    margin: 0 0.25rem;
    border-radius: 40px;
    background-color: #C49B65;
}
footer .social:hover {
    color: #fff !important; 
}
@media (max-width: 860px) {
    footer .info {
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    #logo-footer {
        height: 60px;
    }
    .footer-label {
        font-size: 1.3rem;
        max-width: 230px;
    }
}
/* Loader */
.backdrop {
    display: none;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #332747;
}
.backdrop.show {
    display: block;
}
.wrapper {
    display: none;
    z-index: 1050;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.wrapper.show {
    display: flex;
    flex-direction: column;
}
.spinner-big {
    width: 4rem;
    height: 4rem;
    border: 0.3rem solid rgba(255, 255, 255, 0.85);
    border-right-color: #5bbff6;
}
/* Cuerpo */
#main-content {
    padding-top: 80px;
    padding-bottom: 50px;
    min-height: calc(100vh - 255px);
}
@media (max-width: 576px) {
    #main-content {
        padding-top: 60px;
    }
}
#b, #b:focus {
    margin: 0.5rem auto;
    border: 2px solid var(--blue);
    background-color: #fff;
    border-radius: 40px;
    padding: 1.3rem 6.3rem 1.3rem 2.5rem;
    font-size: 0.9rem;
    outline: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23695093' d='M3.6 0C1.6 0 0 1.6 0 3.6 0 5.6 1.6 7.2 3.6 7.2c0.9 0 1.7-0.3 2.3-0.9L7.5 7.9A0.3 0.3 0 1 0 7.9 7.5L6.3 5.9C6.8 5.3 7.2 4.5 7.2 3.6 7.2 1.6 5.6 0 3.6 0Zm0 0.6c1.7 0 3 1.3 3 3 0 0.8-0.3 1.5-0.8 2.1a0.3 0.3 0 0 0-0.1 0.1 0.3 0.3 0 0 0 0 0C5.1 6.3 4.4 6.6 3.6 6.6 1.9 6.6 0.6 5.3 0.6 3.6c0-1.7 1.3-3 3-3z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 1rem center;
    background-size: 1rem;
}
#b::placeholder {
    color: #ced4da;
}
#b-btn {
    position: absolute;
    right: 1rem;
    top: 7px;
    padding: 0.27rem 1rem;
    font-size: 0.875rem;
}
.btn-mas {
    display: block;
    width: 100%;
    padding: 0.4rem 1rem;
    color: var(--dark);
    background-color: #fff;
    border: 2px solid #eee9f6;
}
.btn-mas:hover, .btn-mas:focus {
    background-color: #fff;
    border: 2px solid transparent;
    box-shadow: 1px 1px 0.5rem rgba(0, 0, 0, 0.075);
}
a.menu-opcion {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin: 0 1rem 1rem 1rem;
    letter-spacing: 0.01rem;
    font-size: 0.9rem;
    cursor: pointer;
}
a.menu-opcion:hover, a.menu-opcion:focus, .menu-opcion.active {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 3px solid var(--blue);
    letter-spacing: 0;
}
.error-text {
    word-wrap: break-word !important;
}
.disabled-tab {
    cursor: inherit !important;
}
.path-opcion {
    display: inline-block;
    color: var(--dark);
    font-size: 0.9rem;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
a.path-opcion:hover, a.path-opcion:focus, .path-opcion.active {
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--blue);
}
@media (max-width: 768px) {
    a.menu-opcion {
        border-bottom: 3px solid transparent;
        margin: 0 0.5rem 0.5rem 0.5rem;
    }
}
@media (max-width: 576px) {
    #b, #b:focus {
        padding: 1.3rem 4.5rem 1.3rem 1rem;
        background-image: none;
    }
}
.grecaptcha-badge {
    visibility: hidden;
}
.text-recaptcha {
    font-size: 80%;
    line-height: 1.2;
    max-width: 350px;
    text-align: center;
}
/* Resultados macroprocesos */
.res-macro {
    color: var(--primary);
    border: none;
    max-width: 140px;
    margin: 0 auto;
}
.blt:before {
    width: 1px;
    height: 50%;
    float: left;
    margin-top: 3rem;
    content: ' ';
    background-color: #b4a7c9;
}
.res-macro .card-footer {
    background-color: #fff;
    border-top: none;
}
.res-macro .card-header, .res-macro .card-body, .res-macro .card-footer {
    padding-left: 0;
    padding-right: 0;
}
@media (max-width: 767px) {
    .blt {
        margin-top: 1rem;
    }
    .blt:before {
        background: none;
    }
    .res-macro {
        margin: 0;
    }
    .blt .res-macro {
        border-top: 1px solid #b4a7c9;
    }
}
/* Index */
.text-consulta {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--blue);
}
.opcion a, .opcion a:hover {
    text-decoration: none;
    color: var(--dark);
}
a.res .card {
    max-width: 200px;
    margin: 0 auto;
    padding: 1.25rem 0.8rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.subtitle-sm {
    color: var(--primary);
    font-weight: bold;
    line-height: 1;
    padding-top: 0.5rem;
    height: 4.5rem;
    font-size: 16px;
}
a.res .card .mas {
    font-size: 16px;
}
.opcion .col {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 7px;
    padding-right: 7px;
}
@media (max-width: 768px) {
    .opcion .col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 400px) {
    .opcion .col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Carrusel banners */
.owl-theme button:focus {
    outline:none !important;
}
.owl-carousel .active span, .owl-carousel button:hover span {
    /* background: #35a5e2 !important; */
}
@media (max-width: 991px) {
    #owl-content {
        margin-top: 50px;
    }
}
@media (max-width: 700px) {
    .banner-img {
        width: 260px !important;
        height: 260px;
    }
}
@media (max-width: 260px) {
    .banner-img {
        width: 100%;
        height: 100%;
    }
}
/* Banners transversal */
a.trans, a.trans:hover {
    position: relative;
    max-width: 900px;
    height: 160px;
    display: block;
    margin: 0 auto;
}
a.trans .banner {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 145px;
    background-color: var(--blue);
    border-radius: 1rem;
    bottom: 0;
}
a.trans img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    height: 160px;
}
a.trans .gestion {
    position: absolute;
    bottom: 0;
    z-index: 3;
    text-decoration: none;
    color: #fff;
    padding: 1rem 2.5rem;
}
a.macro, a.macro:hover {
    text-decoration: none;
    color: #fff;
}
a.macro .card {
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
a.macro .subtitle {
    color: #fff;
    line-height: 1;
    padding-top: 0.5rem;
}
@media (max-width: 768px) {
    a.macro .card {
        padding: 1.25rem 0.8rem;
    }
    a.macro .subtitle {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    a.trans .gestion {
        padding: 1rem;
    }
    a.trans img {
        height: 120px;
        opacity: 0.6;
    }
}
/* Flujo macroprocesos */
/*
ul.macro {
    list-style: none;
    margin-top: 3rem;
}
ul.macro li {
    position: relative;
}
ul.macro li:not(:last-child) {
    padding-bottom: 3rem;
}
ul.macro li:before {
    content: url("../img/circle.svg");
    position: absolute;
    display: block;
    top: 5px;
    left: -15px;
}
ul.macro .content {
    margin-left: 1rem;
}
ul.macro li:not(:last-child) > .content:before {
    content: '';
    width: 3px;
    height: 100%;
    background-color: var(--cyan);
    position: absolute;
    top: 15px;
    left: -9px;
    z-index: -1;
}
ul.macro ul.macro {
    border-top: 1px solid var(--dark);
    margin-top: 2rem;
    padding-top: 2rem;
    padding-left: 3rem;
}
*/
/* Login */
#iniciarSesion .modal-header {
    position: absolute;
    right: 0;
}
#registrarse, #conectarse, #invitado {
    display: block;
    width: 100%;
    max-width: 300px;
    font-weight: 400;
}
a.regresar, a.regresar:hover, a.regresar:focus {
    color: var(--info);
    font-weight: 600;
    text-decoration: none;
}
.title-blue {
    color: var(--blue);
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 0.8;
}
.subtitle-light .ico {
    font-weight: inherit;
    font-size: 1rem !important;
    vertical-align: baseline;
}
@media (max-width: 576px) {
    .title-blue {
        font-size: 2.5rem;
    }
}
@media (max-width: 360px) {
    #registrarse, #conectarse, #invitado {
        max-width: 180px;
    }
    .subtitle-light strong, #registrarse strong, #conectarse strong, #invitado strong {
        display: block;
    }
}
/* Floating */
input.floating, select.floating {
    font-weight: 600;
    text-transform: uppercase;
}
input#correo, input#correoConf {
    text-transform: lowercase;
}
input#user, input#pass, #sP5, #sP6 {
    text-transform: uppercase;
}
.form-check-label {
    top: 0 !important;
    z-index: 0;
}
/* @font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/source-sans-pro-300.eot');
    src: local('Source Sans Pro Light'), local('SourceSansPro-Light'),
         url('fonts/source-sans-pro-300.eot?#iefix') format('embedded-opentype'),
         url('fonts/source-sans-pro-300.woff2') format('woff2'),
         url('fonts/source-sans-pro-300.woff') format('woff'),
         url('fonts/source-sans-pro-300.ttf') format('truetype'),
         url('fonts/source-sans-pro-300.svg#SourceSansPro') format('svg');
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/source-sans-pro-regular.eot');
    src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'),
         url('fonts/source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/source-sans-pro-regular.woff2') format('woff2'),
         url('fonts/source-sans-pro-regular.woff') format('woff'),
         url('fonts/source-sans-pro-regular.ttf') format('truetype'),
         url('fonts/source-sans-pro-regular.svg#SourceSansPro') format('svg');
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/source-sans-pro-600.eot');
    src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'),
         url('fonts/source-sans-pro-600.eot?#iefix') format('embedded-opentype'),
         url('fonts/source-sans-pro-600.woff2') format('woff2'),
         url('fonts/source-sans-pro-600.woff') format('woff'),
         url('fonts/source-sans-pro-600.ttf') format('truetype'),
         url('fonts/source-sans-pro-600.svg#SourceSansPro') format('svg');
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 900;
    src: url('fonts/source-sans-pro-900.eot');
    src: local('Source Sans Pro Black'), local('SourceSansPro-Black'),
         url('fonts/source-sans-pro-900.eot?#iefix') format('embedded-opentype'),
         url('fonts/source-sans-pro-900.woff2') format('woff2'),
         url('fonts/source-sans-pro-900.woff') format('woff'),
         url('fonts/source-sans-pro-900.ttf') format('truetype'),
         url('fonts/source-sans-pro-900.svg#SourceSansPro') format('svg');
} */
@font-face {
    font-family:'source';
    src:url('fonts/SourceSansPro-Bold.ttf') format('ttf'),
        url('fonts/SourceSansPro-Bold.ttf') format('ttf');
    font-weight:normal;
    font-style:normal;
}
@font-face {
    font-family:'Panton';
    src:url('fonts/Panton-Regular.woff2') format('woff2'),
        url('fonts/Panton-Regular.woff') format('woff');
    font-weight:normal;
    font-style:normal;
}
@font-face {
    font-family:'Panton';
    src:url('fonts/Panton-Bold.woff2') format('woff2'),
        url('fonts/Panton-Bold.woff') format('woff');
    font-weight:bold;
    font-style:normal;
}
@font-face {
    font-family:'Panton';
    src:url('fonts/Panton-BoldItalic.woff2') format('woff2'),
        url('fonts/Panton-BoldItalic.woff') format('woff');
    font-weight:bold;
    font-style:italic;
}
@font-face {
    font-family:'Panton';
    src:url('fonts/Panton-Light.woff2') format('woff2'),
        url('fonts/Panton-Light.woff') format('woff');
    font-weight:300;
    font-style:normal;
}
@font-face {
    font-family:'Panton';
    src:url('fonts/Panton-LightItalic.woff2') format('woff2'),
        url('fonts/Panton-LightItalic.woff') format('woff');
    font-weight:300;
    font-style:italic;
}
@font-face {
    font-family:'Panton';
    src:url('fonts/Panton-ExtraBlack.woff2') format('woff2'),
        url('fonts/Panton-ExtraBlack.woff') format('woff');
    font-weight:900;
    font-style:normal;
}
@font-face {
    font-family:'Panton';
    src:url('fonts/Panton-ExtraBlackItalic.woff2') format('woff2'),
        url('fonts/Panton-ExtraBlackItalic.woff') format('woff');
    font-weight:900;
    font-style:italic;
}


:root {
  --lilac: #eee9f6;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px var(--light);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: rgba(105, 80, 147, 1);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(105, 80, 147, 0.50);
}
html, body {
    font-family: 'Panton';
    font-size: 16px;
    overflow-x: hidden;
}
body.popup {
    padding: 15px;
    background-color: #fff;
    max-width: 1024px;
}
.page-title {
    color: var(--primary);
    font-size: 2.8rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.page-title span {
    font-weight: 800 !important;
}
.page-title-light {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 300;
}
.page-title-light strong {
    font-weight: bold;
}
.section-title {
    width: fit-content;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: bold;
    /* text-transform: uppercase; */
    /* border-bottom: 4px solid var(--blue); */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.head-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}
.head-title-light {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
}
.head-title-light strong {
    font-weight: bold;
}
.subtitle {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: bold;
}
.subtitle-light {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 400;
}
.subtitle-light strong {
    font-weight: bold;
}
p {
    margin: 20px 0;
}
pre {
    margin-bottom: 0;
}
hr.hr-blue {
    background-color: var(--blue);
    height: 1px;
    width: 75%;
}
.lead {
    font-weight: bold;
}
.list-inline li {
    display: inline-block;
}
.list-inline li:not(:last-child) {
    margin-right: 0.5rem;
}
.btn, .btn .ico {
    font-weight: 600;
}
.form-control {
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
}
.form-control:focus {
    border-bottom: 1px solid var(--primary);
}
.valid-feedback, .invalid-feedback {
    font-weight: 600;
}
input[type=checkbox], input[type=radio] {
    width: 20px;
    height: 20px;
    position: relative;
    top: 4px;
}
select::-ms-expand {
    display: none;
}
select.w-auto {
    padding: 0.375rem 2rem 0.375rem 0.75rem;
    display: inline-block;
}
label {
    font-weight: 600;
}
label.required:after {
    content: "*";
    display: inline;
    color: var(--info);
    padding-left: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 20px;
}
::-webkit-input-placeholder {
    text-transform: initial !important;
}
span.required {
    display: inline-block;
    color: var(--info);
    vertical-align: middle;
    font-weight: 900;
    font-size: 20px;
}
.form-check-label, .custom-control-label {
    display: inline;
    font-weight: normal;
}
.input-group-append .btn {
    border-radius: 1rem !important;
}
.input-group .form-control {
    height: inherit;
}
.table th {
    border-top: none;
    border-bottom: 2px solid var(--primary) !important;
    font-weight: 600;
}
.table-borderless {
    border: 0;
}
.table-active {
    border: 2px solid var(--blue) !important;
}
.mw-xs {
    max-width: 360px;
}
.mw-sm {
    max-width: 540px;
}
.mw-md {
    max-width: 720px;
}
.mw-lg {
    max-width: 960px;
}
.lh-1 {
    line-height: 1;
}
.no-display {
    display: none;
}
.cursor-pointer {
    cursor: pointer;
}
.btn-nav {
    padding: 0.25rem;
    display: inline-block;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    vertical-align: middle;
}
.btn-pag {
    padding: 0.25rem 1rem;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    border-radius: 1rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
a.btn-pag {
    color: var(--dark);
    border: 2px solid var(--dark);
    background-color: transparent;
}
a.btn-pag:hover {
    color: #fff;
    background-color: var(--dark);
    text-decoration: none;
}
span.btn-pag {
    color: #fff;
    border: 2px solid var(--info);
    background-color: var(--info);
}
.bg-purple {
    background-color: var(--purple);
}
.bg-indigo {
    background-color: var(--indigo);
}
.bg-blue {
    background-color: var(--blue);
}
.bg-sky {
    background-color: var(--info);
}
.bg-cyan {
    background-color: var(--cyan);
}
.bg-lilac {
    background-color: var(--lilac);
}
.text-blue {
    color: var(--blue);
}
.badge-blue {
    color: #fff;
    background-color: var(--blue);
}
a.badge-blue:hover, a.badge-blue:focus {
    color: #fff;
    background-color: #1e93d3;
}
a.badge-blue:focus, a.badge-blue.focus {
    outline: 0;
}
.btn-blue, .btn-blue.disabled, .btn-blue:disabled {
    color: #fff;
    background-color: #35a5e2;
    border-color: #35a5e2;
}
.btn-blue:hover, .btn-blue:focus, .btn-blue.focus {
    color: #fff;
    background-color: #1e93d3;
    border-color: #1d8bc7;
}
.btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active,
.btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus {
    color: #fff;
    background-color: #1d8bc7;
    border-color: #1b83bc;
}
.btn-outline-blue, .btn-outline-blue.disabled, .btn-outline-blue:disabled {
    color: #35a5e2;
    border-color: #35a5e2;
}
.btn-outline-blue:hover, .btn-outline-blue:focus, .btn-outline-blue.focus,
.btn-outline-blue:not(:disabled):not(.disabled):active, .btn-outline-blue:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #35a5e2;
    border-color: #35a5e2;
}
.badge-cyan {
    color: #35a5e2;
    background-color: var(--cyan);
}
a.badge-cyan:hover, a.badge-cyan:focus {
    color: #35a5e2;
    background-color: #c1eafa;
}
a.badge-cyan:focus, a.badge-cyan.focus {
    outline: 0;
}
.btn-cyan, .btn-cyan.disabled, .btn-cyan:disabled {
    color: #35a5e2;
    background-color: #e5f6fd;
    border-color: #e5f6fd;
}
.btn-cyan:hover, .btn-cyan:focus, .btn-cyan.focus {
    color: #35a5e2;
    background-color: #c1eafa;
    border-color: #b6e6f9;
}
.btn-cyan:not(:disabled):not(.disabled):active, .btn-cyan:not(:disabled):not(.disabled).active,
.btn-cyan:not(:disabled):not(.disabled):active:focus, .btn-cyan:not(:disabled):not(.disabled).active:focus {
    color: #35a5e2;
    background-color: #b6e6f9;
    border-color: #b6e6f9;
}
.btn-outline-cyan, .btn-outline-cyan.disabled, .btn-outline-cyan:disabled {
    color: #e5f6fd;
    border-color: #e5f6fd;
}
.btn-outline-cyan:hover, .btn-outline-cyan:focus, .btn-outline-cyan.focus,
.btn-outline-cyan:not(:disabled):not(.disabled):active, .btn-outline-cyan:not(:disabled):not(.disabled).active {
    color: #35a5e2;
    background-color: #e5f6fd;
    border-color: #e5f6fd;
}
/* Iconos */
.ico {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: text-bottom;
}
.ico.ico-doc.color {
    color: #2b579a;
}
.ico.ico-link.color {
    color: var(--blue);
}
.ico.ico-xls.color {
    color: #107c10;
}
.ico.ico-pdf.color {
	color: #da2713;
}
.ico.ico-zip.color, .ico.ico-img.color, .ico.ico-txt.color {
    color: #ff9408;
}
.ico16 {
    font-size: 16px;
}
.ico20 {
    font-size: 20px;
}
.ico24 {
    font-size: 24px;
}
.ico32 {
    font-size: 32px;
}
.ico40 {
    font-size: 40px;
}
/* Banner alert */
.banner-alert {
    margin-bottom: 1rem;
    width: 100%;
    color: #fff;
}
.banner-body {
    position: relative;
    max-width: 768px;
    padding: 1rem 1.5rem;
    margin: 0 auto;
}
.banner-body .banner-dismiss {
    position: absolute;
    top: 0.5rem;
    right: 0;
    cursor: pointer;
}
.banner-body .banner-dismiss:before {
    font-size: 1.5rem;
    color: #fff;
    font-family: "outline";
    content: "\e948";
}
/* Alerts */
.alert-heading {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
/* Cards */
.card-header {
    padding: 1rem;
    background-color: transparent;
    border-bottom: none;
}
.card-title {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.5;
}
.card-header + .card-body {
    padding-top: 0;
}
.card-set .card + .card {
    margin-top: 1rem;
}
.card-set .card:nth-of-type(odd) {
    border-left: 5px solid var(--primary);
}
.card-set .card:nth-of-type(even) {
    border-left: 5px solid var(--dark);
}
/* Modal */
.modal-title {
    width: fit-content;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 4px solid var(--blue);
}
.modal-content .close, .modal-content .close:hover {
    opacity: 1 !important;
    font-weight: normal;
    color: var(--dark);
    z-index: 1;
}
.modal-content .close:focus {
    outline: none;
}
.modal-content .close:before {
    font-family: "outline";
    content: "\e948";
}
.modal-footer {
    justify-content: center;
}
/* Fancybox */
.fancybox-container {
    font-family: 'Source Sans Pro';
}
.fancybox-is-open .fancybox-bg {
    opacity: 0.8 !important;
}
.fancybox-bg {
    background: #332747 !important;
}
.fancybox-slide > * {
    border-radius: 0.3rem;
}
.fancybox-slide > .fancy-info {
    border-top: 5px solid var(--info);
    width: 100%;
    max-width: 480px;
}
.fancybox-slide > .fancy-success {
    border-top: 5px solid var(--success);
    width: 100%;
    max-width: 480px;
}
.fancybox-slide > .fancy-error {
    border-top: 5px solid var(--danger);
    width: 100%;
    max-width: 480px;
}
.fancybox-slide > .fancy-warning {
    border-top: 5px solid var(--warning);
    width: 100%;
    max-width: 480px;
}
.fancybox-close-small {
    top: 0;
    right: 0;
    outline: none;
}
.fancybox-close-small:after {
    font-size: 1.5rem;
    line-height: 1.5;
    font-family: "outline";
    content: "\e948";
    width: 40px;
    height: 40px;
    color: var(--dark) !important;
}
.fancybox-close-small:hover:after, .fancybox-close-small:focus:after {
    color: var(--dark) !important;
    outline: none !important;
    background: transparent;
}
.fancybox-slide--iframe .fancybox-close-small {
    right: 15px;
}
.fancybox-content {
    width: 100%;
	max-width: 1024px !important;
}
.iframe-sm .fancybox-content {
	max-width: 600px !important;
}
/* Controles estilizados */
/* Ul */
ul.vin-list, ul.mini-list {
    list-style: none;
}
ul.vin-list li, ul.mini-list li {
    display: block;
    position: relative;
}
ul.vin-list li:before {
    content: '●';
    position: absolute;
    display: block;
    left: -30px;
    color: var(--blue);
}
ul.vin-list li li:before, ul.mini-list li:before {
    content: '▪';
    position: absolute;
    display: block;
    left: -30px;
    color: var(--blue);
}
/* Table */
@media (max-width: 767px) {
    .style-table thead th + th {
        display: none;
    }
    .style-table th, .style-table td { 
		display: block; 
	}
    /*
    .style-table td {
        padding: 0 5px;
        border-top: none;
    }
    .style-table tr td:first-child {
        padding-top: 5px;
    }
    .style-table tr td:last-child {
        padding-bottom: 5px;
    }
    .style-table .text-center, .style-table .text-right {
        text-align: left !important;
    }
    */
    .style-table td {
        border-top: none;
    }
    .style-table td + td {
        padding-top: 0;
    }
    .style-table tr {
        border-top: 1px solid #dee2e6;
    }
    .style-table td[data-th]:not(:empty):before {
        content: attr(data-th);
        font-weight: 600;
        width: 30%;
        margin-right: 10px;
        display: inline-block;
    }
}
@media (max-width: 576px) {
    .style-table td[data-th]:not(:empty):before {
        width: 100%;
        margin-right: 0;
        display: block;
    }
}
/* Select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23695093' d='M 1.583247,2.287699 A 0.50287394,0.50287394 0 0 0 1.2328418,3.1511415 l 2.4135534,2.4135537 a 0.50287394,0.50287394 0 0 0 0.7118101,0 L 6.7717584,3.1511415 A 0.5033256,0.5033256 0 1 0 6.059949,2.4393317 L 4.0023003,4.4969805 1.9446516,2.4393317 A 0.50287394,0.50287394 0 0 0 1.583247,2.287699 Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.style-select select {
    display: none;
}
.style-select .dropdown-toggle {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.6rem 0.375rem 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23695093' d='M 1.583247,2.287699 A 0.50287394,0.50287394 0 0 0 1.2328418,3.1511415 l 2.4135534,2.4135537 a 0.50287394,0.50287394 0 0 0 0.7118101,0 L 6.7717584,3.1511415 A 0.5033256,0.5033256 0 1 0 6.059949,2.4393317 L 4.0023003,4.4969805 1.9446516,2.4393317 A 0.50287394,0.50287394 0 0 0 1.583247,2.287699 Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.style-select .dropdown-toggle:focus {
    border-bottom: 1px solid var(--primary);
    outline: 0;
}
.style-select .dropdown-toggle::after {
    display: none;
}
.style-select .option {
    display: inline-block;
    width: calc(100% - 24px);
    text-align: left;
    margin-right: auto;
    overflow: hidden;
    vertical-align: text-bottom;
}
.style-select .dropdown-menu {
    width: 100%;
    height: auto;
    padding: 0;
    max-height: 200px;
    overflow-x: hidden;
}
.style-select .dropdown-menu > a {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    clear: both;
    font-weight: 400;
    color: var(--dark);
    white-space: normal;
    line-height: 1.2;
}
.style-select .dropdown-menu > a:hover, .style-select .dropdown-menu > a:focus, .style-select .dropdown-menu > a.selected {
    background-color: var(--light);
    text-decoration: none;
}
select.is-valid, .style-select .dropdown-toggle.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M 7.4428356,1.0807362 A 0.54014586,0.54014586 0 0 0 7.0715231,1.2436077 L 2.7009984,5.6141323 0.92291474,3.8360484 A 0.54063099,0.54063099 0 1 0 0.15834728,4.6006163 L 2.3187147,6.7609837 a 0.54014586,0.54014586 0 0 0 0.7645675,0 L 7.8360905,2.0081752 A 0.54014586,0.54014586 0 0 0 7.4428356,1.0807362 Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
select.is-invalid, .style-select .dropdown-toggle.is-invalid {
    border-color: #ff8400;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23ff8400' d='M 1.5829923,1.0804745 A 0.50295577,0.50295577 0 0 0 1.2325301,1.9440574 L 3.2905137,4.0020409 1.2325301,6.0600243 A 0.50340749,0.50340749 0 1 0 1.9444556,6.7719501 L 4.0024392,4.7139664 6.0604226,6.7719501 A 0.5034077,0.5034077 0 1 0 6.7723488,6.0600243 L 4.7143647,4.0020409 6.7723488,1.9440574 A 0.5034076,0.5034076 0 1 0 6.0604226,1.2321319 L 4.0024392,3.2901154 1.9444556,1.2321319 A 0.50295577,0.50295577 0 0 0 1.5829923,1.0804745 Z'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
/* File */
.style-file input[type="file"] {
    display: none !important;
    visibility: hidden;
    filter: alpha(opacity=0);
    opacity: 0;
}
.style-file .form-control[readonly] {
    cursor: default !important;
    background-color: transparent !important;
}
/* Etiquetas flotantes */
.floating-label {
    position: relative;
    margin-bottom: 2rem;
    margin-top: 1rem;
}
.floating-label .form-control {
    position: relative;
    z-index: 2;
}
.floating-label [readonly] {   
    pointer-events: none;
}
.floating-label label {
    position: absolute;
    top: 0;
    font-weight: normal;
    padding: 0.275rem 0.75rem;
    transition: all 200ms;
    -moz-transition: all 200ms;
    -webkit-transition: all 200ms;
    z-index: 1;
}
.floating-label [readonly] + label {   
    z-index: 3;
}
.floating-label .form-control:focus ~ label, .floating-label input.form-control:not(:placeholder-shown) ~ label, .floating-label textarea.form-control:not(:placeholder-shown) ~ label, .floating-label select.selected ~ label, .floating-label .style-select.show ~ label, .floating-label .style-select.selected ~ label, .style-file.selected ~ label {
    transform: translate3d(0, -1.8rem, 0);
    font-weight: 600;
}
.floating-label ::-webkit-input-placeholder {
    opacity: 0 !important;
    text-transform: initial !important;
}
.floating-label .form-control:not([readonly]):focus::-webkit-input-placeholder {
    opacity: 1 !important;
}
.floating-label select:not(.selected), .floating-label .style-select:not(.selected) .option {
    color: transparent;
}
.floating-label select:focus, .floating-label select.selected, .floating-label .style-select.show .option, .floating-label .style-select.selected .option  {
    color: inherit;
}
/* Div colapsable */
.collapse-group + .collapse-group {
    margin-top: 1rem;
}
.collapse-toggle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    cursor: pointer;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #ced4da;
}
.collapse-toggle.active {
    color: var(--primary);
    font-weight: bold;
    letter-spacing: 0;
    border-bottom: 1px solid var(--primary);
}
.collapse-toggle:after {
    font-family: 'outline';
    content: "\e929";
    color: var(--dark);
    font-size: 1.4rem;
}
.collapse-toggle.active:after {
    content: "\e92e";
}
.collapse-next {
    padding: 0 1rem;
    border-bottom: 1px solid #ced4da;
}
.collapse-body {
    margin: 1rem 0;
}
.collapse-next p:first-child {
    margin-top: 0 !important;
}
.collapse-next p:last-child {
    margin-bottom: 0 !important;
}
/* Tabs */
.tabs .nav {
    margin-bottom: 1rem;
    /* border-bottom: 1px solid var(--primary); */
}
.tabs .nav-item, .tab-header {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    cursor: pointer;
}
.tabs .nav {
    border-bottom: 4px solid var(--primary);
}
.tabs .nav-item {
    padding: 0.5rem 1rem;
    /* border-bottom: 1px solid #f2f2f2; */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1rem;
    color: var(--primary);
}
.tabs a.nav-item:hover, .tabs a.nav-item:focus, .tabs .nav-item.active {
    color: #fff;
    background-color: var(--primary);
    text-decoration: none;
    /* letter-spacing: 0; */
    /* font-weight: bold; */
    /* border-bottom: 4px solid var(--blue); */
}
.tab-header {
    display: none;
    color: var(--primary);
    font-weight: bold;
    letter-spacing: 0;
    border-bottom: 4px solid var(--blue);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    align-items: flex-start;
    justify-content: space-between;
}
.row-tabs .tab-header {
    display: flex;
}
.tab-header.collapsed {
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 0.02rem;
    border-bottom: 1px solid var(--blue);
}
.tab-header + .tab-body {
    margin-bottom: 1rem;
}
.tab-header.collapsed + .tab-body {
    margin-bottom: 0;
}
.row-tabs .tab-header:after {
    font-family: 'outline';
    content: "\e97b";
    float: right;
    color: var(--primary);
    font-size: 1rem;
}
.row-tabs .tab-header.collapsed:after {
    content: "\e998";
    color: var(--dark);
}
.tab-body {
    padding: 0 1rem;
}
@media (max-width: 768px) {
    .tabs nav {
        display: none;
    }
    .tab-header {
        display: flex;
    }
}
/* Acordeón */
.accordion > .card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
    border-radius: 0.25rem !important;
}
.accordion .card + .card {
    margin-top: 0.5rem;
}
.accordion .card-header {
    margin-bottom: 0 !important;
    padding: 0.6rem;
}
.accordion .card-title {
    font-weight: 600;
}
.accordion .card-header:not(.collapsed) .card-title {
    color: #fff;
}
.accordion .card-header:not(.collapsed) {
    background-color: var(--primary);
}
.accordion .card-body {
    background-color: var(--lilac);
    padding: 0.6rem;
}
.accordion .card-title:after {
    font-family: 'outline';
    content: "\e92e";
    float: right;
    color: #fff;
    font-size: 1.3rem;
}
.accordion .card-header.collapsed .card-title:after {
    content: "\e929";
    color: var(--dark);
}
/* Impresión */
@media print {
    @page {
        size: letter;
    }
    a[href]:after {
        content: none !important;
    }
}

.color-primary {
    color: var(--primary);
}
.color-dark {
    color: var(--dark);
}

@media (min-width: 992px) {
    .item-desktop-inlineblock {
        display: inline-block;
    }
    .item-mobile-inlineblock {
        display: none;
    }
}
@media (max-width: 992px) {
    .item-desktop-inlineblock {
        display: none;
    }
    .item-mobile-inlineblock {
        display: inline-block;
    }
}