@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file. 

******************************************************************/
/**
 * Foundation for Sites by ZURB
 * Version 6.5.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@import url("https://fonts.googleapis.com/css?family=Nunito:400,400i,600,700,800,800i,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i");
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400");
@import url("https://fonts.googleapis.com/css?family=Vollkorn");
@import url("https://fonts.googleapis.com/css?family=Merriweather&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@700;800;900&display=swap");
@import url(https://use.fontawesome.com/releases/v5.6.3/css/all.css);
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em&menuBreak=83.125em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 83.125em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row.is-collapse-child, .row.collapse > .column > .row, .row.collapse > .columns > .row {
  margin-right: 0;
  margin-left: 0;
}

.column, .columns {
  flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: 0;
}
@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.column.row.row, .row.row.columns {
  float: none;
  display: block;
}

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 {
  flex-wrap: wrap;
}
.small-up-1 > .column, .small-up-1 > .columns {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-up-2 {
  flex-wrap: wrap;
}
.small-up-2 > .column, .small-up-2 > .columns {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-up-3 {
  flex-wrap: wrap;
}
.small-up-3 > .column, .small-up-3 > .columns {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.small-up-4 {
  flex-wrap: wrap;
}
.small-up-4 > .column, .small-up-4 > .columns {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-up-5 {
  flex-wrap: wrap;
}
.small-up-5 > .column, .small-up-5 > .columns {
  flex: 0 0 20%;
  max-width: 20%;
}

.small-up-6 {
  flex-wrap: wrap;
}
.small-up-6 > .column, .small-up-6 > .columns {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.small-up-7 {
  flex-wrap: wrap;
}
.small-up-7 > .column, .small-up-7 > .columns {
  flex: 0 0 14.2857142857%;
  max-width: 14.2857142857%;
}

.small-up-8 {
  flex-wrap: wrap;
}
.small-up-8 > .column, .small-up-8 > .columns {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 {
    flex-wrap: wrap;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-up-2 {
    flex-wrap: wrap;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-up-3 {
    flex-wrap: wrap;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .medium-up-4 {
    flex-wrap: wrap;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-up-5 {
    flex-wrap: wrap;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .medium-up-6 {
    flex-wrap: wrap;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .medium-up-7 {
    flex-wrap: wrap;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .medium-up-8 {
    flex-wrap: wrap;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .medium-expand {
    flex: 1 1 0px;
  }
}
.row.medium-unstack > .column, .row.medium-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 40em) {
  .row.medium-unstack > .column, .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 {
    flex-wrap: wrap;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .large-up-2 {
    flex-wrap: wrap;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .large-up-3 {
    flex-wrap: wrap;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .large-up-4 {
    flex-wrap: wrap;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .large-up-5 {
    flex-wrap: wrap;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .large-up-6 {
    flex-wrap: wrap;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .large-up-7 {
    flex-wrap: wrap;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .large-up-8 {
    flex-wrap: wrap;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    flex: 1 1 0px;
  }
}
.row.large-unstack > .column, .row.large-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 64em) {
  .row.large-unstack > .column, .row.large-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 64em) {
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media screen and (min-width: 83.125em) {
  .menuBreak-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .menuBreak-offset-0 {
    margin-left: 0%;
  }
  .menuBreak-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .menuBreak-offset-1 {
    margin-left: 8.3333333333%;
  }
  .menuBreak-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .menuBreak-offset-2 {
    margin-left: 16.6666666667%;
  }
  .menuBreak-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .menuBreak-offset-3 {
    margin-left: 25%;
  }
  .menuBreak-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .menuBreak-offset-4 {
    margin-left: 33.3333333333%;
  }
  .menuBreak-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .menuBreak-offset-5 {
    margin-left: 41.6666666667%;
  }
  .menuBreak-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .menuBreak-offset-6 {
    margin-left: 50%;
  }
  .menuBreak-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .menuBreak-offset-7 {
    margin-left: 58.3333333333%;
  }
  .menuBreak-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .menuBreak-offset-8 {
    margin-left: 66.6666666667%;
  }
  .menuBreak-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .menuBreak-offset-9 {
    margin-left: 75%;
  }
  .menuBreak-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .menuBreak-offset-10 {
    margin-left: 83.3333333333%;
  }
  .menuBreak-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .menuBreak-offset-11 {
    margin-left: 91.6666666667%;
  }
  .menuBreak-up-1 {
    flex-wrap: wrap;
  }
  .menuBreak-up-1 > .column, .menuBreak-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .menuBreak-up-2 {
    flex-wrap: wrap;
  }
  .menuBreak-up-2 > .column, .menuBreak-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .menuBreak-up-3 {
    flex-wrap: wrap;
  }
  .menuBreak-up-3 > .column, .menuBreak-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .menuBreak-up-4 {
    flex-wrap: wrap;
  }
  .menuBreak-up-4 > .column, .menuBreak-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .menuBreak-up-5 {
    flex-wrap: wrap;
  }
  .menuBreak-up-5 > .column, .menuBreak-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .menuBreak-up-6 {
    flex-wrap: wrap;
  }
  .menuBreak-up-6 > .column, .menuBreak-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .menuBreak-up-7 {
    flex-wrap: wrap;
  }
  .menuBreak-up-7 > .column, .menuBreak-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .menuBreak-up-8 {
    flex-wrap: wrap;
  }
  .menuBreak-up-8 > .column, .menuBreak-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 83.125em) and (min-width: 83.125em) {
  .menuBreak-expand {
    flex: 1 1 0px;
  }
}
.row.menuBreak-unstack > .column, .row.menuBreak-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 83.125em) {
  .row.menuBreak-unstack > .column, .row.menuBreak-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media screen and (min-width: 83.125em) {
  .menuBreak-collapse > .column, .menuBreak-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 83.125em) {
  .menuBreak-uncollapse > .column, .menuBreak-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.shrink {
  flex: 0 0 auto;
  max-width: 100%;
}

.column-block {
  margin-bottom: 1.25rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 83.125em) {
  .menuBreak-order-1 {
    order: 1;
  }
  .menuBreak-order-2 {
    order: 2;
  }
  .menuBreak-order-3 {
    order: 3;
  }
  .menuBreak-order-4 {
    order: 4;
  }
  .menuBreak-order-5 {
    order: 5;
  }
  .menuBreak-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 83.125em) {
  .menuBreak-flex-container {
    display: flex;
  }
  .menuBreak-flex-child-auto {
    flex: 1 1 auto;
  }
  .menuBreak-flex-child-grow {
    flex: 1 0 auto;
  }
  .menuBreak-flex-child-shrink {
    flex: 0 1 auto;
  }
  .menuBreak-flex-dir-row {
    flex-direction: row;
  }
  .menuBreak-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .menuBreak-flex-dir-column {
    flex-direction: column;
  }
  .menuBreak-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #cacaca;
}

h1, .h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3, .h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 3rem;
  }
  h2, .h2 {
    font-size: 2.5rem;
  }
  h3, .h3 {
    font-size: 1.9375rem;
  }
  h4, .h4 {
    font-size: 1.5625rem;
  }
  h5, .h5 {
    font-size: 1.25rem;
  }
  h6, .h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #1468a0;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #8a8a8a;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a;
}
cite:before {
  content: "— ";
}

abbr, abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 83.125em) {
  .menuBreak-text-left {
    text-align: left;
  }
  .menuBreak-text-right {
    text-align: right;
  }
  .menuBreak-text-center {
    text-align: center;
  }
  .menuBreak-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  box-sizing: border-box;
}

::placeholder {
  color: #cacaca;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}
.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #f9ecea;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: #14679e;
  color: #fefefe;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button.primary {
  background-color: #1779ba;
  color: #fefefe;
}
.button.primary:hover, .button.primary:focus {
  background-color: #126195;
  color: #fefefe;
}
.button.secondary {
  background-color: #767676;
  color: #fefefe;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button.success {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button.warning {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button.alert {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.alert:hover, .button.alert:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.disabled.primary, .button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.disabled.secondary, .button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #767676;
  color: #fefefe;
}
.button.disabled.success, .button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.disabled.warning, .button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.disabled.alert, .button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.hollow {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow:hover.disabled, .button.hollow:hover[disabled], .button.hollow:focus.disabled, .button.hollow:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow.primary:hover.disabled, .button.hollow.primary:hover[disabled], .button.hollow.primary:focus.disabled, .button.hollow.primary:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.secondary {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.secondary:hover.disabled, .button.hollow.secondary:hover[disabled], .button.hollow.secondary:focus.disabled, .button.hollow.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.success:hover.disabled, .button.hollow.success:hover[disabled], .button.hollow.success:focus.disabled, .button.hollow.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.warning:hover.disabled, .button.hollow.warning:hover[disabled], .button.hollow.warning:focus.disabled, .button.hollow.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.hollow.alert:hover.disabled, .button.hollow.alert:hover[disabled], .button.hollow.alert:focus.disabled, .button.hollow.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear, .button.clear:hover, .button.clear:focus {
  background-color: transparent;
}
.button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  background-color: transparent;
}
.button.clear:hover, .button.clear:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear:hover, .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus, .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border-color: transparent;
}
.button.clear.primary {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary:hover, .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus, .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border-color: transparent;
}
.button.clear.secondary {
  border: 1px solid #767676;
  color: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary:hover, .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus, .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border-color: transparent;
}
.button.clear.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success:hover, .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus, .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border-color: transparent;
}
.button.clear.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning:hover, .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus, .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border-color: transparent;
}
.button.clear.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert:hover, .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus, .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border-color: transparent;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fefefe transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after, .button.dropdown.clear::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, a.button:focus {
  text-decoration: none;
}

.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #e6e6e6;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #0a0a0a;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle > a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1779ba;
  color: #fefefe;
}
.badge.primary {
  background: #1779ba;
  color: #fefefe;
}
.badge.secondary {
  background: #767676;
  color: #fefefe;
}
.badge.success {
  background: #3adb76;
  color: #0a0a0a;
}
.badge.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.badge.alert {
  background: #cc4b37;
  color: #fefefe;
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #0a0a0a;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #cacaca;
}
.breadcrumbs a {
  color: #1779ba;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
}
.button-group.primary .button {
  background-color: #1779ba;
  color: #fefefe;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #126195;
  color: #fefefe;
}
.button-group.secondary .button {
  background-color: #767676;
  color: #fefefe;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button-group.success .button {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button-group.warning .button {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button-group.alert .button {
  background-color: #cc4b37;
  color: #fefefe;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  flex: 1 1 0px;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  background-color: white;
  color: #0a0a0a;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d7ecfa;
  color: #0a0a0a;
}
.callout.secondary {
  background-color: #eaeaea;
  color: #0a0a0a;
}
.callout.success {
  background-color: #e1faea;
  color: #0a0a0a;
}
.callout.warning {
  background-color: #fff3d9;
  color: #0a0a0a;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #0a0a0a;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  overflow: hidden;
  color: #0a0a0a;
}
.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  display: flex;
  flex: 0 1 auto;
  padding: 1rem;
  background: #e6e6e6;
}
.card-divider > :last-child {
  margin-bottom: 0;
}

.card-section {
  flex: 1 0 auto;
  padding: 1rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}

.card-image {
  min-height: 1px;
}

.close-button {
  position: absolute;
  color: #8a8a8a;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #0a0a0a;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}
.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 83.125em) {
  .menu.menuBreak-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.menuBreak-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.menuBreak-expanded li {
    flex: 1 1 0px;
  }
  .menu.menuBreak-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu .active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  justify-content: center;
}
.menu-centered > .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fefefe;
  box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
  content: "";
}
.menu-icon:hover::after {
  background: #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: #fefefe;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #1779ba;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media screen and (min-width: 83.125em) {
  .dropdown.menu.menuBreak-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.menuBreak-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.menuBreak-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.menuBreak-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.menuBreak-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.menuBreak-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.menuBreak-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.menuBreak-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.menuBreak-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.menuBreak-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1779ba;
  color: #fefefe;
}
.label.primary {
  background: #1779ba;
  color: #fefefe;
}
.label.secondary {
  background: #767676;
  color: #fefefe;
}
.label.success {
  background: #3adb76;
  color: #0a0a0a;
}
.label.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.label.alert {
  background: #cc4b37;
  color: #fefefe;
}

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 39.99875em) {
  .media-object.stack-for-small {
    flex-wrap: wrap;
  }
}

.media-object-section {
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 39.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }
  .stack-for-small .media-object-section img {
    width: 100%;
  }
}
.media-object-section.main-section {
  flex: 1 1 0px;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}
.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(250px);
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-250px);
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(250px);
}

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-250px);
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
}

.off-canvas-content {
  transform: none;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 83.125em) {
  .position-left.reveal-for-menuBreak {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-menuBreak .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-menuBreak {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-menuBreak ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-menuBreak {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-menuBreak .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-menuBreak {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-menuBreak ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-menuBreak {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-menuBreak .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-menuBreak {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-menuBreak ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-menuBreak {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-menuBreak .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-menuBreak {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-menuBreak ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
@media screen and (min-width: 83.125em) {
  .off-canvas.in-canvas-for-menuBreak {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-menuBreak.position-left, .off-canvas.in-canvas-for-menuBreak.position-right, .off-canvas.in-canvas-for-menuBreak.position-top, .off-canvas.in-canvas-for-menuBreak.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-menuBreak .close-button {
    display: none;
  }
}
.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.orbit-slide {
  width: 100%;
  position: absolute;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(10, 10, 10, 0.5);
  color: #fefefe;
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe;
}
[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(10, 10, 10, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput=mouse] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #cacaca;
}
.orbit-bullets button:hover {
  background-color: #8a8a8a;
}
.orbit-bullets button.is-active {
  background-color: #8a8a8a;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0625rem;
  border-radius: 0;
  font-size: 0.875rem;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
  color: #0a0a0a;
}
.pagination a:hover,
.pagination button:hover {
  background: #e6e6e6;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #1779ba;
  color: #fefefe;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #cacaca;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1875rem 0.625rem;
  content: "…";
  color: #0a0a0a;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "«";
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "»";
}

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #cacaca;
}
.progress.primary .progress-meter {
  background-color: #1779ba;
}
.progress.secondary .progress-meter {
  background-color: #767676;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #1779ba;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #1779ba;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
}
[data-whatinput=mouse] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #14679e;
}
.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
}
html.is-reveal-open body {
  overflow-y: hidden;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: auto;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column, .reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 75rem;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 39.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fefefe;
  user-select: none;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #cacaca;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #fefefe;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #1779ba;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}

caption {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
}

thead {
  background: #f8f8f8;
  color: #0a0a0a;
}

tfoot {
  background: #f1f1f1;
  color: #0a0a0a;
}

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f1f1f1;
}

table.unstriped tbody {
  background-color: #fefefe;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fefefe;
}

@media screen and (max-width: 63.99875em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: #f3f3f3;
}
table.hover tfoot tr:hover {
  background-color: #ececec;
}
table.hover tbody tr:hover {
  background-color: #f9f9f9;
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec;
}

.table-scroll {
  overflow-x: auto;
}

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #1779ba;
}
.tabs.primary > li > a {
  color: #fefefe;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1673b1;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #fefefe;
  color: #1468a0;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #e6e6e6;
  color: #1779ba;
}

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #0a0a0a;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 4px solid #fefefe;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  line-height: 0;
}

a.thumbnail {
  transition: box-shadow 200ms ease-out;
}
a.thumbnail:hover, a.thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
}
a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #0a0a0a;
  color: #fefefe;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.title-bar-left,
.title-bar-right {
  flex: 1 1 0px;
}

.title-bar-right {
  text-align: right;
}

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #0a0a0a;
  font-size: 80%;
  color: #fefefe;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #0a0a0a;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #0a0a0a transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #0a0a0a;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #0a0a0a transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}

.top-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 40em) {
  .top-bar {
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 63.99875em) {
  .top-bar.stacked-for-medium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 74.99875em) {
  .top-bar.stacked-for-large {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.top-bar.stacked-for-menuBreak {
  flex-wrap: wrap;
}
.top-bar.stacked-for-menuBreak .top-bar-left,
.top-bar.stacked-for-menuBreak .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}

.top-bar-title {
  flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0;
}

.top-bar-left,
.top-bar-right {
  flex: 0 0 auto;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 83.125em) {
  .hide-for-menuBreak {
    display: none !important;
  }
}

@media screen and (max-width: 83.12375em) {
  .show-for-menuBreak {
    display: none !important;
  }
}

@media screen and (min-width: 83.125em) {
  .hide-for-menuBreak-only {
    display: none !important;
  }
}

@media screen and (max-width: 83.12375em) {
  .show-for-menuBreak-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before, .clearfix::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}

/************************************************

Stylesheet: Global Stylesheet

*************************************************/
/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
  border: 0px;
  padding: 0px;
}

