.custom-select-wrapper {
	position: relative;
	display: inline-block;
	user-select: none;
	vertical-align:top; 
	z-index:1;
}
.custom-select-wrapper select {
	display: none;
}
.custom-select {
	position: relative;
	display: inline-block;
}
.custom-select-trigger {
	position: relative;
	display: block;
	width: 224px;
	padding: 0 48px 0 30px;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Noto Sans KR';
	color:#141414; 
	height:48px; line-height: 48px;
	background-color:#fff;
	cursor: pointer;
	overflow:hidden;
	border:1px solid #dcdbdb;
	box-sizing:border-box;
	z-index:1; 
}
.custom-select-trigger:after {
	position: absolute;
	display: block;
	content: '';
	width: 48px; height:48px;
	top: 50%; right: 0;
	background-repeat:no-repeat; 
	background-position:center;
	background-image:url('../img/icon/select_ar.png');
	transform: rotate(0deg) translateY(-50%);
	transition: all .4s ease-in-out;
	transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
	transform: rotate(90deg) translateY(-50%);
}
.custom-options {
	position: absolute;
	display: block;
	top: 100%; left: 0; right: 0;
	min-width: 100%;
	border: 1px solid #dcdbdb;
	border-top:0; 
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0,0,0,.07);
	background: #fff;
	transition: all .4s ease-in-out;
	padding:15px 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
}
.custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
}
/*
.custom-options:before {
	position: absolute;
	display: block;
	content: '';
	bottom: 100%; right: 25px;
	width: 7px; height: 7px;
	margin-bottom: -4px;
	border-top: 1px solid #b5b5b5;
	border-left: 1px solid #b5b5b5;
	background: #fff;
	transform: rotate(45deg);
	transition: all .4s ease-in-out;
}
*/
.option-hover:before {
	background: #f9f9f9;
}
.custom-option {
	position: relative;
	display: block;
	padding: 0 30px;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Noto Sans KR';
	color:#777;
	line-height: 36px;
	cursor: pointer;
	transition: all .4s ease-in-out;
}
.custom-option:first-of-type {
	border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
	border-bottom: 0;
	border-radius: 0 0 4px 4px;
}
.custom-option:hover,
.custom-option.selection {
	/* background: #f9f9f9; */
	color:#000; 
}