/* ------------------------- FAST EDIT MENU STRUCTURE ------------------------- */

.node-fast-edit-menu {
	background-color: #FFF;
	border-radius: 2px;
	font-family: 'Open Sans', sans-serif;
	color: #555;
	box-sizing: border-box;
	transition: .5s ease all;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.node-fast-edit-menu a {
	font-family: 'Open Sans', sans-serif;
}

.node-fast-edit-menu > .node-fast-edit-menu-body {
	padding: 0;
	font-size: 95%;
}

.node-fast-edit-menu .node-fast-edit-menu-body ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
	.node-fast-edit-menu .node-fast-edit-menu-body ul li {
		float: left;
		padding: 5px;
	}
		.node-fast-edit-menu .node-fast-edit-menu-body ul li a {
		    display: block;
		    font-size: 1.25em;
		    color: #555;
		    text-align: center;
		    padding: 7px 11px;
			text-decoration: none;
			border-radius: 50%;
		}
			.node-fast-edit-menu .node-fast-edit-menu-body ul li a:hover {
			    background-color: #F1F1F1;
			}

/* ARROW STYLES */

.node-fast-edit-menu > .arrow {
	border-width: 10px;
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
/*
.node-fast-edit-menu.top {
	margin-top: -12px;
}
*/
.node-fast-edit-menu.top > .arrow {
	left: 50%;
	bottom: -10px;
	margin-left: -10px;
	border-top-color: #FFF;
	border-bottom-width: 0;
}

/* ----------------------- END FAST EDIT MENU STRUCTURE ----------------------- */