@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --nav-width: 50px;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box;
}

/* -=-=-=-=-=-=-=- FONTS -=-==-=-=-=-=-=-=-*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

main {
    margin-top: 100px;
    margin-bottom: 100px;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
}

.bodyContainer {
    min-height: calc(100vh - 0px);
}

a {
    color: #242c50;
    transition: 0.4s;
}

a:hover {
    color: #2c98c2;
    transition: 0.4s;
}

p.xsmall {
    font-size: 12px;
}

td.text-truncate {
    max-width: 60px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 80px !important;
}

/* -=-=-=-=-=-=-=- APP VERSION -=-==-=-=-=-=-=-=-*/
.versionContainer {
    width: 100%;
    position: fixed;
    bottom: 40px;
    right: 0px;
}

.appVersion::after {
    content: 'V 0.1';
    font-size: 12px;
    color: white;
    position: absolute;
    float: left;
    bottom: -35px;
    right: 20px;
}


/* -=-=-=-=-=-=-=- Login -=-==-=-=-=-=-=-=-*/
section#login {
    padding-top: 0px;
}

.iconLoginContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}

a.iconContainer {
    width: 20%;
}

a.iconContainer:hover {
    opacity: 0.6;
    transition: 0.4s;
}

a.iconContainer h1 {
    font-size: 13px;
    text-align: center;
    line-height: 14px;
    color: #6d6d6d;
    font-weight: 500;
}

.iconLogin {
    background-size: contain;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    transition: 0.4s;
}

a.iconContainer:hover .iconLogin {
    transform: scale(1.15);
    transition: 0.4s;
}

.icon-one {
    background-image: url("icons/iso_blanco.svg");
}

.icon-two {
    background-image: url("icons/iso_azul.svg");
}

.icon-three {
    background-image: url("icons/iso_rojo.svg");
}

.icon-four {
    background-image: url("icons/iso_verde.svg");
}

.icon-five {
    background-image: url("icons/iso_amarillo.svg");
}

.secContainer {
    height: 40px;
    display: flex;
    justify-content: space-between;
}


@media (max-width: 768px) {
    section#login {
        padding-top: 0px;
    }

    .iconLoginContainer {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-bottom: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    a.iconContainer {
        width: 33%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
}


/* -=-=-=-=-=-=-=- Login -=-==-=-=-=-=-=-=-*/
main.flex-shrink-0.validado {
    margin: 0px;
}

section#validado {
    padding-top: 0px;
    background-image: url("../img/bkg-valido.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: row;
    align-items: center;
    background-attachment: fixed;
}

section#validado h1 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}

.validadoContainer {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    section#validado {
        padding-top: 50px;
    }
}


/* -=-=-=-=-=-=-=- Login - buscar -=-==-=-=-=-=-=-=-*/
section#buscar {
    padding-top: 0px;
    background-image: url("../img/bkg_buscar.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: row;
    align-items: center;
    background-attachment: fixed;
}

section#buscar h1 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}

.validadoContainer.buscar {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(3px);
    border-radius: 30px;
    margin-top: 40px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    section#validado {
        padding-top: 50px;
    }

    .validadoContainer.buscar {
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
    }
}

/* -=-=-=-=-=-=-=- NAVBAR -=-==-=-=-=-=-=-=-*/
nav#myNavbar {
    background-color: #ffffff;
    z-index: 5;
    padding: 0px;
    border-bottom: 3px solid #e7bb61;
    box-shadow: none !important;
    height: 75px;
}

