.wiki-toolbar {
    position: fixed;
    z-index: 900;
    top: calc(4 * var(--behnke-basic));
    right: 0;
    min-height: calc(2 * var(--behnke-basic));
    width: 80vw;
    background-color: var(--behnke-light-black);
    opacity: 0.5;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.wiki-toolbar .toolbar-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: calc(var(--behnke-basic));
    border-bottom: 1px solid var(--behnke-light-black);
}

.wiki-toolbar .toolbar-item * {
    margin-right: calc(0.5 * var(--behnke-basic));
    font-size: var(--behnke-smaller-font-size);
}

.wiki-toolbar .toolbar-item img {
    max-height: calc(1.25 * var(--behnke-basic));
}

.wiki-toolbar .toolbar-item:hover {
    cursor: pointer;
    color: var(--link-color);
    border-bottom: 1px solid var(--link-color);
}

.wiki-toolbar .toolbar-item:hover img {
    transform: translateX(300vw); 
    filter: drop-shadow(-300vw 0 0 var(--link-color));
}

/* -----------------------------
TABLET
----------------------------- */

@media (max-width: 1000px) {

    .wiki-toolbar {
        width: calc(100vw - 260px);
    }
}

/* -----------------------------
MOBILE
----------------------------- */

@media (max-width: 700px) {

    .wiki-toolbar {
        width: 100vw;
    }

    .wiki-toolbar .toolbar-item p {
        display: none;
    }

    .wiki-toolbar .toolbar-item {
        margin-right: 4px;
        padding: 6px 8px;
        border-radius: 6px;
    }

    .wiki-toolbar .toolbar-item img {
        max-height: 20px;
        width: 20px;
    }

}
