#altimax-adminbar {
    position: fixed;
    top: auto;
    bottom: 0;
    width: 600px;
    min-height: 300px;
    right: 20%;
    border-color: darkorange;
    left: auto;
    transform: translatey(100%);
    transition: transform 300ms ease-in-out;
    background-color: black;
    color: white;
    padding: 1rem;
    z-index: 9999;
}

#altimax-adminbar::after {
    content: "";
    border-width: 10px;
    border-style: solid;
    position: absolute;
    right: 10%;
    bottom: 100%;
    transform: translateX(-50%);
}

.altimax-adminbar-warp {
    padding: 4px;
    margin: 2px;
    border: 1px solid white;
}

#altimax-adminbar:hover {
    transform: translatey(0);
}

.altimax-adminbar-button {
    display: inline-block;
    padding: 4px;
    margin: 4px;
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    background-color: black;
    transition: border-color 200ms ease-in-out, color 200ms ease-in-out, background-color 200ms ease-in-out;
    cursor: pointer;
}

.altimax-adminbar-button:hover {
    background-color: white;
    color: black;
    border-color: black;
}

.altimax-adminbar-warp > ul {
    margin-left: 8px !important;
    display: block !important;
    max-height: 300px;
    overflow-y: auto;
}