.byline {
  color: #999;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

.post-password-form input[type=submit] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe;
}
[data-whatinput=mouse] .post-password-form input[type=submit] {
  outline: 0;
}
.post-password-form input[type=submit]:hover, .post-password-form input[type=submit]:focus {
  background-color: #14679e;
  color: #fefefe;
}

/*********************
IMAGE GALLERY STYLES
*********************/
.gallery {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-right: -15px;
  margin-left: -15px;
}

.gallery::before, .gallery::after {
  content: " ";
  display: table;
}

.gallery::after {
  clear: both;
}

.gallery.gallery-columns-1 > dl {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-1 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-1 > dl, .gallery.gallery-columns-1 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-1 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-2 > dl {
  width: 50%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-2 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-2 > dl, .gallery.gallery-columns-2 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-2 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-3 > dl {
  width: 33.3333333333%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-3 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-3 > dl, .gallery.gallery-columns-3 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-3 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-4 > dl {
  width: 25%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-4 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-4 > dl, .gallery.gallery-columns-4 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-4 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-5 > dl {
  width: 20%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-5 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-5 > dl, .gallery.gallery-columns-5 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-5 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-6 > dl {
  width: 16.6666666667%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-6 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-6 > dl, .gallery.gallery-columns-6 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-6 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-7 > dl {
  width: 14.2857142857%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-7 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-7 > dl, .gallery.gallery-columns-7 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-7 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-8 > dl {
  width: 12.5%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-8 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-8 > dl, .gallery.gallery-columns-8 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-8 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery dl {
  width: 100%;
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.gallery dl:last-child:not(:first-child) {
  float: right;
}

/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem;
}

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px;
}

#respond ul {
  margin-left: 0px;
}

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px;
}
.commentlist li:last-child {
  margin-bottom: 0;
}
.commentlist li ul.children {
  margin: 0;
}
.commentlist li[class*=depth-] {
  margin-top: 1.1em;
}
.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0;
}
.commentlist .vcard {
  margin-left: 50px;
}
.commentlist .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.commentlist .vcard time {
  float: right;
}
.commentlist .vcard time a {
  color: #999;
  text-decoration: none;
}
.commentlist .vcard time a:hover {
  text-decoration: underline;
}
.commentlist .vcard img.avatar {
  position: absolute;
  left: 10px;
  padding: 2px;
  border: 1px solid #cecece;
  background: #fff;
}
.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
.commentlist .comment-reply-link {
  float: right;
}
/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em;
}
.respond-form form {
  margin: 0.75em 0;
}
.respond-form form li {
  list-style-type: none;
  clear: both;
  margin-bottom: 0.7335em;
}
.respond-form form li label,
.respond-form form li small {
  display: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url],
.respond-form form textarea {
  padding: 3px 6px;
  background: #efefef;
  border: 2px solid #cecece;
  line-height: 1.5em;
}
.respond-form form input[type=text]:focus,
.respond-form form input[type=email]:focus,
.respond-form form input[type=url]:focus,
.respond-form form textarea:focus {
  background: #fff;
}
.respond-form form input[type=text]:invalid,
.respond-form form input[type=email]:invalid,
.respond-form form input[type=url]:invalid,
.respond-form form textarea:invalid {
  outline: none;
  border-color: #fbc2c4;
  background-color: #f6e7eb;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url] {
  max-width: 400px;
  min-width: 250px;
}
.respond-form form textarea {
  resize: none;
  width: 97.3%;
  height: 150px;
}

#comment-form-title {
  margin: 0 0 1.1em;
}

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar li {
  list-style: none;
}

.widget ul {
  margin: 0;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  margin-top: 1em;
}

/*********************
VISUAL EDITOR STYLES
*********************/
body#tinymce {
  margin: 20px;
}

/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0;
}

.gform_validation_container,
.gform_wrapper .gform_validation_container,
body .gform_wrapper li.gform_validation_container,
body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,
body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
  display: none !important;
  position: absolute !important;
  left: -9000px;
}

@font-face {
  font-family: "BPreplayRegular";
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplay-webfont.eot");
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplay-webfont.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplay-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BPreplayItalic";
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplayItalics-webfont.eot");
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplayItalics-webfont.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplayItalics-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BPreplayBold";
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplayBold-webfont.eot");
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplayBold-webfont.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplayBold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BPreplayBoldItalic";
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplayBoldItalics-webfont.eot");
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplayBoldItalics-webfont.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/BPreplayBoldItalics-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Romy-Caps";
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_0_0.eot");
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_0_0.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_0_0.woff2") format("woff2"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_0_0.woff") format("woff"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_0_0.ttf") format("truetype");
}
@font-face {
  font-family: "Romy-Regular";
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_1_0.eot");
  src: url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_1_0.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_1_0.woff2") format("woff2"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_1_0.woff") format("woff"), url("/wp-content/themes/freedomreaders-2019/assets/fonts/3A96E6_1_0.ttf") format("truetype");
}
/************************************************

Stylesheet: App Stylesheet

*************************************************/
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.app-container .app-content {
  flex: 1;
}

/*********************
POSTS & CONTENT STYLES
*********************/
body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  color: #A70E37;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

h3 {
  font-weight: 700;
  text-transform: none;
}

.home h3 {
  font-size: 3.875rem !important;
}

h4 {
  line-height: 1.3;
}

ul {
  font-family: "Nunito", sans-serif;
}
ul li {
  list-style: none;
}

main p {
  line-height: 1.8;
}

a {
  color: #E33330;
}
a:hover {
  color: #A70E37;
}

hr.short-bar {
  border: none;
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: medium;
  border-top: 6px solid #a70e37;
  text-align: center;
  width: 12%;
}

p.home-section-text {
  font-size: 1.0625rem;
  line-height: 1.6;
}

div.mlw_qmn_quiz input[type=submit], a.mlw_qmn_quiz_link {
  background-color: #0d5d32 !important;
  font-size: 1.1rem !important;
}
div.mlw_qmn_quiz input[type=submit]:hover, a.mlw_qmn_quiz_link:hover {
  background-color: #E33330 !important;
}

