.selectors {
	display: flex;
	flex-direction: row;
	margin: 0px 0px 20px 30px;
	gap: 15px;
}

.selectors .select-container {
	position: relative;
	width: 180px;

	font-family: Roboto;
	font-size: 14px;
	font-weight: 400;
	line-height: 16.41px;
	text-align: left;
}

.selectors .select-container .select {
	height: 35px;
	border: 1px solid #2E8B57;
	border-radius: 10px;
	background-color: #ffffff;
	padding: 0px 12px 0px 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.selectors .select-container .select .arrow-down {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.selectors .select-container .options-list {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 12px 15px 12px 15px;
	background-color: #ffffff;
	z-index: 1;
}

.selectors .select-container .options-list .option {
	width: 100%;
	cursor: pointer;
}

.selectors .select-container .options-list .option:not(:last-child) {
	padding: 0px 0px 10px 0px;
	color: #22262c;
}

.selectors .select-container .options-list .option.selected {
	color: #2e8b57;
}