// -----------------------------------------------------------------------------
// This file contains all styles related to the textarea component.
// -----------------------------------------------------------------------------

/* Textarea Component */

.text-area {
  height: 100%;
  font-size: 12px;
  font-weight: 600;
  padding: 18px;
  resize: vertical;
  &--border-radius {
    border-radius: 25px;
  }

  &--primary-style {
    color: #5c636c;
    transition: all 0.6s linear;
    border: 2px solid transparent;
    background-color: #f1f1f1;
    &:focus {
      background-color: transparent;
      border-color: $g-brand-color;
    }
  }

  &:focus {
    outline: 0;
  }
}