@charset "utf-8";

/* CUSTOM SCROLLBARS */
div[custom-scroll-wrapper] {
    --custom-scrollbar-thickness: 6px;
    --custom-scrollbar-color: rgba(0, 0, 0, 0);
    --custom-scrollbar-thumb-color: rgba(0, 0, 0, 0.2);
    --custom-scrollbar-thumb-color-hover: rgba(0, 0, 0, 0.5);
    --custom-scrollbar-border-radius: 99px;
    overflow: hidden;
    position: relative;
}

div[custom-scroll-container] {
    overflow: auto;
    position: relative;
}

div[custom-scroll-container]:not([show-native-scrollbars]) {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

div[custom-scroll-container]:not([show-native-scrollbars])::-webkit-scrollbar {
    display: none;
}
div[custom-scroll-content]{
    width: fit-content;
    height: fit-content;
}