/* ------------------------- FAST EDIT MENU STRUCTURE ------------------------- */

.edge-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);
}
.edge-fast-edit-menu a {
	font-family: 'Open Sans', sans-serif;
}

.edge-fast-edit-menu > .edge-fast-edit-menu-body {
	padding: 0;
	font-size: 95%;
}

.edge-fast-edit-menu .edge-fast-edit-menu-body ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
	.edge-fast-edit-menu .edge-fast-edit-menu-body ul li {
		float: left;
		padding: 5px;
	}
		.edge-fast-edit-menu .edge-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%;
		}
			.edge-fast-edit-menu .edge-fast-edit-menu-body ul li a:hover {
			    background-color: #F1F1F1;
			}

/* ARROW STYLES */

.edge-fast-edit-menu > .arrow {
	border-width: 10px;
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}

.edge-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 ----------------------- */