select[data-ss-uuid] {
	display: none;
	pointer-events: none;
}

.style-select {
	display: block;
	position: relative;
	width: 100%;
}

.style-select, .style-select * {
	padding: 0;
	margin: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
	color: #fff;
	cursor: pointer;
}

.style-select .ss-selected-option:focus {
	box-shadow: 0 0 0 0.2rem rgba(174, 180, 186, 0.5);
	transition: all 0.3s;
	outline: none;
}

.style-select .ss-selected-option {
	font-family: 'Lineto Circular Medium', sans-serif;
	width: 100%;
	background-color: #314F38;
	border-radius: 0;
	padding: 16px 46px 16px 20px;
	font-size: 18px;
	border: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background-color 0.3s;
}

.style-select.open .ss-selected-option {
	box-shadow: 0 2px 6px 0 rgba(69,71,73,0.30);
}

.style-select:hover .ss-selected-option {
	background-color: #3D6145;
}

.style-select.open .ss-selected-option {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.style-select .ss-selected-option::after {
	content: "\f0d7";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	top: 16px;
	right: 20px;
	display: block;
	font-weight: bold;
}

.style-select .ss-dropdown {
	top: 57px;
	left: 0;
	position: absolute;
	float: left;
	width: 100%;
	display: none;
	border-top: 0 none;
	z-index: 20;
	max-height: 400px;
	overflow-y: auto;
	padding: 10px 0 20px;
  background: #F0F2F3;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.20);
}

.style-select .ss-dropdown .ss-option {
	width: 100%;
	padding: 6px 12px;
	color: #404040;
	background-color: #F0F2F3;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 18px;
}

.style-select .ss-dropdown .ss-option.ticked {
	font-family: 'Lineto Circular Bold', sans-serif;
}

.style-select .ss-dropdown .ss-option.highlighted {
	background-color: #dadfe2;
}

.style-select .ss-dropdown .ss-option.disabled {
	color: #d0d0d0;
}

.style-select.open .ss-dropdown {
	display: block;
}

.style-select.open .ss-selected-option::after {
	content: "\f0d8";
	font-family: "Font Awesome 6 Pro";
	font-weight: bold;
}
