/*select*/
.cmb-f-select {
	width: 100%;
	position: relative;
}
.cmb-f-select .fs-title {
	padding-right: 20px;
	transition: .1s;
}
.cmb-f-select .fs-title:focus {
	/*box-shadow: 0 0 4px 3px cornflowerblue;*/
	
}
.cmb-f-select:after {
	content: "▼";
	position: absolute;
	right: 8px;
	color: #888;
	font-size: 0.85em;
	top: 10px;
	z-index: 999!important;
}
.cmb-f-select:focus .fs-list {
	display: block;
}
.cmb-f-select .fs-list {
	background-color: #fff;
	box-shadow: 0 0 4px 3px rgba(100, 100, 100, 0.55);
	cursor: default;
	min-width: 100%;
	top: 110%;
	position: absolute;
	left: 0px;
	max-height: 300px;
	overflow: auto;
	display: none;
	z-index: 9999;
	padding: 5px;
}
/* width */
.cmb-f-select .fs-list::-webkit-scrollbar {
  width: 10px;
}
/* Track */
.cmb-f-select .fs-list::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
/* Handle */
.cmb-f-select .fs-list::-webkit-scrollbar-thumb {
  background: #888; 
}
/* Handle on hover */
.cmb-f-select .fs-list::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.cmb-f-select .fs-list .fs-item {
	transition: background-color 0.3s;
	padding: 8px;
	outline: none;
}
.cmb-f-select .fs-list .fs-item:focus {
	box-shadow: 0 0 4px 3px cornflowerblue;
}
.cmb-f-select .fs-list .fs-item:hover {
	background-color: #f1f2f3;
	
}
.cmb-f-select .fs-list .selected {
	background-color: cornflowerblue;
	color: #fff;
}
.cmb-f-select .fs-list .selected:hover {
	background-color: #4C7ED9;
	color: #eee;
}
.cmb-f-select .fs-list .fs-search {
	/*position: sticky;
	top: 0px;*/
	background-color: #fff;
}
.cmb-f-select .fs-list .fs-search input {
	width: 100%;
	border: 1px solid #eee;
	padding: 5px;
	border-radius: 5px;
	outline: none;
}
.cmb-f-select .fs-close-search {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
}

/*cmb modal*/
.cmb-modal {
	background-color: rgba(0, 0, 0, .55);
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	z-index: 9999;
	display: none;
}
.cmb-modal .cm-w {
	background-color: #fff;
	min-height: 300px;
	max-height: 90%;
	position: absolute;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	width: 70%;
	border-radius: 0.3rem;
}
.cmb-modal .cm-w-md {
	width: 80%;
}
.cmb-modal .cm-w-lg {
	width: 90%;
}
.cmb-modal .cm-w-full {
	width: 100%;
}
.cmb-modal .cm-title {
	background-color: #3C3C3C;
	color: #fff;
	border-radius: 0.3rem 0.3rem 0 0;
	position: relative;
}
.cmb-modal .cm-title h3 {
	padding: 0.5rem 1rem 0.6rem 1rem;
	font-size: 1.2rem;
	margin: 0px;
	display: inline-block;
}
.cmb-modal .body {
	padding: 1rem;
	max-height: 80vh;
	overflow-y: auto;
}
.cmb-modal .cm-close {
	cursor: pointer;
	padding: 0.5rem;
	position: absolute;
	top: 0px;
	right: 0px;
	/*background-color: #5C5C5C;
	transition: background-color 0.3s;
	border-top-right-radius: 0.3rem;*/
}
.cmb-modal .cm-close:hover {
	/*background-color: #8C8C8C;*/
}
.cmb-modal .cm-close .cm-close-icon:before {
	content: "\00d7";
	font-size: 2em;
	line-height: 1rem;
}

/* width */
.cmb-modal .body::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.cmb-modal .body::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.cmb-modal .body::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.cmb-modal .body::-webkit-scrollbar-thumb:hover {
  background: #555; 
}