/*Style of normal HTML */
	.select-content {
		/* width: 300px; */
		position: relative;
	}
	.select-oper {
		width: 100%;
		height: 35px;
		text-transform: capitalize;
		color: #1f1f1f;
		padding-left: 0px;
		box-sizing: border-box;
		font-size: 18px;
    background: url(../images/arrow-d.png) right no-repeat #fff;
		line-height: 34px;
		vertical-align: middle;
		cursor: pointer;
		position: relative;
		float: left;
	}
	.dropdown-select-custom {
		position: absolute;
		background: #fff;
		height: 136px;
		left: 0px;
		z-index: 15;
		box-sizing: border-box;
		overflow-y: scroll;
		display: none;
		width: 100%;
	}

	.dropdown-select-custom::-webkit-scrollbar {
		 width: 3px;
		 background-color: #1f1f1f;
 }

 .dropdown-select-custom::-webkit-scrollbar-thumb {
		 background-color: #1f1f1f;
 }


 .dropdown-select-custom::-webkit-scrollbar-track {
		 -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
		 background-color: #f6f6f6;
		 border-radius: 10px;
 }


	.dropdown-select-custom p:hover {
		/* background: #007dc6; */
		/* color: #fff; */
		/* font-family: "GothamBold"; */
	}

	.dropdown-select-custom p {
		width: 100%;
		cursor: pointer;
		color: #1f1f1f;
		box-sizing: border-box;
		margin:0;
		padding: 8px;
    line-height: inherit !important;
	}


	/* Customize scrollbar */
	.mCSB_scrollTools {
		width: 6px !important;
		background-color: #f3f3f3 !important;
	}
	.mCSB_draggerRail {
		background-color: #f3f3f3 !important;
	}
	.mCSB_dragger_bar {
		background-color: #421b66!important;
		width: 2px!important;
	}
	.mCSB_container {
		margin-right: 0 !important;
	}

	/**/




	/*the container must be positioned relative:*/
	.custome-select {
		position: relative;
		font-family: Arial;
		width: 220px;
	}

	.custome-select select {
		display: none; /*hide original SELECT element:*/
	}

	.custome-select .select-selected {
		font-family: "Gotham-Medium";
		font-size: 14px;
		background-color: #421b66;
	}

	.custome-select .select-selected.active {
		color: #f5b94b;
	}

	/*style the arrow inside the select element:*/
	.custome-select .select-selected:after {
		position: absolute;
		content: "";
		top: 10px;
		right: 10px;
		width: 0;
		height: 0;
		border: 6px solid transparent;
		border-color: #fff transparent transparent transparent;
	}

	/*point the arrow upwards when the select box is open (active):*/
	.custome-select .select-selected.select-arrow-active:after {
		border-color: transparent transparent #f5b94b transparent;
		top: 5px;
	}

	/*style the items (options), including the selected item:*/
	.custome-select .select-items .option-c,.select-selected {
		color: #fff;
		/* padding: 8px 16px; */
		/* border: 1px solid transparent; */
		border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
		cursor: pointer;
		user-select: none;
		text-align: center;
	}

	.custome-select .select-items .option-c {
		font-size: 13px;
		padding: 8px 40px;
		color: #421b66;
	}
	/*
	.select-selected {
		color: #f5b94b;
	} */

	/*style items (options):*/



	.custome-select .select-items {
		box-shadow: 2px 2px 3px #9a9a9a;
		border-bottom-right-radius: 5px;
		border-bottom-left-radius: 5px;
		position: absolute;
		background-color: #fff;
		top: 140%;
		left: 0;
		right: 0;
		z-index: 9999;
		height: 250px;
		border-top: 4px solid #f5b94b;
		padding: 10px 0;
	}

	/*hide the items when the select box is closed:*/
	.custome-select .select-hide {
		display: none;
	}


	.custome-select .same-as-selected {
		/* background-color: rgba(0, 0, 0, 0.1); */
		/* font-family: "gothambold"; */
		color: #f5b94b !important;
	}

	.custome-select .select-items .option-c:hover {
		color: #f5b94b;
		/* font-family: "gothambold"; */
	}


	.custome-select .mCSB_dragger_bar {
	background-color: #421b66!important;
	width: 2px!important;
	}


	.custome-select.basic {
		width: 100%;
    border-bottom: 2px solid #8a42bb;
	}

	.custome-select.basic .select-selected {
		color: #421b66;
		font-size: 14px;
		background: transparent;
		padding: 6px 10px;
		text-align: left;
	}

	.custome-select.basic .select-items {
		top: 108%;
		border-top: none;
		height: 200px;
	}

	.custome-select.basic .select-selected:after {
		background: url(../images/icon/arrow-down.png) right center no-repeat;
    background-size: 15px;
    width: 20px;
    height: 12px;
    border: none;
	}

	.custome-select.basic .select-selected.select-arrow-active:after {
		background: url(../images/icon/arrow-up.png) right center no-repeat #fff;
		background-size: 15px;
	}

	.custome-select.sub-select .select-selected {
		font-family: "Gotham-Book";
		color: #82858b;
	}

	.custome-select.sub-select .select-selected.active {
    color: #421b66;
		font-family: "Gotham-Medium";
	}

	.custome-select.sub-select .select-items {
			height: 150px;
	}

	.custome-select.basic.mid {
		width: 300px;
		border-bottom: none;
		border: 2px solid #8a42bb;
		border-radius: 25px;
	}

	.custome-select.basic.mid .select-selected {
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 40px;
		/* line-height: 40px; */
		width: 235px;
		margin: auto;
		padding: 6px 0px;
	}

	.custome-select.basic.mid .select-selected:after {
    	height: 20px;
			background-position: right 5px center;
	}

	.custome-select.basic.mid .select-items {
	    border-radius: 10px;
			box-shadow: 0px 0px 15px -6px;
	}

	.custome-select.basic.mid .select-items .option-c {
	    padding: 8px 15px;
			text-align: left;
	}

	.custome-select.high .select-items {
		background: #5c3589;
	}

	.custome-select.high .select-items .option-c {
		color: #fff;
	}

	.custome-select.high .select-items .option-c:hover {
    color: #f5b94b;
	}
	/* .search-css .icon {
		top: -4px;
	} */
