:root {
    --brandColorHexa: #000000;
}

.explore_menu,
.explore_menu * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.explore_menu {
    overflow-y: auto !important;
    z-index: 0;
    padding-right: 5px;
    scrollbar-gutter: stable;
    transition: left 700ms, top 700ms, width 400ms !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3px;
    scroll-behavior: smooth;
}

.explore_menu::-webkit-scrollbar {
    width: 5px;
    position: absolute;
    background-color: #FFFFFF80;
}

.explore_menu::-webkit-scrollbar-thumb {
    background-color: var(--brandColorHexa);
}

.categoryCloner {
    width: calc(100% - 0px);
    height: max-content;
    overflow: hidden;
    position: relative;
    transition: height 400ms ease-in-out;
}

.categoryCloner .categoryTitle {
    width: 100%;
    height: max-content;
    padding: 5px;
    background-color: #FFFFFF;
    color: #000000;
    margin-bottom: 1px;
    text-align: center;
    font-weight: 600;
    transition: background-color 200ms ease, color 200ms ease;
    cursor: pointer;
    position: relative;
    overflow: hidden !important;
}

.categoryCloner .categoryTitle:hover,
.categoryCloner.active .categoryTitle {
    background-color: var(--brandColorHexa);
    color: #FFFFFF;
}

.categoryCloner .categoryTitle .title {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.explore_menu.defaultIndex .categoryCloner .categoryTitle .title {
    z-index: auto;
}

.categoryCloner .nodeCloner {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-direction: column;
}

.categoryCloner.active .nodeCloner {
    position: static;
    opacity: 1;
    pointer-events: all;
}

.categoryCloner .nodeCloner .nodeContainer {
    position: relative;
    width: 100%;
    height: max-content;
    display: flex;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid #d3d3d3;
    transition: border-color 400ms ease;
}

.categoryCloner .nodeCloner .nodeContainer.active,
.categoryCloner .nodeCloner .nodeContainer:hover {
    border-color: #7b7b7b;
}

.explore_menu[mode="night"] .categoryCloner .nodeCloner .nodeContainer[node-mode="day"],
.explore_menu[mode="day"] .categoryCloner .nodeCloner .nodeContainer[node-mode="night"] {
    display: none;
}

.categoryCloner .nodeCloner .nodeContainer .nodeImage {
    width: 100%;
    height: auto;
    position: relative;
    transition: transform 400ms ease;
}

.categoryCloner .nodeCloner .nodeContainer:hover .nodeImage {
    transform: scale(1.2);
}

.categoryCloner .nodeCloner .nodeContainer .nodeTitle {
    width: 100%;
    background-color: #0000006e;
    color: #FFFFFF;
    padding: 0 10px;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 1px;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    bottom: 0px;
    left: 0px;
}