.modal-body{
	max-height:60vh;
	overflow-y:scroll;
	height:60vh;
}
.clickable{
	cursor:pointer;
}
.loader {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 120px;
	height: 120px;
	-webkit-animation: loeaderSpin 1s linear infinite;
	animation: loeaderSpin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes loeaderSpin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(720deg); }
}

@keyframes loeaderSpin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(720deg); }
}
#loaderModal
{
	display: none;
	background:black;
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 200000;
	cursor:not-allowed;
}
.tox-statusbar{
	display:none !important;
}
.autocomplete-items div {
	padding: 10px;
	cursor: pointer;
	background-color: #fff; 
	border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
	background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
	background-color: DodgerBlue !important; 
	color: #ffffff; 
}