/*
	:: INPUT_TEXT
*/
[data-gees="input_text"]:not(input) {
  border: 1px hsl(var(--col_se_5)) solid;
  color: hsl(var(--col_gs_gray1));
  background-color: hsl(var(--col_gs_black));
}
[data-gees="input_text"] input {
  color: hsl(var(--col_gs_white));
  opacity: 0.85;
}
[data-gees="input_text"] .placeholder {
  color: hsl(var(--col_gs_white));
	opacity: 0.85;
}
[data-gees="input_text"] input:-webkit-autofill,
[data-gees="input_text"] input:-webkit-autofill:hover,
[data-gees="input_text"] input:-webkit-autofill:focus {
	-webkit-text-fill-color: hsl(var(--col_gs_white)) !important;
  -webkit-box-shadow: none !important;
}

/*
	:: TEXTAREA
*/
[data-gees="textarea"] {
  color: hsl(var(--col_gs_gray1));
  background-color: hsl(var(--col_gs_black));
  color: hsl(var(--col_gs_white));
}
[data-gees="textarea"] textarea {
	color: hsl(var(--col_gs_white));
}
[data-gees="textarea"] .placeholder {
	color: hsl(var(--col_gs_white));
	opacity: 0.85;
}


/*
	:: DROPDOWN
*/
[data-gees="dropdown"]:not(select) {
  color: hsl(var(--col_gs_gray1));
  background-color: hsl(var(--col_gs_black));
  color: hsl(var(--col_gs_white));
}


/* MULTILIST */
[data-gees="multilist"] {
  border: 1px hsl(var(--col_se_3)) solid;
  color: hsl(var(--col_gs_white));
  background-color: hsl(var(--col_se_5));
}
[data-gees="multilist"] .searchArea input {
  background: hsl(var(--col_se_4));
}
[data-gees="multilist"] .options > div:not(:last-child) {
  border-bottom: 1px hsl(var(--col_se_3)) solid;
}
[data-gees="multilist"] .searchArea {
  border-bottom: 1px hsl(var(--col_se_3)) solid;
}


/*
	:: SWITCHES
*/
[data-gees="group"][data-contains="switches"] {
	width: 100%;
	border-radius: 1em;
	padding: 0.5em;
	color: hsl(var(--col_gs_white));
}


/*
	:: INPUT-BLOCK
*/
[data-gees~="input_block"] {
  color: hsl(var(--col_gs_white));
  background-color: hsl(var(--col_gs_black));
}
