.mcla-subhero-cludo {
  display: flex;
  gap: 3px;
  position: relative;
}
.mcla-subhero-cludo__input {
  width: 100%;
  background-color: var(--preset-color-brand-electric-yellow);
  border: 0;
  font-family: Knockout52Cruiserweight, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 375;
  font-size: 16px;
  line-height: 24px;
  color: var(--preset-color-brand-dark-blue);
  padding: 12px 18px 12px 36px;
  border-top-left-radius: 16px;
}
.mcla-subhero-cludo__input::placeholder {
  font-family: Knockout52Cruiserweight, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 375;
  font-size: 16px;
  line-height: 24px;
  color: var(--preset-color-brand-dark-blue);
}
.mcla-subhero-cludo__input::selection {
  background-color: var(--preset-color-brand-dark-blue);
  color: var(--preset-color-brand-electric-yellow);
}
.mcla-subhero-cludo__submit {
  background-color: var(--preset-color-brand-light-blue);
  border: 0;
  border-bottom-right-radius: 16px;
  font-family: Knockout52Cruiserweight;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  color: var(--preset-color-brand-dark-blue);
  display: flex;
  align-items: center;
  padding: 15px 18px;
  gap: 6px;
  cursor: pointer;
}
.mcla-subhero-cludo__submit svg {
  fill: var(--preset-color-brand-dark-blue);
  width: 14px;
}

.mcla-subhero-cludo .search_autocomplete {
  display: none;
}

.mcla-subhero-cludo .cludo-voice-icon {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  background: url(../assets/mic-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  background-color: transparent;
  border: 0;
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: all 0.3s;
  cursor: pointer;
}
.mcla-subhero-cludo .cludo-voice-icon:hover {
  transform: translateY(calc(-50% - 3px));
  opacity: 1;
}
.mcla-subhero-cludo .cludo-voice-icon svg {
  display: none;
}

@media (min-width: 750px) {
  .mcla-subhero-cludo__input {
    font-size: 21px;
    line-height: 30px;
    padding: 15px 30px 15px 45px;
    border-top-left-radius: 24px;
  }
  .mcla-subhero-cludo__input::placeholder {
    font-size: 21px;
    line-height: 30px;
  }
  .mcla-subhero-cludo__submit {
    border-bottom-right-radius: 24px;
    font-size: 18px;
    line-height: 32px;
    gap: 12px;
    padding: 15px 21px;
  }
  .mcla-subhero-cludo__submit svg {
    width: auto;
  }
  .mcla-subhero-cludo .cludo-voice-icon {
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
  }
}

