.custom-select-wrapper {
	position: relative;
	user-select: none;
	margin-bottom:12px;
}

.custom-select {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content:flex-end;
	font-size: 14px;
	color: #000;
}

.custom-select-title{
	margin-right:4px;
}

.custom-select-trigger{
	font-weight:bold;
}

.custom-select-arrow {
    width: 6px;
    height: 6px;
    position: relative;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    margin-left: 8px;
    margin-bottom: 3px;
    transform: rotate(45deg);
	transition:0.3s ease;
}

.custom-select.opened .custom-select-arrow {
    transform: rotate(225deg);
    margin-bottom: -3px;
}

.custom-options {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border: 1px solid #ddd;
	overflow-y: auto;
	z-index: 999;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	display: none;
	flex-direction:column;
	width:fit-content;
}
.custom-select.opened .custom-options {
	display: flex;
}
.custom-option {
	padding: 10px;
	font-weight: normal;
	cursor: pointer;
}

.custom-option:hover {
	background-color: #f3f3f3;
}