#modal_overlay {
	width:100%;
	height:100%;
	position:fixed;
	left:0;
	right:0;
	top:0;
	z-index:1031;
}
#modal_overlay_wrapper {
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.6);
	padding:20px 0;
}
#modal_overlay_container {
	transform:translate(-50%,-50%);
	max-width:93%;
	border-radius:6px;
	overflow:hidden;
	position:absolute;
	top:50%;
	left:50%;
	height:100%;
	max-height:80%;
	padding:40px 10px 20px;
	background-color:#fff;
	min-width:80%;
}
#modal_overlay_content {
	overflow-y:auto;
	overflow-x:hidden;
	height:100%;
	min-width:500px;
	padding:0 20px;
}
#modal_overlay_close {
	position:absolute;
	font-size:20px;
	top:4px;
	right:12px;
	cursor:pointer;
	color:#999;
/*	transition:all .2s;*/
}
#modal_overlay_close:hover {
	transform:rotate(360deg);
	color:#666;
}
@media screen and (max-width:900px) {
	#modal_overlay_container {
		width:100%;
	}
}

/* width */
#modal_overlay_content::-webkit-scrollbar {
  width: 10px;
}
/* Track */
#modal_overlay_content::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
/* Handle */
#modal_overlay_content::-webkit-scrollbar-thumb {
	background: #555;
}
/* Handle on hover */
#modal_overlay_content::-webkit-scrollbar-thumb:hover {
	background: #222;
}

/* width */
#calendar_wrapper::-webkit-scrollbar {
  width: 10px;
  height:10px;
}
/* Track */
#calendar_wrapper::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
/* Handle */
#calendar_wrapper::-webkit-scrollbar-thumb {
	background: #aaa;
}
/* Handle on hover */
#calendar_wrapper::-webkit-scrollbar-thumb:hover {
	background: #777;
}


.loading-gif-container {
	text-align:center;
}
.loading-gif-container img {
	width:150px;
}



.c-multi-select,
.c-multi-select option {
	color:#333;
}
.c-multi-select:invalid,
.c-multi-select option[value=""] {
  color: #999999;
}
.c-pill {
	padding:5px 10px;
	border-radius:5px;
	display:inline-block;
	margin-right:5px;
	margin-bottom:6px;
	font-size:12px;
}
.c-pill-container {
	display:flex;
	align-items:center;
}
.c-pill-1 {
	background-color:cornflowerblue;
	color:white;
}
.c-pill-content {
	flex:1;
	text-align:center;
	margin-right:5px;
}
.c-pill .c-close {
	width:16px;
	height:16px;
	line-height:16px;
	text-align:center;
	font-size:10px;
	border-radius:50%;
	background-color:white;
	color:#333;
	cursor:pointer;
}