.navbar-brand {
    height: 50px;
    font-size: 1rem;
    background-color: transparent;
    padding: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

a.navbar-secondary-brand {
    width: auto;
    height: 50px;
    margin-right: auto;
    margin-left: 20px;
}

a.nav-link {
    font-family: "Montserrat", sans-serif;
    color: #242c50 !important;
    text-transform: none;
    font-size: 16px;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    display: flex;
    flex-direction: row;
    align-items: center;
}

a.nav-link p {
    margin-bottom: 0px;
    margin-right: 10px;
}

.navbar-title {
    margin-left: 0px;
    text-align: right;
    font-size: 1.25rem;
    line-height: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-right: auto;
}

.navbar-title::before {
    content: '';
    position: relative;
    width: 1px;
    height: 30px;
    background-color: #242c50;
    float: left;
    margin-right: 15px;
}

a.nav-link.active {
    opacity: 0.5;
}

.nav-link:focus,
.nav-link:hover {
    color: #242c50 !important;
    opacity: 0.6;
}

li.nav-item.btn {
    padding: 0px;
    margin-top: 2px;
    transition: 0.4s;
}

li.nav-item.btn a.nav-link:hover {
    opacity: 0.6;
    transition: 0.4s;
}

li.nav-item.btn a.nav-link {
    background-color: #fff;
    border-radius: 50rem;
    padding: 0.35rem 1.5rem !important;
    color: #242c50;
}

li.nav-item.btn a.nav-link.nav-miAr {
    background-color: #fff;
    border-radius: 50rem;
    color: #0072bb;
    padding: 10px 20px !important;
}

li.nav-item.dropdown.language {
    background-color: #F4F4F4;
    padding: 0px !important;
    margin-left: 30px;
    border-radius: 4px;
    height: 35px;
    margin-top: 4px;
}

li.nav-item.dropdown.language .nav-link {
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.45rem 1.25rem !important;
    font-size: 13px;
}

.dropdown-menu li a {
    margin: 4px 0px;
    font-size: 14px;
}

li.nav-item.btn.miAr {
    margin-left: 25px;
}

.mobile-title {
    display: none;
}

.input-group.fc-miArg.mobile {
    position: fixed;
    width: calc(100vw - 140px);
    left: 0px;
    z-index: 1;
    background-color: #ffffff;
    height: 67px;
    top: 0px;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    padding-left: 14px;
}




@media (max-width: 768px) {
    li.nav-item.btn.miAr {
        margin-left: 0px;
        margin-top: 10px;
    }

    a.navbar-brand {
        height: 45px;
    }

    a.navbar-secondary-brand {
        height: 35px;
        margin-left: 5px;
    }

    nav#myNavbar {
        height: 70px;
    }

    .navbar-title {
        float: left;
        margin-right: auto;
        margin-left: 0px;
    }

    .mobile-title {
        display: block;
        margin-top: -80px;
        margin-bottom: 30px;
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
}


/* -=-=-=-=-=-=-=- MOBILE MENU -=-==-=-=-=-=-=-=-*/
.animated-hamburger {
    width: 30px !important;
    height: 20px !important;
    position: relative !important;
    margin: 0px !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transition: .5s ease-in-out !important;
    -moz-transition: .5s ease-in-out !important;
    -o-transition: .5s ease-in-out !important;
    transition: .5s ease-in-out !important;
    cursor: pointer !important;
    top: -4px;
}

.animated-hamburger span {
    display: block !important;
    position: absolute !important;
    height: 2px !important;
    width: 100% !important;
    border-radius: 9px !important;
    opacity: 1 !important;
    left: 0 !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transition: .25s ease-in-out !important;
    -moz-transition: .25s ease-in-out !important;
    -o-transition: .25s ease-in-out !important;
    transition: .25s ease-in-out !important;
}

.animated-hamburger span {
    background: #fff !important;
}

.animated-hamburger span:nth-child(1) {
    top: 0px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left center !important;
    width: 50% !important;
}

.animated-hamburger span:nth-child(2) {
    top: 10px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left center !important;
}

.animated-hamburger span:nth-child(3) {
    top: 20px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left bottom !important;
    width: 50% !important;
    margin-left: 50%;
}

.animated-hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg) !important;
    -moz-transform: rotate(45deg) !important;
    -o-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
    top: 0px !important;
    left: 0px !important;
    width: 100% !important;
}

.animated-hamburger.open span:nth-child(2) {
    width: 100% !important;
    opacity: 0 !important;
    transform: translateX(30px) !important;
}

.animated-hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg) !important;
    -moz-transform: rotate(-45deg) !important;
    -o-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
    top: 21px !important;
    left: 0px !important;
    width: 100% !important;
    margin-left: 0px;
}

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





/* -=-=-=-=-=-=-=-=-=-=-=- *SIDENAV -=-=-=-=-=-=-=-=-=-=-=-=-*/
main #body-pd {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: 'nunito', sans-serif;
    font-size: var(--normal-font-size);
    transition: .4s;
}

a {
    text-decoration: none;
}

.header {
    width: 100%;
    height: 3rem;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: #fff;
    z-index: var(--z-fixed);
    transition: .5s;
}

.header_toggle {
    color: #242c50;
    font-size: 12px;
    cursor: pointer;
}

.header_toggle i.bi::before {
    font-weight: 700 !important;
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.header_img img {
    width: 40px;
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100%;
    background-color: var(--white);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed);
}

.l-navbar .nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1.25rem;
    padding: .45rem 2rem .45rem 1rem;
}

.nav_logo {
    margin-bottom: 2rem;
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color);
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700;
}

.nav_link {
    position: relative;
    color: #f7f7f7;
    margin-bottom: 0px;
    transition: .3s;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--med-blue);
}

.nav_icon {
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.nav_icon.boton {
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    float: right;
    margin-left: 10px;
}

.icon-monitoreo {
    background-image: url("icons/icono_monitoreo.svg");
}

.icon-reportes {
    background-image: url("icons/icono_reportes.svg");
}

.icon-nomina {
    background-image: url("icons/icono_nomina.svg");
}

.icon-usuarios {
    background-image: url("icons/icono_usuarios.svg");
}

.icon-roles {
    background-image: url("icons/icono_roles.svg");
}

.icon-filtrar {
    background-image: url("icons/icon-btn_filtrar.svg");
}

.icon-buscar {
    background-image: url("icons/icon_buscar.svg");
    float: right;
    margin-left: 10px;
}

.l-navbar.show {
    left: 0;
}

main#body-pd {
    transition: 0.4s;
    margin-left: 80px;
    margin-right: 20px;
    margin-top: 60px;
}

