/**
 * #.# Common SCSS
 *
 * Can include things like variables and mixins
 * that are used across the project.
*/
.accordion {
  margin-bottom: 1rem; }

.accordion-title {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  color: #777;
  text-decoration: none;
  padding: 14px 20px;
  border: 1px solid #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1); }
  .accordion-title .toggle-accordion i {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline-color: transparent;
    color: #000; }

.accordion-content {
  padding: 0 10px; }
