.menu-lbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: none;
    z-index: 100;
}
.menu-lbox > .dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    cursor: pointer;
    z-index: 101;
    opacity: 0;
    transition: opacity 0.2s 0.3s ease;
}
.menu-lbox > .inner {
    background: #fff;
    position: relative;
    z-index: 102;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    color: #000;
    padding: 30px;
    opacity: 0;
    transform: translate3d(0,30px,0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu-lbox.open {
    display: block;
}
.menu-lbox.open > .dark {
    opacity: 1;
    transition-delay: 0s;
}
.menu-lbox.open > .inner {
    opacity: 1;
    transform: translate3d(0,0,0);
    transition-delay: 0.2s;
}
.menu-tree .items {
    margin: 0 0 20px;
}
.menu-tree .items:empty {
    border: 1px dashed #aaa;
    min-height: 40px;
}
.menu-tree .item {
    border: 1px dashed transparent;
    border-radius: 3px;
    margin-bottom: 5px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.menu-tree .item > .inner:after {
    content: "";
    display: block;
    clear: both;
}
.menu-tree .item > .inner {
    border-radius: 3px;
    background: #cff0ff;
    padding: 10px 15px;
    transition: box-shadow 0.2s ease;
}
.menu-tree .item.moving {
    border-color: #000;
}
.menu-tree .item.moving > .inner {
    box-shadow: 0 0 2px rgba(0,0,0,0.4);
}
.menu-tree .item.same-uri > .inner {
    background: #cfdaff;
}
.menu-tree .item.new > .inner,
.menu-tree .item.template > .inner {
    background: #e8c1ff;
}
.menu-tree .item .left {
    float: left;
}
.menu-tree .item .right {
    float: right;
}
.menu-tree .item .locales {
    float: right;
    margin-right: 20px;
}
.menu-tree .item .empty-title {
    display: none;
    font-style: italic;
}
.menu-tree .item.no-title .title {
    display: none;
}
.menu-tree .item.no-title .empty-title {
    display: inline;
}
.menu-tree .item .locale.inactive {
    text-decoration: line-through;
    opacity: 0.5;
}
.menu-tree .move {
    cursor: move;
    margin-right: 10px;
}
.menu-tree .right .fa {
    cursor: pointer;
    margin-left: 5px;
}
body.moving {
    cursor: move;
}
.menu-tree .item.status-0 .title:after {
    content: "\f070";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: 5px;
    font-size: 0.8em;
}
.menu-tree .item.template {
    margin-bottom: 40px;
}
.menu-tree .depth-1 {
    margin-left: 20px;
}
.menu-tree .depth-2 {
    margin-left: 40px;
}
.menu-tree .depth-3 {
    margin-left: 60px;
}
.menu-tree .depth-4 {
    margin-left: 80px;
}
.menu-tree .depth-5 {
    margin-left: 100px;
}

.menu-choice {
    display: inline-block;
    padding: 10px 15px;
    margin-right: 5px;
    border-radius: 3px;
    background: #cff0ff;
    cursor: pointer;
}
.menu-choice.has-uri {
    background: #cfdaff;
}
.menu-choice .num {
    margin-left: 5px;
    font-size: 0.8em;
    font-weight: bold;
}