.btn, .vfb-item-submit input[type=submit], div.mlw_qmn_quiz input[type=submit], a.mlw_qmn_quiz_link, .wpforms-submit-container [type=button], .wpforms-submit-container [type=submit] {
  display: inline-block;
  background-image: none !important;
  background-color: #0d5d32;
  border: none !important;
  font-family: "BPreplayBold", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: none !important;
  color: #fff !important;
  border-radius: 5px !important;
  padding: 7px 10px 6px 10px !important;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.btn:hover, .vfb-item-submit input[type=submit]:hover, div.mlw_qmn_quiz input[type=submit]:hover, a.mlw_qmn_quiz_link:hover, .wpforms-submit-container [type=button]:hover, .wpforms-submit-container [type=submit]:hover {
  color: #fff;
  background-color: #E33330;
  transition-timing-function: ease-out;
}
.btn.btn-lg, .vfb-item-submit input[type=submit].btn-lg, div.mlw_qmn_quiz input[type=submit].btn-lg, a.mlw_qmn_quiz_link.btn-lg, .wpforms-submit-container [type=button].btn-lg, .wpforms-submit-container [type=submit].btn-lg {
  font-size: 1.3rem;
  padding: 7px 15px 6px 15px;
}

.padding {
  padding: 2.25rem !important;
}

.btn-loadmore {
  background-color: #E33330;
  color: #fff;
  border-radius: 5px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 1.25rem;
  padding: 10px 0;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.btn-loadmore:hover {
  background-color: #dc211e;
}

.visual-form-builder-container fieldset {
  border: 1px solid #A70E37;
  border-radius: 5px;
  padding: 1.25rem 1.25rem 0 1.25rem;
  margin-bottom: 1.25rem;
}
.visual-form-builder-container fieldset h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 2.5rem;
}
.visual-form-builder-container fieldset h4 {
  font-size: 1.125rem;
}
.visual-form-builder-container fieldset ul {
  margin: 0;
}
.visual-form-builder-container fieldset ul li.vfb-item-checkbox span.vfb-span {
  display: block;
}
.visual-form-builder-container fieldset ul li.vfb-item-radio span.vfb-span {
  display: block;
}
.visual-form-builder-container fieldset ul label {
  font-size: 1rem;
  line-height: 1.2;
  color: #A70E37;
  margin-bottom: 0.3125rem;
}
.visual-form-builder-container fieldset ul input[type=text], .visual-form-builder-container fieldset ul input[type=tel], .visual-form-builder-container fieldset ul input[type=email] {
  border: 1px solid #A70E37;
  border-radius: 5px;
  box-shadow: inset 0px 0px 0px 0px;
}
.visual-form-builder-container fieldset ul select {
  color: #A70E37;
  border: 1px solid #A70E37;
  border-radius: 5px;
}
.visual-form-builder-container fieldset ul textarea {
  min-height: 150px;
  border: 1px solid #A70E37;
  border-radius: 5px;
}
.visual-form-builder-container fieldset ul .vfb-item-submit input[type=submit] {
  border: none;
  margin-bottom: 1.25rem;
}

/*********************
HEADER
*********************/
.sticky.is-stuck {
  margin-top: 0 !important;
  z-index: 10000 !important;
  box-shadow: 0px 0px 10px 0px #333;
}

@media screen and (max-width: 37.5em) {
  .sticky {
    border-top: 4px solid #A70E37;
  }
}

.header-contact-info {
  background-color: #A70E37;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
}
@media screen and (min-width: 37.5em) {
  .header-contact-info {
    display: none;
  }
}
.header-contact-info ul {
  position: relative;
  text-align: center;
  margin: 0 1.25rem;
  padding: 0.625rem 0;
  line-height: 1;
}
.header-contact-info ul li {
  display: inline-block;
  margin: 0 0 0 0;
  line-height: 1;
}
.header-contact-info ul li a {
  padding: 0.625rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}
.header-contact-info ul li a:hover {
  color: #EEA940;
}
.header-contact-info ul li.contact-btn {
  position: relative;
  font-family: "BPreplayBold", sans-serif;
  font-weight: 300;
  background-color: #E33330;
  line-height: 1.2;
  margin: 0 0.5rem 0.125rem 0.8125rem;
  padding: 0.5rem 0.3125rem;
  border-radius: 5px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.header-contact-info ul li.contact-btn:hover {
  background-color: #fff;
  transition-timing-function: ease-out;
}
.header-contact-info ul li.contact-btn a {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.header-contact-info ul li.contact-btn a:hover {
  color: #A70E37;
  transition-timing-function: ease-out;
}

.links-bar ul li.donate-btn {
  position: relative;
  font-family: "BPreplayBold", sans-serif;
  font-weight: 300;
  background-color: #0d5d32 !important;
  line-height: 1.2;
  margin: 0 0.5rem 0.125rem 0.3125rem;
  padding: 0.125rem 0.3125rem 0 0.3125rem;
  border-radius: 5px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.links-bar ul li.donate-btn:hover {
  background-color: #E33330 !important;
  transition-timing-function: ease-out;
}

.links-bar ul li.donate-btn a {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.links-bar ul li.donate-btn a:hover {
  color: #fff !important;
  transition-timing-function: ease-out;
}

.links-bar {
  background-color: #A70E37;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
}
@media screen and (max-width: 37.5em) {
  .links-bar {
    display: none;
  }
}
.links-bar ul {
  position: relative;
  text-align: right;
  margin: 0 1.25rem 0 0;
  line-height: 1;
}
.links-bar ul li {
  display: inline-block;
  text-align: right;
  margin: 0 0 0 0;
  line-height: 1;
}
.links-bar ul li a {
  display: inline-block;
  margin-left: 0.3125rem;
  padding: 0.25rem;
  color: #fff;
  font-size: 1.3rem;
}
.links-bar ul li a:hover {
  color: #EEA940;
}
.links-bar ul li.register-btn {
  position: relative;
  font-family: "BPreplayBold", sans-serif;
  font-weight: 300;
  background-color: #EEA940;
  line-height: 1.2;
  margin: 0 0 0.125rem 0.3125rem;
  padding: 0.125rem 0.3125rem 0 0.3125rem;
  border-radius: 5px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.links-bar ul li.register-btn:hover {
  background-color: #fff;
  transition-timing-function: ease-out;
}
.links-bar ul li.register-btn a {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.links-bar ul li.register-btn a:hover {
  color: #A70E37;
  transition-timing-function: ease-out;
}
.links-bar ul li.contact-btn {
  position: relative;
  font-family: "BPreplayBold", sans-serif;
  font-weight: 300;
  background-color: #E33330;
  line-height: 1.2;
  margin: 0 0.5rem 0.125rem 0.8125rem;
  padding: 0.125rem 0.3125rem 0 0.3125rem;
  border-radius: 5px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.links-bar ul li.contact-btn:hover {
  background-color: #fff;
  transition-timing-function: ease-out;
}
.links-bar ul li.contact-btn a {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.links-bar ul li.contact-btn a:hover {
  color: #A70E37;
  transition-timing-function: ease-out;
}
.links-bar ul li.donate-btn {
  position: relative;
  font-family: "BPreplayBold", sans-serif;
  font-weight: 300;
  background-color: #0d5d32 !important;
  line-height: 1.2;
  margin: 0 0.5rem 0.125rem 0.3125rem;
  padding: 0.125rem 0.3125rem 0 0.3125rem;
  border-radius: 5px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.links-bar ul li.donate-btn:hover {
  background-color: #E33330 !important;
  transition-timing-function: ease-out;
}
.links-bar ul li.donate-btn a {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.links-bar ul li.donate-btn a:hover {
  color: #fff !important;
  transition-timing-function: ease-out;
}
.links-bar ul li.phone a {
  font-size: 1.2rem;
}

header[role=banner] {
  background-color: #fff;
}
header[role=banner].app-header {
  position: relative;
  z-index: 1100;
}

@media print, screen and (min-width: 40em) {
  .top-bar-custom {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.top-bar-custom {
  padding: 0.5rem 0 0 0;
}
@media screen and (min-width: 83.125em) {
  .top-bar-custom {
    padding-bottom: 0.57rem;
  }
}
.top-bar-custom .branding.top-bar-left-custom {
  float: none;
  padding-left: 0;
}
@media screen and (min-width: 31.125em) {
  .top-bar-custom .branding.top-bar-left-custom {
    float: left;
    padding-left: 0.5rem;
  }
}
.top-bar-custom .branding.top-bar-left-custom ul.menu li {
  margin-bottom: 0.85rem;
}
.top-bar-custom .title-bar {
  float: none;
  clear: both;
  display: inline-block;
  width: 100%;
  margin: 0 0 0 0;
  padding-right: 1rem;
  background-color: transparent;
  color: #A70E37;
}
@media screen and (min-width: 31.125em) {
  .top-bar-custom .title-bar {
    width: auto;
    float: right;
    clear: none;
    margin: 0.9rem 0 0 0;
  }
}
.top-bar-custom .title-bar .title-bar-title {
  display: block;
}
@media screen and (min-width: 31.125em) {
  .top-bar-custom .title-bar .title-bar-title {
    display: inline-block;
  }
}
.top-bar-custom .title-bar .title-bar-title a {
  width: auto;
  display: block;
  text-align: center;
  color: #A70E37;
  font-family: "BPreplayBold", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  border: 1px solid #A70E37;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}
.top-bar-custom .title-bar .title-bar-title a:hover {
  color: #E33330;
  border: 1px solid #E33330;
}
@media screen and (min-width: 31.125em) {
  .top-bar-custom .title-bar .title-bar-title a {
    width: auto;
    display: inline-block;
  }
}
.top-bar-custom .top-bar-right-custom {
  float: none;
  clear: both;
  padding-right: 0;
}
@media screen and (min-width: 83.125em) {
  .top-bar-custom .top-bar-right-custom {
    padding-right: 1rem;
    float: right;
    clear: none;
  }
}
.top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav {
  position: relative;
  z-index: 1000;
  margin: 0 0 0 0;
}
@media screen and (min-width: 31.125em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav {
    margin: 1.75rem 0 0 0;
  }
}
.top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav > li {
  margin-left: 0rem !important;
}
@media screen and (min-width: 83.125em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav > li {
    margin-left: 0.5rem !important;
  }
}
.top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  background-color: #ba103d;
  color: #fff;
  padding-left: 1.5rem;
}
@media screen and (min-width: 83.125em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    background-color: #E33330;
    padding-left: 0.75rem;
  }
}
@media screen and (max-width: 81.25em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    font-size: 1.125rem;
  }
}
.top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
  background-color: #A70E37;
}
@media screen and (min-width: 83.125em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
    background-color: #ce1f1c;
  }
}
.top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li a {
  font-family: "BPreplayBold", sans-serif !important;
  font-size: 1rem;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1rem !important;
}
@media screen and (max-width: 87.5em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li a {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 81.25em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li a {
    font-size: 1.25rem;
  }
}
.top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li a:hover {
  background-color: #A70E37;
}
@media screen and (min-width: 83.125em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li a:hover {
    background-color: transparent;
  }
}
.top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.donate-btn {
  display: block;
  padding: 0.5rem 0 0.5rem 0.5rem;
}
@media screen and (min-width: 83.125em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.donate-btn {
    padding: 0;
    display: inline-block;
  }
}
.top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.donate-btn a {
  display: inline-block;
  background-color: #0d5d32 !important;
  color: #fff !important;
  border-radius: 5px !important;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.donate-btn a:hover {
  color: #0d5d32 !important;
  background-color: #fff !important;
  transition-timing-function: ease-out;
}
@media screen and (min-width: 83.125em) {
  .top-bar-custom .top-bar-right-custom #mega-menu-wrap-main-nav ul#mega-menu-main-nav li.donate-btn a:hover {
    color: #fff !important;
    background-color: #E33330 !important;
  }
}

/*********************
PALMETTO GIVING DAY BANNER
*********************/
.palmetto-giving {
  /*	border-top: 5px solid #042E5C;*/
  border-bottom: 5px solid #91D451;
}
.palmetto-giving .pgd-brand {
  background-color: #FFF;
  padding: 0;
}
.palmetto-giving .pgd-brand img {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.palmetto-giving .pgd-info {
  padding: 1.875rem;
  text-align: center;
}
.palmetto-giving .pgd-info p.pgd-date {
  color: #29405a;
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.05rem;
  padding: 0 2.5rem;
}
.palmetto-giving .pgd-info p.pgd-date span {
  display: block;
  font-size: 3.125rem;
  font-weight: 700;
  color: #92d258;
}
.palmetto-giving .pgd-info p.pgd-desc {
  color: #29405a;
  font-size: 1.5rem;
  line-height: 1.3;
}
.palmetto-giving .pgd-info p.pgd-action {
  color: #fff;
  font-style: 2.5rem;
}
.palmetto-giving .pgd-info p.pgd-action a.btn {
  font-size: 1.25rem;
  background-color: #92d258;
  margin: 0.625rem 0.3125rem 0 0.3125rem;
}
.palmetto-giving .pgd-info p.pgd-action a.btn:hover {
  color: #92d258 !important;
  background-color: #FFF;
}
.palmetto-giving .pgd-video {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.palmetto-giving .pgd-video iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*********************
WELCOME LETTER HOMEPAGE BANNER
*********************/
.welcome-letter a {
  font-size: 1.25rem;
  padding: 0.75rem;
  display: block;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  background-color: #E33330;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  text-align: center;
}
.welcome-letter a:hover {
  color: #fff;
  background-color: #A70E37;
  text-decoration: underline;
}

/*********************
SAVE THE DATE HOMEPAGE BANNER
*********************/
.save-the-date {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-top: 5px solid #91D451;
  border-bottom: 5px solid #91D451;
}
.save-the-date p {
  width: 100%;
  background-color: #E33330;
  text-align: center;
  font-size: 2em;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 62.5em) {
  .save-the-date p {
    font-size: 1.4em;
  }
}
.save-the-date div img {
  display: block;
}
.save-the-date div.save-pgd img {
  margin-left: auto;
  margin-right: 1em;
}
@media screen and (max-width: 62.5em) {
  .save-the-date div.save-pgd img {
    margin-right: 0;
  }
}
/*********************
LINKS TO LITERACY HOMEPAGE BANNER
*********************/
.links-to-literacy-banner {
  background-color: #d4ebf9;
  border-bottom: 5px solid #689e4a;
}
.links-to-literacy-banner .ltl-brand img {
  display: block;
  margin: 0 auto;
  width: 85%;
}

.links-to-literacy-actions div.action {
  background-color: #689e4a;
}
.links-to-literacy-actions div.action:nth-child(1) {
  background: #77a85c;
}
.links-to-literacy-actions div.action:nth-child(2) {
  background: #86b16e;
}
.links-to-literacy-actions div.action:nth-child(3) {
  background: #95bb80;
}
.links-to-literacy-actions div.action a.link {
  display: block;
  color: #fff;
  text-align: center;
  margin: 2.75rem 3.25rem;
  font-size: 1.375rem;
  background-color: #bc2c49;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.links-to-literacy-actions div.action a.link:hover {
  color: #689e4a !important;
  /*				background-color: #689e4a;*/
  background-color: #fff;
}
.links-to-literacy-actions div.action a.link:active {
  transform: translateY(2px);
}
@media screen and (max-width: 62.5em) {
  .links-to-literacy-actions div.action a.link {
    margin: 1rem 1.5rem;
  }
}

/*********************
BOOKS AND BOOGIE HOMEPAGE BANNER
*********************/
.bnb-banner {
  background-color: #fff;
}
.bnb-banner .bnb-brand img {
  display: block;
  margin: 0 auto;
  width: 90%;
}

/*********************
FOREVER FREE BOOK BANNER
*********************/
.ff {
  background-color: #EEA940;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
}
.ff .ff-cover {
  padding: 2rem 0;
  text-align: center;
}
.ff .ff-cover img {
  display: inline-block;
  margin: 0 auto;
  max-width: 50%;
  height: auto;
  box-shadow: 0px 0px 8px 8px #c3862a;
}
@media screen and (max-width: 62.5em) {
  .ff .ff-cover img {
    max-width: 55%;
  }
}
.ff .ff-info {
  padding: 1.5rem 2rem 1.5rem 0;
}
@media screen and (max-width: 62.5em) {
  .ff .ff-info {
    padding: 1.5rem;
    text-align: center;
  }
}
.ff .ff-info h2 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 62.5em) {
  .ff .ff-info h2 {
    font-size: 1.625rem;
    line-height: 1.3;
  }
}
.ff .ff-info h2 em {
  font-weight: 800;
  text-transform: uppercase;
  font-style: normal;
}
.ff .ff-info .ff-action .btn {
  font-size: 1.375rem;
  margin: 1rem 0.75rem 0.5rem 0;
  background-color: #E33330;
}
.ff .ff-info .ff-action .btn:hover {
  background-color: #A70E37;
}
.ff .ff-info .ff-action .btn.ff-downloads {
  border: 1px solid #fff !important;
  background-color: transparent;
  margin-bottom: 1rem;
}
.ff .ff-info .ff-action .btn.ff-downloads:hover {
  background-color: #A70E37;
}
.ff .ff-info blockquote {
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  color: #E33330;
  border-left: 5px solid #E33330;
  padding: 0rem 1.25rem 0 1.1875rem;
}
@media screen and (max-width: 62.5em) {
  .ff .ff-info blockquote {
    border: none;
    padding: 0 1.25rem;
  }
}

.page-template-template-forever-free p.book-desc {
  font-size: 1.625rem !important;
  margin-bottom: 1.5rem;
}
.page-template-template-forever-free h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 4.375rem;
  line-height: 0.8;
}
.page-template-template-forever-free hr {
  border: none;
  border-top: 6px solid #A70E37;
  text-align: center;
  width: 10%;
}
.page-template-template-forever-free ul.book-extra-downloads {
  border-top: 1px solid #A70E37;
  margin-left: 0;
}
.page-template-template-forever-free ul.book-extra-downloads li {
  border-bottom: 1px solid #E33330;
  list-style: none !important;
  padding: 10px 0;
}
.page-template-template-forever-free ul.book-extra-downloads li a {
  display: block;
}
.page-template-template-forever-free ul.book-extra-downloads li a i {
  display: inline-block;
  float: right;
  position: relative;
  top: 4px;
  right: 10px;
}

/*********************
IGNITING A LOVE OF READING BANNER
*********************/
.igniting {
  background-color: #f1e3ba;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  color: #a53718;
}
.igniting .igniting-brand img {
  display: block;
  width: 100%;
  margin: 1.25rem auto;
}
.igniting .igniting-info {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 62.5em) {
  .igniting .igniting-info {
    text-align: center;
  }
}
.igniting .igniting-info h2 {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 1.25rem 0 0 0;
}
.igniting .igniting-info p {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.igniting .igniting-info p.igniting-date {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 800;
  padding: 0 1.25rem 0 0;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 62.5em) {
  .igniting .igniting-info p.igniting-date {
    line-height: 1.3;
  }
}
.igniting .igniting-info p.igniting-location {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}
.igniting .igniting-info p.igniting-thanks {
  font-size: 2.625rem;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 800;
  padding: 2.8125rem 1.25rem 0 1.25rem;
}
@media screen and (max-width: 62.5em) {
  .igniting .igniting-info p.igniting-thanks {
    line-height: 1.3;
    padding-top: 1.25rem;
  }
}
.igniting .igniting-info p.igniting-thanks span {
  display: block;
  font-size: 3.25rem;
  font-weight: 400;
  text-transform: none;
}
.igniting .igniting-info .igniting-levels {
  font-size: 1.25rem;
  line-height: 1.3;
}
.igniting .igniting-info p.igniting-action {
  color: #fff;
  font-style: 1.875rem;
}
@media screen and (max-width: 62.5em) {
  .igniting .igniting-info p.igniting-action {
    padding-bottom: 0.9375rem;
  }
}
.igniting .igniting-info p.igniting-action span.link-info {
  display: inline-block;
  color: #E33330;
  border: 1px solid #E33330;
  border-radius: 5px;
  padding: 0.25rem 0.625rem;
  margin-right: 0.625rem;
}
.igniting .igniting-info p.igniting-action a.btn {
  font-size: 1.375rem;
  background-color: #E33330;
  margin: 0.625rem 0.625rem 0 0;
}
.igniting .igniting-info p.igniting-action a.btn:hover {
  background-color: #A70E37;
}
.igniting .igniting-info p.igniting-action a.btn-sponsor {
  color: #fff !important;
  background-color: #096669;
}
.igniting .igniting-info p.igniting-action a.btn-sponsor:hover {
  color: #096669 !important;
  background-color: #fff;
}

/*********************
BOOKS AND BOOGIE (MANUAL FROM WHEN SASS WAS NOT WORKING)
*********************/
.boogie .boogie-info p.boogie-date {
  color: #376b94;
  font-size: 2.375rem;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 800;
  padding: 1.25rem 1.25rem 0;
}

@media screen and (max-width: 62.5em) {
  .igniting .igniting-info p.igniting-date {
    line-height: 1.3;
  }
}
.boogie .boogie-info p.boogie-date span {
  display: block;
  font-size: 2.1875rem;
  font-weight: 400;
  text-transform: none;
}

.igniting .igniting-info p.igniting-thanks {
  color: #b5372e;
  color: #fff;
  font-size: 2.625rem;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 800;
  padding: 2.8125rem 1.25rem 0;
}

@media screen and (max-width: 62.5em) {
  .boogie .boogie-info p.boogie-thanks {
    line-height: 1.3;
    padding-top: 1.25rem;
  }
}
.boogie .boogie-info p.boogie-thanks span {
  display: block;
  font-size: 3.25rem;
  font-weight: 400;
  text-transform: none;
}

.boogie .boogie-info .boogie-levels {
  font-size: 1.25rem;
  line-height: 1.3;
}

.boogie .boogie-info p.boogie-action {
  color: #fff;
  font-style: 1.875rem;
}

@media screen and (max-width: 62.5em) {
  .boogie .boogie-info {
    background: none;
  }
}
@media screen and (max-width: 62.5em) {
  .boogie .boogie-info p.boogie-action {
    padding-bottom: 0.9375rem;
  }
}
.boogie .boogie-info p.boogie-action a.btn {
  font-size: 1.375rem;
  background-color: #376b94;
  margin: 0.4rem 0.3125rem 0;
}

.boogie .boogie-info p.boogie-action a.btn:hover {
  color: #fff !important;
  background-color: #ce5923;
}

.bnb div.purchase-link {
  text-align: center;
  margin: 2rem 0 3rem 0;
}
.bnb div.purchase-link a.btn {
  text-align: center;
  font-size: 1.375rem;
  background-color: #003886;
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
.bnb div.purchase-link a.btn:hover {
  color: #004e98 !important;
  background-color: #00e2ec;
}

.fundraiser-header img {
  display: block;
  margin: 0 auto;
}

main.fundraiser {
  text-align: left;
  color: #376b94;
}
main.fundraiser p {
  font-size: 1.4rem !important;
  line-height: 1.7;
}
main.fundraiser #sponsorship-interest {
  text-align: center;
  background-color: #19b4d3;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  border-radius: 5px;
  padding: 1rem;
  margin: 2rem 0;
  color: #fff;
}
main.fundraiser #sponsorship-interest p {
  font-size: 1.75rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0;
}
main.fundraiser #sponsorship-interest p a.btn {
  font-size: 1.25rem;
  margin-left: 0.5rem;
  background-color: #003886;
}
main.fundraiser #sponsorship-interest p a.btn:hover {
  color: #003886 !important;
  background-color: #00e2ec;
}
main.fundraiser hr {
  border: none;
  border-top: 1px solid #19b4d3;
}
main.fundraiser h2 {
  font-size: 2.5rem;
  text-align: center;
  margin: 3rem 0 2rem 0;
}
main.fundraiser p.tickets-closed {
  font-size: 1.5rem !important;
  font-weight: 800;
  text-align: center;
  padding: 1rem;
  background-color: #FFF891;
  border-radius: 5px;
}

#bnb-sponsorships {
  color: #fff;
  background-color: #19b4d3;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
}
@media screen and (max-width: 31.25em) {
  #bnb-sponsorships {
    text-align: center;
  }
}
#bnb-sponsorships .sponsorship-heading {
  background-color: #376b94;
  text-align: center;
}
#bnb-sponsorships .sponsorship-heading h2 {
  font-size: 2.5rem;
  line-height: 2.75rem;
  text-align: center;
  margin: 0 auto;
  padding: 1.25rem 0 1.25rem 0;
  background-color: #376b94;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
}
#bnb-sponsorships .sponsorship-levels {
  text-align: center;
}
#bnb-sponsorships .sponsorship-levels .row div {
  padding: 1.5rem;
}
#bnb-sponsorships .sponsorship-levels .row div h3 {
  font-size: 1.9rem;
  padding-bottom: 0.75rem;
}
#bnb-sponsorships .sponsorship-levels .row div h3 a {
  color: #fff;
  text-decoration: underline;
}
#bnb-sponsorships .sponsorship-levels .row div h3 a:hover {
  color: #376b94;
}
#bnb-sponsorships .sponsorship-levels .row div p {
  font-size: 1.3rem;
  line-height: 1.2;
}
#bnb-sponsorships .sponsorship-levels .row div p em {
  font-weight: 600;
}
#bnb-sponsorships a.btn.view-sponsors {
  font-size: 1.375rem;
  color: #fff;
  border: 1px solid #fff !important;
  border-radius: 5px;
  padding: 0.375rem 1.75rem !important;
  background-color: transparent;
  margin: 0 1rem;
}
#bnb-sponsorships a.btn.view-sponsors:hover {
  background-color: #00e2ec;
}

