:host {
  /**
   * @prop --background: Background of the textarea
   * @prop --border-radius: Border radius of the textarea
   * @prop --color: Color of the text
   * @prop --placeholder-color: Color of the placeholder text
   * @prop --placeholder-weight: Weight of the placeholder text
   * @prop --placeholder-opacity: Opacity of the placeholder text
   * @prop --padding-top: Top padding of the textarea
   * @prop --padding-end: End padding of the textarea
   * @prop --padding-bottom: Bottom padding of the textarea
   * @prop --padding-start: Start padding of the textarea
   */
  --background: initial;
  --color: currentColor;
  --placeholder-color: currentColor;
  --placeholder-weight: inherit;
  --placeholder-opacity: .5;
  --padding-top: 0;
  --padding-end: 0;
  --padding-bottom: 0;
  --padding-start: 0;
  --border-radius: 0;
  display: block;
  position: relative;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  background: var(--background);
  color: var(--color); }

:host(.ion-color) {
  background: initial; }

:host(.ion-color) {
  color: var(--ion-color-base); }

:host(.in-item) {
  position: static; }

.native-textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-overflow: inherit;
  text-transform: inherit;
  text-align: inherit;
  white-space: inherit;
  color: inherit;
  border-radius: var(--border-radius);
  margin: 0;
  padding: var(--padding-top) var(--padding-end) var(--padding-bottom) var(--padding-start);
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  resize: none;
  appearance: none; }
  .native-textarea::placeholder {
    color: var(--placeholder-color);
    font-family: inherit;
    font-weight: var(--placeholder-weight);
    opacity: var(--placeholder-opacity); }

.native-textarea[disabled] {
  opacity: .4; }

:host {
  --padding-top: 11px;
  --padding-end: 8px;
  --padding-bottom: 11px;
  --padding-start: 8px;
  font-family: var(--ion-font-family, inherit);
  font-size: inherit; }
