/**
* Mixins to search input.
*/

@mixin newsletter-input-wrapper {
  padding-top: $spacing-16;
  padding-bottom: $spacing-20;
  display: flex;
  align-items: center;
}

@mixin newsletter-input {
  @include reset-input;
  @include text-x-small;

  font-weight: $font-weight-medium;
  width: 100%;
  color: $color-black;
  border: 1px solid $color-black;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  height: 44px;
  padding-left: $spacing-20;
  padding-right: $spacing-20;

  &::placeholder {
    color: $color-black;
    opacity: 1;
  }

  &::after {
    content: '';
  }
}