.sponsor-list {
  text-align: center;
}
.sponsor-list h3 {
  text-align: center;
  text-decoration: underline;
  font-weight: 800;
}
.sponsor-list ul.sponsors {
  margin: 0;
}
.sponsor-list ul.sponsors li {
  list-style: none !important;
  list-style-type: none !important;
  font-size: 1.5rem;
  text-align: center;
}
.sponsor-list ul.sponsors li a {
  display: block;
  margin: 2rem 0 1.25rem 0;
}

body.page-template-template-bnb-sponsors #bnb-sponsorships .sponsorship-heading {
  border-top: 5px solid #19b4d3;
}

/*********************
LINKS TO LITERACY PAGE
*********************/
div.links-to-literacy .fundraiser-header {
  border-top: none;
  background-color: #d4ebf9;
  border-bottom: 5px solid #689e4a;
}
div.links-to-literacy .fundraiser-header img {
  display: block;
  margin: 0 auto;
  padding: 2rem;
  width: 50%;
}
div.links-to-literacy .fundraiser {
  text-align: center;
  color: #3f602d;
}
div.links-to-literacy .fundraiser h2 {
  /*			text-align: center;*/
}
div.links-to-literacy .fundraiser hr {
  border: none;
  border-top: 1px solid #d4ebf9;
}
div.links-to-literacy .fundraiser .fundraiser-intro {
  /*			text-align: center;*/
}
div.links-to-literacy .fundraiser .fundraiser-intro .times {
  font-size: 2rem !important;
  font-weight: 600;
}
div.links-to-literacy .fundraiser #sponsorship-interest {
  background-color: #689e4a;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  border-radius: 5px;
  padding: 1rem;
  margin: 2rem 0;
  color: #fff;
}
div.links-to-literacy .fundraiser #sponsorship-interest p {
  font-size: 1.75rem;
  margin-bottom: 0;
  padding: 0;
}
div.links-to-literacy .fundraiser #sponsorship-interest p a.btn {
  font-size: 1.25rem;
  margin-left: 0.5rem;
}
div.links-to-literacy .fundraiser #super5050 {
  background-color: #d4ebf9;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  border-radius: 5px;
  padding: 1rem;
  margin: 2rem 0;
  color: #0d5d32;
}
div.links-to-literacy .fundraiser #super5050 p {
  font-size: 1.75rem;
  margin-bottom: 0;
  padding: 0;
}
div.links-to-literacy .fundraiser #super5050 p strong {
  font-weight: 800;
}
div.links-to-literacy .fundraiser #super5050 p a.btn {
  font-size: 1.25rem;
  margin-left: 0.5rem;
}
div.links-to-literacy .fundraiser .fundraiser-fee {
  background-color: rgba(255, 255, 0, 0.3);
  border-radius: 5px;
  padding: 2rem 2rem 1.25rem 2rem;
  margin: 2rem 0;
}
div.links-to-literacy .fundraiser .fundraiser-fee h3 {
  font-size: 1.75rem;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
div.links-to-literacy .fundraiser .fundraiser-fee h3 span {
  text-decoration: underline;
}
div.links-to-literacy .fundraiser .fundraiser-fee p.fee {
  font-size: 2.75rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 2.75rem;
  margin-bottom: 0.5rem;
}
div.links-to-literacy .fundraiser .fundraiser-fee p {
  margin-bottom: 0;
}
div.links-to-literacy .fundraiser .fundraiser-fee p em {
  font-size: 1.75rem;
  font-style: normal;
}
div.links-to-literacy .fundraiser .visual-form-builder-container {
  text-align: center;
  margin: 0 auto;
  width: 72%;
}
@media screen and (max-width: 48.75em) {
  div.links-to-literacy .fundraiser .visual-form-builder-container {
    width: 100%;
  }
}
div.links-to-literacy .fundraiser .visual-form-builder-container form.visual-form-builder fieldset {
  border: none;
  margin-bottom: 0;
  padding: 0;
}
div.links-to-literacy .fundraiser .visual-form-builder-container form.visual-form-builder fieldset ul {
  text-align: left;
}
div.links-to-literacy .fundraiser .visual-form-builder-container form.visual-form-builder fieldset ul li label {
  font-size: 1.25rem;
  color: #3f602d;
}
div.links-to-literacy .fundraiser .visual-form-builder-container form.visual-form-builder fieldset ul li input {
  border: 1px solid #3f602d;
}
div.links-to-literacy .fundraiser .visual-form-builder-container form.visual-form-builder fieldset ul li.vfb-item-submit input {
  display: block;
  text-align: center;
  margin: 0 auto 1.2rem auto;
  font-size: 1.375rem;
  background-color: #bc2c49;
  padding-top: 0.7rem !important;
  padding-right: 2rem !important;
  padding-left: 2rem !important;
  padding-bottom: 0.7rem !important;
}
div.links-to-literacy .fundraiser .visual-form-builder-container form.visual-form-builder fieldset ul li.vfb-item-submit input:hover {
  color: #fff !important;
  background-color: #689e4a;
}
div.links-to-literacy .payment-info {
  text-align: center;
}
div.links-to-literacy .payment-info p#form_success {
  color: #A70E37;
  font-size: 1.5rem;
  font-weight: 600;
}
div.links-to-literacy .payment-info .purchase-link {
  text-align: center;
  margin: 1.25rem 0 2rem 0;
}
div.links-to-literacy .payment-info .purchase-link a.btn {
  text-align: center;
  font-size: 1.375rem;
  background-color: #bc2c49;
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
div.links-to-literacy .payment-info .purchase-link a.btn:hover {
  color: #fff !important;
  background-color: #689e4a;
}
div.links-to-literacy .payment-info .mailing-address {
  line-height: 2rem;
}
div.links-to-literacy .payment-info .mailing-address strong {
  font-size: 1.5rem;
}
div.links-to-literacy #ltl-sponsorships {
  color: #fff;
  background-color: #689e4a;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
}
@media screen and (max-width: 31.25em) {
  div.links-to-literacy #ltl-sponsorships {
    text-align: center;
  }
}
div.links-to-literacy #ltl-sponsorships .sponsorship-heading {
  background-color: #3f602d;
  text-align: center;
}
div.links-to-literacy #ltl-sponsorships .sponsorship-heading h2 {
  font-size: 2.5rem;
  line-height: 2.75rem;
  text-align: center;
  margin: 0 auto;
  padding: 1.25rem 0 1.25rem 0;
  background-color: #3f602d;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
}
div.links-to-literacy #ltl-sponsorships .sponsorship-levels {
  padding: 0 2rem 1.25rem;
  margin: 0;
}
div.links-to-literacy #ltl-sponsorships .sponsorship-levels p {
  font-size: 1.3rem;
  margin-bottom: 0;
}
div.links-to-literacy #ltl-sponsorships .sponsorship-levels p.sponsorship-level-intro {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}
div.links-to-literacy #ltl-sponsorships .sponsorship-levels .visual-form-builder-container {
  width: 60%;
}
@media screen and (max-width: 48.75em) {
  div.links-to-literacy #ltl-sponsorships .sponsorship-levels .visual-form-builder-container {
    width: 100%;
  }
}
div.links-to-literacy #ltl-sponsorships .sponsorship-levels .visual-form-builder-container form.visual-form-builder h3 {
  margin: 0 auto;
  color: #fff;
}
div.links-to-literacy #ltl-sponsorships .sponsorship-levels .visual-form-builder-container form.visual-form-builder label {
  color: #fff;
}
div.links-to-literacy #ltl-sponsorships .sponsorship-levels .visual-form-builder-container form.visual-form-builder select {
  color: #3f602d;
  border: 1px solid #3f602d;
}
div.links-to-literacy #ltl-sponsorships .sponsorship-levels .visual-form-builder-container form.visual-form-builder .vfb-item-submit input:hover {
  background-color: #fff;
  color: #bc2c49 !important;
}
div.links-to-literacy #ltl-sponsorships p#form_success {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
}
div.links-to-literacy #ltl-sponsorships .purchase-link a.btn {
  background-color: #bc2c49;
}
div.links-to-literacy #ltl-sponsorships .purchase-link a.btn:hover {
  background-color: #fff;
  color: #bc2c49 !important;
}
div.links-to-literacy .sponsor-list h3 {
  text-decoration: underline;
  font-weight: 800;
}
div.links-to-literacy .sponsor-list ul.sponsors {
  margin: 0;
}
div.links-to-literacy .sponsor-list ul.sponsors li {
  list-style: none !important;
  list-style-type: none !important;
  font-size: 1.5rem;
}
div.links-to-literacy .sponsor-list ul.sponsors li a {
  display: block;
  margin: 2rem 0 1.25rem 0;
}

