body .select2-container--default {
	min-height: 42px;
}

body .select2-container--default .select2-selection {
	border: var(--wd-form-brd-width) solid var(--wd-form-brd-color);
	border-radius: var(--wd-form-brd-radius);
	background-color: var(--wd-form-bg);
	transition: border-color .4s ease;
}

body .select2-container--default .select2-selection:focus {
	outline: none;
}

body .select2-container--default .select2-selection--single {
	height: var(--wd-form-height);
	text-align: start;
	font-size: 14px;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-inline: 15px 30px;
	color: var(--wd-form-color);
	line-height: calc(var(--wd-form-height) - var(--wd-form-brd-width) * 2);
}

body .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: inherit;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 0;
	right: 0;
	height: var(--wd-form-height);
	width: 42px;
	background-image: var(--wd-form-chevron);
	background-position: right 50% top 50%;
	background-size: auto 18px;
	background-repeat: no-repeat;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

body .select2-container--default .select2-selection--single .select2-selection__clear {
	position: absolute;
	top: calc(50% - 6px);
	inset-inline-end: 35px;
	font-size: 0;
	line-height: 1;
	z-index: 10;
}

body .select2-container--default .select2-selection--single .select2-selection__clear:before {
	color: #bbb;
	font-weight: 400;
	font-size: 12px;
	content: "";
	font-family: "woodmart-font";
}

body .select2-container--default .select2-selection--multiple {
	min-height: 42px;
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered {
	display: block;
	margin-bottom: 9px;
	padding: 0 15px;
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
	margin-top: 9px;
	margin-inline-end: 10px;
	padding-block: 2px;
	padding-inline: 6px 8px;
	border: none;
	border-radius: 0;
	background-color: rgba(0, 0, 0, .05);
	color: var(--wd-form-color);
	font-weight: 600;
	font-size: 12px;
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove {
	margin-top: -4px;
	margin-inline-end: 4px;
	color: inherit;
	vertical-align: middle;
	font-weight: 400;
	font-size: 16px;
	line-height: 12px;
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search--inline {
	display: inline-block;
	margin: 0;
	margin-top: 9px;
	line-height: 1;
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search--inline:first-child {
	width: 100%;
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search--inline input {
	height: auto;
	outline: none !important;
	font-size: 14px;
}

body .select2-container--default .select2-search--dropdown {
	position: relative;
	padding: 18px;
	border-bottom: var(--wd-form-brd-width) solid var(--wd-form-brd-color);
	background-color: var(--wd-form-bg);
}

body .select2-container--default .select2-search--dropdown .select2-search__field {
	position: relative;
	z-index: 2;
	padding: 0 15px;
	height: 42px;
	border: var(--wd-form-brd-width) solid var(--wd-form-brd-color);
	background-color: var(--bgcolor-white);
	background-image: none;
	color: #767676;
}

body .select2-container--default .select2-search--dropdown:before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, .05);
}

body .select2-container--default .select2-search--dropdown:after {
	position: absolute;
	top: calc(50% - 9px);
	z-index: 3;
	inset-inline-end: 30px;
	color: var(--color-gray-300);
	font-size: 18px;
	line-height: 1;
	content: "";
	font-family: "woodmart-font";
}

body .select2-container--default .select2-results {
	background-color: var(--wd-form-bg);
}

body .select2-container--default .select2-dropdown {
	z-index: 1500;
	border-width: var(--wd-form-brd-width);
	border-color: var(--wd-form-brd-color);
	border-radius: 0;
	background-color: var(--bgcolor-white);
	color: var(--wd-form-color);
}

body .select2-container--default .select2-results__option {
	padding: 10px 18px;
	transition: all .1s ease;
}

body .select2-container--default .select2-results__option:focus {
	outline: none;
}

body .select2-container--default .select2-results__option[data-selected=true] {
	background-color: rgba(0, 0, 0, .05);
	color: var(--wd-form-color);
	font-weight: 600;
}

body .select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: var(--wd-primary-color);
	color: #fff;
}

body .select2-container--default.select2-container--focus .select2-selection--multiple {
	border-width: var(--wd-form-brd-width);
	border-color: var(--wd-form-brd-color);
}

body .select2-results__options {
	--li-mb: 0;
}

.form-style-underlined .select2-container--default .select2-selection {
	padding-inline: 0;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}

.form-style-underlined .select2-container--default .select2-selection .select2-selection__arrow {
	width: 18px;
}

.form-style-underlined .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-inline: 2px 15px;
	line-height: calc(var(--wd-form-height) - var(--wd-form-brd-width));
}

.form-style-underlined .select2-container--default .select2-selection--multiple .select2-selection__rendered {
	padding-inline: 2px;
}

.form-style-underlined .select2-container--default.select2-container--focus .select2-selection--multiple {
	border-top: none;
	border-right: none;
	border-left: none;
}

.form-style-underlined .select2-container--open .select2-dropdown--above {
	border-bottom-style: solid;
}