.Textarea {
  padding: 16px;
  font-size: 14px;
  font-family: Proxima Nova;
  font-weight: 300;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #DCDCDC;
  resize: none;
  min-height: 112px;

  &Invalid {
    border: 2px solid #D0021B!important;
  }

  &Wrap {
    position: relative;
  }

  &Error {
    position: absolute;
    padding: 10px 16px;
    background: #f44336;
    color: #fff;
    font-size: 11px;
    z-index: 10;
    bottom: -33px;
    left: 50%;
    transform: translate(-50%, 0);

    &:after {
      bottom: 100%;
      left: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: rgba(136, 183, 213, 0);
      border-bottom-color: #f44336;
      border-width: 6px;
      margin-left: -6px;
    }
  }

  &:active, &:focus {
    outline: none;
  }

}

