/* Copyright 2025 BanReservas. Todos los derechos reservados. */

/* Fonts */

@font-face {
    font-family: 'basicsanslight';
    src: url(../fonts/inst/BasicSans-Light.woff2) format("woff2"), url(../fonts/inst/BasicSans-Light.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'basicsansbook';
    src: url(../fonts/inst/BasicSans-Regular.woff2) format("woff2"), url(../fonts/inst/BasicSans-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'basicsansbold';
    src: url(../fonts/inst/BasicSans-Bold.woff2) format("woff2"), url(../fonts/inst/BasicSans-Bold.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'basicsansblack';
    src: url(../fonts/inst/BasicSans-Black.woff2) format("woff2"), url(../fonts/inst/BasicSans-Black.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'FontAwesome';
    src: url('../lib/fontawesome-free-5.15.4-web/webfonts/fa-regular-400.ttf') format('truetype');
}

:root {
    --primary-color: #00aef0;
    --primary-hover: #008cc2;
    --secondary-color: #F89420;
    --accent-color: #ea4335;
    --warning-color: #fbbc04;
    --text-primary: #e8eaed;
    --text-secondary: #ecedee;
    --text-muted: #70757a;
    --border-color: #3c4043;
    --border-hover: #5f6368;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: "basicsansbook", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01279rem;
    color: #fff;
    text-align: left;
    background-color: #121212;
    min-width: 350px;
}

/* Generales */

.form-control {
    border-radius: 0;
    border: none;
    border-left: 5px solid #444;
}

.title {
    font-family: 'basicsansbold';
}

.input-group .search-input {
    border-radius: 30px;
    padding-right: 35px;
}


.subtitle {
    font-family: 'basicsansbook';
}

.lead {
    font-family: 'basicsanslight';
    font-size: 1.7rem;
    font-weight: normal;
}

.section-title {
    font-family: 'basicsanslight';
    font-size: 4.4rem;
}

section .title {
    font-family: 'basicsanslight';
}

.content-txt {
    font-family: 'basicsanslight';
    font-weight: normal;
    font-size: .93rem;
    letter-spacing: 0.01485rem;
}

.btn-primary {
    font-family: 'basicsansbold';
    background: #fff;
    color: #444;
    font-size: 1.1rem;
    border: 2px solid #fff;
    border-radius: 34px;
    padding: 7px 20px 10px;
    transition: all .3s ease-in;
}

.btn-primary:hover {
    background: #33383D;
    background: linear-gradient(25deg, rgba(51, 56, 61, 1) 100%, rgba(16, 16, 16, 1) 100%);
    border-color: #00aef0;
}

.text-condition {
    font-family: 'basicsanslight';
    font-weight: 300;
    font-size: .701rem;
}

.card {
    border: none;
    border-radius: 0;
    background-color: transparent;
}

/* Navigation */

#canvasNavD {
    height: auto;
    max-height: 454px;
    background-image: linear-gradient(to right top, #101010, #1d1d1f, #282a2f, #32373f, #3b464f);
}

#mainNavPreferente .side-options-menu {
    position: relative;
    display: flex;
    width: 68%;
    max-width: 760px;
    min-width: 200px;
    padding: 1rem;
    justify-content: center;
    align-items: center;
}

#mainNavPreferente .side-options-menu #socialHeader {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 7px;
}

#mainNavPreferente .side-options-menu #socialHeader .social-link {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 5px;
}

/* Search Results */
.results_container {
    padding: 93px 0 12px;
}

.results_container .section-title {
    font-weight: 400;
    font-size: 56px;
    line-height: 1.1;
    text-align: left;
    margin: 0 0 64px;
    color: var(--text-primary);
}

/* Estilos espec�ficos para el contenedor de resultados */
.results_container #resultado-busqueda ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results_container #resultado-busqueda ul li {
    max-width: none;
    /* Remover limitaci�n de ancho */
}

.results_container #resultado-busqueda li a.result__title-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'basicsanslight';
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    transition: color 0.2s ease;
}

.results_container #resultado-busqueda li a.result__title-link:hover {
    color: var(--primary-color);
}