/*********************
ANNIVERSARY COUNTDOWN
*********************/
section.countdown {
  text-align: center;
  background-image: url(/wp-content/themes/freedomreaders-2019/assets/images/fr-confetti.png), url(/wp-content/themes/freedomreaders-2019/assets/images/fr-confetti-2.png);
  background-position: center left, center left;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #EEA940;
  padding: 1.25rem;
}
section.countdown h3 {
  width: 100%;
  font-size: 2rem !important;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  text-shadow: 1px 1px 1px #A70E37;
  margin-bottom: 1.5625rem;
}
section.countdown #clockdiv {
  width: 100%;
  margin: 0 auto;
  font-family: "Romy-Regular", sans-serif;
  color: #fff;
  text-align: center;
  font-size: 6.25rem;
  line-height: 0.8;
  text-shadow: 1px 1px 1px #A70E37;
}
@media screen and (max-width: 31.25em) {
  section.countdown #clockdiv {
    font-size: 5rem;
  }
}
section.countdown .smalltext {
  margin: -10px auto 0 auto;
}
section.countdown .smalltext span {
  margin: 0 18px;
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 1px #A70E37;
}
@media screen and (max-width: 31.25em) {
  section.countdown .smalltext span {
    font-size: 1rem;
  }
}
section.countdown .article-link {
  width: 100%;
  margin: 0.9375rem auto 0 auto;
}
section.countdown .article-link p {
  margin: 0;
}
section.countdown .article-link p a {
  font-size: 1.75rem;
  color: #fff;
  text-shadow: 1px 1px 1px #A70E37;
}
section.countdown .article-link p a:hover {
  text-decoration: underline;
}
section.countdown .article-link p a span {
  text-decoration: underline;
}

/*********************
HOMEPAGE HERO SECTION
*********************/
.homepage-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.29), rgba(0, 0, 0, 0.29)), url(/wp-content/themes/freedomreaders-2019/assets/images/homeSlideLarger.jpg);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
}
@media screen and (min-width: 62.5em) {
  .homepage-hero {
    background-position: center center;
  }
}
.homepage-hero .caption {
  width: 80%;
  margin: auto;
  padding: 5rem 0 3.75rem 0;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 84.375em) {
  .homepage-hero .caption {
    width: 60%;
    padding: 8.75rem 0 6.25rem 0;
  }
}
.homepage-hero .caption p {
  font-family: "Romy-Regular", sans-serif;
  font-size: 5rem;
  line-height: 0.8;
  color: #fff;
}
@media screen and (min-width: 84.375em) {
  .homepage-hero .caption p {
    font-size: 6.25rem;
  }
}
.homepage-hero .caption .btn-wrap {
  margin-bottom: 2.25rem;
}
.homepage-hero .caption .btn-wrap .btn {
  display: block;
  margin: 0.625rem auto;
  width: 100%;
}
@media screen and (min-width: 43.75em) {
  .homepage-hero .caption .btn-wrap .btn {
    display: inline-block;
    margin: 0 0.1rem;
    width: auto;
  }
}
.homepage-hero .caption .btn-wrap .btn.vol {
  background-color: #E33330;
}
.homepage-hero .caption .btn-wrap .btn.vol:hover {
  background-color: #fff;
  color: #E33330 !important;
}
.homepage-hero .caption .btn-wrap .btn.reg {
  background-color: #EEA940;
  color: #fff;
}
.homepage-hero .caption .btn-wrap .btn.reg:hover {
  background-color: #fefefe;
  color: #A70E37 !important;
}
.homepage-hero .caption blockquote {
  margin: 0;
  padding: 0;
  border-left: none;
  font-family: "Nunito", sans-serif, sans-serif;
  font-size: 2.15rem;
  color: #fff;
}
.homepage-hero .caption blockquote cite {
  font-size: 1.25rem;
  color: #fff;
}

/*********************
HOMEPAGE SLIDERS
*********************/
.slider-wrap {
  width: 100%;
  height: 530px;
  border-top: 10px red solid;
}

.n2-section-smartslider h2 {
  font-family: "BPreplayRegular", sans-serif !important;
}
.n2-section-smartslider .n2-ss-button-container a {
  font-family: "BPreplayBold", sans-serif !important;
  background-color: #0d5d32 !important;
  font-size: 1.0625rem !important;
  letter-spacing: 1px !important;
  transition-property: background-color !important;
  transition-duration: 0.2s !important;
  transition-timing-function: ease-in !important;
}
.n2-section-smartslider .n2-ss-button-container a:hover {
  background-color: #E33330 !important;
  transition-timing-function: ease-out !important;
}

