

/* ---------------------------------------------------
    context-menu
----------------------------------------------------- */

.context-menu {
    width: 400px;
    position: fixed;
    top: 0px;
    right: -420px;
    height: 100vh;
    z-index: 1999;
    background: #FFFFFF;
    color: #000;
    transition: all 0.3s;
    overflow-y: auto;
    box-shadow: 2px 2px 13px black;
}

    .context-menu.active {
        right: 0px;
    }

.context-menu-dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgb(0,58,112);
    position: absolute;
    top: 20px;
    left: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: white;
}

    .context-menu-dismiss:hover {
        background: white;
        color: rgb(0,58,112);
    }

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    opacity: 0;
    transition: all 1.5s ease-in-out;
}

    .overlay.active {
        display: block;
        opacity: 1;
    }

.context-menu .context-menu-header {
    padding-top: 5px;
    padding-left: 60px;
    padding-right: 20px;
    padding-bottom: 5px;
    color: white;
    background: rgb(0,58,112);
}

.context-menu .context-menu-body {
    padding: 20px;
    background: #ffffff;
}




/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

/*#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}*/