/* contenedor general */
.search-results {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* cada resultado */
.result {
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.4s ease forwards;
}

.result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result:hover {
    transform: translateY(-2px);
}

.result:hover::before {
    opacity: 1;
}

.result__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.result__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.result__title-container {
    flex: 1;
}

/* t�tulo */
.result__title {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.result__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* subrayado al pasar el rat�n */
.result__title a:hover,
.result__title a:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    /* un poco m�s grueso */
    text-underline-offset: 2px;
    /* separaci�n del texto */
}

.result__url {
    font-size: 12px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

/* subrayado al pasar el rat�n */
.result__url:hover,
.result__title:focus-visible {
    text-decoration: underline;
    color: var(--primary-color);
}

.result__content {
    padding-left: 64px;
}

/* descripci�n */
.result__excerpt {
    margin: 0 0 16px;
    max-width: 60ch;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}


/* No Results */
.no-results {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.no-results p {
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

/* Loading State */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-header .container {
        flex-direction: column;
        gap: 16px;
    }

    .search-box {
        max-width: 100%;
    }

    .container {
        padding: 0 16px;
    }

    .result {
        padding: 20px;
    }

    .result__header {
        flex-direction: column;
        gap: 12px;
    }

    .result__content {
        padding-left: 0;
    }

    .result__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-content {
        padding: 24px 0;
    }
}

@media (max-width: 480px) {
    .result__header {
        gap: 8px;
    }

    .result__icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .result__title {
        font-size: 18px;
    }

    .search-box input {
        padding: 10px 40px 10px 40px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result {
    animation: slideIn 0.4s ease forwards;
}

.result:nth-child(2) {
    animation-delay: 0.1s;
}

.result:nth-child(3) {
    animation-delay: 0.2s;
}

.result:nth-child(4) {
    animation-delay: 0.3s;
}

.result:nth-child(5) {
    animation-delay: 0.4s;
}

/* Search box */

#mainHeader .search-wrap {
    position: relative;
    margin-right: 32px;
}

#mainHeader .search-wrap .search-input {
    height: 40px;
    border-radius: 30px;
    padding-right: 35px;
    border: none;
    color: #444;
    background-color: transparent;
    transition: all .2s ease-in-out;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

#mainHeader .search-wrap .search-input:focus {
    background-color: #ada7a7;
}

#mainHeader .search-wrap .search-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #888;
    z-index: -1;
}


#mainNavPreferente .side-options-menu #socialHeader .social-link a {
    position: relative;
    display: block;
    font-size: 1.3rem;
    text-decoration: none;
    color: #fff;
    transition: all .2s ease-in-out;
}

#mainNavPreferente .side-options-menu #socialHeader .social-link a:hover {
    color: #00aef0;
}


#canvasNavD .offcanvas-body {
    padding-left: 55px;
}

#canvasNavD .offcanvas-header {
    justify-content: flex-end;
}

#mainNavPreferente {
    width: 100%;
    max-width: 1900px;
    min-width: 350px;
    margin: 0 auto;
    background-color: rgb(12 16 18 / 71%) !important;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #212529, #212529, #212529, #7a7a7a, #212529);
    border-image-slice: 1;
}

#mainNavPreferente .navbar-toggler {
    border: none !important;
}

#mainNavPreferente .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
}

#mainNavPreferente .offcanvas.offcanvas-end {
    top: 28px;
    right: 12px;
}

#canvasNavD .offcanvas-body .nav-item .nav-link {
    font-size: 1.32rem;
    padding: 3px;
    position: relative;
}

#canvasNavD .offcanvas-body .navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    font-family: 'basicsansbold';
}

#canvasNavD .offcanvas-body .nav-item .nav-link.active::after {
    content: "";
    width: 27px;
    height: 2px;
    position: absolute;
    bottom: 1px;
    left: 2px;
    background-color: #a9a9a9;
}

#mainNavPreferente .btn-close {
    position: relative;
    background: none;
    background-color: #fff;
    border-radius: 0;
    width: 17px;
    height: 17px;
    position: absolute;
    top: 8px;
    right: 8px;
}


#mainNavPreferente .btn-close i,
#mainNavPreferente .navbar-toggler i {
    font-size: 1.753rem;
    color: #fff;
}

#mainNavPreferente .btn-close i {
    position: absolute;
    top: 3px;
    font-size: 21px;
    left: 7px;
    color: #444;
    padding: 3px 4px 0 3px;
}


