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

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

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

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

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

#RightPanel .lineBreak {
    height: 1px;
    background: #ffffff4f;
    margin: 30px 0px;
    width: 100%;
}



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

.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;
}

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

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

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

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

.hiddenSection {
    overflow: hidden;
    height: auto;
}

.hiddenSection.hide {
    height: 0px;
}

#RightPanel .hiddenSectionWrapper .lineBreak {
    margin: 0px;
    margin-right: 15px;
}

.hiddenSectionWrapper {
    margin: 15px 0px;
}