:root {
    --primary-color: #0180c6;
    /*    --secondary-color: #09535D;*/
    --secondary-color: #2A8C8E;
    --terciary-color: #001b45;
    --dark-primary-color: #001b45;
    --grey-input: #f2f2f2;
    --grey-hover: #e0e0e0;
    --disabled-input: #d4d4d4;
    --grey-placeholder: #909090;
}

/* SCROLL */
::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #E2E2E2;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #d2d2d2;
    }

::-webkit-scrollbar-button {
    display: none;
}

.offcanvas-end {
    width: 250px;
}

.offcanvas-body {
    background-color: var(--primary-color);
    padding-top: 4.8rem;
}

/*    .offcanvas-body a {
        color: var(--primary-color) !important;
    }

    .offcanvas-body .allDocuments.active a, .offcanvas-body .prominent.active a {
        border-bottom: 2px solid #001B45;
    }

    .offcanvas-body .fa-user {
        color: var(--primary-color) !important;
    }*/

    .offcanvas-body .nav-link {
        padding-bottom: 0.2rem;
    }

    .offcanvas-body .allDocuments {
        margin-left: 15px
    }

#admin-section-name {
    margin-left: 0.2rem;
}

@media(min-width: 992px) {
    #admin-section-name {
        display: none;
    }
}

.dt-scroll-body {
    border-top: 0.1rem solid gray;
    border-bottom: 0.1rem solid gray !important;
}

.table > :not(:last-child) > :last-child > * {
    border: none;
}

body {
    background-color: var(--grey-input);
    color: black;
}

#body-login {
    background-color: white;
}

.body-content {
    min-height: calc(100vh - 2.5rem);
    padding-top: 4.75rem;
}

.primary-color {
    color: var(--primary-color) !important;
}


.section-block {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 1rem;
    background-color: white;
    margin-bottom: 1rem;
}

html {
    font-size: 14px;
}

