.mM_custom_select {
	position: relative;
}

.mM_custom_select select {
	display: none;
}

.mM_custom_select .mM_select_selected {
	cursor: pointer;
	position: relative;
	z-index: 2;
}

.mM_custom_select .mM_select_items {
	height: 0;
	overflow: hidden;
	overflow-y: scroll;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 27px;
	z-index: 99;
	width: 100%;
	z-index: 1;
	transition: all .4s;
	padding-left: 32px;
	padding-right: 32px;
	opacity: 0;
	bottom: 100%;
}

@supports (-webkit-touch-callout: none) and (not (-webkit-hover: hover)) {
	.mM_custom_select .mM_select_items {
		margin-top: 0;
		top: -27px;
	}
}


.mM_custom_select .mM_select_items:not(.mM_select_hide) {
	padding-top: 35px;
	border: 1px solid rgba(0, 42, 77, .3);
	border-top: none;
	border-radius: 0 0 20px 20px;
	background: #c3efc6;
	opacity: 1;
}

.mM_custom_select .mM_select_item {
	cursor: pointer;
}