/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 1.2rem 1.5rem;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 2rem;
  height: 1.4rem;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.15rem;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 2rem;
  height: 0.3rem;
  background-color: #c3d600;
  border-radius: 0.15em;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -0.55rem;
}
.hamburger-inner::after {
  bottom: -0.55rem;
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-0.4rem, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-0.4rem, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -1.1rem;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -0.55rem, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 0.15rem;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 0.55rem;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 1.1rem;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 0.55rem, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.1rem, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 0.15rem;
}
.hamburger--slider .hamburger-inner::before {
  top: 0.55rem;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 1.1rem;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 0.55rem, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-0.2857142857rem, -0.25rem, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.1rem, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 0.15rem;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 0.55rem;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 1.1rem;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 0.55rem, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(0.2857142857rem, -0.25rem, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.1rem, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 0.15rem;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 0.55rem;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 1.1rem;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 0.55rem, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 0.55rem, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -1.1rem;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -0.55rem, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*# sourceMappingURL=hamburgers.css.map */

/*!
 * Simplified css for UWU
 */
@import url("https://fonts.googleapis.com/css?family=Lato|Overlock|Source+Sans+Pro|Montserrat");
/**
Colour themes
 */
body.theme1 a {
  color: #f28b00; }
  body.theme1 a i {
    color: #00acc8; }
  body.theme1 a:hover {
    color: #00acc8; }
    body.theme1 a:hover i {
      color: #008095; }

body.theme1 nav a {
  color: #FFFFFF; }
  body.theme1 nav a [class*="i-"] {
    color: #f28b00; }
  body.theme1 nav a:hover {
    color: #a0d0cb; }
    body.theme1 nav a:hover [class*="i-"] {
      color: #00acc8; }

body.theme1 nav .hamburger-inner, body.theme1 nav .hamburger-inner::after, body.theme1 nav .hamburger-inner::before {
  background-color: #00acc8; }

body.theme1 section > p:first-child [class*="i-"] {
  color: #00acc8; }

body.theme1 h2 i {
  color: #f28b00; }

body.theme1 .transcript-link {
  background-color: #f28b00; }
  body.theme1 .transcript-link:hover {
    background-color: #d97c00; }

body.theme1 button {
  background-color: #00acc8; }
  body.theme1 button:hover {
    background-color: #f28b00; }

body.theme2 a {
  color: #00665f; }
  body.theme2 a i {
    color: #00a6b6; }
  body.theme2 a:hover {
    color: #00a6b6; }
    body.theme2 a:hover i {
      color: #007783; }

body.theme2 nav a {
  color: #FFFFFF; }
  body.theme2 nav a [class*="i-"] {
    color: #00665f; }
  body.theme2 nav a:hover {
    color: #a0d0cb; }
    body.theme2 nav a:hover [class*="i-"] {
      color: #00a6b6; }

body.theme2 nav .hamburger-inner, body.theme2 nav .hamburger-inner::after, body.theme2 nav .hamburger-inner::before {
  background-color: #00a6b6; }

body.theme2 section > p:first-child [class*="i-"] {
  color: #00a6b6; }

body.theme2 h2 i {
  color: #00665f; }

body.theme2 .transcript-link {
  background-color: #00665f; }
  body.theme2 .transcript-link:hover {
    background-color: #004d47; }

body.theme2 button {
  background-color: #00a6b6; }
  body.theme2 button:hover {
    background-color: #00665f; }

body.theme3 a {
  color: #00a6b6; }
  body.theme3 a i {
    color: #f28b00; }
  body.theme3 a:hover {
    color: #f28b00; }
    body.theme3 a:hover i {
      color: #bf6e00; }

body.theme3 nav a {
  color: #FFFFFF; }
  body.theme3 nav a [class*="i-"] {
    color: #00a6b6; }
  body.theme3 nav a:hover {
    color: #a0d0cb; }
    body.theme3 nav a:hover [class*="i-"] {
      color: #f28b00; }

body.theme3 nav .hamburger-inner, body.theme3 nav .hamburger-inner::after, body.theme3 nav .hamburger-inner::before {
  background-color: #f28b00; }

body.theme3 section > p:first-child [class*="i-"] {
  color: #f28b00; }

body.theme3 h2 i {
  color: #00a6b6; }

body.theme3 .transcript-link {
  background-color: #00a6b6; }
  body.theme3 .transcript-link:hover {
    background-color: #008f9d; }

body.theme3 button {
  background-color: #f28b00; }
  body.theme3 button:hover {
    background-color: #00a6b6; }

body.theme4 a {
  color: #00665f; }
  body.theme4 a i {
    color: #81bc00; }
  body.theme4 a:hover {
    color: #81bc00; }
    body.theme4 a:hover i {
      color: #5e8900; }

body.theme4 nav a {
  color: #FFFFFF; }
  body.theme4 nav a [class*="i-"] {
    color: #00665f; }
  body.theme4 nav a:hover {
    color: #a0d0cb; }
    body.theme4 nav a:hover [class*="i-"] {
      color: #81bc00; }

body.theme4 nav .hamburger-inner, body.theme4 nav .hamburger-inner::after, body.theme4 nav .hamburger-inner::before {
  background-color: #81bc00; }

body.theme4 section > p:first-child [class*="i-"] {
  color: #81bc00; }

body.theme4 h2 i {
  color: #00665f; }

body.theme4 .transcript-link {
  background-color: #00665f; }
  body.theme4 .transcript-link:hover {
    background-color: #004d47; }

body.theme4 button {
  background-color: #81bc00; }
  body.theme4 button:hover {
    background-color: #00665f; }

/*
Reset
 */
html, body {
  margin: 0;
  padding: 0; }

body {
  position: relative;
  margin-top: 4rem; }

/*
Basic sections
 */
section {
  padding: 2rem 1rem;
  background: #FFFFFF;
  text-align: center;
  position: relative; }
  section:nth-of-type(2n+1) {
    background: #ebecec; }
  @media (min-width: 900px) {
    section {
      padding: 2rem 8rem; } }
  @media (min-width: 1200px) {
    section {
      padding: 2.5rem 15rem; } }
  @media (min-width: 1800px) {
    section {
      padding: 2.5rem 22rem; } }
  section > p:first-child [class*="i-"] {
    font-size: 3rem; }
    @media (min-width: 900px) {
      section > p:first-child [class*="i-"] {
        font-size: 4rem; } }
  section#uig a {
    margin: 0 2rem; }
  section#footer {
    background: #f28b00; }
    section#footer h3 {
      text-align: right;
      color: #FFFFFF; }
      section#footer h3 em {
        font-style: normal;
        text-transform: uppercase;
        color: #d0d3d4; }

/*
Headers
 */
header {
  border: 4px solid #d0d3d4;
  background: rgba(0, 58, 83, 0.7);
  color: #dddfe0;
  border-radius: 2rem;
  display: table;
  margin: auto;
  padding: 0 3rem; }
  header h2 {
    margin: 0 0 2rem; }

/*
Video embeds
 */
.video {
  position: relative;
  margin-bottom: 2rem; }
  .video button {
    padding: .4rem .6rem;
    margin: 0;
    position: absolute;
    right: 0;
    color: #FFFFFF;
    border-radius: 0 0 .2rem .2rem;
    border: none; }
    .video button [class*="i-"] {
      font-size: .8rem; }
    .video button:hover {
      cursor: pointer;
      background: #d97c00; }
  .video .transcript {
    padding: 2rem;
    text-align: left;
    background: rgba(214, 219, 232, 0.9);
    display: none; }
    .video .transcript p {
      font-size: 1rem; }
  .embed-responsive {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%; }
    .embed-responsive.embed-responsive-4x3 {
      padding-bottom: 75%; }
    .embed-responsive iframe {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%; }

/**
  Modals
 */
.modal-links {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr; }
  .modal-links button {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 1;
    padding: 1rem;
    border: none;
    border-radius: 3px; }
    .modal-links button i {
      display: block;
      font-size: 2rem;
      color: #FFFFFF; }
    .modal-links button:hover {
      cursor: pointer; }

nav {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: .6rem;
  font-size: 2rem; }
  @media (min-width: 900px) {
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap; } }
  @media (min-width: 900px) {
    nav {
      font-size: 1.2rem; } }
  @media (min-width: 1800px) {
    nav {
      font-size: 1.3rem; } }
  @media (min-width: 900px) {
    nav {
      flex-wrap: nowrap; } }
  nav .homeLink {
    font-size: 2.5rem; }
    nav .homeLink span {
      display: none; }
  nav #nav-toggle {
    position: absolute;
    right: 0;
    top: 0;
    margin: 1rem; }
    nav #nav-toggle:focus, nav #nav-toggle :focus {
      outline: none; }
    nav #nav-toggle button {
      background: inherit;
      color: inherit;
      border: none;
      padding: 0; }
    @media (min-width: 900px) {
      nav #nav-toggle {
        display: none; } }
  nav ul {
    display: none;
    margin: 3rem 0 0; }
    nav ul li {
      margin: 1rem 0; }
      nav ul li a {
        color: #FFFFFF;
        text-decoration: none; }
    @media (min-width: 900px) {
      nav ul {
        margin: 0;
        display: flex;
        flex-grow: 1;
        justify-content: flex-end; }
        nav ul li {
          margin: 0 1rem;
          width: min-content; } }
    @media (min-width: 900px) and (min-width: 900px) {
      nav ul li {
        width: auto; } }
  nav #topLink {
    margin: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    padding: .3rem .3rem .3rem .6rem;
    color: #fff;
    border: none;
    opacity: 0;
    transition: opacity .5s; }
    nav #topLink.visible {
      opacity: 1; }
    nav #topLink:hover {
      cursor: pointer; }

body {
  font-family: "Source+Sans+Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; }

/*
Headings
 */
h1, h2, h3 {
  font-weight: normal;
  font-family: 'Lato', sans-serif; }

header h1 {
  font-family: "Montserrat", Georgia, Helvetica, Arial, sans-serif; }
  @media (min-width: 1200px) {
    header h1 {
      font-size: 2rem; } }

header h2 {
  font-family: "Montserrat", Georgia, Helvetica, Arial, sans-serif; }

h2 {
  font-size: 1.4rem; }
  @media (min-width: 600px) {
    h2 {
      font-size: 1.8rem; } }
  @media (min-width: 1200px) {
    h2 {
      font-size: 2rem; } }

h3 {
  font-size: 1.4rem; }
  @media (min-width: 900px) {
    h3 {
      font-size: 1.8rem; } }
  @media (min-width: 1200px) {
    h3 {
      font-size: 2rem; } }
  h3 .fa,
  h3 .svg-inline--fa {
    color: #00665f; }

h4 {
  font-size: 1.3rem;
  color: #652f6c; }
  @media (min-width: 1200px) {
    h4 {
      font-size: 1.5rem; } }

/*
General copy
 */
p {
  font-size: 1rem; }
  @media (min-width: 600px) {
    p {
      font-size: 1.2rem; } }

/*
Links
 */
a {
  color: #f28b00;
  text-decoration: none; }
  a:hover {
    color: #5b6770; }

/*
Nav
 */
nav {
  font-family: 'Lato', sans-serif; }

/*
Font awesome
 */
.fa-5x {
  color: #005e86; }

.parallax {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  z-index: 1; }

/**
  Icon fix
 */
[class*="i-info"],
[class*="i-home"],
h2 [class*="i-handshake"],
.transcript-link [class*="i-"] {
  vertical-align: middle; }

@charset "UTF-8";

@font-face {
  font-family: "uwu-1";
  src:url("fonts/uwu-1.eot");
  src:url("fonts/uwu-1.eot?#iefix") format("embedded-opentype"),
    url("fonts/uwu-1.woff") format("woff"),
    url("fonts/uwu-1.ttf") format("truetype"),
    url("fonts/uwu-1.svg#uwu-1") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "uwu-1" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="i-"]:before,
[class*=" i-"]:before {
  font-family: "uwu-1" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.i-bell-o:before {
  content: "\66";
}
.i-bug:before {
  content: "\67";
}
.i-cloud-download:before {
  content: "\68";
}
.i-balance-scale:before {
  content: "\6b";
}
.i-comment-o:before {
  content: "\6c";
}
.i-bullhorn:before {
  content: "\6d";
}
.i-calendar:before {
  content: "\6e";
}
.i-calculator:before {
  content: "\6f";
}
.i-bomb:before {
  content: "\70";
}
.i-bitbucket:before {
  content: "\71";
}
.i-bar-chart:before {
  content: "\72";
}
.i-angle-down:before {
  content: "\61";
}
.i-angle-left:before {
  content: "\62";
}
.i-angle-right:before {
  content: "\63";
}
.i-angle-up:before {
  content: "\64";
}
.i-arrow-down:before {
  content: "\65";
}
.i-arrow-left:before {
  content: "\6a";
}
.i-arrow-right:before {
  content: "\73";
}
.i-arrow-up:before {
  content: "\74";
}
.i-camera-retro:before {
  content: "\75";
}
.i-check:before {
  content: "\76";
}
.i-check-square-o:before {
  content: "\77";
}
.i-check-circle-o:before {
  content: "\78";
}
.i-child:before {
  content: "\79";
}
.i-chevron-down:before {
  content: "\7a";
}
.i-chevron-left:before {
  content: "\41";
}
.i-chevron-right:before {
  content: "\42";
}
.i-chevron-up:before {
  content: "\43";
}
.i-cogs:before {
  content: "\44";
}
.i-cog:before {
  content: "\45";
}
.i-commenting-o:before {
  content: "\46";
}
.i-comments-o:before {
  content: "\47";
}
.i-compass:before {
  content: "\48";
}
.i-desktop:before {
  content: "\49";
}
.i-cutlery:before {
  content: "\4a";
}
.i-crosshairs:before {
  content: "\4b";
}
.i-envelope-o:before {
  content: "\4c";
}
.i-exclamation:before {
  content: "\4d";
}
.i-external-link:before {
  content: "\4e";
}
.i-eye:before {
  content: "\4f";
}
.i-eyedropper:before {
  content: "\50";
}
.i-female:before {
  content: "\51";
}
.i-file:before {
  content: "\52";
}
.i-file-o:before {
  content: "\53";
}
.i-file-pdf-o:before {
  content: "\54";
}
.i-file-image-o:before {
  content: "\55";
}
.i-file-text-o:before {
  content: "\56";
}
.i-file-text:before {
  content: "\57";
}
.i-fire-extinguisher:before {
  content: "\58";
}
.i-flask:before {
  content: "\59";
}
.i-folder-open-o:before {
  content: "\5a";
}
.i-gavel:before {
  content: "\30";
}
.i-gift:before {
  content: "\31";
}
.i-glass:before {
  content: "\32";
}
.i-globe:before {
  content: "\33";
}
.i-graduation-cap:before {
  content: "\34";
}
.i-hand-o-left:before {
  content: "\35";
}
.i-hand-o-right:before {
  content: "\36";
}
.i-hand-o-up:before {
  content: "\37";
}
.i-hand-o-down:before {
  content: "\38";
}
.i-hand-paper-o:before {
  content: "\39";
}
.i-hand-peace-o:before {
  content: "\21";
}
.i-hand-pointer-o:before {
  content: "\22";
}
.i-hand-rock-o:before {
  content: "\23";
}
.i-hand-scissors-o:before {
  content: "\24";
}
.i-hand-spock-o:before {
  content: "\25";
}
.i-headphones:before {
  content: "\26";
}
.i-home:before {
  content: "\27";
}
.i-hourglass:before {
  content: "\28";
}
.i-hourglass-end:before {
  content: "\29";
}
.i-hourglass-half:before {
  content: "\2a";
}
.i-hourglass-o:before {
  content: "\2b";
}
.i-hourglass-start:before {
  content: "\2c";
}
.i-inbox:before {
  content: "\2d";
}
.i-info:before {
  content: "\2e";
}
.i-info-circle:before {
  content: "\2f";
}
.i-key:before {
  content: "\3a";
}
.i-keyboard-o:before {
  content: "\3b";
}
.i-laptop:before {
  content: "\3c";
}
.i-lemon-o:before {
  content: "\3d";
}
.i-life-ring:before {
  content: "\3e";
}
.i-lightbulb-o:before {
  content: "\3f";
}
.i-link:before {
  content: "\40";
}
.i-list-alt:before {
  content: "\5b";
}
.i-list-ol:before {
  content: "\5d";
}
.i-list-ul:before {
  content: "\5e";
}
.i-lock:before {
  content: "\5f";
}
.i-magic:before {
  content: "\60";
}
.i-map:before {
  content: "\7b";
}
.i-map-marker:before {
  content: "\7c";
}
.i-male:before {
  content: "\7d";
}
.i-map-o:before {
  content: "\7e";
}
.i-microphone:before {
  content: "\5c";
}
.i-music:before {
  content: "\e000";
}
.i-paint-brush:before {
  content: "\e001";
}
.i-paper-plane-o:before {
  content: "\e002";
}
.i-paperclip:before {
  content: "\e003";
}
.i-pencil:before {
  content: "\e004";
}
.i-pencil-square-o:before {
  content: "\e005";
}
.i-pie-chart:before {
  content: "\e006";
}
.i-play-circle:before {
  content: "\e007";
}
.i-play-circle-o:before {
  content: "\e008";
}
.i-power-off:before {
  content: "\e009";
}
.i-puzzle-piece:before {
  content: "\e00a";
}
.i-quote-left:before {
  content: "\e00b";
}
.i-quote-right:before {
  content: "\e00c";
}
.i-recycle:before {
  content: "\e00d";
}
.i-rocket:before {
  content: "\e00e";
}
.i-rss:before {
  content: "\e00f";
}
.i-rss-square:before {
  content: "\e010";
}
.i-scissors:before {
  content: "\e011";
}
.i-search:before {
  content: "\e012";
}
.i-server:before {
  content: "\e013";
}
.i-share-alt:before {
  content: "\e014";
}
.i-shirtsinbulk:before {
  content: "\e015";
}
.i-sitemap:before {
  content: "\e016";
}
.i-slack:before {
  content: "\e017";
}
.i-sliders:before {
  content: "\e018";
}
.i-square-o:before {
  content: "\e019";
}
.i-square:before {
  content: "\e01a";
}
.i-star:before {
  content: "\e01b";
}
.i-star-o:before {
  content: "\e01c";
}
.i-star-half-o:before {
  content: "\e01d";
}
.i-star-half:before {
  content: "\e01e";
}
.i-stethoscope:before {
  content: "\e01f";
}
.i-street-view:before {
  content: "\e020";
}
.i-suitcase:before {
  content: "\e021";
}
.i-sun-o:before {
  content: "\e022";
}
.i-table:before {
  content: "\e023";
}
.i-tablet:before {
  content: "\e024";
}
.i-tachometer:before {
  content: "\e025";
}
.i-thumbs-down:before {
  content: "\e026";
}
.i-thumbs-o-down:before {
  content: "\e027";
}
.i-thumbs-o-up:before {
  content: "\e028";
}
.i-thumbs-up:before {
  content: "\e029";
}
.i-times:before {
  content: "\e02a";
}
.i-times-circle-o:before {
  content: "\e02b";
}
.i-trophy:before {
  content: "\e02c";
}
.i-umbrella:before {
  content: "\e02d";
}
.i-user-secret:before {
  content: "\e02e";
}
.i-user:before {
  content: "\e02f";
}
.i-unlock-alt:before {
  content: "\e030";
}
.i-unlock:before {
  content: "\e031";
}
.i-wrench:before {
  content: "\e032";
}
.i-wheelchair:before {
  content: "\e033";
}
.i-angellist:before {
  content: "\e034";
}
.i-angle-double-down:before {
  content: "\e035";
}
.i-angle-double-left:before {
  content: "\e036";
}
.i-angle-double-right:before {
  content: "\e037";
}
.i-angle-double-up:before {
  content: "\e038";
}
.i-archive:before {
  content: "\e039";
}
.i-bug-alt:before {
  content: "\e03a";
}
.i-hourglass-alt:before {
  content: "\e03b";
}
.i-home-alt:before {
  content: "\e03c";
}
.i-pin:before {
  content: "\e03d";
}
.i-squirrel:before {
  content: "\e03e";
}
.i-telescope:before {
  content: "\e03f";
}
.i-die-five:before {
  content: "\69";
}
.i-die-four:before {
  content: "\e040";
}
.i-die-one:before {
  content: "\e041";
}
.i-die-six:before {
  content: "\e042";
}
.i-die-three:before {
  content: "\e043";
}
.i-die-two:before {
  content: "\e044";
}
.i-foot:before {
  content: "\e045";
}
.i-id-card:before {
  content: "\e046";
}
.i-address-book:before {
  content: "\e047";
}
.i-handshake:before {
  content: "\e048";
}
.i-tachometer-alt:before {
  content: "\e049";
}
.i-newspaper-o:before {
  content: "\e04a";
}
.i-vcard:before {
  content: "\e04b";
}
.i-id-card-alt:before {
  content: "\e04c";
}
.i-name-tag:before {
  content: "\e04d";
}
.i-stopwatch:before {
  content: "\e04e";
}
.i-measury-thing:before {
  content: "\e04f";
}
.i-ruler:before {
  content: "\e050";
}
.i-recycle-1:before {
  content: "\e051";
}
.i-print:before {
  content: "\e052";
}
.i-pencil-1:before {
  content: "\e053";
}
.i-paint-palette:before {
  content: "\e054";
}
.i-paintbrush:before {
  content: "\e055";
}
.i-info-1:before {
  content: "\e056";
}
.i-info-2:before {
  content: "\e057";
}
.i-key-1:before {
  content: "\e058";
}
.i-grad-cap:before {
  content: "\e059";
}
.i-frog:before {
  content: "\e05a";
}
.i-gridiron:before {
  content: "\e05b";
}
.i-flask-1:before {
  content: "\e05c";
}
.i-chequered-flag:before {
  content: "\e05d";
}
.i-leaf:before {
  content: "\e05e";
}
.i-woman:before {
  content: "\e05f";
}
.i-dove:before {
  content: "\e060";
}
.i-helix:before {
  content: "\e061";
}
.i-scissors-1:before {
  content: "\e062";
}
.i-teacher:before {
  content: "\e063";
}
.i-calendar-check:before {
  content: "\e064";
}
.i-book:before {
  content: "\e065";
}
.i-bookmark:before {
  content: "\e066";
}
.i-building:before {
  content: "\e067";
}
.i-clock:before {
  content: "\e068";
}
.i-film:before {
  content: "\e069";
}
.i-floppy-o:before {
  content: "\e06b";
}
.i-heartbeat:before {
  content: "\e06c";
}
.i-heart:before {
  content: "\e06d";
}
.i-hospital:before {
  content: "\e06e";
}
.i-industry:before {
  content: "\e06f";
}
.i-moon-o:before {
  content: "\e070";
}
.i-microphone-slash:before {
  content: "\e071";
}
.i-leaves:before {
  content: "\e072";
}
.i-television:before {
  content: "\e073";
}
.i-university:before {
  content: "\e074";
}
.i-people:before {
  content: "\e075";
}
.i-trash:before {
  content: "\e076";
}
.i-comments:before {
  content: "\e077";
}
.i-speech:before {
  content: "\e078";
}
.i-comment-empty:before {
  content: "\e079";
}
.i-settings:before {
  content: "\e07a";
}
.i-paper-plane:before {
  content: "\e07b";
}
.i-star-1:before {
  content: "\e07c";
}
.i-snowflake:before {
  content: "\e07d";
}
.i-clipboard:before {
  content: "\e07e";
}
.i-bicycle:before {
  content: "\e07f";
}
.i-paw:before {
  content: "\e080";
}
.i-bicycle-1:before {
  content: "\e081";
}
.i-walking-stick:before {
  content: "\e082";
}
.i-couch:before {
  content: "\e083";
}
.i-lemon:before {
  content: "\e084";
}
.i-phone:before {
  content: "\e085";
}
.i-clipboard-med:before {
  content: "\e086";
}
.i-footprints:before {
  content: "\e087";
}
.i-cutlery-1:before {
  content: "\e088";
}
.i-testtube:before {
  content: "\e089";
}
.i-testtubes:before {
  content: "\e08a";
}
.i-spanner:before {
  content: "\e08b";
}
.i-wallet:before {
  content: "\e08c";
}
.i-accessibility:before {
  content: "\e08d";
}
.i-brolly:before {
  content: "\e08e";
}
.i-syringe:before {
  content: "\e08f";
}
.i-pingpong:before {
  content: "\e090";
}
.i-keyboard:before {
  content: "\e091";
}
.i-target:before {
  content: "\e092";
}
.i-bandaid:before {
  content: "\e093";
}
.i-scales:before {
  content: "\e094";
}
.i-basketball:before {
  content: "\e095";
}
.i-tennisball:before {
  content: "\e096";
}
.i-wheelchair-1:before {
  content: "\e097";
}
.i-chart:before {
  content: "\e098";
}
.i-chart-bar:before {
  content: "\e099";
}
.i-chart-mountain:before {
  content: "\e09a";
}
.i-question:before {
  content: "\e09b";
}
.i-paper-plane-1:before {
  content: "\e09c";
}
.i-flag-1:before {
  content: "\e09d";
}
.i-flashlight:before {
  content: "\e09e";
}
.i-flash:before {
  content: "\e09f";
}
.i-flame:before {
  content: "\e0a0";
}
.i-flag-2:before {
  content: "\e0a1";
}
.i-flag-3:before {
  content: "\e0a2";
}
.i-flag-goal:before {
  content: "\e0a3";
}

.blocker {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.75);
  text-align: center;
}
.blocker:before{
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}
.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==');

}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.5) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