#mainBanner .splide {
    max-width: 100%;
    margin: 0 auto;
}

#mainBanner .splide__slide {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#mainBanner .main-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#mainBanner .banner_section .splide__slide::after {
    content: "";
    width: 100%;
    position: absolute;
    background-color: #020202;
    height: 100vh;
    min-height: 500px;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: .6705;
}

#mainBanner .banner_content {
    position: absolute;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 800px;
    padding: 40px 30px;
    margin: 0 20px;
    left: 100px;
}

#mainBanner .banner_section .banner_content .title_text {
    display: block;
    font-family: 'basicsanslight';
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #fff;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#mainBanner .banner_section .banner_content .smtop_text,
#mainBanner .banner_section .banner_content .smbottom_text {
    display: block;
    font-family: 'basicsansbook';
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
    padding: 0;
    opacity: 0.9;
}

#mainBanner .splide__arrows.splide__arrows--ltr {
    position: absolute;
    width: 94px;
    height: 50px;
    bottom: 100px;
    right: 147px;
}

#mainBanner .splide__arrow {
    background-color: rgba(255, 255, 255, .25);
    border: 1px solid #fff;
    transition: all .2s ease-in-out;
    width: 1.43em;
    height: 1.43em;
}

#mainBanner .splide__arrow svg {
    fill: #000;
    height: .7em;
    width: .7em;
}


/* Hero 01 */

#staticBannerA .static-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 70vh;
}

#staticBannerA .static-wrap::after {
    content: "";
    width: 100%;
    position: absolute;
    background: linear-gradient(to right, rgb(0 0 0 / .98) 0%, transparent 100%);
    height: 70vh;
    min-height: 500px;
    top: 0;
    left: 0;
    opacity: .9705;
    z-index: 1;
}

#staticBannerA .static-wrap .static-bg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#staticBannerA .info-content {
    position: absolute;
    width: 50%;
    min-width: 350px;
    top: calc(50% - 150px);
    left: 0;
    z-index: 2;
}


#staticBannerA .info-content .lead-p {
    font-family: 'basicsansbook';
    font-size: 1.12rem;
    letter-spacing: 0.0151rem;
}

.static-product-section .static-wrap .info-content {
    position: relative;
    background-color: #1d1d1f;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 2;
}

.static-product-section .static-wrap .info-content::before {
    content: "";
    width: 100%;
    position: absolute;
    background: linear-gradient(to bottom, rgb(0 0 0 / .98) 0%, transparent 100%);
    height: 200px;
    top: 0;
    left: 0;
    opacity: .9705;
    z-index: 1;
}

.static-product-section .static-wrap .info-content .box-content {
    position: relative;
    z-index: 999;
}

.static-product-section .image-section {
    display: block;
    position: relative;
    width: 100%;
    height: 70vh;
}

.static-product-section .static-wrap .image-section::after {
    content: "";
    width: 100%;
    position: absolute;
    background: linear-gradient(to top, rgb(0 0 0 / .78) 0%, transparent 100%);
    height: 70vh;
    min-height: 500px;
    top: 0;
    left: 0;
    opacity: .9705;
    z-index: 1;
}


.static-product-section .image-section .static-bg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.static-product-section .image-section .cta {
    position: absolute;
    bottom: 4rem;
    width: 200px;
    left: calc(50% - 100px);
    z-index: 99;
}


/* Ofertas Ruta Gourmet */

#carouselOfertas {
    height: 301px;
    position: relative;
}

#rutaGourmet {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #1d1d1f;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 2;
}

#rutaGourmet .ofertas-wrap {
    background-color: rgba(0, 0, 0, .45);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #030303, #010101, #212529, #434141, #040404);
    border-image-slice: 1;
}

#ofertasSlider {
    margin-top: 50px;
}

#rutaGourmet .oferta-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all .3s ease-in;
    text-decoration: none;
    color: #fff;
}

#rutaGourmet .heading-off {
    display: block;
    padding: 7px 10px;
    position: relative;
    width: 100%;
    height: 91px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .85);
}

#rutaGourmet .title-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 5px;
}

#rutaGourmet .heading-off .title {
    text-transform: uppercase;
    font-family: 'basicsanslight';
    margin: 0 7px 0 0;
    padding: 0;
    font-size: 1.892rem;
}