main#body-pd.body-pd {
    margin-left: 40px;

}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem);
    transition: 0.4s;
}

.nav_name {
    font-size: 15px;
}

.nav_list .nav_link.active {
    font-weight: 600;
    opacity: 0.3;
}

.nav_list .nav_link {
    color: #242c50;
}

a.nav_link:hover {
    opacity: 0.6;
    transition: 0.4s;
}

.nav_list .nav_link.active {
    color: #242c50;
}

.nav_list .nav_link.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: #fff;
}

.nav_divider {
    width: 100vw;
    height: 1px;
    background-color: #dfdfdf;
    margin: 15px 0px 10px -20px;
}

.height-100 {
    height: 100vh;
}

.header.body-pd .header_toggle i.bi::before {
    transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
    main #body-pd {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 0rem);
    }

    .header {
        padding: 0 25px 0 calc(var(--nav-width) + 0px);
        margin-top: 75px;
        background-color: #f7f7f7;
        height: 55px;
        border-radius: 0px 10px 10px 0px;
        max-width: 70px;
        z-index: 5;
    }

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

    .header_img img {
        width: 45px;
    }

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0;
        margin-top: 75px;
        background-color: #f7f7f7;
        z-index: 5;
    }

    .l-navbar.show {
        width: calc(var(--nav-width) + 176px);
    }

    .body-pd {
        padding-left: calc(var(--nav-width) + 176px);
    }

}

@media (max-width: 768px) {
    main#body-pd {
        margin-left: 0px;
        margin-top: 0px;
        width: 100%;
        padding: 100px 0px;
    }

    main#body-pd.body-pd {
        margin-left: 0px;
    }

    #header {
        top: 80px;
        left: 0px;
        background-color: white;
        width: 0px;
        border-radius: 0px 12px 12px 0px;
        display: none;
    }

    .l-navbar {
        position: fixed;
        top: auto;
        left: 0%;
        padding: 10px;
        width: 100vw;
        height: 60px;
        bottom: 0px;
        z-index: 102;
        margin: 0px;
        box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
        background-color: #ffffff;
    }

    .l-navbar .nav {
        height: 60px;
        width: 95vw;
        display: block;
    }

    .nav_name {
        font-size: 12px;
    }

    .nav_list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    a.nav_link {
        display: flex;
        flex-direction: column;
        align-content: center;
        column-gap: 0px;
        padding: 0px 10px;
    }

    .nav_link_divider {
        display: none !important;
    }

    span.nav_name {
        max-width: 85px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: inline-block;
    }

    .nav_icon.boton {
        margin-left: 0px;
    }

}



/* -=-=-=-=-=-=-=- LOGIN -=-==-=-=-=-=-=-=-*/
.card.logIn {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 50px;
}

.card.logIn .card-body h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.passRecover {
    color: #37baed;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.passRecover:hover {
    color: #2382a7;
    transition: 0.3s;
}

.userType {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.miArgentinaHolder {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 40vw;
    justify-content: flex-end;
}

.miArgentinaHolder .input-group {
    height: 44px;
}

.miArgentinaHolder .form-control {
    border: 1px solid black;
    border-radius: 10px;
}

.miArgentinaHolder .input-group-text {
    border-radius: 50rem;
    background-color: white;
    border: 1px solid black;
}

.btn-miArg-lg {
    font-size: 3rem;
    padding: 0px 20px;
    height: 44px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50rem;
}

.search-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.search-box.show {
    max-height: 200px;
    /* or however tall your input area is */
    opacity: 1;
}

@media (max-width: 768px) {
    .miArgentinaHolder {
        min-width: auto;
        margin-left: auto;
    }

    .btn-miArg-sm {
        font-size: 1rem;
        border-radius: 50rem;
    }

    span#searchMobile {
        height: 44px;
    }
}

/* -=-=-=-=-=-=-=- FORMS -=-==-=-=-=-=-=-=-*/
.form-control {
    height: 44px;
    border: 1px solid #606060;
    border-radius: 10px;
}

.form-label {
    line-height: 12px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    font-weight: 400;
    margin-top: 10px;
    color: #212529;
    font-size: 14px;
}

.btn-faq {
    padding: 0px;
    margin-left: 10px;
    margin-bottom: -3px;
}

.disabledGroup {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.has-value {
    background-color: #eff5f5 !important;
    border: 1px solid #18a09c !important;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .form-label {
        height: auto;
        margin-top: 10px;
    }
}

/* -=-=-=-=-=-=-=- BOOTSTRAP SELECT -=-==-=-=-=-=-=-=-*/
.dropdown.bootstrap-select {
    min-width: 100%;
    border-radius: 10px;
    height: 44px;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #747474 !important;
    background-color: transparent !important;
    border: 1px solid #606060 !important;
    line-height: 30px;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: thin dotted #333 !important;
    outline: 5px auto #18a09c !important;
    outline-offset: -2px;
}

