.select-box,
.custom-select-box {
	width: 100%;
	height: 45px;
	padding: 0 30px 0 20px;
	border-radius: 0;
	line-height: 45px;
	position: relative;
	cursor: pointer;
	border: 1px solid #000000;
	color: #000000;
	text-transform: none;
	font-weight: 400;
	transition: color .3s, border-color .3s;
}

.select-box.disabled,
.custom-select-box.disabled {
	border-color: #e6e6e6;
	color: #e6e6e6;
	pointer-events: none;
}

.select-box .select-box-text,
.select-box .custom-select-box-text,
.custom-select-box .select-box-text,
.custom-select-box .custom-select-box-text {
	display: inline-block;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: inherit;
}

.select-box .custom-select-box-content,
.custom-select-box .custom-select-box-content {
	background: #ffffff;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 100% !important;
	padding: 15px;
	z-index: 1;
	overflow: hidden auto;
	max-height: 300px;
	outline: solid 1px #e6e6e6;
	display: none;
	flex-direction: column;
	gap: 15px;
}

.select-box .custom-select-box-content label,
.custom-select-box .custom-select-box-content label {
	width: 100%;
}

.select-box select,
.custom-select-box select {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	opacity: 0;
	cursor: pointer;
}
