﻿.AppMenuManage {
    height: 100%;
    width: 100%;
    background: white;
    padding-right: 0px;
}

.MenuManageChild:not([expanded="true"]) {
    display: none;
}

.MenuManage {
    padding: 5px 0px !important;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.45);
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
}

    .MenuManage input {
        margin: 0 5px;
    }

    .MenuManage:hover {
        background: #f5f5f5;
    }

    .MenuManage .MenuManageItem {
        display: none !important;
    }

    .MenuManage:hover .MenuManageItem {
        display: block !important;
    }

.MenuManageBtnGroup {
    position: absolute;
    right: 0px;
    z-index: 999999999999999999;
    top: 0%;
    /*width: 100%;*/
    height: 100%;
}

    .MenuManageBtnGroup button {
        float: right;
        height: 100%;
        opacity: 0.6;
        height: 100%;
        border-radius: 0px;
    }

        .MenuManageBtnGroup button:hover {
            opacity: 1;
        }
