.pretty-select {
	position: relative;
	width: 100%;
	font-family: Arial, sans-serif;
}

.pretty-select-original {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.pretty-select-button {
	width: 100%;
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 0 17px;
	box-sizing: border-box;
	border: 1px solid #b7bec7;
	border-radius: 11px;
	background: #fff;
	color: #1f2937;
	font-size: 15px;
	text-align: left;
	cursor: pointer;
	transition:
		border-color .2s ease,
		box-shadow .2s ease,
		background-color .2s ease;
	box-shadow: inset 0px 5px 10px 0px rgba(0,0,0,0.1);
}

.pretty-select-button:hover {
	border-color: #9eb4cc;
}

.pretty-select.open .pretty-select-button,
.pretty-select-button:focus {
	outline: none;
	border-color: #002d61;
	box-shadow: 0 0 0 4px rgba(0, 45, 97, .10);
}

.pretty-select.disabled .pretty-select-button {
	background: #f3f4f6;
	color: #9ca3af;
	cursor: not-allowed;
}

.pretty-select-placeholder {
	color: #7b8491;
}

.pretty-select-value {
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font: 600 14px Roboto
}

.pretty-select-arrow {
	width: 9px;
	height: 9px;
	flex: 0 0 9px;
	border-right: 2px solid #64748b;
	border-bottom: 2px solid #64748b;
	transform: rotate(45deg) translateY(-2px);
	transition: transform .2s ease;
}

.pretty-select.open .pretty-select-arrow {
	transform: rotate(225deg) translate(-2px, -2px);
}

.pretty-select-dropdown {
	position: absolute;
	z-index: 9999;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	display: none;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #dce3eb;
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
}

.pretty-select.open .pretty-select-dropdown {
	display: block;
	animation: prettySelectOpen .16s ease;
}

@keyframes prettySelectOpen {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pretty-select-search-wrap {
	position: relative;
	margin-bottom: 8px;
}

.pretty-select-search-icon {
	position: absolute;
	top: 50%;
	left: 14px;
	width: 15px;
	height: 15px;
	border: 2px solid #8793a2;
	border-radius: 50%;
	transform: translateY(-58%);
	pointer-events: none;
}

.pretty-select-search-icon::after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -4px;
	width: 6px;
	height: 2px;
	border-radius: 2px;
	background: #8793a2;
	transform: rotate(45deg);
}

.pretty-select-search {
	width: 100%;
	height: 43px;
	padding: 0 13px 0 40px;
	box-sizing: border-box;
	border: 1px solid #dce3eb;
	border-radius: 9px;
	background: #f8fafc;
	color: #1f2937;
	font-family: inherit;
	font-size: 14px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.pretty-select-search:focus {
	outline: none;
	border-color: #002d61;
	box-shadow: 0 0 0 3px rgba(0, 45, 97, .08);
	background: #fff;
}

.pretty-select-options {
	max-height: 250px;
	margin: 0;
	padding: 2px 0;
	overflow-y: auto;
	list-style: none;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
}

.pretty-select-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 42px;
	padding: 9px 12px;
	box-sizing: border-box;
	border-radius: 8px;
	color: #374151;
	font-size: 14px;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease;
}

.pretty-select-option:hover,
.pretty-select-option.active {
	background: #edf4fc;
	color: #002d61;
}

.pretty-select-option.selected {
	background: #002d61;
	color: #fff;
	font-weight: 600;
}

.pretty-select-option.selected::after {
	content: "✓";
	font-size: 14px;
	font-weight: bold;
}

.pretty-select-option.disabled {
	color: #b5bbc4;
	cursor: not-allowed;
	background: transparent;
}

.pretty-select-no-results {
	display: none;
	padding: 18px 12px;
	color: #8a94a3;
	font-size: 14px;
	text-align: center;
}

.pretty-select-options::-webkit-scrollbar {
	width: 6px;
}

.pretty-select-options::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #cbd5e1;
}

.pretty-select-options::-webkit-scrollbar-track {
	background: transparent;
}