button:focus-visible {
    outline: none;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1199px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0rem;
        padding-left: 0rem;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.navbar-toggler:focus, .navbar-toggler:focus-visible, .divMenuForIE:focus-visible {
    outline: none;
    box-shadow: none;
}

html {
  position: relative;
  min-height: 100%;
}

.page-item.active .page-link {
    background-color: color-mix(in srgb, var(--primary-color) 20%, transparent);
    color: var(--dark-primary-color);
    border-color: #dee2e6;
}

.page-link, .page-link:hover {
    color: var(--dark-primary-color);
}



/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-item.active, .nav-pills .show > .nav-item {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

#p-user-roles {
    text-align: center;
}

/* COLORS */
.white {
    color: white;
}

.black {
    color: black;
}

/* END - COLORS */

/* WIDTH, HEIGHT, MARGIN, PADDING */

/* WIDTH */
.w-0{
    width: 0 !important;
}

.wfit{
    width:fit-content !important;
}

/* END - WIDTH */
/* MARGIN */
.m-0{
    margin: 0;
}

.m-20 {
    margin: 20px;
}

.mt-30 {
    margin-top:30px;
}

.mb-25 {
    margin-bottom: 25px;
}

.ml-auto {
    margin-left: auto !important;
}

/* PADDING */
.p-30 {
    padding: 30px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-50 {
    padding-top: 50px;
}

/* END - WIDTH, HEIGHT, MARGIN, PADDING */

/* MODALS */

/* FORM NEW PUBLICATION */

@media (max-width: 1199px) {
/*    .modal-dialog#publication-form-modal {
        min-width: 700px;
        margin: 1.75rem auto;
    }*/

    .section-title {
        font-size: 1.2rem;
    }
}

/* END - FORM NEW PUBLICATION */

/* END - MODAL */

.loadingSpinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.loadingSpinner-Text {
    color: white;
    position: absolute;
    font-weight: 700;
    margin-bottom: 8rem;
}

.loadingSpinner {
    position: absolute;
    border-radius: 50%;
    border: 5px solid #001b45;
    border-right-color: transparent;
    border-left-color: transparent;
}

.loadingSpinner-inner {
    width: 40px;
    height: 40px;
    animation: spin 1.6s linear infinite;
}

.loadingSpinner-middle {
    width: 60px;
    height: 60px;
    animation: spin-reverse 1.6s linear infinite;
}

.loadingSpinner-outer {
    width: 80px;
    height: 80px;
    animation: spin 1.6s linear infinite;
    animation-delay: 0.2s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#assignedRoles, #availableRoles {
    margin-bottom: 0;
}

.text-align-justify {
    text-align: justify;
}

#module-list, #link-list {
    flex-wrap: wrap;
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}


a[disabled] {
    cursor: not-allowed !important;
    color: gray !important;
    background: transparent !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.show-collapse {
    display: none;
}

.navbar-toggler {
    padding: 0;
}

a:hover {
    text-decoration: none;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 55px;
}

.navbar a {
    color: white;
}

.navbar-toggler {
    color: #FFFFFF;
}

.container.header {
    margin: 0;
    padding: 0;
    margin-left: 60px;
    margin-right: 60px;
    max-width: 100%;
}

.pageLinks {
    justify-content: flex-end;
}

.blueNavbar a {
    font-size: 15px;
    text-decoration: none;
}

    .blueNavbar a:hover {
        color: #5BBEFF;
    }

        .blueNavbar a:hover .fa-sign-out-alt,
        .blueNavbar a:hover .fa-user,
        .blueNavbar a:hover .fa-cog {
            color: var(--primary-color);
        }

a:not([href]):not([tabindex]) {
    color: #ffffff;
}

    a:not([href]):not([tabindex]):hover {
        color: #5BBEFF;
        cursor: pointer;
    }

.blueNavbar a:hover .faDiv {
    background: #5BBEFF;
}

.blueNavbar {
    padding: 0;
    background: var(--primary-color);
    border-bottom: 5px solid #CCCCCC;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.secondLane {
    font-size: 22px;
    color: white;
    height: 60px;
}

    .secondLane .subtitle {
        color: #f2f2f2;
        font-size: 13px;
        margin-bottom: 0px;
        margin-top: -5px;
        margin-left: 60px;
    }

.prominent {
    margin-right: 40px;
}

    .prominent.active {
        border-bottom: 5px solid #5BBEFF;
        padding-bottom: 0;
    }

.allDocuments.active, .prominent.active {
    border-bottom: none;
}

    .allDocuments.active a, .prominent.active a {
        border-bottom: 2px solid #5BBEFF;
    }

.alertLi.active .fa-cog {
    color: var(--primary-color);
}

.alertLi.active .faDiv {
    background: #5BBEFF;
}

.fas.fa-exclamation {
    color: var(--primary-color);
}

.allDocuments {
    margin-left: 30px;
    margin-right: 30px;
}

#div-files {
    margin-bottom: 3rem;
}

    #div-files > #div-files-title {
    border-bottom: 0.1rem solid var(--primary-color);
    }

.alamo-button {
    color: white;
    text-decoration: none;
    font-size: 0.82rem;
    border: none;
    border-radius: 50rem;
    align-self: center;
    width: fit-content;
    cursor: pointer;
    padding: 0.25rem 1.25rem;
}

    .alamo-button:disabled {
        color: dimgrey !important;
        cursor: not-allowed !important;
        filter: grayscale(1);
    }

.alamo-button:hover{
    color: white;
}

    #label-publicationform-input-file {
        padding: 0.25rem 1.25rem;
    }

.default-button {
    background-color: var(--primary-color);
    border-radius: 5px !important;
    padding: 0.5rem 1rem !important;
}

.transparent-button {
    background-color: transparent;
    padding: 0 0.4rem;
    border: none
}

.new-button {
    background-color: transparent;
    color: var(--primary-color) !important;
    font-size: 1rem;
    border: solid 0.1rem var(--primary-color);
}

.save-button {
    background-color: var(--secondary-color);
    font-size: 1rem;
}

.cancel-button {
    background-color: var(--disabled-input);
    font-size: 1rem;
}

.plus-button {
    background-color: var(--secondary-color);
    font-size: 1rem;
    padding: 0.25rem 0.75rem !important;
    border-radius: 10px;
}

