/*--------------------------------------------------
	Accordion
--------------------------------------------------*/
.accordion {
  margin: 2em 0; }
  .accordion + .accordion {
    margin: -1em 0 2em;
    border-top: none; }

.accordion__header {
  padding: 22.5px 65px 22.5px 25px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  border-radius: 32.5px;
  -webkit-transition: background-color 350ms ease;
  -o-transition: background-color 350ms ease;
  transition: background-color 350ms ease; }
  .accordion__header h2 {
    margin: 0;
    color: #944196;
    line-height: 20px;
    font-size: 1.125em;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-transition: color 350ms ease;
    -o-transition: color 350ms ease;
    transition: color 350ms ease; }
  .accordion__header:before, .accordion__header:after {
    font-family: "FontAwesome";
    position: absolute;
    right: 12.5px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    -webkit-transition: opacity 350ms ease, -webkit-transform 350ms ease;
    transition: opacity 350ms ease, -webkit-transform 350ms ease;
    -o-transition: transform 350ms ease, opacity 350ms ease;
    transition: transform 350ms ease, opacity 350ms ease;
    transition: transform 350ms ease, opacity 350ms ease, -webkit-transform 350ms ease; }
  .accordion__header:before {
    opacity: 1;
    content: "\f067"; }
  .accordion__header:after {
    opacity: 0;
    content: "\f068"; }
  .accordion__header:hover,
  .accordion.active > .accordion__header {
    background-color: #944196; }
    .accordion__header:hover h2,
    .accordion.active > .accordion__header h2 {
      color: #fff; }
  .accordion.active > .accordion__header:before {
    opacity: 0; }
  .accordion.active > .accordion__header:after {
    opacity: 1; }

.accordion__container {
  display: none;
  padding: 30px; }
  .accordion__container .accordion__container {
    background-color: #fff; }
  .accordion__container *:first-child {
    margin-top: 0; }
  .accordion__container *:last-child {
    margin-bottom: 0; }
  .mason--admin .accordion__container,
  .accordion.active > .accordion__container {
    display: block; }

/*--------------------------------------------------
	Columns
--------------------------------------------------*/
.template:before, .template:after {
  content: "";
  display: table; }

.template:after {
  clear: both; }

.template__columns {
  margin: 0 -1em; }

.template__columns__span {
  width: 100%;
  float: left;
  padding: 0 1em; }

@media all and (min-width: 769px) {
  .template__columns__span--1 {
    width: 8.33333%; }
  .template__columns__span--2 {
    width: 16.66667%; }
  .template__columns__span--3 {
    width: 25%; }
  .template__columns__span--4 {
    width: 33.33333%; }
  .template__columns__span--5 {
    width: 41.66667%; }
  .template__columns__span--6 {
    width: 50%; }
  .template__columns__span--7 {
    width: 58.33333%; }
  .template__columns__span--8 {
    width: 66.66667%; }
  .template__columns__span--9 {
    width: 75%; }
  .template__columns__span--10 {
    width: 83.33333%; }
  .template__columns__span--11 {
    width: 91.66667%; }
  .template__columns__span--12 {
    width: 100%; } }

/*--------------------------------------------------
	Attention
--------------------------------------------------*/
.attention {
  display: block;
  width: 100%;
  padding: 20px;
  margin: 1em 0;
  background-color: #944196; }
  .attention *,
  .attention a {
    color: #fff; }
  .attention a {
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(255, 255, 255, 0.5);
    text-decoration-color: rgba(255, 255, 255, 0.5); }
  .attention > *:first-child {
    margin-top: 0; }
  .attention > *:last-child {
    margin-bottom: 0; }

/*--------------------------------------------------
	Button Link
--------------------------------------------------*/
.button__link {
  display: inline-block; }
  .button__link a {
    display: block;
    padding: 15.5px 25px;
    font-size: 0.875em;
    line-height: 20px;
    font-weight: 400;
    border: 2px solid #944196;
    background-color: #944196;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none !important;
    border-radius: 27.5px;
    -webkit-transition: background-color 350ms ease, color 350ms ease;
    -o-transition: background-color 350ms ease, color 350ms ease;
    transition: background-color 350ms ease, color 350ms ease; }
    .button__link a:hover {
      background-color: transparent;
      color: #944196; }

.button__link--alt a {
  background-color: #fff;
  border: 2px solid #fff;
  color: #944196; }
  .button__link--alt a:hover {
    color: #fff; }

/*--------------------------------------------------
	Table
--------------------------------------------------*/
.mason .table__container {
  display: block;
  max-width: 100%;
  overflow: auto;
  margin: 20px 0; }
  .mason .table__container table {
    border: 1px solid #944196; }
    .mason .table__container table thead tr {
      border: 1px solid #944196; }
    .mason .table__container table thead th {
      border: 1px solid #944196;
      background-color: #944196;
      color: #fff; }
    .mason .table__container table tbody {
      border: 1px solid #944196; }
      .mason .table__container table tbody tr:nth-child(odd) {
        background: #f9f5f5; }
      .mason .table__container table tbody tr:nth-child(even) {
        background: #efe2e2; }
      .mason .table__container table tbody td {
        border: 1px solid #944196; }

/*--------------------------------------------------
	Block Quote
--------------------------------------------------*/
blockquote {
  margin: calc(2em + 30px) 0 2em;
  position: relative;
  padding: 45px 5vw 25px;
  background-color: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1); }
  blockquote:before {
    content: "";
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #944196 url("/_site/images/design/quote.png") center no-repeat;
    margin: 0 auto;
    -webkit-box-shadow: 0px 8px 24px rgba(148, 65, 150, 0.4);
    box-shadow: 0px 8px 24px rgba(148, 65, 150, 0.4); }
  blockquote * {
    font-family: "Merriweather", serif;
    color: #944196; }
    blockquote *:first-child {
      margin-top: 0; }
    blockquote *:last-child {
      margin-bottom: 0; }
      blockquote *:last-child:not(:first-child) {
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        font-size: 0.875em;
        font-weight: 600;
        letter-spacing: 1px;
        opacity: 0.5; }

@media all and (min-width: 1025px) {
  blockquote {
    margin: 2em 0;
    padding: 40px 40px 40px 70px; }
    blockquote:before {
      left: -32px;
      top: 40px;
      right: auto; }
    blockquote * {
      font-size: 1.25em; }
      blockquote *:last-child:not(:first-child) {
        font-size: 0.7em; } }