.btn.dropdown-toggle.bs-placeholder.btn-light {
    background-color: #fff !important;
    border: 1px solid #606060 !important;
    border-radius: 8px;
}

.btn.dropdown-toggle.btn-light {
    background-color: #eff5f5 !important;
    border: 1px solid #18a09c !important;
    border-radius: 8px;
}

.filter-option {
    line-height: 30px;
}

.bootstrap-select>.dropdown-toggle:after {
    right: 10px;
    background-image: url("icons/arrow-down.svg");
    width: 20px;
    height: 20px;
}

.dropup .dropdown-toggle::after {
    right: 10px !important;
    background-image: url("icons/arrow-up.svg") !important;
    width: 20px !important;
    height: 20px !important;
    border: none;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
    outline-offset: 0px !important;
    box-shadow: none !important;
    border-radius: 10px;
}

.bootstrap-select .bs-ok-default:after {
    border-width: 0 2px 2px 0 !important;
    border-color: #18a09c;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #242c50;
    text-decoration: none;
    background-color: #d1eceb;
}


/* -=-=-=-=-=-=-=- CUSTOM CHECKBOX - RADIO BUTTONS -=-==-=-=-=-=-=-=-*/
.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.4s;
    width: auto;
    color: #242c51;
}

.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #848484;
    border-radius: 8px;
    transition: 0.4s;
}

.checkboxContainer:hover input~.checkmark {
    background-color: #eeeeee;
    box-shadow: 0px 0px 0px 1px rgb(132 132 132);
    transition: 0.4s;
}

.checkboxContainer input:checked~.checkmark {
    background-color: #fff;
    box-shadow: 0px 0px 0px 1px rgb(132 132 132);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkboxContainer input:checked~.checkmark:after {
    display: block;
}

.checkboxContainer .checkmark:after {
    left: 8px;
    top: 3px;
    width: 7px;
    height: 13px;
    border: solid #18a09c;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Radios */
.radioContainer {
    position: relative;
    padding-left: 35px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 15px;
    transition: 0.4s;
}

.radioContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radioCheckmark {
    position: absolute;
    top: 0px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #848484;
}

.radioContainer:hover input~.radioCheckmark {
    background-color: #ccc;
    transition: 0.4s;
}

.radioContainer input:checked~.radioCheckmark {
    background-color: #FFF;
    box-shadow: 0px 0px 0px 1px rgb(132 132 132);
}

.radioCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radioContainer input:checked~.radioCheckmark:after {
    display: block;
}

.radioContainer .radioCheckmark:after {
    top: 4px;
    left: 4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #18a09c;
}

/* -=-=-=-=-=-=-=- BUTTONS -=-==-=-=-=-=-=-=-*/
.btn-login span:after {
    content: '';
    position: relative;
    float: right;
    background-image: url("icons/icon-btn_login.svg");
    width: 60px;
    background-size: contain;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center right;
    margin-left: 10px;
}

.btn-next span:after {
    content: '';
    position: relative;
    float: right;
    background-image: url("icons/icon-btn_next.svg");
    width: 24px;
    background-size: contain;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center right;
    margin-left: 10px;
}

.btn-prev span:after {
    content: '';
    position: relative;
    float: left;
    background-image: url("icons/icon-btn_prev.svg");
    width: 24px;
    background-size: contain;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center right;
    margin-right: 10px;
}

.btn-primary {
    color: #242c50;
    background-color: #d1eceb;
    border-color: #d1eceb;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-login {
    display: flex;
}

.btn-primary:hover {
    color: #fff;
    background-color: #4c5787;
    border-color: #4c5787;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #242c4f;
    border-color: #242c4f;
    box-shadow: none;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #242c50;
    border-color: #242c50;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: .35;
}

.btn-danger {
    color: #fff;
    background-color: #e96666;
    border-color: #e96666;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-danger:hover {
    color: #fff;
    background-color: #d28787;
    border-color: #d28787;
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
    color: #fff;
    background-color: #e96666;
    border-color: #e96666;
    box-shadow: none;
}

.btn-outline-primary {
    color: #242c50;
    border-color: #242c50;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #9ca1b5;
    border-color: #9ca1b5;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #f7f7f7;
    border-color: #242c50;
    box-shadow: none;
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    color: #fff;
    background-color: #9ca1b5;
    border-color: #9ca1b5;
}

.btn-miArg {
    background-color: #3526C3;
    border-color: #3526C3;
}

.btn-link {
    font-weight: 400;
    color: #242c51;
    text-decoration: underline;
}

a.btn.btn-primary.btn-next {
    float: right;
}

button#showAlertBtn {
    float: left;
}

.custom-file-button input[type=file] {
    margin-left: -2px !important;
}

.custom-file-button input[type=file]::-webkit-file-upload-button {
    display: none;
}

.custom-file-button input[type=file]::file-selector-button {
    display: none;
}

.custom-file-button:hover label {
    background-color: #dde0e3;
    cursor: pointer;
}

.btn-tipoDoc {
    border-color: #ced4da;
}

a.btn.btn-prev.disabled {
    filter: grayscale(1);
    opacity: 0.3;
}

a.btn.btn-next.disabled {
    filter: grayscale(1);
    opacity: 0.3;
}

.dropdown-toggle::after {
    content: '';
    background-image: url("icons/chevron-down-bold.svg");
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    position: absolute;
    margin-top: 7px;
    margin-left: 10px;
}

.btn-icon {
    padding: 5px;
}

.icon_btn {
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.icon_download {
    background-image: url("icons/icon_download.svg");
}

.icon_info {
    background-image: url("icons/icon_info.svg");
}

.icon_calendar {
    background-image: url("icons/icon_calendar.svg");
}

@media (max-width: 768px) {
    .btn-home {
        width: 60px;
        height: 60px;
    }

    .btn-prev {
        width: auto;
        height: auto;
    }

    .btn-next {
        width: auto;
        height: auto;
    }

    .btn-filtrar span {
        display: none;
    }

    .btn-filtrar span {
        display: none;
    }

    .nav_icon.icon-filtrar {
        margin-left: 0px;
    }
}



/* -=-=-=-=-=-=-=- FOOTER -=-==-=-=-=-=-=-=-*/
footer {
    min-height: 160px;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 5;
}

footer.footer.backoffice {
    min-height: 220px;
    align-items: flex-start;
}

.bg-mined {
    background-color: #242c4f;
    border-top: 3px solid #e7ba61;
}

.footerLogo {
    height: 85px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 768px) {
    .footerLogoContainers {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footerLogo {
        height: 60px;
    }
}


/* -=-=-=-=-=-=-=- BUSCADOR -=-==-=-=-=-=-=-=-*/
.hidden {
    display: none;
    /* Initially hide the div */
}

#hiddenDiv {
    display: none;
    /* Initially hide the div */
}

button#toggleButton {
    margin-top: 31px;
    margin-bottom: 0px;
}

button#dropdownXL {
    margin-top: 31px;
    margin-bottom: 0px;
}

