/**
SCSS for accordion Component
**/
/**
*********************
* Import all the settings
********************
**/
/**
*********************
* Colors
********************
**/
/* Brand Colors */
/** Add any additional color supplied in the style guide **/
/* Grayscale colors */
/* Accent colors. Primarily used for buttons */
/** Button & Link colors **/
/* background colors */
/* Menu and link colors */
/* Text colors */
/* Border colors */
/* Owl Carousel colors */
/**
*********************
* Variables
********************
**/
/* Typography */
/* Transitions */
/* Container & spacings */
/** Button spacing **/
/* Border */
/* Breakpoints */
/**
*********************
* Colors
********************
**/
/**
*********************
* Breakpoint mixin
********************
**/
.question {
  font-size: 1.125rem;
  color: #164D92;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .question {
    font-size: 1rem;
  }
}

.question .fa {
  font-size: 1rem;
  color: #00B48D;
}

.question .fa.fa-minus {
  display: none;
}

.question p {
  font-size: 1.125rem;
  color: #164D92;
  font-weight: 600;
  margin: 0;
}

.answer {
  padding-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: #164D92;
  display: none;
}

@media only screen and (max-width: 768px) {
  .answer {
    padding-top: 1rem;
  }
}

.answer p {
  font-size: 1rem;
}

/*# sourceMappingURL=faqs-tile.css.map */