/*********************
HOMEPAGE VIDEO AND SLIDERS (COPIED FROM CODE PEN. NEED TO CUSTOMIZE FOR SITE STYLES.)
*********************/
*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.main-slider .slick-slide, .main-slider .slick-slide::before, .main-slider .caption {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-slider .slick-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-slider .main-slider {
  position: relative;
  width: 100%;
  height: 40vw;
  min-height: 8vw;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
}
.main-slider .main-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.main-slider .slick-slide {
  position: relative;
  height: 40vw;
}
.main-slider .slick-slide::before {
  background-color: #000;
  opacity: 0.3;
  z-index: 1;
}
.main-slider .slick-slide video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.main-slider .slick-slide iframe {
  position: relative;
  pointer-events: none;
}
.main-slider .slick-slide figure {
  position: relative;
  height: 100%;
}
.main-slider .slick-slide .slide-image {
  opacity: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.8s ease;
}
.main-slider .slick-slide .slide-image.show {
  opacity: 1;
}
.main-slider .slick-slide .image-entity {
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.main-slider .slick-slide .loading {
  position: absolute;
  top: 44%;
  left: 0;
  width: 100%;
}
.main-slider .slick-slide .slide-media {
  -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
  animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.main-slider .slick-slide.slick-active {
  z-index: 1;
}
.main-slider .slick-slide.slick-active .slide-media {
  -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
  animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.main-slider .slick-slide.slick-active .caption {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}
.main-slider .caption {
  position: absolute;
  top: 23%;
  left: 0;
  right: 0;
  width: 60%;
  margin: auto;
  text-align: center;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}
.main-slider .caption p {
  font-family: "Romy-Regular", sans-serif;
  font-size: 100px;
  line-height: 0.8;
  color: #fff;
}
.main-slider .caption .btn-wrap {
  margin-bottom: 2.25rem;
}
.main-slider .caption .btn-wrap .btn {
  display: inline-block;
  margin: 0 0.1rem;
}
.main-slider .caption .btn-wrap .btn.vol {
  background-color: #E33330;
}
.main-slider .caption .btn-wrap .btn.vol:hover {
  background-color: #fff;
  color: #E33330;
}
.main-slider .caption .btn-wrap .btn.reg {
  background-color: #EEA940;
  color: #fff;
}
.main-slider .caption .btn-wrap .btn.reg:hover {
  background-color: #fefefe;
  color: #A70E37;
}
.main-slider .caption blockquote {
  margin: 0;
  padding: 0;
  border-left: none;
  font-family: "Nunito", sans-serif, sans-serif;
  font-size: 2.15rem;
  color: #fff;
}
.main-slider .caption blockquote cite {
  font-size: 1.25rem;
  color: #fff;
}
.main-slider .slick-dots {
  text-align: center;
  padding-top: 15px;
}
.main-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.main-slider .slick-dots li button {
  width: 16px;
  height: 16px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 transparent;
  vertical-align: middle;
  color: #fff;
  background-color: #fff;
  transition: all 0.3s ease;
  opacity: 0.4;
}
.main-slider .slick-dots li button:focus {
  outline: none;
}
.main-slider .slick-dots li button:hover {
  opacity: 1;
}
.main-slider .slick-dots li.slick-active button {
  border-color: #2d3042;
  box-shadow: 0 0 0 2px #fff;
  opacity: 1;
}
.main-slider .container {
  background-color: #f2f2f2;
  color: #444;
  line-height: 1.6;
  padding: 40px 0;
}
.main-slider .container .content {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}
.main-slider .container p {
  margin-bottom: 40px;
}
@-webkit-keyframes slideIn {
  from {
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes slideIn {
  from {
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes slideOut {
  from {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  to {
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
}
@keyframes slideOut {
  from {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  to {
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
}

/*********************
$100 SPONSOR BANNER
*********************/
.sponsor {
  padding: 2.5rem 1.25rem 3.25rem 1.25rem !important;
  text-align: center;
}
.sponsor h3 {
  font-size: 2.25rem;
  color: #A70E37;
}
.sponsor .btn {
  margin-top: 0.5rem;
}

/*********************
MISSION
*********************/
.mission {
  padding: 3.25rem 1.25rem 3.25rem 1.25rem !important;
  text-align: center;
  color: #A70E37;
}
.mission .mission-statement h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 4.375rem;
  line-height: 0.8;
}
.mission .mission-statement p {
  width: 75%;
  font-size: 1.75rem;
  line-height: 1.4;
  margin: 0 auto;
}
@media screen and (max-width: 43.75em) {
  .mission .mission-statement p {
    width: 90%;
  }
}
.mission .mission-statement p.stat {
  font-size: 1.375rem;
  line-height: 1.6;
}
.mission .mission-statement p.stat span {
  display: block;
  font-size: 1rem;
}
.mission .mission-statement hr {
  border: none;
  border-top: 6px solid #A70E37;
  text-align: center;
  width: 10%;
}

/*********************
THE READING LAB (HOMEPAGE & INTERNAL)
*********************/
.trl {
  background-color: #EEA940;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  text-align: center;
}
.trl .trl-info {
  padding: 2.25rem 12rem 2.25rem 12rem !important;
}
@media screen and (max-width: 63.99875em) {
  .trl .trl-info {
    padding: 2rem 4rem 2rem 4rem !important;
  }
}
.trl .trl-info h2, .trl .trl-info h3 {
  margin: 0 auto 1.8rem auto;
}
@media print, screen and (min-width: 64em) {
  .trl .trl-info h2, .trl .trl-info h3 {
    width: 34%;
  }
}
@media screen and (max-width: 63.99875em) {
  .trl .trl-info h2, .trl .trl-info h3 {
    width: 80%;
  }
}
.trl .trl-info p {
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 2rem;
}
@media screen and (max-width: 63.99875em) {
  .trl .trl-info p {
    font-size: 1.25rem;
  }
}
.trl .trl-info p a {
  color: #fff;
}
.trl .trl-info p a:hover {
  color: #EEA940;
}
.trl .trl-info .btn {
  margin: 0 0.25rem;
}
.trl .trl-info .btn-trl {
  background-color: #E33330;
}
.trl .trl-info .btn-trl:hover {
  background-color: #fff;
  color: #E33330 !important;
}
.trl .trl-info .btn-serve {
  background-color: #A70E37;
}
.trl .trl-info .btn-serve:hover {
  background-color: #fff;
  color: #A70E37 !important;
}

.page-template-template-trl .trl-start {
  padding: 0.25rem 12rem 0.25rem 12rem !important;
  background-color: #A70E37;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  color: #fff;
}
@media screen and (max-width: 63.99875em) {
  .page-template-template-trl .trl-start {
    padding: 1rem 1rem 1rem 1rem !important;
  }
}
.page-template-template-trl .trl-start h3 {
  font-size: 1.875rem;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  font-family: Rubik, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.page-template-template-trl .trl-start ul {
  margin: 0 0 2rem 0;
}
.page-template-template-trl .trl-start ul li {
  list-style-type: none;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 1.25rem 0;
}

.inner-content .trl-content section h3 {
  line-height: 1.3;
  text-align: center;
}
.inner-content .trl-content section h3 span {
  font-family: Rubik, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.inner-content .trl-content section h4 {
  font-family: Romy-Regular, Nunito, sans-serif;
  font-size: 3.75rem;
  text-align: center;
}
.inner-content .trl-content section ul li {
  font-size: 1.25rem;
}
.inner-content .trl-content section ul.trl-first-questions li {
  list-style-type: none;
  text-align: center;
  font-size: 1.5rem;
}
.inner-content .trl-content section ul.trl-first-steps li {
  list-style-type: none !important;
  line-height: 1.5;
  margin: 1.1rem 0;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #ddd;
}
.inner-content .trl-content section ul.trl-first-steps li:last-child {
  border: none;
}
.inner-content .trl-content section ul.trl-first-steps li span {
  font-family: Rubik, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.inner-content .trl-content section ul.trl-first-steps li a {
  text-decoration: underline;
  font-weight: bold;
}
.inner-content .trl-content section ul.trl-first-steps li ul {
  margin: 1rem 0 0 5.25rem;
}
.inner-content .trl-content section ul.trl-first-steps li ul li {
  list-style-type: square !important;
  line-height: 1.2;
  margin: 0.6rem 0 0 0;
  padding: 0;
  border: none;
  font-size: 1.125rem;
  color: #E33330;
}
.inner-content .trl-content section ul.trl-tutors li {
  line-height: 1.3;
  margin: 1.1rem 0;
}
.inner-content .trl-content section.look-inside-appt {
  padding: 1.5rem 2.5rem 1.5rem 2.5rem !important;
  background-color: #E33330;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  color: #fff;
  border-radius: 10px;
  margin: 2rem 0;
}
@media screen and (max-width: 63.99875em) {
  .inner-content .trl-content section.look-inside-appt {
    padding: 2.25rem 5rem 2.25rem 5rem !important;
  }
}
.inner-content .trl-content section.look-inside-appt ul li {
  line-height: 1.5;
  margin: 1.1rem 0;
}
.inner-content .trl-content section.look-inside-appt ul li em {
  font-weight: bold;
}
.inner-content .trl-content section.look-inside-appt ul li a {
  color: #fff;
  text-decoration: underline;
}
.inner-content .trl-content section.look-inside-appt ul li a:hover {
  color: #A70E37;
}
.inner-content .trl-content section.trl-get-started {
  text-align: center;
}

/*********************
SESSION COVID NOTICE
*********************/
.notice {
  background-color: #A70E37;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  padding: 0 3rem;
  display: none;
}
.notice .notice-info {
  padding: 2.25rem 12rem 2.25rem 12rem !important;
}
@media screen and (max-width: 63.99875em) {
  .notice .notice-info {
    padding: 2rem 4rem 2rem 4rem !important;
  }
}
.notice .notice-info h3 {
  text-align: center;
  font-family: "Romy-Regular", sans-serif;
  font-size: 3.75rem;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: 3px;
  margin-bottom: 0;
  color: #fff;
}
.notice .notice-info hr {
  border: none;
  border-top: 6px solid #fff;
  text-align: center;
  width: 10%;
}
.notice .notice-info p {
  color: #fff;
  font-size: 1.375rem;
}
.notice .notice-info p strong {
  font-weight: 800;
}
.notice .notice-info p a {
  font-family: Rubik, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
}
.notice .notice-info p a:hover {
  color: #EEA940;
}

/*********************
LOCATION MAP
*********************/
.locations {
  padding: 0 3rem;
  background-color: #A70E37;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  text-align: center;
  border-top: 15px solid #EEA940;
}
.locations .locations-info h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 4.375rem;
  line-height: 0.8;
  color: #fff;
  margin-top: 0.75rem;
}
.locations .locations-info p {
  color: #fff;
  font-size: 1.5625rem;
}
.locations .locations-info p.session-length {
  color: #fff;
  font-size: 1.5625rem;
}
.locations .locations-info div.acf-map {
  width: 100%;
  height: 700px;
  border: 20px solid #8f0c2f;
}
.locations .locations-info .locations-date {
  padding: 1.5rem 3rem 1.25rem 3rem;
  margin-bottom: 1.5rem;
  margin-top: -15px;
  display: inline-block;
  border-top: 15px solid #E33330;
  background-color: #8f0c2f;
}
.locations .locations-info .locations-date h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 3.75rem;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: 3px;
  margin-bottom: 0;
}
.locations .locations-info .locations-date p {
  font-family: "Nunito", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 800;
}
.locations .locations-info .locations-date p em {
  text-transform: none;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}
.locations .locations-info .locations-alert {
  text-transform: none;
  font-weight: 600;
  line-height: 1.2;
  margin: 0.75rem 0 0.5rem 0;
  padding: 1rem 4rem;
  background-color: #E13537;
  color: #A51339;
  color: #fff;
}
.locations .locations-info .locations-alert p {
  text-transform: none;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}
.locations .locations-info .locations-alert p a {
  color: #fff;
}
.locations .locations-info .locations-alert p a:hover {
  color: #A70E37;
}
.locations .locations-info .locations-alert ul {
  margin: 0;
}
.locations .locations-info .locations-alert ul li {
  display: inline-block;
}
.locations .locations-info .locations-alert ul li a {
  color: #fff;
  display: inline-block;
  margin: 1rem 0.125rem 0.75rem 0.125rem;
  font-size: 1rem;
}
.locations .locations-info .locations-alert ul li a:hover {
  background-color: #A70E37;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.locations .locations-info .locations-alert ul li a.btn-outline {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
}
.locations .locations-info .locations-alert ul li a i {
  margin-left: 0.5rem;
}
.locations .locations-info .btn {
  display: inline-block;
  margin: 2rem 0;
}

/*********************
VOLUNTEER
*********************/
.volunteer {
  padding: 2rem 0 0 0 !important;
  text-align: center;
}
.volunteer div.volunteer-info {
  padding: 1rem 12rem 1.25rem 12rem !important;
}
@media screen and (max-width: 63.99875em) {
  .volunteer div.volunteer-info {
    padding: 0 1rem !important;
  }
}
.volunteer div.volunteer-info h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 5rem;
  line-height: 0.8;
  color: #A70E37;
}
.volunteer div.volunteer-info p {
  font-size: 1.5625rem;
  line-height: 1.4;
}
@media screen and (max-width: 63.99875em) {
  .volunteer div.volunteer-info p {
    font-size: 1.375rem;
  }
}
.volunteer .volunteer-img {
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/tutor-student.jpg");
  background-repeat: no-repeat;
  background-size: 500px, cover;
  background-position: right center;
}
.volunteer .volunteer-img-lg {
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/volunteer-homepage.png");
  background-repeat: no-repeat;
  background-size: 500px, cover;
  background-position: right center;
}
.volunteer .volunteer-photos {
  padding: 20px 0;
}
@media screen and (max-width: 39.99875em) {
  .volunteer .volunteer-photos {
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 39.99875em) {
  .volunteer .volunteer-photos .photo-strip {
    display: none;
  }
}
.volunteer .volunteer-photos .single-photo {
  display: none;
}
@media screen and (max-width: 39.99875em) {
  .volunteer .volunteer-photos .single-photo {
    display: block;
  }
}
.volunteer .volunteer-photos img {
  margin: 0;
  padding: 0;
}

/*********************
INSTAGRAM
*********************/
.instagram .instagram-info {
  background-color: #A70E37;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  text-align: center;
}
.instagram .instagram-info h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 4.375rem;
  line-height: 0.8;
  color: #fff;
}
.instagram .instagram-info p {
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 0;
}
.instagram .instagram-info p a {
  color: #fff;
}
.instagram .instagram-info p a:hover {
  color: #EEA940;
}
.instagram .sbi_btn_text, .instagram .sbi_follow_btn {
  font-family: "BPreplayBold", sans-serif;
  font-size: 1rem !important;
  text-transform: uppercase;
}
.instagram .sbi_follow_btn a {
  font-size: 1rem !important;
}

#sbi_images {
  padding: 2px !important;
}

/*********************
VIDEO
*********************/
.videos {
  background-color: #EEA940;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  text-align: center;
}
.videos .video-wrap {
  padding: 3.25rem 3rem 3.25rem 3rem !important;
}
@media screen and (max-width: 43.75em) {
  .videos .video-wrap {
    padding: 1rem 1rem 1rem 1rem !important;
  }
}
.videos .video-wrap h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 4.375rem;
  line-height: 0.8;
  color: #fff;
  color: #A70E37;
  margin-bottom: 1rem;
}
.videos .video-wrap p {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #fff;
}
.videos .video-wrap a {
  display: inline-block;
  margin: 1rem 0 0.5rem 0;
}
.videos .n2-section-smartslider {
  border: 20px solid #ec9e29 !important;
}
.videos .nextend-thumbnail-default {
  background-color: #fff !important;
}

/******************************************
WRAPPER FOR EVENTS, BLOG & SITE SPOTLIGHT
******************************************/
.general-info section {
  display: inline-flex;
  flex-direction: column;
}
.general-info section h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 5rem;
  line-height: 0.8;
  color: #A70E37;
  margin-bottom: 1.5rem;
}
.general-info section p {
  font-size: 1.25rem;
  line-height: 1.5;
}
.general-info section .btn {
  display: inline-block !important;
  margin-top: auto;
  flex-shrink: 1;
  align-self: flex-start;
}

/*********************
EVENTS
*********************/
.events {
  background-color: #E33330;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
}
.events h3.events-header {
  color: #fff;
}

ul.events-list {
  margin-left: 0;
}
ul.events-list li {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  width: 100%;
  min-height: 80px;
}
ul.events-list li .event-date {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  background-color: #A70E37;
  text-align: center;
  line-height: 1.2;
  border-radius: 5px;
}
ul.events-list li .event-date time.month {
  display: inline-block;
  padding: 7px 10px 4px 10px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #E33330;
  background-color: #fff;
}
ul.events-list li .event-date time.day {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 1.625rem;
  color: #fff;
  padding: 5px;
}
ul.events-list li h4 {
  display: inline-block !important;
  margin: 0 0 0 4.6875rem;
}
ul.events-list li h4 a {
  color: #fff;
}
ul.events-list li h4 a:hover {
  text-decoration: underline;
}

/*********************
BLOG
*********************/
section.blog .post-date {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  color: #EEA940;
}

/*********************
IMPACT STORIES
*********************/
/*********************
BOOKSHELF
*********************/
.bookshelf-info {
  background-color: #A70E37;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  text-align: center;
}
.bookshelf-info h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 4.375rem;
  line-height: 0.8;
  color: #fff;
}
.bookshelf-info p {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #fff;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 63.99875em) {
  .bookshelf-info p {
    width: 100%;
    font-size: 1.375rem;
  }
}
.bookshelf-info .btn {
  margin: 1rem 0 0.5rem 0;
}

.bookshelf-list {
  padding: 0 1.75rem !important;
}
.bookshelf-list div.column, .bookshelf-list div.columns {
  padding: 1.75rem !important;
}
.bookshelf-list div.column div.outer-wrap, .bookshelf-list div.columns div.outer-wrap {
  max-width: 100% !important;
}
.bookshelf-list div.column div.outer-wrap div.img-wrap, .bookshelf-list div.columns div.outer-wrap div.img-wrap {
  align-self: flex-end !important;
}
.bookshelf-list div.column div.outer-wrap div.img-wrap a, .bookshelf-list div.columns div.outer-wrap div.img-wrap a {
  position: relative;
}
.bookshelf-list div.column div.outer-wrap div.img-wrap a .buy, .bookshelf-list div.columns div.outer-wrap div.img-wrap a .buy {
  position: absolute;
  bottom: 7px;
  left: 10px;
  z-index: 2;
}
.bookshelf-list div.column div.outer-wrap div.img-wrap a img, .bookshelf-list div.columns div.outer-wrap div.img-wrap a img {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: bottom;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  border: 4px solid #fff;
}
.bookshelf-list div.column div.outer-wrap div.img-wrap a:hover .buy, .bookshelf-list div.columns div.outer-wrap div.img-wrap a:hover .buy {
  display: inline-block;
}
.bookshelf-list div.column div.outer-wrap div.img-wrap a:hover img, .bookshelf-list div.columns div.outer-wrap div.img-wrap a:hover img {
  transform: scale(1.05);
}
.bookshelf-list .slick-track {
  display: flex;
}
.bookshelf-list .slick-track .slick-slide {
  align-self: flex-end;
}

.bookshelf-list.slick-slider {
  position: relative;
  margin: 0 auto !important;
  width: 90%;
}
.bookshelf-list.slick-slider button.slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: -40px;
  top: 50%;
  width: 20px;
  height: 20px;
}
.bookshelf-list.slick-slider button.slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a8";
  font-size: 2rem;
  color: #ebebeb;
}
.bookshelf-list.slick-slider button.slick-prev:hover::before {
  color: #fff;
}
.bookshelf-list.slick-slider button.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  right: -40px;
  top: 50%;
  width: 20px;
  height: 20px;
}
.bookshelf-list.slick-slider button.slick-next::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a9";
  font-size: 2rem;
  color: #ebebeb;
}
.bookshelf-list.slick-slider button.slick-next:hover::after {
  color: #fff;
}
.bookshelf-list.slick-slider div.slick-list {
  background-color: #A70E37 !important;
  margin: 0 auto;
}

/*********************
FOOTER
*********************/
.app-container .app-footer {
  background-color: #EEA940;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  color: #fff;
}
.app-container .app-footer .inner-footer .secondary-nav {
  position: relative;
  padding-bottom: 20px;
}
.app-container .app-footer .inner-footer .secondary-nav .logo-icon {
  display: block;
  width: 80px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  margin: auto;
}
.app-container .app-footer .inner-footer .secondary-nav .menu .active > a, .app-container .app-footer .inner-footer .secondary-nav .menu .is-active > a {
  background-color: transparent;
}
.app-container .app-footer .inner-footer nav.footer-nav-wrap {
  padding: 2.5rem 2.25rem !important;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 63.99875em) {
  .app-container .app-footer .inner-footer nav.footer-nav-wrap {
    display: none;
  }
}
.app-container .app-footer .inner-footer nav.footer-nav-wrap ul#footer-nav {
  text-align: left;
  margin-bottom: 1.5625rem;
}
.app-container .app-footer .inner-footer nav.footer-nav-wrap ul#footer-nav li {
  display: block;
  margin: 0 0.75rem;
}
.app-container .app-footer .inner-footer nav.footer-nav-wrap ul#footer-nav li a {
  text-transform: uppercase;
  font-size: 1.0625rem;
  font-weight: 900;
  text-decoration: none;
  color: #A70E37;
  padding: 0.2rem 0.4rem;
}
.app-container .app-footer .inner-footer nav.footer-nav-wrap ul#footer-nav li a:hover {
  color: #A70E37;
  text-decoration: underline;
}
.app-container .app-footer .inner-footer nav.footer-nav-wrap ul#footer-nav li ul {
  margin-left: 0;
}
.app-container .app-footer .inner-footer nav.footer-nav-wrap ul#footer-nav li ul li {
  margin: 0;
}
.app-container .app-footer .inner-footer nav.footer-nav-wrap ul#footer-nav li ul li a {
  text-transform: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.app-container .app-footer .inner-footer .community-partners {
  padding: 3.5rem 2.25rem 1.5rem 2.25rem !important;
  background-color: #fff;
  text-align: center;
}
.app-container .app-footer .inner-footer .community-partners h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 4.375rem;
  line-height: 0.8;
  color: #A70E37;
  margin-bottom: 0;
  padding-bottom: 0;
}
.app-container .app-footer .inner-footer .community-partners p {
  font-size: 1.25rem;
  line-height: 0.8;
  text-transform: uppercase;
  color: #A70E37;
}
.app-container .app-footer .inner-footer .community-partners .partner-list div.outer-wrap {
  max-width: 90% !important;
}
.app-container .app-footer .inner-footer .community-partners .partner-list div.outer-wrap div.img-wrap a {
  position: relative;
}
.app-container .app-footer .inner-footer .community-partners .partner-list div.outer-wrap div.img-wrap a img {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: bottom;
}
.app-container .app-footer .inner-footer .community-partners .partner-list .slick-list {
  padding: 0 !important;
  margin-left: 50px;
}
.app-container .app-footer .inner-footer .community-partners .partner-list .slick-list .slick-track {
  display: flex;
}
.app-container .app-footer .inner-footer .community-partners .partner-list .slick-list .slick-track .slick-slide {
  align-self: center;
}
.app-container .app-footer .inner-footer .quote {
  padding: 2rem 2.25rem 2rem 2.25rem !important;
}
.app-container .app-footer .inner-footer .quote blockquote {
  width: 80%;
  border-left: none;
  padding-left: 0;
  font-size: 2.125rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  color: #A70E37;
  margin: 0 auto;
}
@media screen and (max-width: 62.5em) {
  .app-container .app-footer .inner-footer .quote blockquote {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
.app-container .app-footer .inner-footer .quote blockquote cite {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: #A70E37;
}
.app-container .app-footer .inner-footer hr {
  border: 0;
  height: 0;
  width: 30%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 63.99875em) {
  .app-container .app-footer .inner-footer hr {
    display: none;
  }
}
.app-container .app-footer .inner-footer .copyright {
  padding: 1rem 2.25rem !important;
  background-color: #A70E37;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  font-size: 0.9rem;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 63.99875em) {
  .app-container .app-footer .inner-footer .copyright {
    text-align: center;
  }
}
.app-container .app-footer .inner-footer .copyright nav {
  display: inline-block;
  margin-left: 1rem;
}
@media screen and (max-width: 63.99875em) {
  .app-container .app-footer .inner-footer .copyright nav {
    margin-left: 0;
  }
}
@media screen and (max-width: 63.99875em) {
  .app-container .app-footer .inner-footer .copyright nav ul {
    display: block;
    margin: 0;
    text-align: center;
  }
}
.app-container .app-footer .inner-footer .copyright nav ul li {
  display: inline-block;
}
.app-container .app-footer .inner-footer .copyright nav ul li a {
  text-decoration: none;
  color: #e6e6e6;
  padding: 0.2rem 0.5rem;
}
.app-container .app-footer .inner-footer .copyright nav ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.app-container .app-footer .inner-footer .copyright p {
  margin: 0;
  padding: 0;
}
.app-container .app-footer .inner-footer .copyright p.source-org {
  display: inline-block;
}
.app-container .app-footer .inner-footer .copyright p.site-credit {
  text-align: right;
}
@media screen and (max-width: 63.99875em) {
  .app-container .app-footer .inner-footer .copyright p.site-credit {
    text-align: center;
  }
}
.app-container .app-footer .inner-footer .copyright p.site-credit a {
  color: #fff;
}
.app-container .app-footer .inner-footer .copyright p.site-credit a:hover {
  text-decoration: underline;
}

/*********************
INTERNAL SIDEBAR
*********************/
.sidebar h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 2.5rem;
  line-height: 0.8;
}
.sidebar section {
  margin: 0 0 2.5rem 0;
}
.sidebar section.last {
  margin: 0 !important;
}
.sidebar section a.more-link {
  text-decoration: underline;
}
.sidebar .events {
  background-color: transparent;
}
.sidebar .events ul.events-list {
  margin-left: 0;
}
.sidebar .events ul.events-list li:hover {
  background-color: transparent;
}
.sidebar .events ul.events-list li .event-date {
  border: 1px solid #ccc;
  border-top: 2px solid #A70E37;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.sidebar .events ul.events-list li .event-date time.day {
  font-size: 1.25rem;
}
.sidebar .events ul.events-list li h4 {
  top: -12px;
  font-size: 1.25rem;
}
.sidebar .events ul.events-list li h4 a {
  color: #A70E37;
}
.sidebar .events ul.events-list li h4 a:hover {
  color: #E33330;
}
.sidebar .blog ul {
  margin-left: 0;
}
.sidebar .blog ul li {
  margin-bottom: 1rem;
}
.sidebar .blog ul li a {
  font-size: 1.125rem;
}
.sidebar .volunteer-sidebar {
  background-color: #EEA940;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  border-radius: 0.3125rem;
}
.sidebar .volunteer-sidebar.column, .sidebar .volunteer-sidebar.columns {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 63.99875em) {
  .sidebar .volunteer-sidebar.column, .sidebar .volunteer-sidebar.columns {
    padding-left: 0;
    padding-right: 0;
  }
}
.sidebar .volunteer-sidebar .volunteer-info {
  padding: 1rem 1rem 1rem 1rem;
}
.sidebar .volunteer-sidebar .volunteer-info p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 63.99875em) {
  .sidebar .volunteer-sidebar .volunteer-info p {
    font-size: 1.375rem;
  }
}

