body .select2,
body .select2-dropdown {
	--input-height: 35px;
	--border-radius: var(--wc-form-border-radius);
	--input-bg: var(--color-offwhite);
	--color: var(--color);

	text-align: left;
}
body .select2 {
	height: var(--input-height);
}
body .select2 *,
body .select2-dropdown * {
	font-size: 1rem;
	font-family: var(--font-text);
}
body .select2 * {
	color: var(--color);
}

body .select2-container .select2-dropdown,
body .select2-dropdown {
	background-color: var(--input-bg);
    border: none;
	border-radius: var(--border-radius);
    padding: 10px;
}
body .select2-dropdown * {
	color: var(--color);
}


body .select2-container--default .select2-results__group {
	font-weight: bold;
}

body .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
	width: 5px;
}
body .select2-container--default .select2-results>.select2-results__options {
	scrollbar-width: thin;
	scrollbar-color: var(--color-midgrey) var(--color-silver);
	padding-right: 5px;
}
body .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
	background-color: var(--color-silver);
	margin: 10px 0px;
	border-radius: 6px;
}
body .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
	background-color: var(--color-darkgrey2);
	border-radius: 6px;
	border: none;
}

/* SINGLE */
body .select2-container--default .select2-selection--single {
    background-color: var(--input-bg);
    border: none;
    border-radius: var(--border-radius);
}
body .select2-container .select2-selection--single {
	height: var(--input-height);
}
body .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: var(--input-height);
}
body .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0px;
	padding-left: .5em;
    padding-right: .5em;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
    right: 10px;
}
body .select2-container--default .select2-selection--single .select2-selection__clear {
	margin-right: 30px;
	padding: 0px;
}
body .select2-results__option {
	font-size: 18px;
}
body .select2-container--default .select2-results__option--selected {
    background-color: rgba(0, 0, 0, 0.3);
    --color: #fff;
}
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: rgba(0, 0, 0, 0.5);
    --color: #fff;
}
body .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    height: 30px;
    font-size: 18px;
    padding: 0px 10px;
}

/* MULTIPLE */
body .select2-container .select2-selection--multiple {
	min-height: var(--input-height);
}
body .select2-container--default .select2-selection--multiple {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;

	background-color: transparent;

    border: none;
    border-bottom: 1px solid var(--color);
    border-radius: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;

    text-align: center;
}
body .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none;
    border-bottom: 1px solid var(--color);
    outline: 0;
}
body .select2-container .select2-search--inline .select2-search__field {
	--vertical-padding:  calc((var(--input-height) - 1em) / 2);
	height: calc(var(--input-height) - (var(--vertical-padding) * 2) - 1px);
	margin-top: 0px;
    margin-left: 0px;
    padding: var(--vertical-padding) 10px;
    box-sizing: content-box;
    font-family: inherit;

    text-align: center;
}
body .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: transparent;
    border: 1px solid var(--color);
    border-radius: 0px;
	line-height: 1;
	padding: 3px 3px 3px 24px;
	margin: 0px;
}
body .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    min-height: auto;
	height: 100%;
	padding: 0px 3px 0px 6px;
	background-color: transparent !important;
}
body .select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	max-width: calc(100% - 10px);
	min-height: calc(var(--input-height) - 1px);
    padding: 0px;
    margin: 0px;
}
body .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
	padding-left: 0px;
    padding-right: 0px;
}

