.react-contextmenu {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 16px;
    color: #373a3c;
    text-align: left;
    background-color: rgba(233, 239, 244, 1);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    outline: none;
    opacity: 0;
}

.react-contextmenu-wrapper {
	height:100%;
	width:100%;
}

.react-contextmenu.react-contextmenu--visible {
    opacity: 1;
    pointer-events: auto;
    z-index: 100;
}

.react-contextmenu-item {
    display: inline-block;
    width:100%;
    clear: both;
    font-weight: 400;
    line-height: 1.5;
    color: #373a3c;
    text-align: center;
    white-space: nowrap;
    background: 0 0;
    border: 0;
	text-decoration: none;
}

.react-contextmenu-item.active,
.react-contextmenu-item:hover {
    background-color: hsl(0, 0%, 80%);
    border-color: hsl(0, 0%, 80%);
    text-decoration: none;
}
.react-contextmenu-item.submenu > a {
    padding-right: 27px;
}

.react-contextmenu-item.submenu > a:after {
    content: "▶";
    display: inline-block;
    position: absolute;
    right: 7px;
}
