.select {
	min-width: 0;
	position: relative;
}
.select__body {
	position: relative;
	min-width: 120px;
}
.select__title {
    position: relative;
    padding: 5px 25px 5px 10px;
	color: inherit;
	text-align: left;
	border: 1px solid  #C2B59B;
	background-color: #fff;
	cursor: pointer;
	width: 100%;
	height: 35px;
}
.select__value {
	display: flex;
	min-width: 0;
	align-items: center;
	height: toRem(30);
	padding: 0 toRem(15);
	gap: toRem(10);
}
.select__value > * {
	flex: 1 1 auto;
}
.select__value:after {
    position: absolute;
    right: 10px;
    top: 12px;
	content: "\e90a";
	font-family: "icomoon";
	align-self: stretch;
	flex: 0 0 20px;
	transition: all 0.3s ease 0s;
	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	line-height: 1;
}
._select-open .select__value:after {
	transform: rotate(90deg);
}
.select__value._select-pseudo-label::before {
	content: attr(data-pseudo-label);
	opacity: 0.5;
}
.select__content {
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.select__text {
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.select__input {
	width: 100%;
	background-color: transparent;
	height: 100%;
}
.select__options {
	color: #000;
	position: absolute;
	top: calc(100% - toRem(1));
	border-radius: 0 0 4px 4px;
	min-width: 100%;
	left: 0;
	background-color: #fff;
	border-top: 0;
	border: 1px solid #d9d9d9;
	border-top: 0;
	padding: 10px 0px 5px 0px;
}
.select__scroll {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: toRem(200);
}
.select__option {
	width: 100%;
	text-align: left;
	cursor: pointer;
	padding: 5px 15px;
	color: inherit;
}
.select__option._select-selected {
	background-color: #eee;
}
@media (any-hover: hover) {
	.select__option:hover {
		background: #d9d9d9;
	}
}
.select__option.option-hidden {
	display: none;
}
.select__row {
	display: inline-flex;
	align-items: center;
}
.select--show-top .select__options {
	top: auto;
	bottom: calc(100% - toRem(1));
	border: 1px solid #d9d9d9;
	border-bottom: 0;
	border-radius: 4px 4px 0 0;
	padding: 5px 0px 10px 0px;
}
._select-tag {
	cursor: pointer;
}