.close-button {
    background-color: #5a616e;
    color: white !important;
    text-decoration: none;
    padding: 5px 20px;
    font-size: 0.9rem;
    border-radius: 5px;
}

.separator {
    border-right: 1px solid #5BBEFF;
    height: 24px;
}

.fa-sign-out-alt,
.fa-user {
    color: white;
}

.faDiv {
    padding: 4px 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}


.pageLinks.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
}

.pageLinks.collapse.show {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: visible;
}

.subtitles {
    font-size: 10px;
}

.myBorder {
    width: 70px;
    border-bottom: 1px solid #5bbeff;
    margin-bottom: 1rem;
}

.milestonesText {
    margin-bottom: 25px !important;
}
/* Fin Header*/


/*Header Documentación*/
.accordionBlock {
    text-align: center;
}

.second-level {
    margin-left: 36px;
}

.adminAccordions {
    font-weight: 500 !important;
}

.documentAccordions {
    background: white;
    border: none;
    color: black;
    margin-bottom: 10px;
    border-radius: 0;
    vertical-align: top;
    font-size: 17px;
    font-weight: bold;
}

    .documentAccordions.active {
        color: black !important;
        font-weight: bold;
    }

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: var(--primary-color);
    background-color: white;
    border-color: var(--primary-color);
}

    .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus,
    .btn-primary.focus, .btn-primary:focus {
        box-shadow: none;
    }



.documentAccordions.active {
    border-bottom: 1px solid #5bbeff !important;
}

.documentAccordions:hover {
    color: var(--primary-color);
    background-color: white;
    border-color: none;
}


.documentationSeparator {
    border: none;
    border-left: 1px solid #5BBEFF;
    height: 30px;
    display: inline-flex;
}

.modalTitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.modalSubTitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.pageTitle {
    margin-top: 0.7rem;
    font-size: 1.7rem;
}

.pageSubtitle {
    margin-top: 0.7rem;
    font-size: 1.5rem;
    color: black;
}

.pageSubsubtitle {
    font-size: 1.3rem;
    color: black;
}

.dotTitle {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    line-height: 1rem;
}

.dotSubTitle {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    margin-right: 0.3rem;
    line-height: 1rem;
}

.fechaNovedadP {
    color: #5BBEFF;
    margin-bottom: -15px;
    font-size: 14px;
}

.btn-light {
    background: white;
    border: none;
    float: right !important;
    color: #5bbeff;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: auto;
}

.dropdown-item.active, .dropdown-item:active {
    color: #212529;
    text-decoration: none;
    background-color: transparent;
}

.dropdown-item {
    color: #5bbeff;
}

    .dropdown-item.active, .dropdown-item:active {
        color: #5bbeff;
        text-decoration: none;
        background-color: transparent;
    }

.selectorClass {
    text-align: right;
    margin-bottom: -10px;
}

.btn-light:hover {
    color: #5bbeff !important;
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
    color: #5bbeff;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: white !important;
    outline-offset: 0;
}

.btn-light.focus, .btn-light:focus {
    box-shadow: none !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #5bbeff;
    text-decoration: none;
    background-color: #f8f9fa;
}

.btn-light:hover {
    color: #212529;
    background-color: transparent;
    border-color: none;
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
    color: #5bbeff;
    background-color: transparent;
    border-color: transparent;
}

.novedadH3 {
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
}

    .novedadH3 span {
        margin-top: 2px; /* Ajusta este valor hasta que esté alineado */
    }


.novedadDesc {
    color: #89929F;
    font-size: 14px;
    margin-bottom: 0;
}

    .novedadDesc a {
        word-break: break-all;
    }

.descNovedad {
    margin-bottom: 0;
}

.fechaNovedad {
    margin-top: 5px;
}
/*Tablas*/

.thTitles {
    color: #000;
    border-top: 1px solid white !important;
    font-size: 0.82rem;
}

.thDate {
    text-align: center !important;
}

.table td {
    font-weight: 700;
    font-size: 12px;
    border-top: 0;
    border-bottom: 1px solid #dee2e6;
    color: #89929F;
}