#rutaGourmet .heading-off .star {
    font-size: .45671rem;
    margin: 0px 1px 0px 0px;
    padding: 0;
    font-weight: normal;
}


#rutaGourmet .details {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#rutaGourmet .badge-discount {
    width: 70px;
    height: 27px;
    position: relative;
    color: #444;
    background-color: #fff;
    border-radius: 15px;
    padding: 2px 7px;
    font-family: 'basicsansbold';
    display: flex;
    justify-content: center;
}

#rutaGourmet .badge-discount .small {
    font-size: .5975rem;
}

#rutaGourmet .information {
    width: 69%;
}

#rutaGourmet .information .sub,
#rutaGourmet .information .txt {
    font-size: .4954rem;
    font-family: 'basicsanslight';
    margin: 0;
    padding: 0;
}

#rutaGourmet .information .sub {
    font-family: 'basicsansbold';
}

#rutaGourmet .splide__arrows.splide__arrows--ltr .splide__arrow {
    border-radius: 0;
    width: 50px;
    height: 300px;
    background-color: #575757ed;
}

#rutaGourmet .splide__arrow.splide__arrow--prev {
    margin-left: -75px;
}

#rutaGourmet .splide__arrow.splide__arrow--next {
    margin-right: -75px;
}

#rutaGourmet .splide__pagination {
    bottom: -5rem;
}

#rutaGourmet .splide__pagination__page {
    opacity: .31;
}

#rutaGourmet .splide__pagination__page.is-active {
    opacity: 1;
}

#rutaGourmet .splide__arrow svg {
    fill: #fff;
}

#solucionesFinancieras {
    position: relative;
    display: block;
}


#solucionesFinancieras .info-content::before {
    background-color: rgba(0, 0, 0, .45);
    background: rgba(0, 0, 0, .85);
    height: 100%;
}


#solucionesFinancieras .condition-wrap {
    position: relative;
    width: 100%;
    background-color: #595959;
}


#products {
    background-color: #e7e7e7;
    color: #444;
    padding: 90px 0;
}

#productsBlocks {
    width: 80%;
    margin: 0 auto;
}


#products .card {
    margin: 0 auto;
    width: 70%;
    max-width: 770px;
    min-width: 400px;
}

#products .card {
    font-family: 'basicsansbook';
    font-size: .791rem;
    line-height: 1;
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
}

#products .card .card-body {
    padding-left: 2rem;
    padding-top: .21rem;
    max-height: 330px;
}

#products .card .card-body::-webkit-scrollbar {
    width: 10px;
}

#products .card .card-body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(185, 185, 185);
    border-radius: 10px;
}

#products .card .card-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

#products .card .card-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#products .card .product-type {
    font-family: 'basicsansbold';
    font-size: .95rem;
    color: #919191;
    margin: 0;
}

#products .card .card-title {
    font-family: 'basicsansbold';
    color: #444;
    font-size: 1.3752rem;
}

#products .card .btn-primary.prod-link {
    font-family: 'basicsansbook';
    font-size: .781rem;
    background-color: #444;
    color: #fff;
    padding: 7px 14px;
}

#products .card .btn-primary.prod-link:hover {
    color: #1d1d1f;
    background: #1d1d1f;
    background-color: #fff;
}

#products .splide__pagination__page {
    background: #212529;
    background-color: #212529;
}

#products .splide__pagination__page.is-active {
    background: #00aef0;
    background-color: #00aef0;
}

#products .splide__arrows--ttb .splide__arrow--prev {
    top: -4em;
}

#products .splide__arrow svg {
    fill: #444;
}

/* FAQ */

#faqPreferente {
    display: block;
    position: relative;
    margin: 0;
    padding: 40px 0;
    min-height: 70vh;
}

#accordionPreferente,
#accordionPreferente .accordion-item {
    background: transparent !important;
    color: #fff;
    font-family: "basicsanslight", sans-serif;
    font-weight: normal;
    margin-bottom: 2rem;
    border: none;
    background-color: #121212 !important;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #1e1e1e, #1e1e1e, #212529, #7a7a7a, #212529);
    border-image-slice: 1;
    border-radius: 0;
}

#accordionPreferente {
    border: none;
}

