@charset "UTF-8";
/**
 * Foundation for Sites by ZURB
 * Version 6.1.2
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.accordion {
  list-style-type: none;
  background: #fff;
  border: 1px solid #e7e3e3;
  border-bottom: 0;
  border-radius: 0;
  margin-left: 0; }

.accordion-title {
  display: block;
  padding: 1.25rem 1rem;
  line-height: 1;
  font-size: 0.75rem;
  color: #0a0a0a;
  position: relative;
  border-bottom: 1px solid #e7e3e3; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: #e7e3e3; }
  .accordion-title::before {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -0.5rem; }
  .is-active > .accordion-title::before {
    content: '–'; }

.accordion-content {
  padding: 1rem;
  display: none;
  border-bottom: 1px solid #e7e3e3;
  background-color: #fff; }