.detail span, .download span {
    display: contents;
}

.table td, .table th {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
    vertical-align: middle;
}

.strikethrough td {
    text-decoration: line-through;
}

table.dataTable > thead .sorting:before, table.dataTable > thead .sorting_asc:before, table.dataTable > thead .sorting_desc:before, table.dataTable > thead .sorting_asc_disabled:before, table.dataTable > thead .sorting_desc_disabled:before {
    right: 0.75rem;
}

table.dataTable > thead .sorting:after, table.dataTable > thead .sorting_asc:after, table.dataTable > thead .sorting_desc:after, table.dataTable > thead .sorting_asc_disabled:after, table.dataTable > thead .sorting_desc_disabled:after {
    right: .1em;
}

table.dataTable > thead .sorting:before, table.dataTable > thead .sorting:after {
    font-size: 24px;
    line-height: 6px;
    opacity: 0;
}

table.dataTable > thead .sorting_asc:before, table.dataTable > thead .sorting_desc:after {
    font-size: 20px;
    line-height: 6px;
    opacity: 1;
    position: absolute;
    bottom: .8em;
    right: 0;
}

td.tdDesc {
    max-width: 250px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

td.tdCheck {
    max-width: 30px;
}

.tdDate {
    min-width: 120px;
}

.tdAmbit {
    min-width: 90px;
}

table.dataTable > thead .thName.sorting_asc:before, table.dataTable > thead .thName.sorting_desc:after {
    left: 65px;
}

table.dataTable > thead .thSource.sorting_asc:before, table.dataTable > thead .thSource.sorting_desc:after {
    left: 55px;
}

table.dataTable > thead .thDate.sorting_asc:before, table.dataTable > thead .thDate.sorting_desc:after {
    left: 35px;
}

table.dataTable > thead .thAmbit.sorting_asc:before, table.dataTable > thead .thAmbit.sorting_desc:after {
    left: 60px;
}

table.dataTable > thead .thState.sorting_asc:before, table.dataTable > thead .thState.sorting_desc:after {
    left: 40px;
}

.scrollbar {
    height: 100%;
    overflow: auto;
    scrollbar-color: #E2E2E2 white;
    scrollbar-width: thin;
}

span.detail {
    color: black;
    cursor: pointer;
    margin-right: 15px;
}

span.download {
    color: black;
    cursor: pointer;
}

.actionsTd {
    padding-left: 0;
    padding-right: 0;
}

.card {
    border: none;
}

.card-header {
    background-color: white;
    border-bottom: none;
    padding-bottom: 0;
}

.headerImg {
    background: -webkit-linear-gradient(left,#fff,#fff 85%,hsla(0,0%,100%,0));
    background: linear-gradient(90deg,#fff 0,#fff 85%,hsla(0,0%,100%,0));
    padding-bottom: 0.6rem;
    padding-top: 0.6rem;
    width: 20rem;
    height: 60px;
    padding-left: 60px;
}
@media(max-width: 992px) {
    .divMenuForIE {
        padding-right: 60px;
    }
}

#navbar-menu {
    padding-right: 60px;
}

#buscar {
    max-width: 90%;
}

.icon-height {
    max-height: 20px;
}


.logoImg {
    max-height: 40px;
}

.nameImg {
    height: 15px;
    padding-right: 10px;
    margin-bottom: 3px;
}

.img-icon {
    width: 1.2rem;
    cursor: pointer
}

.img-link {
    width: 1rem;
}

.grey {
    color: #808080;
}

.orange {
    color: #ffa500;
}

.green {
    color: #008000;
}

.fa-circle {
    font-size: 14px;
}

.tooltip {
    top: 0;
}

.noBorderBottom {
    border-bottom: 0 !important;
}

tr.even {
    background-color: #EEEEEE;
}

tr.shown.blue td {
    color: #3A7DD9 !important;
    background-color: #E8F0FE;
}

.card-body {
    padding-top: 0;
}

.newIcon {
    background: #5BBEFF;
    color: white;
    margin-left: 10px;
    padding: 0px 5px;
    font-size: 10px;
    border-radius: 3px;
}


.displayNone {
    display: none;
}

.bootstrap-select > .dropdown-toggle {
    width: 100% !important;
}

.footerImg {
    max-height: 30px;
}

@media(max-width:768px) {
    .detail span, .download span {
        display: none;
    }

    span.download {
        margin-left: 0px;
    }
}

/********/


@media(max-width:768px) {
    .allDocuments {
        margin-left: 15px;
        margin-right: 20px;
    }

    .prominent {
        margin-right: 15px;
    }

    span.download {
        display: block;
        margin-left: 0;
    }
}

@media(max-width:1199px) {

    .tdDate {
        text-align: initial;
    }

    .newIcon {
        margin-left: 0px;
    }

    .prominent {
        margin-right: 10px;
    }

    .container.header {
        margin-left: 30px;
        margin-right: 30px;

    }

    .footerContent {
        padding: 0 30px;
    }

    .card-body {
        padding: 0;
    }

    .logoutLi, .userLi {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    .logoutLi, .userLi {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }


    .faDiv {
        margin-left: -5px;
    }

    .section-block {
        padding-bottom: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }

/*    #novedades, */
    #hitos {
        padding-bottom: 25px;
    }

    .documentAccordions {
        font-size: 15px;
    }

    .accordionFolders .btn-link h3 {
        font-size: 17px;
    }

    .folderImg {
        height: 17px;
        margin-top: 2px;
    }

    .thTitles {
        font-size: 12px;
    }

    .table td {
        font-size: 11px;
    }
}

@media (max-width:575px) {

    .footerImg {
        max-height: 25px;
    }

    .pageLinks.collapse {
        padding: 0 15px;
    }

    .mailFooter {
        justify-content: flex-start;
        font-size: 14px;
    }

    .alamoFooter {
        color: white;
        font-size: 14px;
    }

    .thTitles {
        font-size: 10px;
    }

    .table td {
        font-size: 10px;
    }

    .documentationSeparator {
        display: none;
    }

    .accordionBlock {
        padding-bottom: 10px;
    }

    .section-block {
        padding-left: 0;
        padding-right: 0;
    }

    .container.header {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footerContent {
        padding: 0 15px;
    }
}

/*buscador*/

.navbar-light .form-control {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

    .navbar-light .form-control:focus {
        box-shadow: none;
        outline: none;
    }

.navbar-light .form-inline {
    display: flex;
    align-items: center;
}

    .navbar-light .form-inline i {
        font-size: 1.2rem;
        line-height: 1;
    }

.navbar-light .form-control:focus {
    box-shadow: none;
    outline: none;
}

.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--primary-color);
    padding: 10px;
    margin-top: 10px;
    border-radius: 0;
}

.flex-grow-1 {
    border: none;
    box-shadow: none;
    border-color: transparent;
}

.card-circle {
    width: 50px;
    font-size: 30px;
    background-color: cornflowerblue;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
}
    .flex-grow-1:focus {
        outline: none;
    }

/*.documentAccordions.active {
    text-decoration: underline;
}*/
.section-block .nav-tabs .nav-link, .section-block .nav-tabs {
    border: none;
}

.textIcon {
    color: #696868;
    text-decoration: none;
    padding: 5px;
    margin: 10px;
}

/************************************************************************
    LOGIN
*************************************************************************/



.titleLogin h3 {
    color: white;
    font-weight: normal;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 24px;
    margin-left: 30px;
}

header.loginHeader {
    position: relative;
}

.spacingDiv {
    background-color: var(--primary-color);
    height: 40px;
    border-bottom: 5px solid #004283;
}

.headerDiv {
    background-color: #CCCCCC;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-15px);
}

.titleLogin {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 30px;
    margin-right: 30px;
}

    .titleLogin h5 {
        margin-bottom: 0;
        color: white;
        font-size: 19px;
        font-weight: lighter;
    }

.flex-box {
    /*min-height: calc(100vh - 200px);*/
    display: flex;
    align-items: center;
}

.login-box {
    width: 100%;
    max-width: 605px;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box {
    background-repeat: no-repeat;
    background-position: 0;
    background-size: cover;
    background-image: url(../Images/FondoLogin.jpg);
    width: calc(100vw - 605px);
}

.login-form {
    position: relative;
    /*left: 30px;
    bottom:-80px;*/
    width: 100%;
    max-width: 535px;
}

.legalText {
    margin-bottom: 0;
    margin-left: 10px;
    width: calc(100% - 156px);
    color: white;
    font-size: 12px;
    font-weight: 100;
}

.confidentialIcon {
    color: white;
}

.form-group {
    margin-bottom: 0;
}

.login-form form {
    opacity: 0.9;
    background: #faf3f1;
    padding: 23px 23px 20px 23px;
    margin-bottom: 20px;
}

.formSubtitle h4 {
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: 0;
}

.login-form .form-control {
    background-color: transparent;
    border: 1px solid #e8e3e3;
    padding: 10px;
    margin-top: 15px;
    border-bottom: 1px solid var(--primary-color);
    border-radius: 0;
}

.login-form .form-group input {
    max-width: 100%;
    display: inline-block;
    font-weight: normal;
}

.login-form .label {
    width: 100%;
    margin-top: 45px;
    padding-bottom: 25px;
    min-height: 45px;
}

    .login-form .label .btn {
        float: right;
        width: 150px;
        background: #4472C4;
        font-weight: lighter;
        font-size: 20px;
        color: white;
        border-radius: 5px;
    }

.toggle_pwd {
    cursor: pointer;
    display: inline-block;
    color: var(--primary-color);
    position: relative;
    border-top: 1px solid #e8e3e3;
    border-right: 1px solid #e8e3e3;
    border-bottom: 1px solid var(--primary-color);
    margin-left: -5px;
    width: 15%;
    line-height: 1.5;
    padding: 10px;
    margin-top: 15px;
    text-align: center;
}


.loginFooter {
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    background-color: var(--primary-color);
    border-top: 10px solid #004283;
    display: flex;
    align-items: center;
    padding: 0 30px;
}


#Password.login-password {
    max-width: 85%;
    border-right: none;
}

.campo_error_login.error-text {
    color: red;
    width: 100%;
    margin-top: 15px;
}

.form-control:focus {
    box-shadow: none;
}

.login-form .form-group input::placeholder {
    font-family: Arial;
    font-size: 14px;
}

@media(min-width:1800px) {

    .formSubtitle h4 {
        font-size: 19px;
    }
}

@media(max-width:992px) {
    .modal-dialog {
        min-width: 80%;
    }
}

@media(max-width:767px) {
    .formSubtitle h4 {
        font-size: 15px;
    }

    .login-form {
        display: block;
        margin: auto;
        position: relative;
        left: 0;
        padding: 15px 0;
    }


    .campo_error_login.error-text {
        font-size: 13px;
    }

    .login-form .label {
        min-height: 40px;
    }

        .login-form .label .btn {
            font-size: 15px;
        }

    .legalText {
        font-size: 10px;
    }
}


@media(max-width:575px) {

    .confidentialIcon {
        display: none;
    }

    .formImg {
        max-height: 20px;
    }

    .legalText {
        font-size: 9px;
        margin-left: 0;
        margin-right: 10px;
        width: calc(100% - 60px);
    }

    .login-form {
        width: Calc(100% - 30px);
    }

        .login-form form {
            padding: 25px 25px 0px 25px;
        }


    .formSubtitle h4 {
        font-size: 14px;
    }


    .login-form .label {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }

        .login-form .label .btn {
            width: 110px;
            font-size: 15px;
        }



    .campo_error_login.error-text {
        font-size: 13px;
    }

    .login-form .label .btn {
        font-size: 14px;
    }

    .titleLogin h3 {
        color: white;
        font-weight: normal;
        font-weight: normal;
        margin-bottom: 0;
        font-size: 22px;
    }

    .logoLogin {
        margin-left: 15px;
    }

    .titleLogin {
        margin-left: 15px;
        margin-right: 15px;
    }

    .loginFooter {
        padding: 0 15px;
        height: 70px;
    }
}
