﻿body {
}

section.content-selector { 
	padding: 0;
}

section.content-selector div.content-selector-options { 
	background-color: var(--hl-light-taupe);
	padding: 25px;
}

section.content-selector div.content-selector-options + div.content-selector-options { 
	margin-top: 25px;
}

section.content-selector div.content-selector-options div.title {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 500;
}

section.content-selector div.content-selector-options div.title p { 
	font: inherit;
	margin: 0;
}

section.content-selector div.content-selector-options button.btn-clear-selection { 
	font-size: 14px;
}

section.content-selector div.content-selector-options div.columns { 
	display: flex; flex-direction: row;
	gap: 10px;
}

section.content-selector div.content-selector-options div.columns div.column { 
	flex-basis: 50%; 
}

section.content-selector button.select-option {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: left;
	padding: 6px 10px;
	width: 100%;
	margin-top: 5px;
	background-color: rgba(var(--hl-taupe-rgb), 0.65);
	color: var(--hl-dark-green);
	font-size: 15px;
	font-family: Roobert, sans-serif;
	position: relative;
}

section.content-selector button.select-option.select-all {
	background-color: transparent;
}

section.content-selector button.select-option:before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	border: 1px solid #5B455B;
	margin-right: 10px;
	flex-shrink: 0;
}

section.content-selector button.select-option:not(.select-all).checked {
	background-color: var(--hl-dark-taupe);
}

section.content-selector button.select-option.checked:after {
	content: "";
	position: absolute;
	left: 13px;
	top: 50%;
	margin-top: -8px;
	width: 14px;
	height: 14px;
	overflow: visible;
	background-image: url("/_assets/icon-tick-hl-dark-green.png");
	background-size: contain;
	background-position: 0px 0px;
	background-repeat: no-repeat;
}

section.content-selector .select-option-group { 
	margin-top: 5px;
}
section.content-selector .select-option-group .select-option-group-options {
	display: none;
}

section.content-selector .select-option-group:not(:last-child) .select-option-group-options {
	padding-bottom: 10px;
}

section.content-selector .select-option-group button.select-option-group-expander {
	border: 1px solid var(--hl-dark-green);
	background-color: var(--hl-dark-green);
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	padding: 10px 50px 10px 10px;
	width: 100%;
	text-align: left;
	background-size: 20px;
	background-position: calc(100% - 14px) center;
	background-repeat: no-repeat;
	background-image: url("/_assets/icon-plus-hl-light-green.png");
}

section.content-selector .select-option-group button.select-option-group-expander span.count { 
	color: var(--hl-light-green);
	margin-left: 10px;
}

section.content-selector .select-option-group button.select-option-group-expander.expanded {
	background-image: url("/_assets/icon-minus-hl-light-green.png");
}