/*********************
PAGES & POSTS & CUSTOM ARCHIVES
*********************/
.page-header {
  padding: 4rem 2.25rem 3rem 2.25rem !important;
  background-color: #A70E37;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  text-align: center;
}
.page-header h1 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 5.625rem;
  line-height: 0.8;
  color: #fff;
}

.center h2 {
  text-align: center;
}

.page h4 {
  font-size: 1.6rem;
}
.page h5 {
  font-size: 1.3rem;
}

body.page .inner-content, body.single .inner-content, body.archive .inner-content, body.category-blog .inner-content {
  width: 70%;
  padding: 2rem 0;
}
@media screen and (max-width: 63.99875em) {
  body.page .inner-content, body.single .inner-content, body.archive .inner-content, body.category-blog .inner-content {
    width: 100%;
  }
}
body.page .inner-content .main p, body.single .inner-content .main p, body.archive .inner-content .main p, body.category-blog .inner-content .main p {
  font-size: 1.25rem;
}
body.page .inner-content .main ul li, body.single .inner-content .main ul li, body.archive .inner-content .main ul li, body.category-blog .inner-content .main ul li {
  list-style-type: square;
}

/*********************
THE ISSUE
*********************/
.page-the-issue main section p:first-of-type {
  font-size: 1.5rem !important;
  line-height: 1.7;
  color: #E33330;
}

/*********************
ABOUT US PAGE
*********************/
.page-about-us main section p:first-of-type {
  font-size: 1.5rem !important;
  line-height: 1.7;
  color: #E33330;
}

.statements {
  border-top: 15px solid #E33330;
}
.statements .mission-statement, .statements .vision-statement {
  background-color: #EEA940;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  padding: 2rem 2rem 2rem 2rem !important;
}
.statements .mission-statement h2, .statements .vision-statement h2 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #A70E37;
  margin: 0;
  padding: 0;
}
.statements .mission-statement p, .statements .vision-statement p {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
}
@media screen and (max-width: 37.5em) {
  .statements .mission-statement {
    border-right: none;
  }
}
.statements .vision-statement {
  border-left: 1px solid #f3c278;
}
@media screen and (max-width: 37.5em) {
  .statements .vision-statement {
    border-left: none;
    border-top: 1px solid #f3c278;
  }
}

/*********************
CONTACT US
*********************/
.page-id-67 main .contact-info p {
  margin-bottom: 0.1875rem;
}
.page-id-67 main .links-bar {
  background-color: transparent;
}
@media screen and (max-width: 37.5em) {
  .page-id-67 main .links-bar {
    display: block;
  }
}
.page-id-67 main .links-bar ul {
  text-align: left;
  margin-bottom: 1.25rem;
}
.page-id-67 main .links-bar ul li a {
  color: #A70E37;
  margin-left: 0;
  margin-right: 0.3125rem;
}
.page-id-67 main .links-bar ul li a i {
  font-size: 1.875rem;
}
.page-id-67 main .wpforms-container input.wpforms-field-medium, .page-id-67 main .wpforms-container select.wpforms-field-medium, .page-id-67 main .wpforms-container .wpforms-field-row.wpforms-field-medium {
  max-width: 100% !important;
}
.page-id-67 main .wpforms-container {
  padding: 1rem;
  border: 1px solid #A70E37;
  border-radius: 5px;
}
.page-id-67 main .wpforms-container label {
  color: #A70E37;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.3125rem;
}
.page-id-67 main .wpforms-container input {
  border: 1px solid #A70E37;
  border-radius: 5px;
  box-shadow: inset 0px 0px 0px 0px;
}
.page-id-67 main .wpforms-container textarea {
  min-height: 150px;
  border: 1px solid #A70E37;
  border-radius: 5px;
  box-shadow: inset 0px 0px 0px 0px;
}
.page-id-67 main .wpforms-container .wpforms-recaptcha-container {
  padding: 0;
}
.page-id-67 main .wpforms-container .wpforms-submit-container {
  padding: 0 0 0.3125rem 0;
}

/*********************
BECOME A PARTNER
*********************/
.page-id-54 h5 {
  color: #E33330;
  font-size: 1.8rem;
  border-bottom: 3px solid #E33330;
}
.page-id-54 h6 {
  display: inline-block;
  background-color: #EEA940;
  color: #fff;
  font-size: 1.3rem;
  margin: 1rem 0;
  padding: 0.25rem 0.75rem;
  border-left: 6px solid #0d5d32;
}

/*********************
BECOME A PARTNER > DONOR LIST
*********************/
.donor-list section .tablepress {
  margin-top: 5px;
}
.donor-list section .tablepress tbody {
  border: none;
}
.donor-list section .tablepress tbody td {
  border: none;
  background-color: #fff;
  padding: 10px 0;
  font-size: 1.125rem;
  line-height: 1.25;
}
.donor-list section .tablepress tfoot th {
  border: none;
}

/*********************
BOARD OF DIRECTORS & STAFF PAGE
*********************/
body.archive .inner-content .main .people-list li {
  list-style-type: none;
  margin-bottom: 1.75em;
}
body.archive .inner-content .main .people-list li img {
  border-bottom: 2px solid #A70E37;
}
body.archive .inner-content .main .people-list li h4 {
  font-size: 1.625rem;
  line-height: 1.1;
  margin: 0.5em 0 0.1em 0;
}
body.archive .inner-content .main .people-list li p.position {
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 0.15em 0;
}
body.archive .inner-content .main .people-list li p.profession {
  font-size: 1rem;
  line-height: 1.2;
  font-style: italic;
  margin: 0;
  color: #EEA940;
}
body.archive .inner-content .main .people-list div {
  list-style-type: none;
  margin-bottom: 1.75em;
}
body.archive .inner-content .main .people-list div img {
  border-bottom: 2px solid #A70E37;
}
body.archive .inner-content .main .people-list div h4 {
  font-size: 1.625rem;
  line-height: 1.1;
  margin: 0.5em 0 0.1em 0;
}
body.archive .inner-content .main .people-list div p.position {
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 0.15em 0;
}
body.archive .inner-content .main .people-list div p.profession {
  font-size: 1rem;
  line-height: 1.2;
  font-style: italic;
  margin: 0;
  color: #EEA940;
}
body.archive .inner-content .main .people-list div p.email {
  font-size: 1.125rem;
  line-height: 1;
}
body.archive .inner-content .main .people-list div p.email a {
  color: #EEA940;
  margin: 0;
}
body.archive .inner-content .main .people-list div p.email a:hover {
  color: #E33330;
}

/*********************
AMBASSADORS PAGE
*********************/
.ambassadors section.intro {
  padding-bottom: 1rem;
}
.ambassadors section.intro hr {
  border: none;
  border-top: 6px solid #A70E37;
  text-align: center;
  width: 10%;
  margin-bottom: none;
}
.ambassadors section.intro p.detail-info {
  font-size: 1rem;
  line-height: 1.3;
  font-style: italic;
}
.ambassadors hr {
  margin-bottom: 2rem;
}
.ambassadors h3 {
  font-family: Romy-Regular;
  text-align: center;
  font-size: 3rem;
}
.ambassadors p.website {
  font-size: 1.125rem;
  line-height: 1;
}
.ambassadors p.website a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  color: #EEA940;
  margin: 0;
}
.ambassadors p.website a:hover {
  color: #E33330;
}
.ambassadors .individuals h4 {
  text-align: center;
}

