﻿::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(var(--accent), 0.75);
}

.maincontent {
    font-size: initial;
}

.maincontent i.fa.fa-angle-right {
    margin: 0 0.3em 0 0.3em;
}

.scroll-bar-wrap {
    position: relative;
}

.scroll-box {
    width: 100%;
    height: 25em;
    overflow-y: scroll;
}

.scroll-box::-webkit-scrollbar {
    width: .4em;
}

.scroll-box::-webkit-scrollbar,
.scroll-box::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 4px;
}

.scroll-box::-webkit-scrollbar-thumb {
    background: rgba(var(--accent), 1);
}

.cover-bar {
    position: absolute;
    background: rgba(var(--accent), 0.1);
    height: 100%;
    top: 0;
    right: 0;
    width: .4em;
    opacity: 1;
}

.scroll-bar-wrap:hover .cover-bar {
    opacity: 0;
    -webkit-transition: all .5s;
}