/* EDITABLE */
.has-editable {
	position: relative;
}
	.has-editable .editable {
		position: absolute;
		z-index: 999;
		top: 10px;
		right: 10px;
		background-color: #f8ac59;
		width: 28px;
		height: 28px;
		border-radius: 50%;
		text-align: center;
		line-height: 28px;
		opacity: 0.1;
		transition: ease all 0.25s;
	}

	.has-editable:hover > .editable {
		opacity: 1;
	}
		.has-editable .editable > .frontend-editor-link{
			color: #000;
			font-size: 16px;
			display: block;
		}
		
		.has-editable .tooltip .tooltip-inner {
			background-color: #f8ac59;
			color: #000;
		}
		.has-editable .tooltip .tooltip-arrow {
			border-left-color: #f8ac59;
		}