@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
--bs-primary: #003366; /* Azul oscuro */
--color-axs: #2b3aa0;
}

/*@media (max-width: 1500px) {*/
/*    body {*/
/*        transform: scale(0.8); !* Escalar todo al 80% *!*/
/*        transform-origin: top left; !* Asegura que el escalado no desplace el contenido *!*/
/*        width: 125%; !* Compensar la reducción en escala *!*/
/*    }*/
/*}*/

*{
    /*font-family: "sans-serif";*/
}

.bg-axs{
    background-color: var(--color-axs);
    border-color: var(--color-axs);
}
.pelotita{
    width: 1em;
    height: 1em;
}

.linea{
    display: flex;
    align-items: center;
}

.reloj {
    color: var(--color-axs);
    /*font-family: "sans-serif";*/
    font-weight: 600;
    font-style: normal;
}

#alertas {
    height: 90vh;
}
#alertas>div{
    height: 100%;
}
#contenedor_alertas{
    overflow-y: scroll;
    max-height: 81vh;
}

.modal-xxl-en-el-sitio {
    --bs-modal-width: 75.5%;
    margin-top: 5rem;
    margin-left: 9rem;
}

.btn-navegacion {
    cursor: pointer;
    display: flex;
    text-decoration: none;

}
.btn-navegacion:hover span {
    display: block;
}
.btn-navegacion span {
    display: none;
}

#spinnerHistoricos{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-sliders{
    position: relative;
    width: 100%;
    height: 100px;
    margin-top: -2em;
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.slider-track {
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: lightgray;
}
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}
input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}
input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    background-color: var(--color-axs);
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
}
input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--color-axs);
    pointer-events: auto;
    border: none;
}
input[type="range"]::-ms-thumb {
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--color-axs);
    pointer-events: auto;
}
input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 1px solid var(--color-axs);
}

.btn-servidor:hover {
    border-color: black !important;
}
.tachado {
    text-decoration: line-through;
    color: #636363;
}

.btn-maximizar {
    width: 2rem;
    height: 2rem;
    padding: 0.5rem;
    color: var(--color-axs);
}
.btn-maximizar:hover {
    cursor: pointer;
    color: black;
}


#aviso_flotante{
    position: fixed;
    bottom: 1%;
    right: 1%;
    min-width: 40%;
    color: white;
    padding: 1em;
    background-color: var(--color-axs);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 5em;
}
#aviso_flotante > i {
    font-size: 2em;
}