/* /Components/Alert/Alert.razor.rz.scp.css */
.content-alert[b-l71rfad5bb] {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 5;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    align-items: center;
}

.alert[b-l71rfad5bb] {
    z-index: 6;
    background-color: white;
    margin: 5%;
    min-width: 180px;
    min-height: 100px;
    border: solid 1px;
    padding: 10px;
    display: none; /* Inicialmente oculto */
    flex-direction: column;
    opacity: 0; /* Asegurarse de que esté oculto al inicio */
    transform: scale(0); /* Comienza pequeño */
}

@keyframes zoomIn-b-l71rfad5bb {
    0% {
        opacity: 0;
        transform: scale(0); /* Comienza pequeño */
    }

    100% {
        opacity: 1;
        transform: scale(1); /* Tamaño final */
    }
}

/* Animación para el zoom al desaparecer */
@keyframes zoomOut-b-l71rfad5bb {
    0% {
        opacity: 1;
        transform: scale(1); /* Empieza con el tamaño normal */
    }

    100% {
        opacity: 0;
        transform: scale(0); /* Se reduce a cero */
    }
}


    .alert.show[b-l71rfad5bb] {
        display: flex; /* Mostrar alerta */
        animation: zoomIn-b-l71rfad5bb 0.5s ease-out forwards; /* Animación al aparecer */
    }

    .alert.hide[b-l71rfad5bb] {
        animation: zoomOut-b-l71rfad5bb 0.5s ease-in forwards; /* Animación al desaparecer */
    }


    .alert .header[b-l71rfad5bb] {
    }


    .alert .body[b-l71rfad5bb] {
        text-align: center;
        margin:5px;
        flex: 1;
    }

    .btn-primary[b-l71rfad5bb]{
        padding:3px 5px;
    }


    .alert .footer[b-l71rfad5bb] {
        text-align:center;
    }

.btn-primary[b-l71rfad5bb] {
    color: black;
    background-color: whitesmoke;
    border-color: black;
}
/* /Components/Loader/Loader.razor.rz.scp.css */
.loader-content[b-b6gftdimod] {
    background-color: rgba(242,242,242,0.4);
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
}

.loader[b-b6gftdimod] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid var(--navbar-color);
    filter:brightness(2.5);
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation-b-b6gftdimod 1s linear infinite;
}

@keyframes rotation-b-b6gftdimod {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 

/*.dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.dot {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: var(--navbar-color);
    filter:brightness(2.5);
    animation: pulse 1.5s infinite ease-in-out;
}

    .dot:last-child {
        margin-right: 0;
    }

    .dot:nth-child(1) {
        animation-delay: -0.3s;
    }

    .dot:nth-child(2) {
        animation-delay: -0.1s;
    }

    .dot:nth-child(3) {
        animation-delay: 0.1s;
    }

@keyframes pulse {
    0% {
        transform: scale(0.8);
        background-color: var(--navbar-color);
        filter: brightness(2.5);
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }

    50% {
        transform: scale(1.2);
        background-color: var(--navbar-color);
        filter: brightness(2.5);
        box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
    }

    100% {
        transform: scale(0.8);
        background-color: var(--navbar-color);
        filter: brightness(2.5);
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
}*/
/* /Components/ProgressBarVigency.razor.rz.scp.css */
.startDate[b-ascsxr5u34] {
    float: left;
    font-size: 11px;
}

.endDate[b-ascsxr5u34] {
    float: right;
    font-size: 11px;
}

.animated-progress[b-ascsxr5u34] {
    width: 100%;
    height: 12px;
    border-radius: 5px;
    margin: 5px 2px;
    border: 1px solid lightgray;
    background-color: lightgray;
    overflow: hidden;
    position: relative;
}

    .animated-progress span[b-ascsxr5u34] {
        height: 100%;
        display: block;
        width: 0;
        color: rgb(255, 251, 251);
        line-height: 30px;
        position: absolute;
        text-align: end;
        padding-right: 5px;
        animation: loading-b-ascsxr5u34 2s linear;
    }

.progress-bar span[b-ascsxr5u34] {
    background-color: var(--navbar-color);
    filter:brightness(2.5);
    /*background-color: hsl(from var(--navbar-color) 255 10% 80%);*/
}

@keyframes loading-b-ascsxr5u34 {
    0% {
        width: 0%; /* Comienza desde 0% */
    }
}
/* /Components/ViewerPdf.razor.rz.scp.css */
.visor[b-s87aat035m] {
    max-width: 100vw;
    height: 88vh;
    background-color: #686868;
    padding: 5px;
    text-align: center;
}

#pdf-container[b-s87aat035m] {
    width: 100%;
    height: 99%;
    overflow: auto;
    text-align: center;
    border: none;
    background-color: transparent;
}

#download-file[b-s87aat035m] {
    float: right;
}

canvas[b-s87aat035m] {
    width: 100vw;
}

#controls[b-s87aat035m] {
    width: 100%;
    height: 26px;
    z-index: 10;
    background-color: transparent;
    border-radius: 5px;
    color: white;
}

