#Menu {
    bottom: 10px;
    display: grid;
    gap: 10px;
    justify-content: center;
    align-items: end;
    position: fixed;
    width: fit-content;
    z-index: 1000;
    grid-template-columns: 1fr auto 1fr;
    min-height: 60px;
}

.MenuOptionsBackground {
    height: fit-content;
    min-height: 60px;
    width: 100%;
    justify-items: center;
}

.MenuOptionsBackground:nth-child(1) {
    justify-items: end;
}

.MenuOptionsBackground:nth-child(3) {
    justify-items: start;
}

.MenuOptionsBackground:nth-child(1)>.MenuOptions {
    display: none;
    opacity: 0;
}

.MenuOptionsBackground:nth-child(2)>.MenuOptions {
    display: grid;
}

.MenuOptionsBackground:nth-child(3)>.MenuOptions {
    display: none;
    opacity: 0;
}

.MenuOptions {
    height: fit-content;
    min-height: 60px;
    width: fit-content;
    background-color: var(--Background1);
    gap: 5px;
    border-radius: 5px;
    border: 2px solid var(--Background2);
    padding: 0px 10px;
    transition: 0.15s;
}

#Menu>.MenuOptionsBackground:nth-child(2)>.MenuOptions {
    padding: 0px;
}

.MenuOptions>label {
    min-height: 60px;
    min-width: 60px;
    cursor: pointer;
}

.MenuOptions>label>input {
    display: none;
}

.MenuOptions>label>span {
    display: none;
}

.MenuOptions>label>div {
    font-size: 26px;
    height: 50px;
    width: 50px;
    border-radius: 3px;
}

#Menu>.MenuOptionsBackground:nth-child(2)>.MenuOptions>label>div {
    background-color: transparent;
}