.ui-highlightable-token {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.ui-highlightable-token.ui-highlightable-highlighting {
	position: relative;
	color:#000;
	background-color: rgba(255, 236, 95, 0.47) !important;
}

.ui-highlightable-token.ui-highlightable-magnify, .ui-highlightable-token.ui-highlightable-highlighting.ui-highlightable-magnify {
	position: absolute;
	margin-top: -2em;
	margin-left: 0em;
	font-size: 2em;
	background: #FFF !important;
	background-color: #FFF !important;
	padding: 5px;
	min-width: 1.5em;
	min-height: 1.5em;
	text-align: center;
	line-height: 1.25em;
	display: inline-block;
	border-radius: 4px;
	border: solid 1px #CCC;
	white-space: nowrap;
	pointer-events: none;

	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.ui-highlightable-magnify .ui-highlightable-token {
	text-decoration: none;
	font-style: normal;
	font-weight: 100;
}

.ui-highlightable-magnify .ui-highlightable-token.ui-highlightable-token-whitespace {
	display: inline-block;
}

.ui-highlightable-magnify .ui-highlightable-token.ui-highlightable-token-whitespace + .ui-highlightable-token-whitespace {
	display: none;
}

.ui-highlightable-magnify .ui-highlightable-token.ui-highlightable-token-whitespace:before {
	content: '-';
	opacity: 0;
}

.ui-highlightable-magnify .ui-highlightable-magnify-current {
	background-color: rgba(0,0,0,0.25) !important;
}

.ui-highlightable-token.ui-highlightable-highlighting.ui-highlightable-first:before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 2em;
	background: rgba(0, 143, 255, 0.5);
	border-radius: 25px 0px 5px 5px;
	position: absolute;
	left: -15px;
	top: -0.5em;
	cursor: move;
}

.ui-highlightable-token.ui-highlightable-highlighting.ui-highlightable-last:after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 2em;
	background: rgba(0, 143, 255, 0.5);
	border-radius: 0px 25px 5px 5px;
	position: absolute;
	right: -15px;
	top: -0.5em;
	cursor: move;
}

.ui-highlightable-popup {
	list-style: none;
	padding: 0px;
	margin: 0;
	font-family: Helvetica, Arial, Verdana, sans-serif;
	border-radius: 4px;
	border: none;
	background: #FFF;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
	margin-top: -53px;
	margin-left: -24px;
	color: #333;
	box-shadow: 0 5px 30px 2px rgba(0,0,0,0.5);
	line-height: 1rem;
	height: 30px;
	z-index: 6;
}

.ui-highlightable-popup .triangle {
	border-top: solid 25px #666;
	border-top-color: #FFF;
	border-left: solid 12px transparent;
	border-right: solid 12px transparent;
	position: absolute;
	top: 100%;
	margin-left: 15px;
	margin-top: -1px;
}

.ui-highlightable-popup.left:before {
	left: 15px;
	margin-left: 0;
}

.ui-highlightable-popup.right:before {
	left: auto;
	right: 15px;
	margin-left: 0;
}

.ui-highlightable-popup li {
	display: inline-block;
	padding: 5px ;
	font-size: 0.85rem;
	border-right: solid 1px #E4E4E4;
	cursor: pointer;
	text-transform: uppercase;
	margin: 0 !important;
	min-width: 53px;
	text-align: center;
	vertical-align: middle;
	height: 30px;
}

.ui-highlightable-popup li span{
	display: block;
	min-width: 1.5em;
	min-height: 1.5em;
	padding: 0 5px;
	line-height: 1.5em;
}

.ui-highlightable-popup li:last-child {
	border-right: none;
}

.ui-highlightable-popup li:empty:before {
	margin-right: 0px;
}