/*!******************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./resources/css/select2.custom.css ***!
  \******************************************************************************************************************************/
.select2-container {
	/* The container where the selectbox is housing*/
	position: relative;
	margin: 0px;
	margin-bottom: 0.5rem;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
}
.select2-container .select2-selection--single {
	/* Selection box itself */
	box-sizing: border-box;
	display: block;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	border-radius: 0.375rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	/* DIV inside Selection box with text, clear button and arrow down*/
	display: block;
	height: 1.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-left: 0.25rem;
	padding-right: 1.5rem;
}
.select2-container .select2-selection--single .select2-selection__clear {
	/* The DIV where the X is housing to clear the chosen option */
	position: relative;
	margin: -0.25rem;
}
.select2-container[dir='rtl']
	.select2-selection--single
	.select2-selection__rendered {
	/*@apply;*/
}

.select2-container .select2-selection--multiple {
	box-sizing: border-box;
	display: block;
	height: 1rem;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	overflow: hidden;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-left: 0.5rem;
}
.select2-container .select2-search--inline {
	/* Search box*/
	float: left;
}
.select2-container .select2-search--inline .select2-search__field {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	box-sizing: border-box;
	width: 100%;
	border-width: 1px;
	padding-left: 0.25rem;
	font-size: 1rem;
	line-height: 1.5rem;
}
.select2-container .select2-search--inline .select2-search__field:is(.dark *) {
	border-color: var(--tw-gray-600);
}
.select2-container
	.select2-search--inline
	.select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
	        appearance: none;
}

.select2-dropdown {
	/* Dropdown area after the arrow down is clicked */
	position: absolute;
	z-index: 50;
	float: left;
	box-sizing: border-box;
	display: block;
	width: auto;
	border-width: 1px;
	border-style: solid;
	border-color: var(--tw-gray-200);
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.select2-dropdown:is(.dark *) {
	--tw-bg-opacity: 1;
	background-color: rgb(31 33 42 / var(--tw-bg-opacity));
}

.select2-results {
	display: block;
	--tw-text-opacity: 1;
	color: rgb(0 0 0 / var(--tw-text-opacity));
}

.select2-results:is(.dark *) {
	--tw-text-opacity: 1;
	color: rgb(174 174 174 / var(--tw-text-opacity));
}

.select2-results__options {
	margin: 0px;
	list-style-type: none;
	padding: 0px;
}

.select2-results__option {
	/* The rows with results that you see after dropdown.
	Increase p-1 to p-2 to have more space between results */
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	padding: 0.25rem;
}
.select2-results__option[aria-selected] {
	cursor: pointer;
}

.select2-container--open .select2-dropdown {
	/* Dropdown container opened and results are shown*/
	left: 0px;
	margin-top: 0.75rem;
}

.select2-container--open .select2-dropdown--above {
	/* The left and right borders of the option rows */
	border-radius: 0.25rem;
	border-color: var(--tw-gray-400);
	--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.select2-container--open .select2-dropdown--above:is(.dark *) {
	border-color: var(--tw-gray-700);
}

.select2-container--open .select2-dropdown--below {
	/* The left and right borders of the option rows */
	border-radius: 0.25rem;
	border-color: var(--tw-gray-400);
	--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.select2-container--open .select2-dropdown--below:is(.dark *) {
	--tw-border-opacity: 1;
	border-color: rgb(54 56 67 / var(--tw-border-opacity));
}

.select2-search--dropdown {
	/* Search dropdown element*/
	display: block;
	padding: 0.5rem;
}
.select2-search--dropdown .select2-search__field {
	/* Search box itself where you can enter text*/
	box-sizing: border-box;
	height: 2.5rem;
	border-radius: 0.25rem;
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgb(147 197 253 / var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity));
	padding: 0.25rem;
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.select2-search--dropdown .select2-search__field:is(.dark *) {
	--tw-border-opacity: 1;
	border-color: rgb(54 56 67 / var(--tw-border-opacity));
	--tw-bg-opacity: 1;
	background-color: rgb(100 116 139 / var(--tw-bg-opacity));
	color: var(--tw-gray-200);
}
.select2-search--dropdown .select2-search__field {
	width: 100%;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
	        appearance: none;
}
.select2-search--dropdown.select2-search--hide {
	display: none;
}

.select2-close-mask {
	margin: 0px;
	display: block;
	width: 3rem;
	min-width: 100%;
	padding: 0px;
	border: 0;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	height: auto;
	width: auto;
	opacity: 0;
	z-index: 99;
	background-color: #fff;
	filter: alpha(opacity=0);
}

.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

/* 

	Default template settings:

*/

.select2-container--default .select2-selection--single {
	background-color: var(--tw-light-active);
	border: 1px solid var(--tw-gray-300);
	/* Selection bar - Self */
	height: 2.5rem;
	padding: 0.5rem;
}

.select2-container--default .select2-selection--single:hover {
	border-color: var(--tw-gray-400);
}

.select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	/* Selection bar - Text color of the item you selected from the results */
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: var(--tw-gray-700);
}

.select2-container--default
	.select2-selection--single
	.select2-selection__rendered:is(.dark *) {
	--tw-text-opacity: 1;
	color: rgb(150 153 169 / var(--tw-text-opacity));
}

.select2-container--default
	.select2-selection--single
	.select2-selection__clear {
	/* Selection bar - Clear button - If this property is enabled*/
	float: right;
	cursor: pointer;
	--tw-text-opacity: 1;
	color: rgb(185 28 28 / var(--tw-text-opacity));
}
.select2-container--default
	.select2-selection--single
	.select2-selection__placeholder {
		font-weight: 500;
		font-size: 0.8125rem;
		color: var(--tw-gray-600);
	/* Selection bar - Color of the placeholder text before selection - If this property is enabled */
}
.select2-container--default
	.select2-selection--single
	.select2-selection__arrow {
	/* Selection bar - DIV where the arrow pointing down is living*/
	position: absolute;
	right: 0px;
	top: 0px;
	height: 2.5rem;
	width: 2rem;
}
.select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	/* Arrow is a CSS triangle that does not exists in Tailwind without a package */
	position: absolute;
	height: 0px;
	width: 0px;
	border-top-width: 4px;
	border-right-width: 4px;
	border-bottom-width: 0px;
	border-left-width: 4px;
	border-style: solid;
	border-color: #000 transparent transparent transparent;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	top: 50%;
}

.select2-container--default[dir='rtl']
	.select2-selection--single
	.select2-selection__clear {
	/* Selection bar - Clear button - If this property is enabled from right to left*/
	float: left;
	margin-left: 1rem;
}

.select2-container--default[dir='rtl']
	.select2-selection--single
	.select2-selection__arrow {
	/* Placement of the dropdown arrow when in rtl mode */
	left: 0px;
	right: auto;
}

.select2-container--default.select2-container--disabled
	.select2-selection--single {
	/* Selection by property disabled*/
	cursor: default;
	background-color: var(--tw-gray-300);
}
.select2-container--default.select2-container--disabled
	.select2-selection--single
	.select2-selection__clear {
	/* Selection bar - Hide the clear cross when selection bar is disabled*/
	display: none;
}

.select2-container--default.select2-container--open
	.select2-selection--single
	.select2-selection__arrow
	b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
	height: 100%;
	min-height: 100%;
	border-radius: 0.25rem;
	border-width: 1px;
	border-style: solid;
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity));
	padding: 0.25rem;
	--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.select2-container--default .select2-selection--multiple:is(.dark *) {
	border-color: var(--tw-gray-700);
	--tw-bg-opacity: 1;
	background-color: rgb(51 65 85 / var(--tw-bg-opacity));
}

