.adminPanel {
    position: fixed;
    top: 5em;
    right: -20em;
    background: #ffd574;
    padding: 1em;
    transition-property: left right;
    transition-duration: 0.5s;
    width: 20em;
    text-align: center;
    z-index: 5000;
}

.adminPanel.active {
    right: 0em;
}

.adminPanel a {
    color: #000;
    text-decoration: none;
}

.openAdminPanel {
    position: absolute;
    top: 0;
    left: -2em;
    background: #ffd574;
    padding: 0.5em 0;
    width: 2em;
    text-align: center;
    cursor: pointer;
    opacity: 0.7;
}

.adminPanel.active .openAdminPanel {
    opacity: 1;
}

.adminPanel a {
    display: block;
    text-align: left;
    margin-bottom: 1em;
}

.adminPanel a:last-child {
    margin-bottom: 0em;
}

.adminPanel2 {
    top:1em;
    right: -80%;
    width: 80%;
    background: #8cb0ff;
}

.adminPanel2 .openAdminPanel {

    background: #8cb0ff;

}

.adminpanel-debug {
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.adminpanel-debug .my-debug-info {
    display: none;
}