/*********************
BOOKSHELF
*********************/
body.post-type-archive-custom_bookshelf .inner-content .main .intro-text, body.tax-bookshelf_cat .inner-content .main .intro-text {
  text-align: center;
  margin-bottom: 1.875rem;
}
body.post-type-archive-custom_bookshelf .inner-content .main .intro-text h2, body.tax-bookshelf_cat .inner-content .main .intro-text h2 {
  font-size: 2rem;
}
body.post-type-archive-custom_bookshelf .inner-content .main .intro-text p, body.tax-bookshelf_cat .inner-content .main .intro-text p {
  font-size: 1.375rem;
  line-height: 1.4;
}
body.post-type-archive-custom_bookshelf .inner-content .main .most-needed, body.tax-bookshelf_cat .inner-content .main .most-needed {
  background-color: #EEA940;
  border-radius: 5px;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  padding: 1.25rem;
  margin-bottom: 1.875rem;
}
body.post-type-archive-custom_bookshelf .inner-content .main .most-needed h2, body.tax-bookshelf_cat .inner-content .main .most-needed h2 {
  font-family: Romy;
  font-size: 3.125rem;
  line-height: 0.8;
}
body.post-type-archive-custom_bookshelf .inner-content .main .most-needed ul, body.tax-bookshelf_cat .inner-content .main .most-needed ul {
  padding-left: 1.25rem;
}
body.post-type-archive-custom_bookshelf .inner-content .main .most-needed ul li, body.tax-bookshelf_cat .inner-content .main .most-needed ul li {
  color: #fff;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.8;
}
body.post-type-archive-custom_bookshelf .inner-content .main .most-needed ul li a, body.tax-bookshelf_cat .inner-content .main .most-needed ul li a {
  color: #fff;
  text-decoration: underline;
}
body.post-type-archive-custom_bookshelf .inner-content .main .most-needed ul li a:hover, body.tax-bookshelf_cat .inner-content .main .most-needed ul li a:hover {
  color: #A70E37;
}
body.post-type-archive-custom_bookshelf .inner-content .main h2.bookshelf-centered-header, body.tax-bookshelf_cat .inner-content .main h2.bookshelf-centered-header {
  font-family: Romy;
  font-size: 3.125rem;
  text-align: center;
}
body.post-type-archive-custom_bookshelf .inner-content .main .bookshelf-grid, body.tax-bookshelf_cat .inner-content .main .bookshelf-grid {
  margin-bottom: 1.875rem;
}
body.post-type-archive-custom_bookshelf .inner-content .main .bookshelf-grid div.img-wrap, body.tax-bookshelf_cat .inner-content .main .bookshelf-grid div.img-wrap {
  align-self: flex-end !important;
  margin-bottom: 1.875rem;
}
body.post-type-archive-custom_bookshelf .inner-content .main .bookshelf-grid div.img-wrap a, body.tax-bookshelf_cat .inner-content .main .bookshelf-grid div.img-wrap a {
  position: relative;
}
body.post-type-archive-custom_bookshelf .inner-content .main .bookshelf-grid div.img-wrap a .buy, body.tax-bookshelf_cat .inner-content .main .bookshelf-grid div.img-wrap a .buy {
  position: absolute;
  bottom: 7px;
  left: 10px;
  z-index: 2;
}
body.post-type-archive-custom_bookshelf .inner-content .main .bookshelf-grid div.img-wrap a img, body.tax-bookshelf_cat .inner-content .main .bookshelf-grid div.img-wrap a img {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: bottom;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}
body.post-type-archive-custom_bookshelf .inner-content .main .bookshelf-grid div.img-wrap a:hover .buy, body.tax-bookshelf_cat .inner-content .main .bookshelf-grid div.img-wrap a:hover .buy {
  display: inline-block;
}
body.post-type-archive-custom_bookshelf .inner-content .main .bookshelf-grid div.img-wrap a:hover img, body.tax-bookshelf_cat .inner-content .main .bookshelf-grid div.img-wrap a:hover img {
  transform: scale(1.05);
}

/*********************
BLOG
*********************/
.byline {
  text-transform: uppercase;
  font-weight: 600;
  color: #EEA940;
}

body.single .inner-content .article-header {
  color: #E33330;
}

/*********************
VOLUNTEER PAGE
*********************/
.volunteer-photos {
  margin-top: 1.125rem;
}

.volunteer-meta {
  background-color: #EEA940;
  border-radius: 5px;
  padding: 1.25rem;
}
.volunteer-meta h3 {
  font-family: "Romy-Regular", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0;
}
.volunteer-meta ul {
  list-style-type: none !important;
}
.volunteer-meta ul li {
  list-style-type: none !important;
}
.volunteer-meta ul li::before {
  content: "▪";
  color: #fff;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.volunteer-meta ul li a {
  color: #fff;
}
.volunteer-meta ul li a:hover {
  color: #A70E37;
}

/*********************
EVENTS > MONTH VIEW STYLES
*********************/
#tribe-events-pg-template, .tribe-events-pg-template {
  margin: 0 auto;
  max-width: 100% !important;
}

#tribe-events-content.tribe-events-list {
  margin: 0 auto;
  max-width: 800px;
}
#tribe-events-content.tribe-events-list h2 {
  text-align: center;
  margin: 1.875rem 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #EEA940;
}
#tribe-events-content.tribe-events-list .type-tribe_events {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 50em) {
  #tribe-events-content.tribe-events-list .type-tribe_events {
    padding: 1.25rem;
    margin-bottom: 0;
  }
}
#tribe-events-content.tribe-events-single {
  margin: 0 auto;
  max-width: 800px;
}
#tribe-events-content.tribe-events-single .tribe-events-back {
  margin-top: 1.25rem;
}
#tribe-events-content.tribe-events-single .tribe-events-cost {
  display: block;
  color: #E33330;
  font-size: 1.3rem;
  font-weight: 700;
}
#tribe-events-content.tribe-events-single .tribe-events-schedule h2 {
  font-size: 1.25rem;
  color: #E33330;
}
#tribe-events-content.tribe-events-single .tribe-events-cal-links a {
  margin-right: 1.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #E33330;
  border-radius: 5px;
}
#tribe-events-content.tribe-events-single .tribe-events-cal-links a:hover {
  border-color: #A70E37;
}

body.tribe-events-page-template #tribe-events-bar {
  display: none;
}

body.tribe-events-page-template #tribe-events-bar #tribe-bar-form .tribe-bar-submit input[type=submit] {
  -webkit-appearance: button;
  background: #E33330;
  background-image: none;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-family: "BPreplayBold", sans-serif;
  font-size: 1.125rem;
  height: auto;
  letter-spacing: 2px !important;
  line-height: 2;
  padding: 2px;
  width: 100%;
}

/*********************
LOCATIONS
*********************/
body.post-type-archive-custom_locations .inner-content .main.column, body.post-type-archive-custom_locations .inner-content .main.columns {
  padding-right: 0;
  padding-left: 0;
}
body.post-type-archive-custom_locations .inner-content .main.column h2, body.post-type-archive-custom_locations .inner-content .main.columns h2 {
  text-align: center;
}
body.post-type-archive-custom_locations .inner-content .main.column ul.location-list, body.post-type-archive-custom_locations .inner-content .main.columns ul.location-list {
  border-top: 1px solid #ddd;
  margin: 1.875rem 0 0 0;
}
body.post-type-archive-custom_locations .inner-content .main.column ul.location-list li, body.post-type-archive-custom_locations .inner-content .main.columns ul.location-list li {
  list-style-type: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 10px 10px 10px;
}
body.post-type-archive-custom_locations .inner-content .main.column ul.location-list li:hover, body.post-type-archive-custom_locations .inner-content .main.columns ul.location-list li:hover {
  background-color: #fef9f2;
}
body.post-type-archive-custom_locations .inner-content .main.column ul.location-list li span.weekday, body.post-type-archive-custom_locations .inner-content .main.columns ul.location-list li span.weekday {
  text-transform: uppercase;
  font-weight: 700;
}
body.post-type-archive-custom_locations .inner-content .main.column ul.location-list li span.meeting-time, body.post-type-archive-custom_locations .inner-content .main.columns ul.location-list li span.meeting-time {
  display: block;
  color: #EEA940;
  font-weight: 700;
}
body.post-type-archive-custom_locations .inner-content .main.column ul.location-list li h4, body.post-type-archive-custom_locations .inner-content .main.columns ul.location-list li h4 {
  font-size: 1.25rem;
}
body.post-type-archive-custom_locations .inner-content .main.column ul.location-list li span.info, body.post-type-archive-custom_locations .inner-content .main.columns ul.location-list li span.info {
  display: inline;
  float: right;
  color: #0d5d32;
  text-decoration: underline;
}

body.single-custom_locations h1.page-title span {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 1.625rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1.875rem;
}
body.single-custom_locations .session-info .meeting-day-time {
  background-color: #E33330;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  border-radius: 5px;
  text-align: center;
  padding: 0.9375rem;
}
body.single-custom_locations .session-info .meeting-day-time p {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.375rem;
  font-weight: 700;
}
body.single-custom_locations .session-info .meeting-day-time p span {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}
body.single-custom_locations .google-map {
  margin: 1.25rem 0;
}
body.single-custom_locations .volunteer-response {
  background-color: #E33330;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
  border-radius: 5px;
  color: #fff;
  padding: 1.5625rem 1.875rem 0.3125rem 1.875rem;
}
body.single-custom_locations .volunteer-response a {
  color: #fff;
  text-decoration: underline;
}
body.single-custom_locations .volunteer-response a:hover {
  color: #A70E37;
}

/*********************
IMPACT STORIES
*********************/
body.post-type-archive-custom_impact .inner-content .main.column, body.post-type-archive-custom_impact .inner-content .main.columns {
  padding-right: 0;
  padding-left: 0;
}
body.post-type-archive-custom_impact .inner-content .main.column h2, body.post-type-archive-custom_impact .inner-content .main.columns h2 {
  text-align: center;
}
body.post-type-archive-custom_impact .inner-content .main.column ul.impact-list, body.post-type-archive-custom_impact .inner-content .main.columns ul.impact-list {
  border-top: 1px solid #ddd;
  margin: 1.875rem 0 0 0;
}
body.post-type-archive-custom_impact .inner-content .main.column ul.impact-list li, body.post-type-archive-custom_impact .inner-content .main.columns ul.impact-list li {
  list-style-type: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 10px 10px 10px;
}
body.post-type-archive-custom_impact .inner-content .main.column ul.impact-list li:hover, body.post-type-archive-custom_impact .inner-content .main.columns ul.impact-list li:hover {
  background-color: #fef9f2;
}
body.post-type-archive-custom_impact .inner-content .main.column ul.impact-list li h4, body.post-type-archive-custom_impact .inner-content .main.columns ul.impact-list li h4 {
  font-size: 1.25rem;
  margin-bottom: 0;
}
body.post-type-archive-custom_impact .inner-content .main.column ul.impact-list li span.info, body.post-type-archive-custom_impact .inner-content .main.columns ul.impact-list li span.info {
  display: inline;
  float: right;
  color: #0d5d32;
  text-decoration: underline;
}

#sidebar-alt {
  margin: 2.5rem 0 0.3125rem 0;
}

/*********************
REGISTER YOUR SCHOLAR
*********************/
.location-notice mark {
  color: #A70E37;
  background-color: rgba(255, 255, 0, 0.3);
}
.location-notice mark strong {
  text-transform: uppercase;
}

.permission-form {
  background-color: rgba(255, 255, 0, 0.3);
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

span.postal-address {
  display: inline-block;
  line-height: 1.5;
}

-form {
  background-color: rgba(255, 255, 0, 0.3);
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

span.postal-address {
  display: inline-block;
  line-height: 1.5;
}

/*********************
ULTIMATE READING CHALLENGE
*********************/
.urc-intro-homepage {
  border-top: 5px solid #EEA940;
  background-color: #EEA940;
  background-image: url("/wp-content/themes/freedomreaders-2019/assets/images/concrete-texture-test-3.png");
}
.urc-intro-homepage .urc-heading {
  background-color: #fff;
}
.urc-intro-homepage .urc-heading img {
  display: block;
  margin: 0 auto;
}
.urc-intro-homepage a.btn.more {
  background-color: #A70E37;
}
.urc-intro-homepage a.btn.more:hover {
  background-color: #E33330;
  color: #fefefe;
}

.urc-home-info p {
  font-size: 1.5rem;
}
@media screen and (max-width: 68.75em) {
  .urc-home-info p {
    font-size: 1.25rem;
  }
}

.urc-intro {
  border-top: 5px solid #A70E37;
  /*	background-color: $yellow;*/
  /*	@include background-texture;*/
}
.urc-intro .urc-heading {
  background-color: #fff;
  padding: 20px;
}
.urc-intro .urc-heading img {
  display: block;
  margin: 0 auto;
  width: 60%;
}

.urc-links {
  text-align: center;
}
.urc-links .urc-info {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  padding-bottom: 1.25rem;
}
.urc-links .urc-info h3 {
  font-size: 2.6rem;
  text-transform: uppercase;
}
.urc-links .urc-info p {
  font-size: 1.5rem;
}
.urc-links .urc-info p a {
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
}
.urc-links .btn-wrap {
  margin-top: 2.5rem;
}
.urc-links .btn-wrap a {
  padding-left: 20px !important;
  padding-right: 20px !important;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 0.9375rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 56.25em) {
  .urc-links .btn-wrap a {
    display: block;
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
.urc-links .btn-wrap a.btn.reg {
  background-color: #E33330;
}
.urc-links .btn-wrap a.btn.reg:hover {
  background-color: #A70E37;
  color: #fefefe;
}
.urc-links .btn-wrap a.btn.doc {
  background-color: #EEA940;
  color: #fff;
}
.urc-links .btn-wrap a.btn.doc:hover {
  background-color: #A70E37;
  color: #fefefe;
}
.urc-links .btn-wrap a.btn.sponsorship:hover {
  background-color: #A70E37;
  color: #fefefe;
}

.urc-video {
  padding: 2.25rem 5rem !important;
}

.leaderboard-header {
  text-transform: uppercase;
  text-align: center;
  background-color: #EEA940;
  padding: 0.9375rem;
}

.leaderboard {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.leaderboard h3 {
  display: block;
  text-align: center;
  background-color: #E33330;
}
.leaderboard iframe {
  /*		display: block;*/
  border: 0;
  /*		box-shadow: 5px 5px 56px 0px rgba(0,0,0,0.25);*/
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  min-height: 550px;
}
