/* HTML: <div class="loader"></div> */
/* .loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
} */

.container-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modalMensaje {
    position: fixed;
    /*  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    padding-bottom: 5px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    z-index: 1000;
}

.btnsincroniza {
    display: inline-block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    padding: 5px;
}

.container-ranking {
    width: fit-content;
    min-width: 300px;
    max-width: 500px;
    width: auto;
}

.svgElementSide {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.container-graphics-home {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
}

.nombreausentes {
    display: inline-block;
}

.li-grafico-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    gap: 10px;
}

div.google-visualization-tooltip {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 200px;
    height: 50px;
    line-height: 0.1;
}

.barrascroll::-webkit-scrollbar {
    width: 6px;
    /* width of the entire scrollbar */
}

.barrascroll::-webkit-scrollbar-track {
    background: transparent;
    /* color of the tracking area */
}

.barrascroll::-webkit-scrollbar-thumb {
    background-color: #808080;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    /* border: 3px solid rgb(191, 191, 199); */
    /* creates padding around scroll thumb */
}