#accordionPreferente .accordion-button {
    background: transparent !important;
    color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-family: 'basicsansbold';
    font-size: 1.425rem;
}

#accordionPreferente .accordion-button::after {
    display: none !important;
}

#accordionPreferente .accordion-button::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f077';
    font-weight: 900;
    left: -1px;
    position: absolute;
    top: 23px;
    font-size: .81rem;
    transition: all .12s ease-in;
}

#accordionPreferente .accordion-button.collapsed::before {
    opacity: .47;
    transform: rotate(180deg);
}


/* Calculadoras */

#calculadoraPreferente {
    display: block;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #e7e7e7;
}

.container-menu {
    width: 100%;
    background-color: #22252a;
    position: relative;
    margin: 0;
    padding: 0;
}

.container-menu .nav-item {
    border: none;
    border-left: 1px solid #fff;
}

.container-menu .nav-item:last-child {
    border-right: 1px solid #fff;
}

.container-menu .nav-link {
    height: 60px;
    border-radius: 0 !important;
    padding: 17px 20px;
    font-size: 1.2rem;
    font-family: 'basicsanslight';
    color: #fff;
    background-color: #22252a;
}

.container-menu .nav-link.active {
    background-color: #010101;
}

.container-menu .dropdown-menu {
    border-radius: 0;
    background-color: #46474b;
    padding: 0;
}

.container-menu .dropdown-menu .dropdown-item {
    height: 60px;
    font-family: 'basicsanslight';
    color: #fff;
    background-color: #22252a;
    padding: 15px 24px 0 24px;
    border-bottom: 1px solid #fff;
}

.container-menu .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.container-menu .dropdown-menu .dropdown-item:hover {
    background-color: #010101;
}

#calcContent {
    margin: 85px 0px;
    color: #444;
}

#calcContent .title {
    font-family: 'basicsansbold';
}

#calcContent p {
    font-family: 'basicsanslight';
}

#calcContent #presupuestoPersonal {
    width: 100%;
    min-height: 70vh;
    margin: 50px auto;
}

#containerCalc {
    margin-bottom: 70px;
    max-width: 760px;
    margin: 0 auto;
}

#containerCalc form {
    margin-top: 70px;
}

#resulPresupuesto .head-box {
    background-color: #22252a;
    padding: 3px 4px;
    color: #fff;
}

#resulPresupuesto .monto-header {
    width: 100%;
    height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #bec1c6;
}

#resulPresupuesto .monto-header h4 {
    font-family: 'basicsansbook';
    font-size: 1.473rem;
    color: #000;
}

#resulPresupuesto .information-wrap {
    padding: 1.2rem;
    background-color: #fff;
    min-height: 185px;
}

#resulPresupuesto .info {
    font-family: 'basicsanslight';
    font-size: 0.798rem;
}

#calcContent.calculadoras {
    margin-bottom: 70px;
    padding-bottom: 40px;
    background-color: rgb(231 231 231) !important;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #e7e7e7, #e7e7e7, #212529, #e7e7e7, #e7e7e7);
    border-image-slice: 1;
}

.calculadoras label {
    font-family: 'basicsansbold';
    color: #22252a;
    margin-bottom: 9px;
}

.form-floating .form-control {
    width: 305px;
}

.calc-form-items .form-control {
    height: 65px;
    min-width: 246px;
}

.calculadoras section .btn-group {
    border-radius: 0;
}

.calculadoras .calc-form-items {
    display: flex;
}

.calculadoras .items-wrapper {
    width: 302px;
}

.calculadoras .hint-mark {
    -ms-flex-item-align: end;
    align-self: flex-end;
    float: left;
    height: 100%;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
    width: 49px;
    margin-top: 25px;
}

.calculadoras .items-wrapper:nth-child(2) {
    margin-left: 24px;
}

.calculadoras .hint-mark .form-hint-icon {
    border: 2px solid #00aef0;
    border-radius: 50%;
    color: #fff;
    color: #00aef0;
    cursor: pointer;
    display: inline-block;
    font-family: "freight_sansbook", sans-serif;
    font-size: 20px;
    height: 29px;
    text-align: center;
    transition: all 0.3s cubic-bezier(.165, .84, .44, 1);
    width: 29px;
}

.calculadoras .label-h {
    margin-bottom: 15px
}

