.dsb_text-field-wrapper {
  width: 100%;
}

.dsb_input-wrapper {
  position: relative;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
  background: var(--color-control-background);
}

.dsb_input-wrapper:hover {
  background: var(--color-control-background-hover);
  border-color: var(--color-border-focus);
}

.dsb_input-wrapper:focus-within {
  background-color: rgba(0, 0, 0, 0);
  border-color: var(--color-border-focus);
}

.dsb_input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  padding-right: 40px;
  color: var(--color-text-active);
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  line-height: 20px;
  font-family: "Beeline Sans", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  box-sizing: border-box;
}

.dsb_input::placeholder {
  color: var(--color-text-inactive);
}

.dsb_input-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dsb_input-clear:hover {
  opacity: 0.7;
}

.dsb_input-clear.show {
  opacity: 1;
  visibility: visible;
}
