/* Bootstrap3 is required for default styling */

.mentiony-container [contenteditable=true]:empty:not(:focus):before{
	content:attr(data-placeholder);
	color:#999999;
}

.mentiony-container{ position:relative;height:auto; border:1px solid #cecece;
	/* NOTE: All top-right-bottom-left must be equal */
	padding:10px;
	background-color: white;
}
.mentiony-container .pl0{ padding-left:0;}
.mentiony-container .mention-input-hidden{float:left; display:inline-block; visibility:hidden; width:0!important;height:0!important; margin:0!important; padding:0!important;opacity:0!important;}

.mentiony-container .mentiony-popover{
	position:absolute;
	z-index:1000;
	top:100%; left:0; /* Default */
	height:auto;
	max-height:400px;
	display:none;
	border:1px solid #eee;
	border-radius:4px;
	padding:0;
	background:#fefefe;
	overflow: auto;
	box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	min-width: 400px;
}

.mentiony-container .mentiony-popover .mentiony-item {
	padding: 10px !important;
	display: block !important;

}

.mentiony-container .mentiony-content {
	outline: none;
}

.mentiony-list{list-style:none; width: 100%; padding:0;margin: 0;}
.mentiony-item{
	border-top:1px solid #eee;
	overflow: hidden;
	border: none !important;
}
.mentiony-item:first-child{border:none}
.mentiony-item:hover,
.mentiony-item.active {
	background: #7792f7;
    color: white;
    cursor: pointer;
}
.mentiony-item img{ width:40px; height:40px; }

.mentiony-item .mentiony-code, .mentiony-item .help-block{ margin:0;}
.mentiony-item .mentiony-code{
	font-weight: bold;
}
.mentiony-item .help-block{}
.mention-area .highlight .mentiony-item {
	color: #56668d;
	background: #f2f5ff;
	padding: 1px 4px;
	border-radius: 3px;
}

.mention-area .highlight .mentiony-item .mentiony-code {
	font-weight: bold;
}

.mention-area .highlight .mentiony-item .mentiony-name {
	padding-left: 5px;
}

