@font-face {
  font-family: 'Jura';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/Jura-Light.woff2') format('woff2'),
       url('fonts/Jura-Light.ttf') format('ttf');
}
@font-face {
  font-family: 'Jura';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Jura-Regular.woff2') format('woff2'),
       url('fonts/Jura-Regular.ttf') format('ttf');
}
@font-face {
  font-family: 'Jura';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Jura-SemiBold.woff2') format('woff2'),
       url('fonts/Jura-SemiBold.ttf') format('ttf');
}
@font-face {
  font-family: 'Jura';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Jura-Bold.woff2') format('woff2'),
       url('fonts/Jura-Bold.ttf') format('ttf');
}
@font-face {
  font-family: 'Russo One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Russo_One.woff2') format('woff2'),
       url('fonts/Russo_One.ttf') format('ttf');
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--gray-600);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: var(--gray-600);
}
:root {
    --search-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' version='1.1' viewBox='0 0 40 40'%3e%3cpath d='m18.993 10c-4.9552 0-8.9926 4.0375-8.9926 8.9926 0 4.9552 4.0375 8.9926 8.9926 8.9926 2.1393 0 4.081-0.78284 5.6271-2.0369l3.7758 3.7758a0.93948 0.93948 0 1 0 1.3286-1.3286l-3.7758-3.7758c1.2541-1.5461 2.0369-3.4878 2.0369-5.6271 0-4.9552-4.0375-8.9926-8.9926-8.9926zm0 1.8757c3.9409 0 7.1169 3.1761 7.1169 7.1169 0 1.9079-0.75336 3.6284-1.9685 4.9042-0.0023 0.0024-0.0075 0.0025-0.0098 5e-3a0.9385 0.9385 0 0 0-0.2247 0.22957c-1.2767 1.2208-3.0011 1.9783-4.914 1.9783-3.9409 0-7.1169-3.1761-7.1169-7.1169 0-3.9409 3.1761-7.1169 7.1169-7.1169z' fill='%23f4cd3f'/%3e%3c/svg%3e");
}
html, body {
    font-family: 'Jura';
    font-size: 16px;
    color: var(--gray-600);
    height: auto;
    scroll-behavior: smooth;
}
body {
    position: relative;
}
body:before {
    position: fixed;
    content: "";
    z-index: 900;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2d2829;
    opacity: .5 !important;
    visibility: hidden;
    cursor: pointer;
}
body.show-menu {
    overflow: hidden;
    padding-right: 10px;
}
body.show-menu:before {
    opacity: 1;
    visibility: visible;
}
body.popup {
    padding: 1rem;
}
/* Header */
#mainNav {
    padding: 0;
    align-items: center;
    flex-direction: row;
    box-sizing: border-box;
    display: flex;
    background-color: var(--gray-900);
    border-bottom: 1px solid #fff;
}
#mainNav .container-fluid, footer .container-fluid, #mainContent .container-fluid {
    max-width: 1200px;
}
body.show-menu #mainNav {
    padding-right: 10px;
}
.logo {
    height: 50px;
}
@media (max-width: 575px) {
    .logo {
        height: 40px;
    }
    #btn-menu span {
        display: none;
    }
    #btn-menu {
        padding: 0.3rem 0.4rem;
    }
}
/* Menú */
#menu {
    width: 320px;
    height: 100vh;
    top: 0;
    right: -320px;
    bottom: 0;
    margin: 0;
    background-color: var(--gray-400);
    position: absolute;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 1001;
}
#menu.show {
    right: 0;
}
#menu-inner {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
}
#menu .navbar-nav {
    margin: 1.5rem;
}
#menu a.nav-link {
    padding: 0.25rem 0.5rem;
    width: 100%;
    display: block;
    font-size: 18px;
    color: var(--gray-600);
    font-weight: 700;
    text-decoration: none !important;
}
#menu a.nav-link:hover {
    background-color: var(--primary);
}
#menu ul.navbar-nav > li + li {
    margin-top: 0.5rem;
}
@media (max-width: 320px) {
    #menu {
        width: 100%;
        right: -100%;
    }
}
/* Footer */
#up {
    position: fixed;
    bottom: 55px;
    right: 15px;
    z-index: 1000;
    cursor: pointer;
}
#up .ico {
    width: 45px;
    height: 45px;
    font-size: 24px;
    line-height: 45px;
    color: var(--gray-900);
    background-color: var(--primary);
    font-weight: 400;
    border-radius: 50%;
}
footer {
    color: var(--gray-900);
    border-top: 1px solid var(--gray-400);
}
.footer-gob {
    color: var(--gray-900);
    background-color: var(--gray-400);
}
/* Cuerpo */
#mainContent {
    padding-top: 120px;
    padding-bottom: 2rem;
    min-height: calc(100vh - 246px);
}
#mainContent.dark {
    background-color: var(--gray-900);
}
.mainContent {
    min-height: calc(100vh - 251px);
}
label.required:after {
    content: "*";
    display: inline;
    color: var(--primary);
    padding-left: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
}
span.required {
    display: inline-block;
    color: var(--primary);
    vertical-align: middle;
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
}
.title {
    font-family: 'Russo One';
    color: var(--gray-900);
    font-size: 32px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.text-uppercase {
    font-family: 'Russo One';
    color: var(--gray-900);
    line-height: 1.2;
}
.border-left {
    padding-left: 0.5rem;
    border-left: 5px solid var(--primary);
}
.shadow, a.shadow:focus {
    position: relative;
    box-shadow: -4px 4px 0px 0px var(--primary);
}
a.shadow:hover {
    top: 4px;
    right: 4px;
    box-shadow: -2px 2px 0px 0px var(--primary);
}
/*
.text-36 {
    font-size: 36px;
    line-height: 1.2;
}
.text-32 {
    font-size: 32px;
    line-height: 1.2;
}
*/
.text-24 {
    font-size: 24px;
}
.text-20 {
    font-size: 20px;
}
.text-14 {
    font-size: 14px;
}
.mw-xs {
    max-width: 360px;
}
.mw-sm {
    max-width: 540px;
}
.mw-md {
    max-width: 720px;
}
.mw-lg {
    max-width: 960px;
}
.line-height-sm {
    line-height: 1.2;
}
.text-line-through {
    text-decoration: line-through;
}
.no-display {
    display: none;
}
.cursor-pointer {
    cursor: pointer;
}
.cursor-default {
    cursor: default;
}
.text-decoration-underline {
   text-decoration: underline !important; 
}
@media (min-width: 480px) {
    .d-xs-inline {
        display: inline !important;
    }
}
.input-group > .form-control {
    border-right: none;
}
.input-group > .input-group-append > .input-group-text {
    border-left: none;
    background-color: transparent;
}
@media (max-width: 575px) {
    .title {
        font-size: 24px;
    }
    /*
    .text-36 {
        font-size: 32px;
        line-height: initial;
    }
    .text-32 {
        font-size: 24px;
        line-height: 1.2;
    }
    */
    .text-24 {
        font-size: 20px;
    }
    .text-20 {
        font-size: 16px;
    }
}
/* Botones */
.btn-ico {
    padding: 0.4rem;
    line-height: 1;
}
.card-href, .card-href:hover, .card-href:focus {
    color: #fff;
    background-color: var(--gray-900);
    display: flex;
    align-items:center;
    padding: 1rem;
    text-decoration: none;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .btn-md-block {
        max-width: unset;
        width: 100%;
    }
}
@media (max-width: 575px) {
    .btn-sm-block {
        max-width: unset;
        width: 100%;
    }
}
/* Noticias */
.foto {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    margin-left: auto;
    margin-right: auto;
}
.img-16x9 {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}
.img-4x3 {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Iconos */
.ico {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: text-bottom;
}
.ico20 {
    font-size: 20px;
}
.ico24 {
    font-size: 24px;
}
/*
.ico32 {
    font-size: 32px;
}
.ico40 {
    font-size: 40px;
}
*/
/* Controles estilizados */
ul.vin-list, ul.vin-list ul, ul.mini-list, ul.mini-list ul {
    list-style-type: square;
}
ul.vin-list > li::marker {
    color: var(--primary);
}
ul.vin-list ul li::marker, ul.mini-list li::marker {
    color: var(--primary);
    font-size: 0.7rem;
}
.list-striped > li {
    border-radius: 13px;
    padding: 0.5rem 1rem;
}
.list-striped > li:nth-of-type(odd) {
    background-color: var(--gray-400);
}
/* Select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: var(--custom-select-icon);
    padding-right: 2.25rem !important;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: unset;
}
select.w-auto {
    padding-left: 0.5rem !important;
    padding-right: 2rem !important;
    display: inline-block !important;
    font-size: 0.9rem !important;
}
.style-select select {
    display: none !important;
}
.style-select .dropdown-toggle, select.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + var(--border-width) + var(--border-width));
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-400);
    background-color: transparent;
    border: var(--border-width) solid var(--gray-400);
    border-radius: var(--border-radius);
    background-image: var(--custom-select-icon) !important;
    background-repeat: no-repeat;
    background-position: calc(100% - 6px) center !important;
    background-size: 1rem;
    white-space: normal;
    overflow: hidden;
}
.style-select .dropdown-toggle:focus, select.form.control:focus {
    border: var(--border-width) solid #fff;
    outline: 0;
}
.style-select .dropdown-toggle::after {
    display: none;
}
.style-select .dropdown-toggle {
    text-align: left !important;
}
select:disabled, .style-select .dropdown-toggle.disabled, .style-select .dropdown-toggle:disabled, select.form-control.disabled, select.form-control:disabled {
    background-color: transparent;
    background-image: var(--custom-select-icon);
}
.style-select .option {
    color: #fff;
    display: inline-block;
    width: calc(100% - 0.75rem);
    height: 1.5rem;
    text-align: left;
    margin-right: auto;
    overflow: hidden;
    vertical-align: text-bottom;
}
.style-select .option.default {
    color: var(--gray-400);
}
.style-select .dropdown-menu {
    width: 100%;
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}
.style-select .dropdown-menu > a {
    display: block;
    width: 100%;
    white-space: normal;
    line-height: 1.2;
}
/* Datepicker */
.date-group input[readonly], .date-group input[readonly]:focus {
    background-color: transparent;
}
.date-group .input-group-text {
    padding: 0 0.5rem 0 0.75rem;
    color: var(--primary);
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
}
.date-group input[disabled], .date-group input[disabled] + .input-group-append .input-group-text {
    background-color: transparent;
}
.date-group .form-control:focus + .input-group-append .input-group-text {
    border-color: #fff;
}
/* Impresión */
@media print {
    @page {
        size: letter;
        @top-left {
            content: ' ';
        }
    }
    a[href]:after {
        content: none !important;
    }
}