@media (max-width: 768px) {}


/* -=-=-=-=-=-=-=- BREADCRUMB -=-==-=-=-=-=-=-=-*/
section#breadcrumb {
    margin-top: 80px;
}

section#breadcrumbBackoffice {
    margin-top: 15px;
    margin-left: -80px;
    background-color: #242c50;
    padding-left: 100px;
    position: fixed;
    width: 100vw;
    z-index: 1;
}

section#breadcrumbBackoffice nav ol.breadcrumb li.breadcrumb-item a {
    color: #778490;
}

section#breadcrumbBackoffice nav ol.breadcrumb {
    padding: 5px;
    margin-bottom: 0px;
}

li.breadcrumb-item {
    line-height: 18px;
    font-size: 14px;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #778490;
}

@media (max-width: 768px) {
    section#breadcrumb {
        margin-top: 75px;
    }

    section#breadcrumbBackoffice {
        margin-top: -30px;
        margin-left: 0px;
        padding-left: 10px;
    }

    li.breadcrumb-item a {
        font-size: 14px;
    }

    li.breadcrumb-item.active {
        font-size: 14px;
    }
}

/* -=-=-=-=-=-=-=- ACCORDION -=-==-=-=-=-=-=-=-*/
.accordion-item {
    border-radius: 0px !important;
}

.accordion-button {
    font-size: 20px;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    color: #242c50;
    background-color: #f7f7f7;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("icons/chevron-down.svg");
    transform: rotate(-180deg);
}

a#btnConsultar {
    margin-top: 32px;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .accordion-button {
        font-size: 16px;
        font-weight: 500;
    }

}



/* -=-=-=-=-=-=-=- TABLES -=-==-=-=-=-=-=-=-*/
table.table.table-renav thead {
    background-color: #f7f7f7;
    color: #242c50;
    font-size: 14px;
    line-height: 14px;
}

table.table.table-renav thead tr th {
    padding: 20px 10px;
}

table.table.table-renav tbody tr td {
    font-size: 14px;
    line-height: 16px;
    vertical-align: middle;
}

a.page-link {
    color: #242c50;
}

.page-item.active .page-link {
    background-color: #242c50;
    border-color: #242c51;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-bottom: 1px solid #dfdfdf;
    font-weight: 400;
    color: #808080;
}

thead,
tr {
    border-bottom: none;
}

table.table.table-renpe thead tr th {
    color: #18a09c;
    font-weight: 500;
}