.calculadoras .btn-group.btn-group-toggle {
    border: 2px solid #22252a;
    display: -ms-flexbox;
    display: flex
}

.calculadoras .btn-group .btn-secondary {
    background-color: #fff0;
    border: none;
    padding: 0;
}


.calculadoras .btn-group.btn-group .btn-secondary.active label {
    color: #fff;
}

.calculadoras .btn-group.btn-group .btn-secondary:focus {
    box-shadow: none;
    outline: none
}

.calculadoras .btn-group.btn-group-toggle label {
    text-align: center;
    margin: 0;
    color: #000;
}


.calc-form-items .btn-group-toggle input {
    display: none;
}

.calc-form-items .btn-group-toggle label {
    position: relative;
    color: #fff;
    font-size: 22px;
    text-align: center;
    display: block;
    cursor: pointer;
}

.calc-form-items .btn-group-toggle input:checked+label {
    color: #fff;
}

.calc-form-items .selection-group {
    margin-top: 33px;
}

.calculadoras .btn-group.btn-group .btn-secondary label {
    font-size: 22px;
    color: #010101;
}

.calculadoras .btn-group.btn-group-toggle input {
    background: #fff0;
    border: 2px solid #7d95aa !important;
    color: #264e72;
    font-family: "freight_sansbook", sans-serif;
    font-size: 18px;
    height: 64px;
    padding: 0 23px !important;
    width: 100% !important;
    min-width: 247px;
    border-radius: 0;
}

.calculadoras #results-container th,
.calculadoras #results-container h4 {
    font-family: 'basicsansbold';
    font-weight: normal;
}

.calculadoras .alert-danger {
    font-family: 'basicsansbold';
    color: #010101;
    --bs-alert-bg: #f89420;
    --bs-alert-border-color: #f89420;
    font-weight: normal;
}

.calculadoras .btn-primary {
    min-width: 170px;
}


.calculadoras .btn-group.btn-group .btn-secondary {
    background-color: #fff;
    background-color: transparent;
    border: none;
    padding: 16px 16px 14px;
}

.calculadoras .btn-group.btn-group .btn-secondary.active {
    background-color: #010101;
    color: #fff;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none !important
}

.calculadoras .btn-group.btn-group .btn-secondary.active label {
    color: #fff
}

.calculadoras .btn-group.btn-group .btn-secondary:focus {
    box-shadow: none;
    outline: none
}

.calculadoras .btn-group-toggle>.btn input[type=checkbox],
.calculadoras .btn-group-toggle>.btn input[type=radio],
.calculadoras .btn-group-toggle>.btn-group>.btn input[type=checkbox],
.calculadoras .btn-group-toggle>.btn-group>.btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}



/* Footer */

.site-footer-panel {
    position: relative;
    background-color: #121212;
    margin: 0;
    padding: 91px 0 53px 0
}

.site-footer-panel .title {
    color: #fff;
    font-family: "basicsanslight", sans-serif;
    font-size: 20px;
    line-height: 29px;
    margin: 0 0 24px;
    text-transform: uppercase
}

.site-footer-panel ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer-panel ul li a {
    color: #bdcad4;
    text-decoration: none;
    box-shadow: inset 0 -1px 0 transparent, inset 0 -2px 0 transparent, inset 0 -3px 0 #fff0;
    transition: all 0.6s cubic-bezier(.165, .84, .44, 1)
}

