/* ------------------------- CONTEXT MENU STRUCTURE ------------------------- */

.stage-context-menu {
	transition: all .5s ease;
}
.stage-context-menu a {
	font-family: 'Open Sans', sans-serif;
}


.stage-context-menu {
	max-width: 240px;
	min-width: 200px;
	background-color: #FFF;
	font-family: 'Open Sans', sans-serif;
	color: #555;
	box-sizing: border-box;
	/* border: 1px solid #D6D6D6; */
	border-radius: 2px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.stage-context-menu > .stage-context-menu-header {
	font-variant: small-caps;
	font-size: 120%;
	color: #2C3E50;
	border-bottom: 1px solid #2C3E50;
	padding-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	background-color: #CBD0D3;
}

.stage-context-menu > .stage-context-menu-body {
	padding: 0;
	font-size: 95%;
}

.stage-context-menu > .stage-context-menu-footer {
    padding: 10px;
    border-top: 1px solid #BBB1A2;
    background-color: #ebe3d7;
}

.stage-context-menu > .stage-context-menu-footer p {
	margin: 0;
	color: #FFF;
}

.stage-context-menu > .arrow {
	border-width: 10px;
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}

.stage-context-menu.top {
	margin-top: -12px;
}

.stage-context-menu.top > .arrow {
	left: 50%;
	bottom: -10px;
	margin-left: -10px;
	border-top-color: #FFF;
	border-bottom-width: 0;
}

.stage-context-menu.bottom {
	margin-top: 12px;
}
.stage-context-menu.bottom > .arrow {
	left: 50%;
	top: -10px;
	margin-left: -10px;
	border-bottom-color: #FFF;
	/* border-bottom-color: #ecf0f1; */
	border-top-width: 0;
}

.stage-context-menu.left {
	margin-left: -12px;
}

.stage-context-menu.left > .arrow {
	top: 50%;
	right: -10px;
	margin-top: -10px;
	border-left-color: #FFF;
	border-right-width: 0;
}

.stage-context-menu.right {
 	margin-left: 12px;
}

.stage-context-menu.right > .arrow {
	top: 50%;
	left: -10px;
	margin-top: -10px;
	border-right-color: #FFF;
	border-left-width: 0;
}

/* ----------------------- END CONTEXT MENU STRUCTURE ----------------------- */

/* ----------------------------- NELSON STUFF ----------------------------- */

.stage-context-menu .separator {	
    width: 100%;
    margin: 3px auto;
    height: 1px;
    background-color: #D6D6D6;
}

.stage-context-menu-body .menu-item {
  margin-left : 10px;
}

.stage-context-menu-body .icon-container {
  width: 18px;
  border: 0px solid red; 
  display: inline-block;
}

span.question-mark-inside {
    margin-right: 10px;
}

/* --------------------------- END NELSON STUFF --------------------------- */
