.input-wrapper {
  position: relative;
  width: 100%;
  padding: 16px;

  input {
    width: 100%;
    height: 32px;
    padding-right: 20px;
  }

  button {
    cursor: pointer;

    position: absolute;
    top: 24px;
    right: 20px;

    width: 16px;
    height: 16px;
    padding: 0;

    background-color: transparent;
    border: none;
    border-radius: 50%;

    &:hover {
      background-color: #ccc;
    }

    .icon {
      font-size: 14px;
    }
  }
}
