div#RightPanelFull {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    padding: 25px;
    overflow: auto;
    width: calc(100vw - 70px);
    background: #131313;
    max-width: calc(100vw - 0px);
    min-width: 300px;
    z-index: 10;
    box-shadow: 0px 0px 17px -12px #000000;
    transition: all .3s ease-in-out;
    box-sizing: border-box;
}

div#RightPanelFull.show {
    right: 0px;
    pointer-events: all;
}

div#RightPanelFull .closePanelBtn {
    font-size: 30px;
    line-height: 20px;
    cursor: pointer;
    opacity: .5;
    transition: all .3s;
}

div#RightPanelFull .navigation h3 {
    margin: 0px;
}

div#RightPanelFull .closePanelBtn:hover {
    opacity: 1;
}

#RightPanelFull .lineBreak {
    height: 1px;
    background: #ffffff4f;
    margin: 30px 0px;
}



#RightPanelFull.large .editPanelExpander {
    display: flex;
}

#RightPanelFull .editPanelExpander {
    position: absolute;
    left: calc(300px - 13px);
    width: 13px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: #141b2d;
    font-size: 12px;
    cursor: pointer;
    transition: all .3s;
    z-index: 1;
    display: none;
}

#RightPanelFull .editPanelExpander i {
    transform: rotate(180deg);
    transition: all .3s;
}

#RightPanelFull .large .editPanelExpander i {
    transform: rotate(0deg);
}

#RightPanelFull .editPanelExpander:hover {
    width: 40px;
    left: calc(300px - 40px);
}

#RightPanelFull .large .editPanelExpander:hover {
    left: calc(300px - 13px);
}