@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI' !important;
}

:root {
    /* UTILS */
    --pi: 3.14159265359;
    --r: 70;
}

thead > tr > th:nth-child(3),
tr > td:nth-child(3) {
    width: 125px;
}

.resumen-block {
    width: calc(100% - 20px);
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: 0;
    padding-bottom: 0px;
}

    .resumen-block::-webkit-scrollbar {
        display: none;
    }

.arrow-scroll {
    transition: 1s all ease-in-out !important;
    opacity: 0;
    display: none;
}

.arrow-scroll-left {
    transform: translate(1rem);
    transition: 0.5s all ease-in-out !important;
}

.arrow-scroll-right {
    transform: translate(-1rem);
    transition: 0.5s all ease-in-out !important;
}

@media (max-width: 900px) {
    .resumen-block {
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 40px;
    }

    .arrow-scroll {
        opacity: 1;
        display: block;
    }
}

.table > :not(caption) > * > * {
    padding: .75rem .4rem;
}

input:disabled {
    background-color: #f3f6f9 !important;
}

#poi-minutesFilterInput:disabled, #geo-minutesFilterInput:disabled {
    background-color: white !important;
}

.apexcharts-tooltip {
    display: none;
}

#CardsTooltip {
    color: rgb(43, 43, 43);
    display: none;
    border: 0.1px solid rgb(229, 229, 229);
}
