#user_info_and_tools{
    position: fixed;
    top: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin-top: .25vh;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    cursor: default;
}
pre {
    color: #838383;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;

    padding: 0 1vw;
    margin-bottom: 0.25rem;
}
kbd {
    background-color: #434343;
    border-radius: 3px;
    border: 1px solid #4f4f4f;
    box-shadow:
      0 1px 1px rgba(0, 0, 0, 0.2),
      0 2px 0 0 rgba(80, 80, 80, 0.7) inset;
    color:  #bfbfbf;
    display: inline-block;
    font-size: 0.95em;
    font-weight: 700;
    line-height: 1;
    padding: 2px 4px;
    white-space: nowrap;
}
.modes kbd {
    color: var(--color-keys, #bfbfbf);
}
.hide_lid kbd {
    color: var(--color-keys-h, #bfbfbf);
}
#eye_color {
    display: flex;
    cursor: default;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;

    margin-top: 2.5vh;
    width: 100%;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    cursor: default;
}

#eyeL_color, #eyeR_color {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: nowrap;
}

#eye_color input[type="color"]{
    border: none;
    background-color: transparent;
    box-sizing: unset;
    inline-size: 50px;
    block-size: 27.5px;
    padding: 0 0;
    margin: 0 0.15vw;
    padding-block: 0;
    padding-inline: 0;
    cursor: pointer;
}


@media  (max-width: 480px) or (max-height: 480px){
    #user_info_and_tools {
      display: none;
    }
}