/* ------------------------ */
/* Custom properties start  */
/* ------------------------ */
* {
    /*transition: all .1s linear*/
}

:root {
    /* colors */
    --blue: #002B76;
    --text-blue: #32335C;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #d63384;
    --red: #F5222D;
    --orange: #F26E29;
    --yellow: #FAAD14;
    --green: #52C41A;
    --teal: #20c997;
    --cyan: #DFEAFF;
    --white: #FFFFFF;
    --color-100: #F6F7F9;
    --color-200: #8f8f8f;
    --gris-claro: #53607E;
    --gray-white: #53607E;
    --primary-color: var(--orange);
    --secondary-color: var(--blue);
    --success-color: var(--green);
    --info-color: var(--cyan);
    --warning-color: var(--yellow);
    --danger-color: var(--red);
    --light-color: var(--gray-100);
    --dark-color: var(--gray-900);
    --gradient-secondary: linear-gradient(137.62deg, #002B76, #004BCC);
    --bs-gradient-cian: linear-gradient(137.62deg, #1B78B1, #2B9BE0);
    --bs-gradient-green: linear-gradient(137.62deg, #728B2F, #AAC144);
    --bs-gradient-purple: linear-gradient(137.62deg, #871676, #BE1176);
    --bs-gradient-orange: linear-gradient(137.62deg, #CC7901, #F4BB18);
    --bs-gradient-gray: linear-gradient(137.62deg, #5E5458, #9D928C);
    --bs-gradient-red: linear-gradient(137.62deg, #D55B26, #FB9C73);
    /* font-sizes */
    --bcp-fs-1: 2.441rem;
    --bcp-fs-2: 1.953rem;
    --bcp-fs-3: 1.563rem;
    --bcp-fs-4: 1.25rem;
    --bcp-fs-5: 1rem;
    --bcp-fs-6: 0.8rem;
    --bcp-fw-1: 900;
    --bcp-fw-2: 800;
    --bcp-fw-3: 700;
    --bcp-fw-4: 600;
    --bcp-fw-5: 500;
    --bcp-fw-6: 400;
    --bcp-fw-7: 300;
    --bcp-fw-8: 200;
    --bcp-fw-9: 100;
    /*borders*/
    --bcp-rounded: 5px;
    --bcp-rounded-2: 0.75rem;
    --bcp-rounded-3: 0.30081rem;
    /* Elevation */
    --zindex-1: 1000;
    --zindex-2: 2000;
    --zindex-3: 3000;
    --zindex-4: 6000;
}
/* ------------------------ */
/* Custom properties end  */
/* ------------------------ */


html {
    /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;*/
    font-family: 'Roboto', sans-serif !important;
}

@font-face {
    font-family: 'flexo';
    src: url('../fonts/Flexo-LightIt.woff2') format('woff2'),
        url('../fonts/Flexo-LightIt.woff') format('woff');
}

.content {
    width: 100%;
    margin: 0 auto;
    min-height: calc(100vh - 90px);
    padding: 1rem;
}

@media (min-width: 960px) {
    .content{
        width: 80%;
    }
}

label {
    height: fit-content;
}
/* Colors */
.text-blue {
    color: var(--text-blue);
}

.bcp-bg-100 {
    background-color: var(--color-100);
}

.bcp-bg-info{
    background-color: var(--info-color);
}

.bcp-gray-white{
    background-color: var(--gray-white);
}
.gradient-secondary {
    background: var(--gradient-secondary);
}

.gradient-cian {
    background: var(--bs-gradient-cian);
}

.txt-gradient-cian {
    background: var(--bs-gradient-cian);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-green {
    background: var(--bs-gradient-green);
}

.gradient-purple {
    background: var(--bs-gradient-purple);
}

.txt-gradient-purple {
    background: var(--bs-gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.txt-gradient-green {
    background: var(--bs-gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.txt-gradient-orange {
    background: var(--bs-gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-orange {
    background: var(--bs-gradient-orange);
}

.gradient-gray {
    background: var(--bs-gradient-gray);
}

.txt-gradient-gray {
    background: var(--bs-gradient-gray);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.gradient-red {
    background: var(--bs-gradient-red);
}

.txt-gradient-red {
    background: var(--bs-gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gray-200-text {
    color: var(--color-200)
}

.bcp-navbar--position-fixed {
    position: fixed;
    top: 0;
    margin: 0;
    height: 55px;
    width: 100%;
    z-index: 999;
}

.bcp-navbar--position-relative {
    position: absolute;
    top: 0;
    margin: 0;
    padding: 1rem 0;
    height: 55px;
    width: 100%;
    z-index: 999;
    background-color: transparent;
}

/* ------------------- */
/* Components    */
/* ------------------- */
.tooltip {
    position: relative;
    display: inline-block;
    z-index: 3;
}

    .tooltip .tooltip-text {
        position: absolute;
        visibility: hidden;
        width: 100vw;
        max-width: 250px;
        background-color: #203864;
        color: #FFFFFF;
        font-size: var(--bcp-fs-6);
        padding: 5px 10px;
        border-radius: 7px;
        z-index: 1;
        bottom: 125%;
        transform: translate(-47%, 0);
        opacity: 0;
        transition: opacity 0.3s;
    }

        .tooltip .tooltip-text::after {
            content: "";
            position: absolute;
            top: 99%;
            left: 40%;
            margin-left: -5px;
            border-width: 7px;
            border-style: solid;
            border-color: #203864 transparent transparent transparent;
            /*border: 5px solid #203864 transparent transparent transparent;*/
        }

    .tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }

.progress-container {
    position: relative;
    height: 0.5rem;
    display: block;
    width: 100%;
    background-color: var(--custonColor, rgba(83, 96, 126, 0.20));
    overflow: hidden;
}
    .progress-container .determinate {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        background-color: var(--custonColor, #F26E29);
        transition: width .3s linear;
    }
/* ------------------- */
/* Utility classes     */
/* ------------------- */
/* Text Utilities*/
.bcp-fs-1 {
    font-size: var(--bcp-fs-1);
}

.bcp-fs-2 {
    font-size: var(--bcp-fs-2);
}

.bcp-fs-3 {
    font-size: var(--bcp-fs-3);
}

.bcp-fs-4 {
    font-size: var(--bcp-fs-4);
}

.bcp-fs-5 {
    font-size: var(--bcp-fs-5);
}

.bcp-fs-6 {
    font-size: var(--bcp-fs-6);
}

.bcp-fw-1 {
    font-weight: var(--bcp-fw-1);
}

.bcp-fw-2 {
    font-weight: var(--bcp-fw-2);
}

.bcp-fw-3 {
    font-weight: var(--bcp-fw-3);
}

.bcp-fw-4 {
    font-weight: var(--bcp-fw-4);
}

.bcp-fw-5 {
    font-weight: var(--bcp-fw-5);
}

.bcp-fw-6 {
    font-weight: var(--bcp-fw-6);
}

.bcp-fw-7 {
    font-weight: var(--bcp-fw-7);
}

.bcp-fw-8 {
    font-weight: var(--bcp-fw-8);
}

.bcp-fw-9 {
    font-weight: var(--bcp-fw-9);
}

.text-capitalize {
    text-transform: capitalize;
}

[type="checkbox"].bcp-checkbox--primary:checked + span:not(.lever):after {
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
}

[type="radio"]:checked + span:after, [type="radio"].with-gap:checked + span:after {
    background-color: var(--primary-color);
}

[type="radio"]:checked + span:after, [type="radio"].with-gap:checked + span:before, [type="radio"].with-gap:checked + span:after {
    border: 2px solid var(--primary-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.bcp-m-0 {
    margin: 0;
}

.bcp-p-0 {
    padding: 0px !important;
}

.bcp-rounded {
    border-radius: var(--bcp-rounded) !important;
}

.bcp-rounded-3 {
    border-radius: var(--bcp-rounded-3);
}

.bcp-rounded-top {
    border-radius: var(--bcp-rounded) var(--bcp-rounded) 0 0;
}

.bcp-rounded-2 {
    border-radius: var(--bcp-rounded-2);
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.w-45 {
    width: 45%;
}

.w-70 {
    width: 70%;
}

.h-50 {
    height: 50%;
}

/* padding */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.8rem !important;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2.5rem;
}

.pw-1 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
}

.pw-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.pw-3 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.pt-0 {
    padding-top: 0px;
}

.pt-1 {
    padding-top: 0.8rem;
}

.pt-2 {
    padding-top: 1rem;
}

.pt-3 {
    padding-top: 1.5rem;
}

.pt-4 {
    padding-top: 3.5rem;
}

.pl-3 {
    padding-left: 1.5rem;
}

.pl-1 {
    padding-left: 0.8rem;
}

.pr-1 {
    padding-right: 0.8rem;
}

.pl-2 {
    padding-left: 1rem;
}

.pr-2 {
    padding-right: 1rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.8rem;
}

.pr-3 {
    padding-right: 1.5rem;
}

.pl-4 {
    padding-left: 2.5rem;
}

.pr-4 {
    padding-right: 2.5rem;
}

.pl-5 {
    padding-left: 3.5rem;
}

.pr-5 {
    padding-right: 3.5rem;
}

.pb-2 {
    padding-bottom: 1rem !important;
}

.pb-3 {
    padding-bottom: 1.5rem !important;
}

.pb-4 {
    padding-bottom: 5.5rem;
}

/* margin */
.m-w--auto {
    margin: 0 auto;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-1 {
    margin-bottom: 0.8rem;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.m-0 {
    margin: 0;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-1 {
    margin-top: 0.8rem;
}

.mt-0 {
    margin-top: 0px !important;
}

.mr-3 {
    margin-right: 1.5rem !important;
}

.mr-2 {
    margin-right: 1rem !important;
}

.mr-1 {
    margin-right: 0.8rem !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.ml-3 {
    margin-left: 1.5rem;
}

.ml-2 {
    margin-left: 1rem !important;
}

.ml-1 {
    margin-left: 0.8rem !important;
}

.mw-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mw-1 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
}

.mw-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
/* borders */
.border-1 {
    border: 1px;
}

.border-1-gris-claro{
    border: 1px solid var(--gris-claro);
}

.border-2 {
    border: 2px solid;
}

.border-lr-1 {
    border: 1px solid #ffffff3d;
}

border-primary {
    border-color: var(--primary-color);
}

.border-info {
    border-color: var(--info-color);
}

.point-li {
    list-style: disc !important;
    margin-left: 1rem;
}
/* flex */
.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-center {
    justify-content: center;
}

.justify-items-center {
    justify-items: center;
}

.align-items-center {
    align-items: center;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

/*buttons*/
.btn-doble {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.bcp-btn-outline {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
    text-align: center;
    border-radius: var(--bcp-rounded);
    display: inline-block;
    height: 36px;
    line-height: 36px;
    padding: 0 16px;
    vertical-align: middle;
}

.bcp-btn-outline-green {
    -webkit-text-fill-color: #728B2F;
    background: linear-gradient(var(--white), var(--white)) padding-box, var(--bs-gradient-green) border-box;
    border-radius: var(--bcp-rounded);
    text-align: center;
    border: solid 1px transparent;
}


@media(min-width: 1067px) {
    .hide-custom {
        display: none;
    }
}

/* Text */
.bcp-validation--text-danger {
    display: block;
    color: var(--danger-color);
    font-size: var(--bcp-fs-6);
    margin: -18px 0 0 8px;
}

.cursor-pointer {
    cursor: pointer;
}
/* styles app */
body {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #F2F4F8;
    color: var(--text-blue);
}

.ml-label {
    margin-left: 5px;
}
/*#####################*/
/* LandingPage - Inicio*/
/*#####################*/
.hero-landing {
    position: relative;
    padding: 65px 0 0px 0;
    margin: 0px;
    color: var(--white);
    height: 100%;
    line-height: 2.2rem;
}

.container-landing {
    margin: auto 7%;
}

.hero-img-container {
    padding: 0;
    margin: 0;
    display: flex;
    justify-items: center;
    height: 100%;
    width: 100%;
}

.landing-btn-content {
    padding-bottom: 2rem;
}

.bcp-landing-title {
    font-size: var(--bcp-fs-1);
    font-weight: var(--bcp-fw-5);
    line-height: calc(var(--bcp-fs-2) + 0.5rem);
}

.bcp-landing-subtitle {
    font-size: var(--bcp-fs-4);
}

.image-man {
    background: url("../images/image-man.svg") no-repeat bottom;
    background-size: 360px;
    width: 100%;
    height: 330px;
}

.bcp-landign--card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.bcp-landign--card {
    width: 10rem;
    height: 100%;
    margin: 1rem 3rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.img-card {
    width: 60%;
    height: 70px;
    display: flex;
    align-items: center;
}

.bcp-landign--card span {
    margin-top: 2rem;
}

.line {
    display: inline-flex;
    justify-content: center;
    transform: translateX(75%);
    width: 40%;
    border-bottom: 2px solid #ccc;
    text-align: center;
    padding-bottom: 3px;
    margin: 1.2rem 0 2rem 0;
}
/*####################*/
/* LandingPage - Fin*/
/*####################*/

input::-webkit-calendar-picker-indicator:hover {
    cursor: pointer;
}

.helper-text {
    position: absolute;
    margin: 4px 0 0 10px;
    font-size: var(--bcp-fs-6);
    color: var(--color-200);
}

.bcp-field--filled {
    background-color: #f8f8f8;
    border-radius: 5px 5px 0px 0px;
    padding: 0;
    margin-bottom: 1.5rem;
}

.bcp-input-field {
    height: 3.5rem !important;
    width: 100% !important;
    padding: 0px 10px !important;
    margin: 0px !important;
    padding-top: 15px !important;
    /*box-shadow: none !important;*/
    box-sizing: border-box !important;
    position:relative;
    z-index: 1;
}

.bcp-loadin-container {
    position: fixed;
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    width: 100%;
    height: 100vh;
    z-index: var(--zindex-3);
}

.bcp-loadin--logo {
    background: url('../images/Logo_BCP.svg');
    background-repeat: no-repeat;
    background-size: 130px;
    height: 32px;
    width: 130px;
}

.bcp-loadin--message {
    text-align: center;
}

.bcp-loadin--imgLoading {
    background: url('../images/spinbcppx.svg');
    background-repeat: no-repeat;
    background-size: 70px;
    height: 80px;
    width: 80px;
}

.main-content {
    position: relative;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    align-items: center;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
}

.goTop {
    position: fixed;
    top: calc(100vh - 60px);
    transform: translate(-50%, 0);
    left: 50%;
    height: 38px;
    width: 38px;
    border-radius: 50px;
    background-color: rgba(0,0,0,0.6);
    box-shadow: 0 2px 30px 0 rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: var(--zindex-2);
}

    .goTop a {
        color: var(--white);
    }

.hero {
    margin-top: 20px;
    color: #FFFFFF;
    min-height: 180px;
    width: 100vw;
}

    .hero .container {
        padding-top: 60px;
    }

.section-hero--btn {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 2.5rem;
}

@media(max-width: 600px) {
    .section-hero--btn {
       justify-content: flex-end;
       align-items: center;
       bottom: 20%;
       padding-inline: 1rem;
    }
}

.section-card-hero--btn {
    position: absolute;
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 5%;
    margin-top: 5%;
}

    @media(max-width: 600px) {
        .section-card-hero--btn {
            min-height: 85%;
            justify-content: flex-end;
            padding-inline: 1rem;
            padding-top: 2rem;
            margin-left: 0;
            margin-top: 0;
        }
    }

@media (min-width: 600px) and (max-width: 992px) {
    .section-card-hero--btn {
        justify-content:flex-start;
        min-height: 90%;
    }
}

@media(max-width: 300px) {
    .section-card-hero--btn {
        min-height: 95%;
    }
}

.card-hero_body {
    display: flex;
    flex-direction: column;
}

.card-hero_body-content {
    order: 1;
    max-width: 370px;
    text-align:left;
}
.card-hero_body-actions {
    order:2;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    
}

@media (min-width: 600px) and (max-width: 992px) {
    .card-hero_body-content {
        max-width: 320px;
    }
}

@media(max-width: 600px) {
    .card-hero_body {
        width: 100%;
        align-items: center;
    }
    .card-hero_body-content {
        order: 2;
        max-width: 300px;
    }
    .card-hero_body-actions {
        order: 1;
        width: 100%;
        margin-bottom: 2.3rem;
    }
}

.otros-beneficios {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
}

.otros-beneficios__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.otros-beneficios__item-imgbox {
    height: 50px;
    /*width: 40px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.otros-beneficios__item:first-child .otros-beneficios__item-imgbox img {
    width: 63px;
    height: 50px;
}

.otros-beneficios__item:nth-child(2n+2) .otros-beneficios__item-imgbox img {
    width: 32px;
    height: 49px;
}

.otros-beneficios__item:nth-child(2n+3) .otros-beneficios__item-imgbox img {
    width: 52px;
    height: 64px;
}

.otros-beneficios__item:nth-child(2n+4) .otros-beneficios__item-imgbox img {
    width: 45px;
    height: 47px;
}

.otros-beneficios__item:last-child .otros-beneficios__item-imgbox img {
    width: 45px;
    height: 43px;
}

.bandera-bolivia {
    display: grid;
    grid-template-rows: repeat(3,1fr);
    height: 100%;
}

.instrucciones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.box-contacto {
    display: flex;
    justify-content: center;
}

.box-contacto__item {
    padding: 10px 30px;
}

    .box-contacto__item span {
        display: block;
        text-align: center;
    }

    .box-contacto__item:nth-of-type(even) {
        border-inline: 1px solid rgba(255, 255, 255, 0.30);
    }

@media(max-width: 600px) {
    .instrucciones {
        grid-template-columns: none;
        gap: 20px;
    }

    .otros-beneficios {
        grid-template-columns: none;
        gap: 10px;
    }

    .otros-beneficios__item {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .otros-beneficios__item-imgbox {
        height: 40px;
        width: 30px;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .otros-beneficios__item:first-child .otros-beneficios__item-imgbox img {
        width: 34px;
        height: 27.2px;
    }

    .otros-beneficios__item:nth-child(2n+2) .otros-beneficios__item-imgbox img {
        width: 21px;
        height: 32px;
    }

    .otros-beneficios__item:nth-child(2n+3) .otros-beneficios__item-imgbox img {
        width: 36px;
        height: 44px;
    }

    .otros-beneficios__item:nth-child(2n+4) .otros-beneficios__item-imgbox img {
        width: 25px;
        height: 26px;
    }

    .otros-beneficios__item:last-child .otros-beneficios__item-imgbox img {
        width: 25px;
        height: 23.86px;
    }

    .box-contacto {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .box-contacto__item:nth-of-type(even) {
        width: 100%;
        border-inline: none;
        padding: 10px 0px;
        border-top: 1px solid rgba(255, 255, 255, 0.30);
        border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    }
}

.instrucciones-card {
    border: var(--bcp-rounded);
    box-shadow: 0 2px 30px 0 rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    min-width: 137px;
}

@media (max-width:600px) {
    .instrucciones-card {
        padding: 0px;
        box-shadow: none;
    }
}

.hero-info {
    display: flex;
    justify-content: space-around;
    border: 1px solid rgb(128, 128, 128, 0.7);
    border-radius: 7px;
    padding: 0.7rem;
}

.hero-info--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
    padding: 0.7em;
}

.hero-info--item-img {
    display: flex;
    min-width: 35px;
    height: 35px;
    margin-bottom: 0.5rem;
    margin-right: 1rem;
    justify-content: center;
    align-items: center
}

.productos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 1rem;
    margin-top: 3rem;
}

.productos-container--mobile {
    margin-top: -3.5rem;
    display: flex;
    /*height: 360px;*/
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 2.5rem 0.5rem 2.5rem;
}

.productos-container-grid {
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    overflow-x:auto;
}

@media (max-width: 600px) {
    .productos-container-grid {
        margin-top: 1rem;
    }
}

.productos_card_v1 {
    background-color: var(--white);
    padding: 10px 20px 20px 20px;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*max-width: 358px;*/
    min-height: 193px;
    height: fit-content;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .productos-container-grid {
        display: grid;
        grid-template-columns: none;
        gap: 13px;
    }

    .productos_card_v1 {
        min-height: fit-content;
    }
}

@media (min-width: 769px) {
    .sw-100 {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .lw-50 {
        width: 50%;
    }
}

.productos_card {
    display: flex;
    flex-direction: column;
    width: 20rem;
    margin: 1rem 0.4rem;
    min-height: 280px;
    justify-content: space-between;
}

.productos-card--body {
    min-height: 220px;
}

.card-producto__list-item {
    display: flex;
    align-content: center;
    text-decoration: none;
    /*margin-top: 5px;*/
}

    .card-producto__list-item i {
        margin-right: 0.7rem;
    }

    .card-producto__list-item p {
        margin-top: 0;
    }

.card-process {
    margin: -135px auto 0px auto;
}

.icon-alert {
    position: absolute;
    top: -20px;
    background: url('../images/alert-icon.svg') no-repeat bottom #FFFFFF;
    background-size: 44px;
    height: 40px;
    width: 40.59px;
    border-radius: 50%;
    padding: 0;
}

.bcp-icon--camera-blue {
    background: url('../images/camera-icon-blue.svg') no-repeat;
    background-size: 45px;
    background-position: center;
    min-width: 45px;
    height: 45px;
}

.bcp-icon--ci-blue {
    background: url('../images/ci-icon-blue.svg') no-repeat;
    background-size: 45px;
    background-position: center;
    min-width: 45px;
    height: 45px;
}

.bcp-icon--lightbulb-blue {
    background: url('../images/lightbulb-icon-blue.svg') no-repeat;
    background-size: contain;
    background-position: center;
    min-width: 45px;
    height: 45px;
}

.bcp-icon--chinstrap-blue {
    background: url('../images/chinstrap-icon-blue.svg')no-repeat;
    background-size: 45px;
    background-position: center;
    min-width: 45px;
    height: 45px;
}

.img-fluid {
    width: 100vw;
    height: auto;
}

.card-img-fluid {
    width: 100%;
    height: auto;
}

.bcp-step-wrapper {
    color: var(--white);
    display: flex;
    min-width: 5.4rem;
    float: right;
    margin-right: 20px;
}


.bcp-step-wrapper--content-line {
    position: relative;
    width: 100%;
}

.bcp-step-line {
    border-top: 1px solid;
    width: auto;
}

.bcp-step-line--center-left {
    position: absolute;
    left: -10px;
    top: 0;
    border-top: 1px solid;
    width: 50%;
}

.bcp-step-line--center-right {
    position: absolute;
    right: -10px;
    top: 0;
    border-top: 1px solid;
    width: 50%;
}

.bcp-step-wrapper--step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--white);
    font-size: 0.9rem;
    position: absolute;
    background-color: transparent;
}

.bcp-step-wrapper--start {
    position: absolute;
    top: -10px;
    left: -20px;
}

.bcp-step-wrapper--center {
    position: absolute;
    top: -10px;
    transform: translate(-50%, 0%);
    left: 50%;
}

.bcp-step-wrapper--end {
    position: absolute;
    top: -10px;
    right: -20px;
}

.bcp-step-wrapper--step-success {
    content: 'b';
    color: var(--secondary-color);
    background-color: var(--white);
}

.modal-question--container {
    margin-top: 150px;
    max-width: 380px;
    overflow: hidden;
}

.modal-question {
    margin-top: -40px;
    padding: 0 3rem;
}

.bcp-modal-alert--container {
    margin-top: 250px;
    max-width: 380px;
    border: none !important;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none;
}

.bcp-modal-alert--content {
    position: relative;
    background-color: var(--white);
    color: var(--cyan);
    text-align: center;
    border: 3px solid var(--cyan);
    display: flex;
    justify-content: center;
    padding: 0.7rem;
    padding-bottom: 0;
    margin-top: 40px;
    max-width: 380px;
    font-size: var(--bcp-fs-5);
    font-weight: 400;
    border-radius: 7px;
}

.bcp-card--flat-rc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--color-100);
    padding: 1rem;
    border-radius: var(--bcp-rounded);
}

.bcp-card--container {
    display: flex !important;
    justify-content: center;
    align-content: center;
}


.bcp-card--flat-seguro {
    display: flex;
    flex-direction: column;
    background-color: var(--color-100);
    padding: 2rem;
    border-radius: var(--bcp-rounded);
}

.bcp-card--header {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 1rem 1rem;
}

.bcp-card--header-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bcp-card--header-img-js {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.bcp-card--header .title {
    margin-top: 0.7rem;
}

.bcp-card--body {
    display: block;
    padding: 0 2rem;
}

.bcp-card--body-js {
    display: block;
    padding: 0 2rem;
}

.right-arrow-display {
    display: none;
}

.right-arrow-display-js {
    display: none;
}

.bcp-cuenta--box {
    background-color: var(--color-100);
    display: flex;
    justify-content: space-between;
    border-radius: var(--bcp-rounded);
    margin: 0 auto;
    max-width: 25rem;
    min-width: 250px;
    height: 3.5rem;
}

    .bcp-cuenta--box img {
        background-color: #203864;
        padding: 8px 15px;
        border-radius: var(--bcp-rounded) 0 0 var(--bcp-rounded);
    }

.bcp-row-cuenta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 2rem;
}

.bcp-nick-card {
    border: solid 1px #203864;
    border-radius: var(--bcp-rounded);
    padding: 1rem 2rem;
    min-width: 210px;
    max-width: 45%;
    margin: 0 0.7rem;
}

.bcp-tjdebito-card {
    border-radius: var(--bcp-rounded);
    background-color: var(--color-100);
    min-width: 250px;
    max-width: 20%;
    margin: 0 0.7rem;
}

.bcp-tjdebito-card--only {
    max-width: 25rem;
    min-width: 250px;
    padding: 1.2rem 3rem;
}

.modal {
    /*overflow: hidden;*/
    background-color: var(--white);
    max-height: 90vh;
    font-family: Roboto, sans-serif !important;
    border-radius: var(--bcp-rounded);
}

.bcp-modal-content {
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.bcp-modal-body {
    background-color: #F6F7F9;
    overflow-y: hidden;
    padding: 1rem 0.7rem;
}

.bcp-modal-body-text {
    max-height: 45vh;
    padding: 0 2.3rem 1rem 1rem;
    overflow-y: auto;
}

.bcp-arrow--back {
    text-decoration: none;
    position: absolute;
    left: 5px;
    top: 15px;
    z-index: var(--zindex-1);
}

#pdf_container {
    background: #ccc;
    text-align: center;
    overflow: auto
}

.modalDocuments {
    max-width: 1046px !important;
    width: auto;
}

.label-ingresos {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 38px;
    width: 100%;
}

.situacion-container {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
}

@media(min-width: 820px) {
    .situacion-container {
        display: grid;
        gap: 1.2rem;
        grid-template-columns: repeat(3, 1fr);
        place-content: center;
    }
}

.bcp-rbt--container input[type="radio"] {
    display: block;
}

.bcp-rbt--container div {
    background-color: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 35px;
    padding: 0.5rem 1.0625rem;
    margin-right: 0.8rem;
    text-align: center;
    display:block;
    width: 100%;
}

.bcp-rbt--container input[type="radio"]:checked + div {
    background-color: var(--orange);
    color: var(--white);
}

.bcp-modal--bg-blur {
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    will-change: opacity;
    z-index: var(--zindex-3);
}

.bcp-modal-box {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.boxSelect-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.boxSelect-content {
    max-height: calc(100vh - 80px);
    width: 94%;
    border-radius: 7px;
    background-color: var(--white);
}

.select-collection {
    overflow-y: auto;
    max-height: calc(100vh - 180px);
    padding: 0px;
    margin: 0px;
    border-radius: 7px;
}

    .select-collection .collection-item {
        border-bottom: 1px solid var(--color-100);
        padding: 7px 10px;
        cursor: pointer;
    }

        .select-collection .collection-item:hover {
            background-color: var(--color-100);
        }

.boxSelect-text--selected input {
    padding: 5px 10px !important;
    box-sizing: border-box !important;
}

.bcp-modal-box--content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    max-width: 330px;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: 1px solid #b6b2b2;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    border-radius: 5px;
}

.checkPropositoCta-box {
    background-color: #f8f8f8;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
}

.bcp-alertInfo--flat {
    position: absolute;
    bottom: 110%;
    right: -110px;
    background-color: #203864;
    color: var(--white);
    width: 324px;
    min-width: 260px;
    max-width: 380px;
    font-size: var(--bcp-fs-6);
    border-radius: var(--bcp-rounded);
    padding: 12px 10px;
    z-index: var(--zindex-2);
}

.bcp-alertInfo--flat-text {
    position: relative;
}

    .bcp-alertInfo--flat-text:before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 95%;
        right: 36%;
        border-top: 18px solid transparent;
        border-right: 15px solid #203864;
        border-bottom: 18px solid transparent;
        transform: rotate(-90deg);
        z-index: var(--zindex-2);
    }

.bcp-alertInfo--flat-ingresos {
    position: relative;
}

    .bcp-alertInfo--flat-ingresos:before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 95%;
        right: 6%;
        border-top: 18px solid transparent;
        border-right: 15px solid #203864;
        border-bottom: 18px solid transparent;
        transform: rotate(-90deg);
        z-index: var(--zindex-2);
    }

@media(max-width: 960px) {
    .bcp-landing-title {
        font-size: var(--bcp-fs-2);
    }
}


@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .modal {
        max-height: 90vh;
        width: 90vw;
    }

    .bcp-modal-content {
        padding: 0 .7rem;
    }

    .bcp-modal-body {
        background-color: #FFFFFF;
        padding: 0rem;
    }

    .bcp-modal-body-text {
        padding: 0 2rem 0rem 1rem;
        max-height: 60vh;
    }

    .image-man {
        background-size: 20rem;
        width: 100%;
        height: 260px;
    }

    .bcp-landing-title {
        font-size: var(--bcp-fs-3);
    }

    .bcp-landing-subtitle {
        font-size: var(--bcp-fs-5);
    }

    .line {
        width: 70%;
        transform: translateX(20%);
        margin-top: 2.5rem;
    }

    .bcp-landign--card-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .bcp-landign--card {
        width: 100%;
        height: 100%;
        margin: .7rem 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-items: center;
        text-align: left;
    }

    .img-card {
        width: 20%;
        height: 70px;
        display: flex;
        margin-right: 2rem;
    }

    .bcp-landign--card span {
        margin: 0px;
    }

    .landing-btn-content {
        transform: translateY(280px);
        display: flex;
        justify-content: center;
        padding-bottom: 0;
    }

        .landing-btn-content a {
            box-shadow: rgba(0,0,0,0.3) 1px 2px 5px;
        }

    .hero {
        text-align: center;
    }

    .hero-info {
        flex-direction: column;
        align-items: center;
        border: none;
        margin: -0.2rem 0 -1rem 0;
        width: 100%;
    }

    .hero-info--item {
        display: flex;
        flex-direction: row;
        align-content: center;
        text-align: left;
        max-width: 270px;
    }

    .hero-info--item-img {
        margin-bottom: 0;
        min-width: 35px;
        margin-right: 1rem;
    }

    .productos_card {
        width: 100%;
    }

    .productos-card--body {
        min-height: 190px;
    }

    .bcp-card--container {
        width: 100%;
        padding: 1.75rem 2rem;
        padding-bottom: 0px;
        flex-direction: column;
        align-items: center;
    }

    .bcp-card--flat-rc {
        background-color: var(--white);
        min-width: 100%;
        flex-direction: row;
        text-align: left;
        padding: 0;
        margin-top: 1rem;
    }

        .bcp-card--flat-rc div {
            margin-right: 1.5rem;
        }

    .bcp-card--flat-seguro {
        min-width: 100%;
        flex-direction: column;
        max-width: 100%;
        padding: 2rem;
    }

    .bcp-card--header {
        justify-content: space-between;
        padding: 0.8rem 0 0.8rem 1rem;
        font-size: 1.2rem;
    }

    .bcp-card--header-img {
        flex-direction: row;
        align-content: center;
    }

    .bcp-card--header img {
        margin-right: 1rem;
    }


    .bcp-card--header .title {
        margin-top: 0;
    }

    .right-arrow-display {
        display: block;
    }

    .bcp-card--body {
        display: none;
        margin: 0;
    }

    .bcp-row-cuenta {
        padding: 0 1.2rem;
        margin: 2rem 0;
        flex-direction: column-reverse
    }

    .bcp-nick-card {
        margin: -5px 0 -30px 0;
        min-width: 100%;
        border: none;
    }

        .bcp-nick-card img {
            width: 25px;
        }

    .bcp-tjdebito-card {
        min-width: 100%;
        padding: 0 2rem;
        margin: -20px 0 2px 0;
        background: none;
        text-align: left;
    }

        .bcp-tjdebito-card p {
            margin: 0 -15px;
        }

    .bcp-card--header-img img {
        margin-right: 1.5rem;
        width: 30px;
    }

    .icon-seguro {
        margin-right: 4px !important;
    }

    .s-show {
        display: block;
    }

    .m-hidden {
        display: none;
    }
}

@media only screen and (min-width: 601px) {
    .show-flex-on-small-and-up {
        display: flex;
    }

    .image-man {
        background-size: 23rem;
        width: 100%;
        height: 340px;
    }

    .m-hidden {
        display: block;
    }

    .s-show {
        display: none;
    }
}

@media (min-width: 1368px) {
    .image-man {
        background-size: 27rem;
        width: 100%;
        height: 370px;
    }

    .productos_card {
        margin: 1rem 0.7rem;
    }

    .productos-card--body {
        min-height: 220px;
    }
}

@media (min-width: 1388px) {

    .bcp-alertInfo--flat {
        width: 360px;
    }

    .bcp-alertInfo--flat-text:before {
        right: 32%;
    }
}

@media(min-width: 769px) {
    .btn-bs span {
        display: none;
    }

    .btn-usd span {
        display: none;
    }

    .btn-bs:after {
        content: "BOL.";
    }

    .btn-usd:after {
        content: "USD.";
    }
}

@media(min-width: 1064px) {
    .btn-bs span {
        display: block;
    }

    .btn-usd span {
        display: block;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    input {
        font-size: 14px !important;
    }

    .btn-bs span {
        display: none;
    }

    .btn-usd span {
        display: none;
    }

    .btn-bs {
        margin-top: -12px;
    }

    .btn-usd {
        margin-top: -12px;
    }

    .btn-bs:after {
        content: "BOL.";
    }

    .btn-usd:after {
        content: "USD.";
    }

    .webView-box--messagge {
        min-width: 220px;
    }

    .bcp-alertInfo--flat {
        right: -104px;
        width: 270px;
    }

    .bcp-alertInfo--flat-text:before {
        right: 41%;
    }
}
