.scrollbar::-webkit-scrollbar {
    background-color: transparent;
    width: 3px;
    height: 3px;
}

.scrollbar::-webkit-scrollbar-track {
    background-color: var(--cor-2);
}

.scrollbar::-webkit-scrollbar-track:hover {
    right: 4px;
    position: absolute;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: #ff4500;
    opacity: 0;
    border-radius: 16px;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    opacity: 1;
    display: block;
}

.scrollbar::-webkit-scrollbar-button {
    display: none;
}

.scrollbar {
    padding-right: 0px;
    overflow-y: scroll;
}