.select2-container--default
	.select2-selection--multiple
	.select2-selection__rendered {
	margin: 0px;
	box-sizing: border-box;
	min-width: 100%;
	list-style-type: none;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__rendered
	li {
	list-style-type: none;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__clear {
	float: right;
	margin-top: 0.25rem;
	margin-right: 0.5rem;
	cursor: pointer;
	padding: 0.25rem;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice {
	float: left;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	margin-right: 0.25rem;
	cursor: default;
	border-radius: 0.25rem;
	border-width: 1px;
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity));
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	color: var(--tw-gray-700);
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice:is(.dark *) {
	--tw-bg-opacity: 1;
	background-color: rgb(51 65 85 / var(--tw-bg-opacity));
	color: var(--tw-gray-200);
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice__remove {
	margin-right: 0.25rem;
	display: inline-block;
	cursor: pointer;
	color: var(--tw-gray-700);
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice__remove:is(.dark *) {
	color: var(--tw-gray-200);
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice__remove:hover {
	color: var(--tw-gray-700);
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice__remove:hover:is(.dark *) {
	color: var(--tw-gray-200);
}
.select2-container--default.select2-container--focus
	.select2-selection--multiple {
	border-width: 2px;
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.select2-container--default.select2-container--disabled
	.select2-selection__choice__remove {
	display: none;
}
.select2-container--classic
	.select2-selection--multiple
	.select2-selection__choice {
	float: left;
	margin-top: 0.25rem;
	margin-right: 0.25rem;
	cursor: default;
	border-radius: 0.25rem;
	border-width: 2px;
	background-color: var(--tw-gray-300);
	padding-left: 0.25rem;
	padding-right: 0.25rem;
	--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.select2-container--classic
	.select2-selection--multiple
	.select2-selection__choice:is(.dark *) {
	border-color: var(--tw-gray-700);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	/* The border of the search textbox */
	border-style: solid;
}

.select2-container--default .select2-search--inline .select2-search__field {
	/* Search textbox */
	-webkit-user-select: text;
	   -moz-user-select: text;
	        user-select: text;
	border-style: none;
	background-color: transparent;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.select2-container--default .select2-results > .select2-results__options {
	/* Hight of the dropdown zone where the options or results are visible */
	height: 100%;
	max-height: 8rem;
	overflow-y: auto;
}

.select2-container--default .select2-results__option[role='group'] {
	/* No clue what this does */
	padding: 0px;
}

.select2-container--default .select2-results__option[aria-disabled='true'] {
	color: var(--tw-gray-700);
}

.select2-container--default .select2-results__option[aria-selected='true'] {
	/* The already selected option row color */
	background-color: var(--tw-gray-300);
}

.select2-container--default .select2-results__option[aria-selected='true']:is(.dark *) {
	color: var(--tw-gray-700);
}
.select2-results__option--selected {
	display: none;
}
.select2-container--default .select2-results__option .select2-results__option {
	padding-left: 1em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__group {
	padding-left: 0;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -1em;
	padding-left: 2em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -2em;
	padding-left: 3em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -3em;
	padding-left: 4em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -4em;
	padding-left: 5em;
}
.select2-container--default
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option
	.select2-results__option {
	margin-left: -5em;
	padding-left: 6em;
}

.select2-container--default
	.select2-results__option--highlighted[aria-selected] {
	/* Background color and text color of the options rows when select is open */
	background-color: var(--tw-gray-100);
	color: var(--tw-gray-700);
}

.select2-container--default
	.select2-results__option--highlighted[aria-selected]:is(.dark *) {
	background-color: var(--tw-gray-500);
	color: var(--tw-gray-200);
}

.select2-container--default .select2-results__group {
	/* Have no idea what this is for */
	display: block;
	cursor: default;
	padding: 6px;
}

