.dropdown {
	position: relative;
	align-items: stretch;
	flex-grow: 1;
	min-width: 140px;
}

.dropdown:hover {
	z-index: 2;
	filter: drop-shadow(0 0 9px #293a53);
}

.dropdown:hover .dropdown-label {
	background: #43aa8b;
	border-color: #85dac0;
	border-bottom: 1px solid transparent;
	border-radius: 8px 8px 0 0;
}

.dropdown:hover .dropdown-inner {
	display: flex;
}

.dropdown-label {
	border: 1px solid #7494c0;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	flex-grow: 1;
	white-space: nowrap;
	cursor: pointer;
}

.dropdown-label .caret {
	margin-left: 16px;
}

.dropdown-inner {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	max-height: 400px;
	flex-direction: column;
	align-items: stretch;
	background: #43aa8b;
	border: 1px solid #85dac0;
	z-index: 3;
	min-width: 100%;
	border-radius: 0 0 8px 8px;
	overflow-x: hidden;
	overflow-y: scroll;
}

.dropdown-inner button,
.dropdown-inner a {
	background: none;
	border: none;
	border-bottom: 1px solid #85dac0;
	padding: 8px;
	width: 100%;
	cursor: pointer;
	color: #fff;
}

.dropdown-inner button:hover,
.dropdown-inner a:hover {
	background: #58c2a2;
}

.dropdown-inner button:active,
.dropdown-inner a:active {
	background: #5fc9a9;
}

.dropdown-inner .label {
	border-bottom: 1px solid #85dac0;
	padding: 8px;
	width: 100%;
	color: #ddd;
	font-weight: 700;
}

.dropdown-inner form:last-child>button,
.dropdown-inner a:last-child,
.dropdown-inner>button:last-child {
	border-bottom: none;
}