.table-responsive-mobile table.table.table-renpe tbody tr td {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .table-responsive-mobile table.table.table-renpe thead {
        display: none;
    }

    .table-responsive-mobile table.table.table-renpe tbody tr {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .table-responsive-mobile table.table.table-renpe tbody tr td {
        width: 50%;
    }

    .table-responsive-mobile table.table.table-renpe tbody tr td.td-btn {
        width: 100%;
    }
}



/* -=-=-=-=-=-=-=- MODAL -=-==-=-=-=-=-=-=-*/
.modal-body iframe {
    min-height: 75vh;
}

.modal-content .modal-body .bi-alert-style {
    font-size: 50px;
    color: #f76d6d;
}

.modal-content .modal-body h1 {
    font-size: 22px;
}

.form-check-input:checked {
    background-color: #6c757d;
    border-color: #6c757d;
}

label.form-check-label {
    margin-top: 2px;
}

.documentoVisualizar a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 36px;
    color: #242c50;
    text-decoration: underline;
}

/* -=-=-=-=-=-=-=- MODAL COMPLETADO -=-==-=-=-=-=-=-=-*/
.modalCompletado .modal-dialog.modal-dialog-centered .modal-content {
    background-color: #cef0f0;
    opacity: 0.9;
    border: none;
    border-radius: 8px;
}

.modalCompletado .modal-dialog.modal-dialog-centered .modal-content {
    color: #0e706d;
}

.bi-xl {
    font-size: 60px;
}



/* -=-=-=-=-=-=-=- BADGES -=-==-=-=-=-=-=-=-*/
.badge {
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
}

.bg-warning {
    background-color: rgb(251 248 237) !important;
    border: 1px solid #e7bb61;
    color: #ca972b;
}

.bg-success {
    background-color: #d2f0f1 !important;
    border: 1px solid #18a09c;
    color: #18a09c;
}

.bg-danger {
    background-color: #f8e0e0 !important;
    border: 1px solid #dc3545;
    color: #dc3545;
}

.bg-primary {
    background-color: #45658d !important;
    border: 1px solid #45658d;
    color: #fff;
}


.card.filtros {
    border: 0;
    margin-top: 20px;
    border-top: 1px solid #f7f7f7;
    border-radius: 0px;
}

/* -=-=-=-=-=-=-=- BACKOFFICE-HOME -=-==-=-=-=-=-=-=-*/
section#backofficeHome {
    padding-top: 80px;
}

section#backofficeHome h1 {
    font-size: 22px;
}

@media (max-width: 768px) {
    section#backofficeHome {
        padding-top: 30px;
    }
}


/* -=-=-=-=-=-=-=- CARDS -=-==-=-=-=-=-=-=-*/
.card.card-home {
    background-color: #fff;
    color: #242c50;
    border-radius: 10px;
    transition: 0.4s;
    height: 100%;
}

a:hover .card.card-home {
    background-color: #E3E7ED;
    color: #242c50;
    transition: 0.4s;
}

.card.card-home .card-header {
    padding: 15px;
    border-radius: 10px 10px 0px 0px;
}

.card.card-home .card-body h1 {
    text-align: center;
    line-height: 18px;
    font-size: 18px !important;
}

.card.card-home .card-body p {
    text-align: center;
    margin-bottom: 0px;
}

.card-percentage {
    position: absolute;
    background-color: #e96666;
    border-radius: 50rem;
    height: 80px;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    right: -20px;
    top: -20px;
    border: 3px solid #fff;
}

.card-percentage h1 {
    margin-bottom: 0px;
    font-size: 20px !important;
}

.card.card-home .card-header h1 {
    font-size: 52px !important;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
}

.card.card-home.success .card-header {
    background-color: #18a09c !important;
    border: 1px solid #18a09c;
    color: #fff;
}

.card.card-home.success .card-body h1 {
    color: #18a09c;
}

.card.card-home.primary .card-header {
    background-color: #45658d !important;
    border: 1px solid #45658d;
    color: #fff;
}

.card.card-home.primary .card-body h1 {
    color: #45658d;
}

.card.card-home.instituciones .card-header {
    background-color: #e7bc61 !important;
    border: 1px solid #e7bc61;
    color: #fff;
}

.card.card-home.instituciones .card-body h1 {
    color: #e7bc61;
}


.section-title {
    display: flex;
    flex-direction: row;
    text-align: center;
    height: 100%;
    align-items: center;
}

.section-title h1 {
    font-size: 24px !important;
    margin-left: 20px;
    margin-bottom: 0px;
}

