.nt-layout{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: -15px;
}



.nt-navigator{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 250px;
    min-height: 1200px;
    background-color: #505771;
    padding: 5px 0;
}

.nt-nav-item{
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    min-height: 24px;
    font-size: 14px;
}

.nt-nav-item:hover
{
    transition: color .3s ease-in-out, background-color .3s ease-in-out;
    color: #505771;
    background-color: #eee;
}

.nt-nav-item-wrapper{
    position: relative;
}

.nt-nav-item-wrapper span{
    position: absolute;
    right: 5px;
    top: 10px;
    cursor: pointer;
}

.nt-nav-item.visible::after{
    content: "\1F441";
    margin-left: 5px;
}

.nt-nav-item.invisible::after{
    content: "\270E";
    margin-left: 5px;
}

.nt-nav-item-lvl-1
{
    
}

.nt-nav-item-lvl-2
{
}

.nt-nav-item-lvl-2::before
{
    content: "\2022";
    margin-right: 20px;
}

.nt-nav-item-lvl-3
{

}

.nt-nav-item-lvl-4
{

}

.nt-nav-item-wrapper span::before{
    content: "\2795";
}

.nt-navigator .active
{
    background-color: #eee;
    color: black;
    cursor: default;
}

.nt-content-layout{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 250px);
    padding-top: 20px;
    position: relative;
}

.main-article-layout
{
    position: relative;
}

.article-visibility-info{
    position: absolute;
    top: 0;
    right: 0;
}

.article-visibility-info.visible{
    color:#26bd00;
}

.article-visibility-info.visible::after{
    content: "\1F441";
}

.article-visibility-info.invisible{
    color: orange;
    font-weight: bold;
}

.article-visibility-info.invisible::after{
    content: "\270E";
}

.article-edit-overlay{
    display: none;
    position: absolute;
    right: -360px;
    top: 0;
    /* display: flex; */
    flex-direction: row;
    justify-content: flex-start;
    z-index: 99;
}

.article-edit-overlay.active{
    /* right: -20px; */
    -webkit-animation-name: show_overlay;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
}

.article-edit-overlay.inactive{
    -webkit-animation-name: hide_overlay;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes show_overlay {
    from {
        -webkit-transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-340px);
    }
}

@-webkit-keyframes hide_overlay {
    to {
        -webkit-transform: translateX(0);
    }
    from {
        -webkit-transform: translateX(-340px);
    }
}

.edit-overlay-visible{
    background-color: #26bd00;
    padding: 10px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: white;
    transform: rotate(-90deg)  translateX(-35px) translateY(36px);
    height: min-content;
    z-index: 99;
    cursor: pointer;
    font-weight: bold;
}

.edit-overlay-form{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #fff;
    /* height: 150px; */
    width: 300px;
    z-index: 99;
    padding: 40px 20px;
    -webkit-box-shadow: 5px 5px 15px 5px #aaa;
    box-shadow: 5px 5px 15px 5px #aaa
}

.nt-content{
    padding: 0 20px 20px 20px;
    width: calc(100% - 280px);
    font-size: 16px;
}

.nt-sidebar, .sidebar-sticky, .sidebar-abs{
    width: 280px;
    height: fit-content;
    min-height: 350px;
    background-color: #eee;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
    color: rgba(80, 87, 113, 0.8);
    float:left;
    z-index: 100;
}

.nt-sidebar-title{
    margin-left: 10px;
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 20px;
    color: rgba(80, 87, 113, 0.5);
}

.sidebar-sticky {
    position: fixed; 
    top: 0px;
    /* right:18px; */
    margin: 0;
    /* width:calc(33.33% - 25px); */
  }
  
  .sidebar-abs {
    position: absolute;
    bottom: 10px;
    /* right:10px; */
    /* width:calc(33.33% - 20px); */
  }

.nt-sidebar-el{
    padding-left: 15px;
    margin: 6px 0;
    cursor: pointer;
    font-size: 16px;
}

.nt-sidebar-el:hover{
    border-left: 2px solid #4279A3;
    color: rgba(66, 121, 163, 0.6);
    padding-left: 13px;
}

.nt-sidebar-l2{
    padding-left: 30px;
}

.nt-sidebar-l2:hover{
    padding-left: 28px;
}

.nt-sidebar-l3{
    padding-left: 45px;
}

.nt-sidebar-l3:hover{
    padding-left: 43px;
}