#admin-view {
    z-index: 12;
    background: #fafafa;
    overflow: hidden;
    display: none;
}

#admin-view .menu {
    position: absolute;
    top: 84px;
    right: 70px;
    display: flex;
    justify-content: center;
    color: rgba(0, 0, 0, .2);
    transition: all .1s ease-in-out;
}

#admin-view .menu span {
    margin-left: 48px;
    height: 44px;
    cursor: pointer;
    font-size: .875em;
    letter-spacing: .03em;
    font-weight: 600;
}

#admin-view .menu span:hover {
    color: rgba(0, 0, 0, .3);
}

#admin-view .menu span.active {
    color: #27ae60;
    border-bottom: 2px solid #24A45A;
}

#admin-view .database, #admin-view .editors, #admin-view .passwords {
    position: absolute;
    top: 25%;
    left: calc(50% - 275px);
}

#admin-view .editors, #admin-view .passwords {
    left: 100%;
}

#admin-view .editors .input-field-handle {
    transform: rotateZ(-90deg);
}

#admin-view .btns-wrapper {
    display: flex;
    justify-content: center;
    width: 550px;
    margin-top: 32px;
}

#admin-view .btn-main-action, #admin-view .btn-sub-action {
    width: 267px;
}

#admin-view .editors ul {
    height: calc(4*56px);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, .1);
    overflow-y: scroll;
}

#admin-view .editors ul li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1em;
    color: rgba(0, 0, 0, .6);
    padding: 0 32px;
    height: 56px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#admin-view .editors ul li:hover  {
    background: rgba(0, 0, 0, .05);
}

#admin-view .editors ul li:hover *  {
    display: block;
}

#admin-view .editors ul li:last-child {
    border-bottom: none;
}

#admin-view .editors .delete-btn {
    display: none;
    position: absolute;
    right: 0;
    width: 56px;
    height: 56px;
    background: url(../../images/delete_icon_dark.png) no-repeat;
    background-position: center center;
    cursor: pointer;
}

#admin-view .editors .delete-btn:hover {
    background: url(../../images/delete_icon_red.png) no-repeat;
    background-position: center center;
}