.icon_home {
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.icon_personas {
    background-image: url("icons/icono_personas.svg");
}

.icon_unidades {
    background-image: url("icons/icono_unidades.svg");
}

.icon_localizaciones {
    background-image: url("icons/icono_localizaciones.svg");
}


.canvasContainer {
    margin-left: 8%;
    margin-right: 8%;
    margin-top: -35px;
    max-height: 280px;
}

@media (max-width: 991px) {
    .canvasContainer {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        max-height: 260px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .canvasContainer {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
    }
}


.card.card-stats {
    border-radius: 10px;
    background-color: #f7f7f7;
    border: none;
}

.stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
}

.stats-container .stats-header {
    width: 100%;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.stats-container .stats-header h1 {
    font-size: 16px !important;
    font-weight: 600;
}

.stats-container.success .stats-header {
    background-color: #b9e2e2;
}

.stats-container.primary .stats-header {
    background-color: #dae0e8;
}

.stats-container .stats-header h1 {
    margin-bottom: 0px;
}

.stats-body {
    width: 100%;
    text-align: center;
}

.stats-container .stats-body .stats-title {
    border-radius: 6px;
    margin-top: 10px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.stats-container .stats-body .stats-title.double {
    max-height: 50px;
    min-height: 46px !important;
}

.stats-container .stats-body .stats-title.secondary {
    min-height: auto;
}

.stats-container .stats-body .stats-title.secondary h3 {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    resize: horizontal;
}

.stats-container .stats-body .stats-title h3 {
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 14px;
}

.stats-container.success .stats-body .stats-title {
    background-color: #b9e2e3;
}

.stats-container.success .stats-body .stats-text h3 {
    color: #18a09c;
}

.stats-container.primary .stats-body .stats-title {
    background-color: #dae0e8;
}

.stats-container.primary .stats-body .stats-text h3 {
    color: #242c50;
}

.stats-title.red {
    background-color: #e96666 !important;
    color: white;
}

.stats-text .red {
    color: #e96666 !important;
}

.stats-container .stats-body .stats-text {
    border-radius: 6px;
    margin-top: 10px;
    padding: 5px;
}

.stats-container .stats-body .stats-text h3 {
    font-size: 22px;
    margin-bottom: 0px;
}

.stats-container .stats-body .stats-text {
    background-color: #fff;
}

@media (max-width: 768px) {
    .stats-container .stats-header h1 {
        font-size: 14px !important;
        line-height: 14px;
    }

    .stats-container .stats-body .stats-title h3 {
        font-size: 12px;
    }

    .stats-container .stats-body .stats-text h3 {
        font-size: 18px;
    }
}


/* -=-=-=-=-=-=-=- STEPS -=-==-=-=-=-=-=-=-*/
section#steps {
    margin-top: 20px;
}

.stepDotContainer {
    width: 20%;
}

.dotsMain {
    display: flex;
    flex-direction: row;
}

.stepDotContainer h1 {
    font-size: 13px;
    text-align: center;
    line-height: 14px;
    color: #6d6d6d;
    font-weight: 400;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.stepsDot {
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-bottom: 5px;
}

.stepDotContainer.first .stepsDot .stepsEmpty::before {
    display: none;
}

.stepDotContainer.active .stepsDot .stepsEmpty::before {
    height: 13px;
    margin-top: 8px;
}

.stepDotContainer.active h1 {
    font-weight: bold;
}

.stepDotContainer.completed h1 {
    color: #737373;
}

.stepsEmpty {
    width: 15px;
    height: 15px;
    background-color: #2c2c2c;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stepsEmpty.stepsOne {
    background-color: #7d93af;
}

.stepsEmpty.stepsTwo {
    background-color: #eecf91;
}

.stepsEmpty.stepsThree {
    background-color: #e96666;
}

.stepsEmpty.stepsFour {
    background-color: #5ebdba;
}

.stepsEmpty.stepsFive {
    background-color: #a0cea0;
}

.stepsEmpty.stepsSix {
    background-color: #f4aabb;
}

.stepsEmpty.stepsSeven {
    background-color: #fabd73;
}

.stepsEmpty.stepsEight {
    background-color: #adadad;
}

.stepsEmpty.stepsTwo.active::before {
    background-color: #eecf91;
}

.stepsEmpty.stepsThree.active::before {
    background-color: #e96666;
}

.stepsEmpty.stepsFour.active::before {
    background-color: #5ebdba;
}

.stepsEmpty.stepsFive.active::before {
    background-color: #a0cea0;
}

.stepsEmpty.stepsSix.active::before {
    background-color: #f4aabb;
}

.stepsEmpty.stepsSeven.active::before {
    background-color: #fabd73;
}

.stepsEmpty.stepsEight.active::before {
    background-color: #adadad;
}


.stepsEmpty:before {
    content: '';
    height: 13px;
    background-color: #f1f1f1;
    position: absolute;
    margin-top: 1px;
    float: right;
    z-index: -1;
    width: calc(100% + 10px);
    margin-left: 0px;
    margin-right: auto;
    border-radius: 0rem 50rem 50rem 0rem;
}

.stepDotContainer.active .stepsDot .stepsEmpty {
    width: 30px;
    height: 30px;
}

.stepDotContainer.completed .stepsDot .stepsEmpty {
    width: 30px;
    height: 30px;
}

.stepDotContainer.completed .stepsDot .stepsEmpty:after {
    content: '';
    background-image: url("icons/check.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    left: -5px;
    top: 5px;
    width: 20px;
    height: 20px;
}

.stepsEmpty.active:before {
    background-color: #18a09c;
    margin-top: 9px;
    height: 12px;
}

.stepsWizard {
    margin-bottom: 30px;
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 20px;
}

.stepsHeader {
    overflow: hidden;
}

.stepsHeader h1 {
    height: 50px;
    font-size: 24px;
    background-color: #252d4f;
    color: white;
    margin-bottom: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.stepsHeader h1 span {
    background-color: #1c213e;
    width: 50px;
    height: 50px;
    position: relative;
    float: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.stepsBody {
    height: 100%;
    margin-bottom: 20px;
    min-height: 40vh;
    margin-top: 0px;
    background-color: #f7f7f7;
    padding: 0px 40px 30px 90px;
    overflow-y: hidden;
    position: relative;
}

.stepsBody.buscador {
    min-height: auto;
}

.colorBar {
    position: absolute;
    width: 50px;
    min-height: 100%;
    margin-left: -90px;
}

.stepsContainer.stepsOne .stepsBody .colorBar {
    background-color: #7d93b0;
}

.stepsContainer.stepsTwo .stepsBody .colorBar {
    background-color: #eecf91;
}

.stepsContainer.stepsThree .stepsBody .colorBar {
    background-color: #e96666;
}

.stepsContainer.stepsFour .stepsBody .colorBar {
    background-color: #5ebdba;
}

.stepsContainer.stepsFive .stepsBody .colorBar {
    background-color: #a0cea0;
}

.stepsContainer.stepsSix .stepsBody .colorBar {
    background-color: #f4aabb;
}

.stepsContainer.stepsSeven .stepsBody .colorBar {
    background-color: #fabd73;
}

.stepsContainer.stepsEight .stepsBody .colorBar {
    background-color: #adadad;
}

.stepsFooter {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.btn-right {
    float: right;
    margin-left: auto;
    margin-bottom: 10px;
}

.btn-left {
    margin-bottom: 10px;
}


.stepsContainer.stepsFaq {
    height: 100%;
}

.stepsContainer.stepsFaq .stepsHeader h1 {
    padding-left: 20px;
}

.stepsContainer.stepsFaq .stepsBody {
    padding: 0px;
    overflow-x: hidden;
}

.nav.faq {
    background-color: #dedede;
    display: flex;
    align-items: flex-start;
    width: auto;
    min-width: fit-content;
}

.navFaqContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-top: 1px solid #f7f7f7;
    min-height: 460px;
}

.nav.faq.nav-pills .nav-link {
    width: 100%;
    border-radius: 0px !important;
    text-align: left;
    color: #252d4f !important;
}

.nav.faq.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #252d4f;
}

.tab-content.faq {
    padding: 20px 20px 20px 0px;
    width: 100%;
}

.tab-content.faq .tab-pane h1 {
    font-size: 20px;
    font-weight: 500;
    color: #252d4f;
}

.accordion.faq .accordion-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.accordion.faq .accordion-item h2.accordion-header .accordion-button.collapsed {
    font-size: 15px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 10px 10px;
}

.accordion.faq .accordion-item h2.accordion-header .accordion-button {
    font-size: 15px;
    background-color: #fff;
    border: none;
    box-shadow: none;
    padding: 10px 10px;
}

.accordion.faq .accordion-item .accordion-body {
    font-size: 15px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 20px;
    transition: 0.4s;
}

.accordion-collapse.collapse.show {
    background-color: #fbfbfb;
    transition: 0.4s;
}



@media (max-width: 768px) {
    .dotsMain {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

    .stepDotContainer h1 {
        display: none;
    }

    .stepsEmpty:before {
        width: 60px;
        margin-left: -35px;
    }

    .stepDotContainer {
        width: auto;
    }

    .stepsFooter {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-right {
        margin-left: 0px;
    }

    .stepsBody {
        padding: 0px 20px 30px 30px;
    }

    .colorBar {
        width: 10px;
        margin-left: -30px;
    }
}



/* -=-=-=-=-=-=-=- ALERTS -=-==-=-=-=-=-=-=-*/
#alertContainer {
    position: sticky;
    top: 100px;
    z-index: 4;
    width: 100%;
    max-width: 1296px;
    opacity: 0.9;
}

.alert-success {
    color: #0e706d;
    background-color: #cef0f0;
    border-color: #18a09c;
    border-radius: 10px;
}

.alert-danger {
    color: #bc5252;
    background-color: #f1d9d9;
    border-color: #e96666;
    border-radius: 10px;
}




.logos-adicionales {
    display: flex;
    filter: invert(1);
    justify-content: flex-end;
}

.logos-adicionales img {
    height: 60px;
}

.navbar.lg {
    height: 200px !important;
}

.navbar.lg .navbar-brand {
    height: 100px;
    margin-bottom: 100px;
}

.logos-adicionales img {
    height: 85px;
    margin-bottom: 100px;
}

.main-buscador {
    margin-top: 200px;
}

.buscador-Titulo {
    margin-top: -80px;
    z-index: 1501;
    position: fixed;
    margin-bottom: 0px;
}

.buscador-Titulo h1 {
    font-weight: 600;
}