.site-footer-panel .contact-list {
    color: #bdcad4;
    font-family: "basicsanslight", sans-serif;
    font-size: 20px;
    line-height: 18px;
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer-panel li a {
    color: #bdcad4;
    font-family: "basicsanslight", sans-serif;
    font-size: 20px;
    line-height: 18px;
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer-panel li a:hover {
    text-decoration: underline
}

.site-footer-panel .contact-list li {
    margin: 0 0 12px;
    padding: 0 0 0 20px;
    position: relative
}

.site-footer-panel .list-menu {
    transition: height 0.8s cubic-bezier(.165, .84, .44, 1)
}

.site-footer-panel .list-menu li {
    padding: 0 0 6px 15px
}

.site-footer-panel .contact-list li i {
    color: #00aef0;
    font-size: 15px;
    left: 0;
    position: absolute;
    top: 0
}

.site-footer-panel .social {
    margin-top: 2rem;
    margin-left: 22px
}

.site-footer-panel .social li {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 5px;
    vertical-align: middle
}

.site-footer-panel .social a {
    font-size: 1.6rem;
    -ms-flex-align: center;
    align-items: center;
    color: #264e72;
    background: #00aef0;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    height: 38px;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    transition: background 0.6s cubic-bezier(.165, .84, .44, 1);
    width: 38px
}

.site-footer-panel .social a:hover {
    background-color: #f89420;
    text-decoration: none
}

.site-footer-panel .list-menu li {
    border-left: 1px solid #7d95aa
}

.site-footer-panel .panel-sb {
    width: 100%
}

.site-footer-panel .entidades-autorizadas-sb {
    width: 100px;
    height: 100px;
    margin: 22px auto;
    overflow: hidden;
    position: relative
}

.site-footer-panel .panel-sb img {
    width: 100%
}

.site-footer-institucional {
    border-top: 1px solid #7d95aa;
    margin-top: 40px;
    padding: 48px 0
}

.site-footer-panel .use-section {
    float: right;
    margin-top: 4px
}

.site-footer-panel .use-section .menu {
    font-size: .9rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer-panel .use-section .menu li {
    display: inline-block;
    color: #7d95aa
}

.site-footer-panel .use-section .menu li:not(:last-child)::after {
    content: '|';
    display: inline-block;
    margin: 0 10px
}

.site-footer-panel .use-section .menu li a {
    font-size: 16px
}

.site-footer-copyright {
    color: #bdcad4;
    font-family: "basicsanslight", sans-serif;
    font-size: 14px;
    margin-top: 4px
}

.site-footer-panel .collapse:not(.show) {
    display: block
}

.site-footer-panel .title.collapse-section {
    pointer-events: none
}

#navbarNavDropdown1 .nav-item {
    color: #000;
}

#menuCalcMobile .nav-item {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}


#menuCalcMobile .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    border: 1px solid #ffffff0d;
}

#menuCalcMobile .dropdown-menu.show {
    position: relative !important;
    margin: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    transform: none !important;
}

#menuCalcMobile .dropdown-menu.show .dropdown-item {
    background-color: #404446;
    border-color: transparent;
}

#menuCalcMobile .dropdown-toggle::after {
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    transition: all .05s ease-in;
}

#menuCalcMobile .dropdown-toggle.show::after {
    transform: rotate(180deg);
}


/* Responsive design */

@media (min-width:768px) {
    .navbar-brand.logo_banreservas {
        margin-left: 140px;
    }
    .calc-form-items .form-control {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .splide__slide {
        height: 80vh;
        min-height: 400px;
    }

    .banner_content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .smtop_text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .title_text {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .smbottom_text {
        font-size: 1rem;
    }

    .splide__arrow {
        width: 40px;
        height: 40px;
    }

    .splide__pagination__page {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 600px) {

    #mainNavPreferente .side-options-menu {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    #mainBanner .banner_section .banner_content .title_text {
        font-size: 3rem;
    }

    #mainBanner .banner_section .banner_content .smtop_text,
    #mainBanner .banner_section .banner_content .smbottom_text {
        font-size: .9rem;
    }

    #mainBanner .banner_content {
        left: 0;
    }
}

@media (max-width: 480px) {
    .splide__slide {
        height: 70vh;
        min-height: 350px;
    }

    .calculadoras .items-wrapper {
        width: 80%;
        margin-left: 0 !important;
        margin-top: 15px
    }

    .calculadoras .calc-form-items {
        display: flex;
        align-items: flex-end;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .banner_content {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .title_text {
        font-size: 1.8rem;
    }

    .smbottom_text {
        font-size: 0.9rem;
    }

    .splide__arrow {
        display: none;
    }

    #calculadoraPreferente .container-menu .container {
        padding: 0 5px;
    }

    .container-menu .nav-link {
        padding: 14px 10px;
        font-size: .973rem;
    }

    .container-menu .nav {
        justify-content: center;
    }
}

/* Animation for content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner_content {
    animation: fadeInUp 1s ease-out;
}

.smtop_text {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title_text {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.smbottom_text {
    animation: fadeInUp 1s ease-out 0.6s both;
}

