.resume-page__form-dropdown {
	position: relative;
	z-index: 100;
}
.resume-page__form-dropdown.open {
	z-index: 400;
}
.resume-page__form-dropdown-current {
	position: relative;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 19px;
	background: #FFF;
	padding: 18px 16px;
	padding-right: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid #fff;
}
.resume-page__form-dropdown.error .resume-page__form-dropdown-current {
	border-color: #D33737;
}
.resume-page__form-dropdown.open .resume-page__form-dropdown-current {
	color: #7B7681;
}
.resume-page__form-dropdown-current:after {
	content: '';
	display: block;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0,-50%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%235A2D83' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	width: 20px;
	height: 20px;
	transition: all 0.3s;
}
.resume-page__form-dropdown.open .resume-page__form-dropdown-current:after {
	transform: translate(0,-50%) rotate(180deg);
}
.resume-page__form-dropdown-list {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background-color: #fff;
	max-height: 220px;
	display: none;
	overflow-y: auto;
	border: 1px solid #f0f0f0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Стили для скроллбара */
.resume-page__form-dropdown-list::-webkit-scrollbar {
	width: 6px;
}
.resume-page__form-dropdown-list::-webkit-scrollbar-track {
	background: #f8f8f8;
	border-radius: 3px;
}
.resume-page__form-dropdown-list::-webkit-scrollbar-thumb {
	background: #682C98;
	border-radius: 3px;
}
.resume-page__form-dropdown-list::-webkit-scrollbar-thumb:hover {
	background: #5a2d83;
}

/* Для Firefox */
.resume-page__form-dropdown-list {
	scrollbar-width: thin;
	scrollbar-color: #682C98 #f8f8f8;
}

/* Для старых браузеров */
.resume-page__form-dropdown-list {
	-ms-overflow-style: auto;
}

.resume-page__form-dropdown.open .resume-page__form-dropdown-list {
	display: block;
}
.resume-page__form-dropdown-item {
	cursor: pointer;
	padding: 18px 16px;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 19px;
	transition: all 0.3s;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-bottom: 1px solid #f5f5f5;
}
.resume-page__form-dropdown-item:last-child {
	border-bottom: none;
}
.resume-page__form-dropdown-item.selected,
.resume-page__form-dropdown-item:hover {
	color: #5A2D83;
	background: rgba(90, 45, 131, 0.16);
}
.resume-page__form-dropdown.choosen .resume-page__form-dropdown-current {
	color: #111;
}

.search-form__filters {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.search-form__filters-col {
	padding-left: 15px;
	padding-right: 15px;
	width: 33.33%;
	margin-top: 20px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
	.resume-page__form-dropdown-current {
		padding: 14px 12px;
		font-size: 14px;
	}
	.resume-page__form-dropdown-item {
		padding: 14px 12px;
		font-size: 14px;
	}
	.resume-page__form-dropdown-list {
		max-height: 180px;
	}
	.search-form__filters-col {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.search-form__filters-col {
		width: 100%;
	}
	.resume-page__form-dropdown-list {
		max-height: 150px;
	}
}