.input-wrapper {
display: flex;
flex-direction: column;
height: 52px;
}
.input-label {
font-size: 0.7396449704rem;
font-weight: bold;
}
.input-text {
font-size: 14px;
color: var(--black);
padding: 4px 16px 4px 0px;
}
.input-text:focus {
border-bottom: 3px solid var(--red);
}
input::-webkit-textfield-decoration-container {
border: none;
}
.choices.is-focused, .choices.is-open {
border-bottom: 3px solid var(--red);
}
.choices:focus {
border-bottom: 3px solid var(--red);
}
.choices .choices__item {
word-break: normal;
}
.choices .choices__item.thematic-parent {
font-weight: bold;
display: flex;
align-items: center;
}
.choices .choices__item.thematic-parent:before {
content: "";
display: block;
width: 16px;
height: 16px;
margin-right: calc(var(--spacer) / 2);
background: var(--black);
opacity: 0.8;
border-radius: 100%;
}
.choices .choices__item.thematic-child {
padding-left: calc(var(--spacer) * 2) !important;
}
.choices .choices__item.choices__placeholder {
opacity: 1 !important;
}
.choices .choices__inner {
background: transparent !important;
border: none !important;
padding: 0 !important;
min-height: auto !important;
}
.choices .choices__inner .choices__list.choices__list--single {
padding-left: 0 !important;
padding-right: 0;
}
.choices .choices__list--dropdown, .choices .choices__list[aria-expanded] {
margin-top: -3px;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
content: " " !important;
}
.rtl .input-text {
padding: 4px 0px 4px 16px;
}
.rtl .choices[data-type*=select-one]:after {
left: 11.5px;
right: inherit;
}
.rtl .choices .choices__item.thematic-parent:before {
margin-right: 0;
margin-left: calc(var(--spacer) / 2);
}