form.mdl.searchbar.searchbar-one {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 42px;
  align-items: center;
  min-height: clamp(46px, 4.2vw, 62px);
  border: 1px solid rgba(12, 14, 18, .04);
  border-radius: 16px;
  background: var(--nn-surface-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset;
}

label.mdl.searchbar.label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

svg.mdl.searchbar.icon:not(.camera) {
  width: 21px;
  height: 21px;
  margin-left: 14px;
  fill: #6d7179;
}

input.mdl.searchbar.input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 10px 0 16px;
  background: transparent;
  color: var(--nn-text);
  font-size: clamp(15px, 1.08vw, 18px);
}

input.mdl.searchbar.input::placeholder {
  color: #858891;
}

button.mdl.searchbar.camera {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 13px;
  color: var(--nn-dark);
  transition: background-color .18s var(--nn-ease), transform .18s var(--nn-ease);
}

button.mdl.searchbar.camera:hover {
  background: rgba(255, 255, 255, .78);
  transform: translateY(-1px);
}

svg.mdl.searchbar.camera.icon {
  width: 24px;
  height: 24px;
  margin: 0;
  fill: currentColor;
}

@media (max-width: 560px) {
  form.mdl.searchbar.searchbar-one {
    min-height: 42px;
    border-radius: 13px;
    grid-template-columns: 24px minmax(0, 1fr) 36px;
  }

  svg.mdl.searchbar.icon:not(.camera) {
    width: 18px;
    height: 18px;
    margin-left: 10px;
  }

  button.mdl.searchbar.camera {
    width: 34px;
    height: 34px;
    margin-right: 4px;
  }
}
