.is-hidden {
    display: none !important;
}

@media (min-width: 769px) {
    #action-bar-button.is-hidden-desktop {
        display: none !important;
    }
}

.action-bar-button {
    position: absolute;
    z-index: 11;
    margin: 1.25vw;
    cursor: pointer;
}

.action-sidebar-container {
    position: absolute;
    width: 25vw;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 10;
    margin-left: 1.25vw;
}

.action-sidebar {
    width: 25vw;
    height: 95vh;
    border-radius: 20px;
    background-color: var(--white);
}

.action-sidebar ul {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.action-sidebar li {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    box-sizing: border-box;
    list-style: none;
    text-align: left;
    border-bottom: 1px solid var(--gray);
}

.action-sidebar li a {
    display: flex;
    align-items: center;
    gap: 0.75em;
    padding: 1em 1.5em;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.action-sidebar li:first-child a {
    padding-top: calc(1em + 10px);
    border-radius: 20px 20px 0 0;
}

.action-sidebar li a:hover {
    background-color: var(--light-gray);
    text-decoration: none;
}

.action-sidebar li a img {
    flex-shrink: 0;
    width: 1.5em;
    height: 1.5em;
}

.action-sidebar li:last-child {
    border-bottom: none;
}

.action-sidebar-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.449);
    z-index: 4;
}
