.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

:host {
  display: flex;
  gap: 4px;
}

.label {
  font-size: 16px;
  font-weight: 500;
  line-height: 18.752px;
  color: #212121;
}

:host(.inline) .label {
  padding-top: 8px;
}

:host(.block) {
  flex-direction: column;
}

.dropdown-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.dropdown-container:focus-visible {
  outline: none;
}
.dropdown-container:focus .dropdown-selector {
  border: 1px solid #1479c6;
}

.dropdown-selector,
.dropdown-body {
  display: flex;
  border-radius: 4px;
  background-color: white;
}

.dropdown-selector {
  min-height: 36px;
  box-sizing: border-box;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 16px;
  cursor: pointer;
  justify-content: space-between;
  border: 1px solid #d5d5d5;
  display: flex;
  flex-direction: row;
}
.dropdown-selector > .left-wrapper {
  flex: 1;
  min-width: 0;
}
.dropdown-selector * {
  font-weight: 400;
}
.dropdown-selector.invalid {
  border: 1px solid #dc0000;
}

.priority-pill {
  padding: 6px 8px 6px 16px;
}

.dropdown-read-only {
  background-color: #BDBDBD !important;
}

.errorBubble {
  position: relative;
  font-size: 14px;
  line-height: 16.408px;
  font-weight: normal;
  width: 100%;
  font-family: "Roboto", sans-serif;
  color: #dc0000;
  display: flex;
  align-content: center;
  align-items: center;
  justify-items: center;
  margin-top: 4px;
}
.errorBubble:not(.visible) {
  display: none;
}
.errorBubble > * {
  font-size: 16px;
  margin-right: 4px;
  height: 16px;
}

.description {
  color: #757575;
  font-size: 14px;
  line-height: 16.408px;
}
.description > p {
  margin: 0;
}

.description-dd {
  color: #757575;
  font-size: 14px;
  line-height: 16.408px;
}
.description-dd > p {
  margin: 0;
}

.truncated-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #212121;
  font-size: 16px;
  line-height: 18.752px;
}

.dropdown-selector-chevron {
  height: 24px;
}

.dropdown-selector-chevron-offset {
  height: 24px;
}

.dropdown-selector-chevron > tttx-icon {
  cursor: pointer;
}

.dropdown-body-container {
  position: fixed;
  z-index: 2;
}

.dropdown-body {
  position: absolute;
  flex-direction: column;
  box-shadow: 0px 1px 5px #1111114D;
  padding-bottom: 8px;
  border: 1px solid #d5d5d5;
}

.dropdown-options-list {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 368px;
}

.dropdown-option {
  padding: 6px 8px 6px 16px;
  cursor: pointer;
}
.dropdown-option:hover {
  background-color: #1111110d;
}
.dropdown-option:active, .dropdown-option.selected {
  background-color: #ebfbfc;
}

.placeholder {
  color: #9e9e9e;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.searchbox {
  padding: 8px 16px;
}
.searchbox tttx-standalone-input {
  margin-top: -4px;
}

.hidden {
  display: none;
}