i[b-s87aat035m] {
    color: white;
    border: none;
    cursor: pointer;
}

    i:disabled[b-s87aat035m] {
        background-color: #ddd;
        cursor: not-allowed;
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-3ahqq6iqyx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3ahqq6iqyx] {
    flex: 1;
}

.sidebar[b-3ahqq6iqyx] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3ahqq6iqyx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-3ahqq6iqyx]  a, .top-row[b-3ahqq6iqyx]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-3ahqq6iqyx]  a:hover, .top-row[b-3ahqq6iqyx]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-3ahqq6iqyx]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-3ahqq6iqyx] {
        justify-content: space-between;
    }

    .top-row[b-3ahqq6iqyx]  a, .top-row[b-3ahqq6iqyx]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-3ahqq6iqyx] {
        flex-direction: row;
    }

    .sidebar[b-3ahqq6iqyx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-3ahqq6iqyx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-3ahqq6iqyx]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-3ahqq6iqyx], article[b-3ahqq6iqyx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/*.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}*/

.navbar[b-l6css7bzxd] {
    background-color: var(--navbar-color);
    flex-wrap: nowrap;
    padding-top: 0px;
}


.navbar-brand[b-l6css7bzxd] {
    font-size: 1.1rem;
}

.item[b-l6css7bzxd] {
    display: flex;
    padding: 0rem;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 5px;
    height: 40px;
    width: 30px;
    flex-grow: 1;
    margin: 0px;
    justify-content: flex-start;
    align-items: center;
    color: var(--navbar-icons);
    border-radius: 100% !important;
    line-height: 3rem;
}

    .item .fa-xl[b-l6css7bzxd] {
        font-size: 2em;
    }

.link[b-l6css7bzxd] {
    padding: .5rem 0px !important;
    display: block;
    text-decoration: none;
}

.target[b-l6css7bzxd] {
    max-height: 10px;
    margin-top: -8px;
}

.item[b-l6css7bzxd]  a {
    color: var(--navbar-icons);
    height: 3rem;
    display: flex;
    height: 50px;
    width: 50px;
    padding: .98rem 0px !important;
    border-radius: 100% !important;
    text-decoration: none;
    flex-direction: column;
    font-size: 10px;
    align-items: center;
    line-height: 3rem;
}

    .item[b-l6css7bzxd]  a.active {
        background-color: transparent;
        color: var(--navbar-icons);
    }

    .item[b-l6css7bzxd]  a.active {
        border-radius: 0% !important;
        padding-bottom: 22px !important;
        margin: 0px;
        margin-bottom: -2px;
        border-bottom: 1.5px solid var(--navbar-icons);
    }

    .item[b-l6css7bzxd]  a.viewOn {
        background-color: var(--background-color);
        color: var(--navbar-color);
        border: 1px solid var(--navbar-color);
        margin-top: -26px;
    }

    .item[b-l6css7bzxd]  a.viewOn.active {
        border-radius: 100% !important;
    }

@media (min-width: 400px) {
    .navbar[b-l6css7bzxd] {
        height: 60px;
    }

    .item[b-l6css7bzxd] {
        display: flex;
        padding: 0rem;
        flex-direction: column;
        flex-wrap: wrap;
        font-size: 5px;
        height: 30px;
        width: 30px;
        flex-grow: 1;
        margin: 5px;
        margin-top: -15px;
        justify-content: flex-start;
        align-items: center;
        color: var(--icons-color);
        border-radius: 100%;
        line-height: 3rem;
    }

        .item[b-l6css7bzxd]  a.viewOn {
            background-color: var(--background-color);
            color: var(--navbar-color);
            border: 1px solid var(--navbar-color);
            margin-top: -25px;
        }
}

@media (min-width: 1081px) {
    .navbar[b-l6css7bzxd] {
        height: 45px;
    }

    .item[b-l6css7bzxd] {
        display: flex;
        padding: 0rem;
        flex-direction: column;
        flex-wrap: wrap;
        font-size: 5px;
        height: 30px;
        width: 30px;
        flex-grow: 1;
        margin: 5px;
        margin-top: 0px;
        justify-content: flex-start;
        align-items: center;
        color: var(--icons-color);
        border-radius: 100%;
        line-height: 3rem;
    }
}

@media (min-width: 641px) {
    .navbar-toggler[b-l6css7bzxd] {
        display: none;
    }

    .collapse[b-l6css7bzxd] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-l6css7bzxd] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

@media (min-width:1081px){
    .fixed-bottom[b-l6css7bzxd] {
        position: fixed;
        right: auto;
        bottom: 0;
        left: auto;
        width: 1024px;
        z-index: 1030;
    }

    .item[b-l6css7bzxd]  a.active {
        border-radius: 0% !important;
        padding-bottom: 22px !important;
        margin: 0px;
        margin-bottom: -10px;
        border-bottom: 2px solid var(--navbar-icons);
    }
}
