@charset "UTF-8";
@import url("//hello.myfonts.net/count/2c8eff");
body.env-local:after {
  background-color: #FCF8E3;
  border-bottom: 1px solid #FBEED5;
  border-left: 1px solid #FBEED5;
  color: #C09853;
  font: small-caption;
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 2px 6px;
  background: whitesmoke; }
  @media all and (min-width: 20em) {
    body.env-local:after {
      content: "mob ≥ 320px (20em)"; } }
  @media all and (min-width: 37.5em) {
    body.env-local:after {
      content: "phab ≥ 600px (37.5em)"; } }
  @media all and (min-width: 46.25em) {
    body.env-local:after {
      content: "tab ≥ 740px (46.25em)"; } }
  @media all and (min-width: 61.25em) {
    body.env-local:after {
      content: "lap ≥ 980px (61.25em)"; } }
  @media all and (min-width: 87.5em) {
    body.env-local:after {
      content: "desk ≥ 1400px (87.5em)"; } }
  @media all and (min-width: 118.75em) {
    body.env-local:after {
      content: "epic ≥ 1900px (118.75em)"; } }
/**
 * Tests
 * (scroll down to edit the tests)
 */
@media all and (min-width: 20em) {
  .element {
    color: green; } }

@media all and (min-width: 37.5em) {
  .element {
    color: yellow; } }

@media all and (min-width: 46.25em) {
  .element {
    color: blue; } }

@media all and (max-width: 61.24em) {
  .element {
    color: red; } }

@media all and (max-width: 400px), (min-width: 650px) and (max-width: 1200px) {
  .element {
    color: crimson; } }

@media all and (min-width: 75em) {
  .element {
    color: yellow; } }

/**
 * For older browsers that don't support @media queries
 * (in our case: IE8)


.element {
    @include mq($from: mob) {
        color: lighten(green,40);
    }
    @include mq($from: tab) {
        color: lighten(blue,40);
    }
    @include mq($to: lap) {
        color: lighten(red,40); // Not wide enough: won't be in the output
    }
    @include mq(desk) {
        color: lighten(crimson,40); // Too wide: won't be in the output
    }

}
 */
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

article, aside, figure, footer, header, hgroup, nav, section {
  display: block; }

@-webkit-viewport {
  width: device-width; }

@-moz-viewport {
  width: device-width; }

@-ms-viewport {
  width: device-width; }

@-o-viewport {
  width: device-width; }

@viewport {
  width: device-width; }

html {
  background: white;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: white;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: transparent;
  font-family: "AvenirBook", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4em;
  color: #252b43;
  overflow-x: hidden; }

.row {
  width: 100%;
  padding: 0;
  margin: 0;
  padding: 0px; }

.page-body {
  display: flex;
  flex-direction: column; }
  @media all and (min-width: 46.25em) {
    .page-body {
      flex-direction: row; }
      .page-body .page-header {
        height: 100vh;
        width: 80px; }
        .page-body .page-header .container {
          position: fixed;
          padding: 15px 15px 70px;
          top: 0;
          left: 0;
          z-index: 1;
          width: 80px;
          height: 100%;
          box-sizing: border-box; }
      .page-body .main {
        margin-left: 80px; }
        .page-body .main .container {
          padding: 20px;
          box-sizing: border-box; } }
.sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 0;
  z-index: 20; }

div.env-callout {
  padding: 20px;
  background: #dfdfdf;
  margin: 0 0 20px;
  max-width: 600px;
  box-sizing: border-box;
  background: #dfdfdf url(/_assets/img/flash-bg.png) repeat center center; }
  div.env-callout h2 {
    font-family: "AvenirBook", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-family: "AvenirBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.2;
    margin-bottom: 10px;
    font-size: 36px;
    font-size: 3.6rem; }
    div.env-callout h2 strong {
      font-family: "AvenirBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      color: white; }
  div.env-callout p {
    font-size: 24px;
    font-size: 2.4rem; }
    div.env-callout p a {
      color: #252b43; }
  div.env-callout.local {
    background-color: #a2dc42; }
  div.env-callout.dev {
    background-color: #FFC416; }
  div.env-callout.stage {
    background-color: #fdd700; }
  div.env-callout.prod {
    background-color: #e00719; }
  @media all and (min-width: 46.25em) {
    div.env-callout h2 {
      font-size: 46px;
      font-size: 4.6rem; } }
body.show-admin-bar {
  padding-bottom: 50px; }

.admin-bar {
  background: #dfdfdf;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 15px 12px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  justify-content: space-between;
  -webkit-box-shadow: 0 1px 2px rgba(32, 32, 32, 0.5);
  -moz-box-shadow: 0 1px 2px rgba(32, 32, 32, 0.5);
  box-shadow: 0 1px 2px rgba(32, 32, 32, 0.5); }
  .admin-bar:not(.gr1) .admin-item.min {
    display: none; }
  @media all and (max-width: 87.49em) {
    .admin-bar .admin-item.min {
      display: none; } }
  .admin-bar .page-details {
    text-align: left; }
  .admin-bar .site-details {
    text-align: right; }
  .admin-bar .admin-item {
    display: inline-block;
    padding: 0 9px 0 5px;
    border-right: 1px solid #6c6c75; }
    .admin-bar .admin-item:last-of-type {
      border: none; }
  .admin-bar strong {
    font-family: "AvenirBook", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700; }
  .admin-bar span {
    font-size: 13px;
    font-size: 1.3rem; }
  .admin-bar a {
    background: white;
    color: #8d92fc;
    font-size: 13px;
    font-size: 1.3rem;
    padding: 0 4px 1px;
    text-decoration: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(32, 32, 32, 0.1);
    -moz-box-shadow: 0 1px 2px rgba(32, 32, 32, 0.1);
    box-shadow: 0 1px 2px rgba(32, 32, 32, 0.1); }
    .admin-bar a:visited {
      color: #8d92fc; }
    .admin-bar a:hover {
      text-decoration: none;
      color: #202020;
      -webkit-box-shadow: 0 1px 2px rgba(32, 32, 32, 0);
      -moz-box-shadow: 0 1px 2px rgba(32, 32, 32, 0);
      box-shadow: 0 1px 2px rgba(32, 32, 32, 0); }
  .admin-bar .status-dot {
    width: 12px;
    height: 12px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
    margin: 0 3px;
    -webkit-box-shadow: 0 1px 2px rgba(32, 32, 32, 0.2) inset;
    -moz-box-shadow: 0 1px 2px rgba(32, 32, 32, 0.2) inset;
    box-shadow: 0 1px 2px rgba(32, 32, 32, 0.2) inset; }
  .admin-bar .st-local,
  .admin-bar .st-open {
    background-color: #89C625; }
  .admin-bar .st-dev,
  .admin-bar .st-draft {
    background-color: #FFC416; }
  .admin-bar .st-stage {
    background-color: #fdd700; }
  .admin-bar .st-prod,
  .admin-bar .st-closed {
    background-color: #fa272b; }

.seo-preview {
  width: 100%;
  max-width: 440px; }
  .seo-preview h2 {
    margin-bottom: 20px; }
  .seo-preview .preview-title {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .seo-preview .preview-title .fa {
      font-size: 14px;
      font-size: 1.4rem; }
    .seo-preview .preview-title strong {
      font-family: Arial,Helvetica,sans-serif;
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 700; }
    .seo-preview .preview-title .icon-share {
      font-size: 14px;
      font-size: 1.4rem;
      text-decoration: none;
      padding: 3px 3px;
      font-family: Arial,Helvetica,sans-serif; }
    .seo-preview .preview-title a.icon-share {
      background: #eee;
      padding: 3px 6px;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .seo-preview .preview-title a.icon-share:hover {
        -webkit-box-shadow: 0 1px 3px rgba(32, 32, 32, 0.4);
        -moz-box-shadow: 0 1px 3px rgba(32, 32, 32, 0.4);
        box-shadow: 0 1px 3px rgba(32, 32, 32, 0.4); }
  .seo-preview .clip {
    max-height: 1.3em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .seo-preview .preview {
    border: 1px solid #ccc;
    padding: 15px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 0 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .seo-preview .preview:hover {
      -webkit-box-shadow: 0 1px 3px rgba(32, 32, 32, 0.4);
      -moz-box-shadow: 0 1px 3px rgba(32, 32, 32, 0.4);
      box-shadow: 0 1px 3px rgba(32, 32, 32, 0.4); }
  .seo-preview .title, .seo-preview .url, .seo-preview .description {
    display: inline-block;
    width: 100%;
    margin: 0 0 0px;
    line-height: 1.2;
    font-weight: 400;
    color: #202020; }
  .seo-preview .description {
    line-height: 1.4; }
  .seo-preview .google-preview {
    font-family: Arial,Helvetica,sans-serif; }
    .seo-preview .google-preview .title {
      color: #1e0fbe;
      font-size: 18px;
      font-size: 1.8rem; }
    .seo-preview .google-preview .url {
      max-width: 586px;
      font-size: 14px;
      font-size: 1.4rem;
      color: #006621; }
    .seo-preview .google-preview .description {
      color: #545454;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.6; }
  .seo-preview .twitter-preview,
  .seo-preview .facebook-preview {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    line-height: 1.3em;
    border: 1px solid #ccc;
    padding: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden; }
    .seo-preview .twitter-preview .image,
    .seo-preview .facebook-preview .image {
      max-width: 438px;
      max-height: 220px;
      overflow: hidden;
      background-position: 50% 50%;
      background-size: cover;
      background-repeat: no-repeat; }
      .seo-preview .twitter-preview .image img,
      .seo-preview .facebook-preview .image img {
        left: -999em;
        position: relative; }
    .seo-preview .twitter-preview .text,
    .seo-preview .facebook-preview .text {
      padding: 15px;
      font-size: 14px;
      font-size: 1.4rem; }
    .seo-preview .twitter-preview .title,
    .seo-preview .facebook-preview .title {
      font-weight: 700;
      margin: 0 0 5px; }
    .seo-preview .twitter-preview .description,
    .seo-preview .facebook-preview .description {
      margin: 0 0 5px; }
    .seo-preview .twitter-preview .url,
    .seo-preview .facebook-preview .url {
      color: #8899A6;
      margin: 0; }
  .seo-preview .facebook-preview {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border-color: #dadde1; }
    .seo-preview .facebook-preview .text {
      background: #f2f3f5; }
    .seo-preview .facebook-preview .title {
      font-size: 16px;
      font-size: 1.6rem;
      color: #1d2129; }
    .seo-preview .facebook-preview .description {
      font-size: 14px;
      font-size: 1.4rem;
      color: #606770; }
    .seo-preview .facebook-preview .url {
      color: #606770;
      margin: 0;
      text-transform: uppercase;
      font-size: 12px;
      font-size: 1.2rem; }
  .seo-preview .meta-tags {
    font-family: "Roboto Mono", Monaco, Courier New, monospace;
    font-size: 12px;
    font-size: 1.2rem;
    background: #eee;
    padding: 10px; }
    .seo-preview .meta-tags > * {
      line-height: 1.6; }

section#debug {
  border-top: 1px solid #6c6c75;
  background: white;
  width: 100%;
  max-width: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) inset;
  margin: 0; }
  section#debug .col-group {
    max-width: 1200px;
    margin: 10px auto; }

.edit-this a {
  font-size: 70%;
  background: whitesmoke;
  color: #8d92fc;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 0 4px 1px;
  text-decoration: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(32, 32, 32, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(32, 32, 32, 0.1);
  box-shadow: 0 1px 2px rgba(32, 32, 32, 0.1); }
  .edit-this a:visited {
    color: #8d92fc; }
  .edit-this a:hover {
    text-decoration: none;
    color: #202020;
    -webkit-box-shadow: 0 1px 2px rgba(32, 32, 32, 0);
    -moz-box-shadow: 0 1px 2px rgba(32, 32, 32, 0);
    box-shadow: 0 1px 2px rgba(32, 32, 32, 0); }

h1 .edit-this {
  margin: 0 10px; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.btn {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  padding: 10px 15px 10px;
  font-weight: 400;
  font-family: "AvenirBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.4em;
  color: #252b43;
  text-align: center;
  vertical-align: middle;
  background-color: #ededed;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  *margin-left: .3em;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none; }
  .btn .fa.bordered {
    position: relative;
    margin: 0 0 0 10px; }
  .btn.set-width {
    min-width: 200px;
    text-align: left; }
  .btn:visited, .btn:hover {
    color: #252b43;
    text-decoration: none;
    background: #dfdfdf; }
  .btn:active, .btn:focus {
    outline: none; }
  .btn.has-icon {
    padding-right: 45px;
    position: relative; }
    .btn.has-icon .fa {
      position: absolute;
      right: 15px;
      top: calc(50% - 9px); }
    .btn.has-icon.has-paired-icons {
      padding-right: 70px; }
      .btn.has-icon.has-paired-icons .fa + .fa {
        right: 40px; }
  .btn.light-btn {
    background-color: #ededed; }
    .btn.light-btn:hover {
      background-color: #dfdfdf; }
  .btn.dark-btn {
    background-color: #535353;
    color: white; }
    .btn.dark-btn .fa.bordered {
      border-color: white; }
    .btn.dark-btn:hover {
      background-color: #202020; }
  .btn.primary-btn .fa.bordered, .btn.acc-bg .fa.bordered {
    border-color: white; }
  .btn.primary-btn:hover, .btn.acc-bg:hover {
    background-color: #202020;
    color: white; }
  .btn.ghost-btn {
    background: transparent;
    color: white; }

.button:first-child {
  *margin-left: 0; }

.disabled-button {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: default; }

.error-button {
  color: white; }
  .error-button:visited, .error-button:hover {
    color: white; }

.primary-button {
  background-color: #8d92fc; }

.secondary-button {
  background-color: #535353; }

.success-button {
  background-color: #6ebd48; }

.warning-button {
  background-color: #fdb035; }

.mini-button {
  padding: 3px 5px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 14px; }

.small-button {
  padding: 6px 10px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 16px; }

.large-button {
  padding: 11px 22px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: normal;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box; }

.extlarge-button {
  padding: 11px 22px;
  font-size: 21px;
  font-size: 2.1rem;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box; }

.button-group {
  position: relative;
  *zoom: 1;
  *margin-left: .3em;
  margin-bottom: 1.4em; }
  .button-group .button {
    position: relative;
    float: left;
    margin-left: -1px;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box; }
    .button-group .button:first-child {
      margin-left: 0;
      -webkit-border-top-right-radius: 2px;
      -webkit-border-bottom-right-radius: 0;
      -webkit-border-bottom-left-radius: 2px;
      -webkit-border-top-left-radius: 0;
      -moz-border-radius-topright: 2px;
      -moz-border-radius-bottomright: 0;
      -moz-border-radius-bottomleft: 2px;
      -moz-border-radius-topleft: 0;
      border-top-right-radius: 2px;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 2px;
      border-top-left-radius: 0;
      -webkit-background-clip: padding-box;
      -moz-background-clip: padding;
      background-clip: padding-box; }
    .button-group .button:last-child {
      -webkit-border-top-right-radius: 0;
      -webkit-border-bottom-right-radius: 2px;
      -webkit-border-bottom-left-radius: 0;
      -webkit-border-top-left-radius: 2px;
      -moz-border-radius-topright: 0;
      -moz-border-radius-bottomright: 2px;
      -moz-border-radius-bottomleft: 0;
      -moz-border-radius-topleft: 2px;
      border-top-right-radius: 0;
      border-bottom-right-radius: 2px;
      border-bottom-left-radius: 0;
      border-top-left-radius: 2px;
      -webkit-background-clip: padding-box;
      -moz-background-clip: padding;
      background-clip: padding-box; }
    .button-group .button.large:first-child {
      margin-left: 0;
      -webkit-border-top-right-radius: 4px;
      -webkit-border-bottom-right-radius: 0;
      -webkit-border-bottom-left-radius: 4px;
      -webkit-border-top-left-radius: 0;
      -moz-border-radius-topright: 4px;
      -moz-border-radius-bottomright: 0;
      -moz-border-radius-bottomleft: 4px;
      -moz-border-radius-topleft: 0;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 4px;
      border-top-left-radius: 0;
      -webkit-background-clip: padding-box;
      -moz-background-clip: padding;
      background-clip: padding-box; }
    .button-group .button.large:last-child {
      -webkit-border-top-right-radius: 0;
      -webkit-border-bottom-right-radius: 4px;
      -webkit-border-bottom-left-radius: 0;
      -webkit-border-top-left-radius: 4px;
      -moz-border-radius-topright: 0;
      -moz-border-radius-bottomright: 4px;
      -moz-border-radius-bottomleft: 0;
      -moz-border-radius-topleft: 4px;
      border-top-right-radius: 0;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 0;
      border-top-left-radius: 4px;
      -webkit-background-clip: padding-box;
      -moz-background-clip: padding;
      background-clip: padding-box; }

.button-toolbar {
  clear: both;
  margin-top: 0.7em;
  margin-bottom: 0.7em; }
  .button-toolbar .button-group {
    display: inline-block;
    *display: inline;
    *zoom: 1; }

form {
  margin: 0 0 1.4em 0; }
  form fieldset {
    margin-bottom: 1.4em;
    padding: 0;
    border-width: 0; }
  form legend {
    display: block;
    width: 100%;
    *margin-left: -7px;
    padding: 0;
    color: #252b43;
    border: 0;
    border-bottom: 1px solid white;
    white-space: normal; }
    form legend small {
      font-size: 14px;
      font-size: 1.4rem;
      color: #dfdfdf; }
  form p {
    margin-bottom: 0.7em; }
  form br {
    display: none; }

label,
input,
button,
select,
textarea {
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: baseline;
  *vertical-align: middle; }

input,
button,
select,
textarea {
  font-family: "AvenirBook", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

label {
  display: block;
  margin-bottom: 0.175em;
  font-weight: bold;
  color: #252b43;
  cursor: pointer; }
  label input,
  label textarea,
  label select {
    display: block; }

input,
textarea,
select {
  display: inline-block;
  width: 100%;
  padding: 4px;
  background-color: white;
  border: 1px solid white;
  color: #252b43; }
  input:hover,
  textarea:hover,
  select:hover {
    border-color: #f0f1ff; }

::-webkit-input-placeholder {
  font-size: 16px;
  font-size: 1.6rem; }

input:-moz-placeholder {
  font-size: 16px;
  font-size: 1.6rem; }

input[type="image"],
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  *margin-top: 0;
  line-height: normal;
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0 \9; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px; }

input[type="image"] {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

input[type="file"] {
  width: auto;
  padding: initial;
  line-height: initial;
  border: initial;
  background-color: transparent;
  background-color: initial;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

input[type="button"],
input[type="reset"],
input[type="submit"] {
  width: auto;
  height: auto;
  cursor: pointer;
  *overflow: visible; }

select,
input[type="file"] {
  height: 28px;
  *margin-top: 4px;
  line-height: 28px; }

select {
  width: auto;
  background-color: white;
  font-size: 13px;
  font-size: 1.3rem; }

select[multiple],
select[size] {
  height: auto; }

textarea {
  resize: vertical;
  overflow: auto;
  height: auto;
  overflow: auto;
  vertical-align: top; }

input[type="hidden"] {
  display: none; }

.radio,
.checkbox {
  padding-left: 18px;
  font-weight: normal; }

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  float: left;
  margin-left: -18px; }

.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle; }

.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
  margin-left: 10px; }

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: not-allowed; }

input:focus,
textarea:focus {
  border-color: #8d92fc, 40%;
  outline: 0;
  outline: thin dotted \9; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
select:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

.help-block,
.help-inline {
  color: #6c6c75; }

.help-block {
  display: block;
  margin-bottom: 0.7em; }

.help-inline {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px; }

.form-inline input,
.form-inline textarea,
.form-inline select {
  display: inline-block;
  margin-bottom: 0; }

.form-inline label {
  display: inline-block; }

.form-inline .radio,
.form-inline .checkbox,
.form-inline .radio {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle; }

.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-left: 0;
  margin-right: 3px; }

.form-search input,
.form-search textarea,
.form-search select {
  display: inline-block;
  margin-bottom: 0; }

.form-search .search-query {
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 0;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px; }

.form-search label {
  display: inline-block; }

.form-search .radio,
.form-search .checkbox,
.form-inline .radio {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle; }

.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"] {
  float: left;
  margin-left: 0;
  margin-right: 3px; }

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.4em;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent; }
  table th,
  table td {
    padding: 8px;
    vertical-align: top;
    border-top: 1px solid white;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4em;
    text-align: left; }
  table th {
    font-weight: bold; }
  table thead, table th {
    vertical-align: bottom; }
    table thead td, table th td {
      font-weight: bold; }
  table colgroup + thead tr:first-child th,
  table colgroup + thead tr:first-child td,
  table thead:first-child tr:first-child th,
  table thead:first-child tr:first-child td {
    border-top: 0; }
  table tbody + tbody {
    border-top: 2px solid white; }
  table tbody tr td,
  table tbody tr th {
    -webkit-transition: background-color 0.25s 0 linear;
    -moz-transition: background-color 0.25s 0 linear;
    -ms-transition: background-color 0.25s 0 linear;
    -o-transition: background-color 0.25s 0 linear;
    transition: background-color 0.25s 0 linear; }
  table tbody tr:hover td,
  table tbody tr:hover th {
    background-color: white; }

.table-condensed th,
.table-condensed td {
  padding: 4px 5px; }

.table-bordered {
  border: 1px solid white;
  border-left: 0;
  border-collapse: separate;
  *border-collapse: collapsed; }
  .table-bordered th,
  .table-bordered td {
    border-left: 1px solid white; }
  .table-bordered thead:first-child tr:first-child th,
  .table-bordered tbody:first-child tr:first-child th,
  .table-bordered tbody:first-child tr:first-child td {
    border-top: 0; }

.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: white; }

img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin-bottom: 1.4em; }
  figure img {
    margin-bottom: 0.35em; }
  figure figcaption {
    display: block;
    font-weight: normal;
    font-size: 14px;
    font-size: 1.4rem;
    color: #6c6c75; }

.list-bordered {
  list-style-type: none;
  margin: 0 0 1.4em 0;
  padding: 0; }
  .list-bordered li {
    margin-bottom: 0.35em;
    padding-bottom: 0.35em;
    border-bottom: 1px dashed #6c6c75; }
  .list-bordered li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom-width: 0; }

.link-list {
  list-style: none;
  clear: both;
  float: none;
  margin: 0 0 1.4em 0;
  padding: 0; }
  .link-list li {
    margin: 0;
    padding: 0; }
  .link-list li {
    margin-bottom: 15px; }
  .secondary-content .link-list {
    margin-top: 30px; }

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  /* disable global scrolling when featherlights are visible */
  overflow: hidden; }

.featherlight {
  display: none;
  /* dimensions: spanning the background from edge to edge */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  /* z-index needs to be >= elements on the site. */
  /* position: centering content */
  text-align: center;
  /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
  white-space: nowrap;
  /* styling */
  cursor: pointer;
  background: #333;
  /* IE8 "hack" for nested featherlights */
  background: rgba(0, 0, 0, 0); }

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.3); }

.featherlight:before {
  /* position: trick to center content vertically */
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.featherlight .featherlight-content {
  /* make content container for positioned elements (close button) */
  position: relative;
  /* position: centering vertical and horizontal */
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  /* dimensions: cut off images */
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  /* dimensions: handling large content */
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  /* styling */
  background: #fff;
  cursor: auto;
  /* reset white-space wrapping */
  white-space: normal; }

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: block; }

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
  display: none; }

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: absolute;
  z-index: 9999;
  top: 30px;
  right: 20px;
  /* dimensions: 25px x 25px */
  line-height: 50px;
  width: 50px;
  /* styling */
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 30px;
  background: #fff;
  /* Set the background in case it overlaps the content */
  background: transparent;
  color: #000;
  border: none;
  padding: 0; }

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0; }

.featherlight .featherlight-image {
  /* styling */
  width: 100%; }

.featherlight-iframe .featherlight-content {
  /* removed the border for image croping since iframe is edge to edge */
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch; }

.featherlight iframe {
  /* styling */
  border: none; }

.featherlight * {
  /* See https://github.com/noelboss/featherlight/issues/42 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; } }

/* hide non featherlight items when printing */
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none; } }

img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin-bottom: 1.4em; }
  figure img {
    margin-bottom: 0.35em; }
  figure figcaption {
    display: block;
    font-weight: normal;
    font-size: 14px;
    font-size: 1.4rem;
    color: #6c6c75; }

.fa {
  position: relative; }
  .fa .fa {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 50%; }
  .fa.bordered {
    font-size: 9px;
    font-size: 0.9rem;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 2px solid #202020;
    padding: 2px 2px 2px; }
    .fa.bordered.fa-close {
      padding: 2px 3px 3px; }

.status {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  display: inline-block;
  position: relative;
  height: 14px;
  padding: 2px 2px 2px 16px;
  background: #ededed;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .status .status-date {
    display: inline-block;
    height: 14px;
    max-width: 0;
    width: auto;
    display: inline-block;
    overflow: hidden;
    opacity: 0.0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 10px;
    font-size: 1rem;
    line-height: 12px;
    padding: 2px 0px; }
  .status .status-dot {
    min-width: 14px;
    height: 14px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    position: absolute;
    left: 2px;
    bottom: 2px;
    line-height: 12px;
    background: #6ebd48; }
  .status:hover {
    background: white;
    background: white; }
    .status:hover .status-date {
      max-width: 300px;
      opacity: 1.0;
      padding: 2px 4px 2px 6px;
      -webkit-transition: all 0.3s ease-in-out 0.3s;
      -moz-transition: all 0.3s ease-in-out 0.3s;
      -ms-transition: all 0.3s ease-in-out 0.3s;
      -o-transition: all 0.3s ease-in-out 0.3s;
      transition: all 0.3s ease-in-out 0.3s; }
  .status.alert .status-dot {
    background: #fdb035; }
  .status.expired .status-dot {
    background: #fa272b; }

.icon {
  display: inline-block;
  vertical-align: top;
  width: auto;
  box-sizing: border-box;
  position: relative;
  background: white;
  width: 20px;
  height: 20px;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  background-image: url(/_assets/img/arrow-icon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .icon.large-icon {
    width: 40px;
    height: 40px; }
  .icon.arrow-icon {
    background-image: url(/_assets/img/arrow-icon.png); }
    .icon.arrow-icon.white-icon {
      background-image: url(/_assets/img/white-arrow-icon.png); }
  .icon.purple-arrow-icon {
    background-image: url(/_assets/img/purple-arrow-icon.png); }
  .icon.down-arrow-icon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg); }
  .icon.open-close-icon {
    background-image: url(/_assets/img/open-close-icon.png); }
    .icon.open-close-icon.is-open {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg); }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  text-rendering: optimizelegibility; }

h1 small, h2 small {
  font-weight: normal;
  color: #dfdfdf; }

h1, .h1 {
  margin-bottom: 0.35em;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.2; }

h2, .h2 {
  margin-bottom: 0.35em;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2; }

h3, .h3 {
  margin-bottom: 0.4666666667em;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.3; }

h4, .h4 {
  margin-bottom: 0.7em;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.25; }

h5, .h5 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 0.7em; }

h6, .h6 {
  margin-bottom: 0.7em;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase; }

p, ol, ul, li, dl, address {
  margin-bottom: 1.4em;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4em; }

small {
  font-size: 0.8em; }

hr {
  display: block;
  margin: 1em 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #6c6c75;
  border-bottom: 1px solid white; }

ul, ol {
  margin: 0 0 1.4em 0;
  padding: 0 0 0 10px; }
  ul li, ol li {
    margin: 0; }

blockquote {
  margin: 0 0 1.4em -10px;
  padding-left: 10px;
  border-left: 2px solid #6c6c75;
  font-family: "Teko", sans-serif;
  font-style: normal; }

q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

cite {
  font-style: normal; }

dl,
dd {
  margin-bottom: 1.4em; }

dt {
  font-weight: 700;
  text-transform: uppercase; }

.dl-horizontal dt {
  float: left;
  clear: left;
  width: 20.25%;
  text-align: right; }

.dl-horizontal dd {
  margin-left: 22.78%; }

abbr[title] {
  border-bottom: 1px dotted #6c6c75;
  cursor: help; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

ins {
  background-color: white;
  color: #252b43;
  text-decoration: none; }

mark {
  background-color: white;
  color: #252b43;
  font-style: italic;
  font-weight: 700; }

pre,
code,
kbd,
samp {
  font-family: "Roboto Mono", Monaco, Courier New, monospace;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4em; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

sub,
sup {
  position: relative;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 0;
  vertical-align: baselineheight; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

a,
.link {
  text-decoration: underline;
  cursor: pointer;
  color: inherit; }
  a:hover,
  .link:hover {
    text-decoration: underline; }
  a:focus,
  .link:focus {
    outline: 0; }
  a:hover, a:active,
  .link:hover,
  .link:active {
    outline: 0; }

/**
 * @license
 * MyFonts Webfont Build ID 2920191, 2014-11-12T05:07:44-0500
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: AvenirLTStd-Heavy by Linotype
 * URL: http://www.myfonts.com/fonts/linotype/avenir/85-heavy/
 * 
 * Webfont: AvenirLTStd-Book by Linotype
 * URL: http://www.myfonts.com/fonts/linotype/avenir/45-book/
 * 
 * 
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=2920191
 * Licensed pageviews: 250,000
 * Webfonts copyright: Copyright &#x00A9; 1989, 1995, 2002 Adobe Systems Incorporated.  All Rights Reserved. &#x00A9; 1981, 1995, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * © 2014 MyFonts Inc
*/
/* @import must be at top of file, otherwise CSS will not work */
@font-face {
  font-family: 'AvenirBold';
  src: url("/_assets/fonts/avenir/2C8EFF_0_0.eot");
  src: url("/_assets/fonts/avenir/2C8EFF_0_0.eot?#iefix") format("embedded-opentype"), url("/_assets/fonts/avenir/2C8EFF_0_0.woff2") format("woff2"), url("/_assets/fonts/avenir/2C8EFF_0_0.woff") format("woff"), url("/_assets/fonts/avenir/2C8EFF_0_0.ttf") format("truetype"); }

@font-face {
  font-family: 'AvenirBook';
  src: url("/_assets/fonts/avenir/2C8EFF_1_0.eot");
  src: url("/_assets/fonts/avenir/2C8EFF_1_0.eot?#iefix") format("embedded-opentype"), url("/_assets/fonts/avenir/2C8EFF_1_0.woff2") format("woff2"), url("/_assets/fonts/avenir/2C8EFF_1_0.woff") format("woff"), url("/_assets/fonts/avenir/2C8EFF_1_0.ttf") format("truetype"); }

.logo {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 80px;
  box-sizing: border-box;
  position: relative;
  height: auto; }

.header-upload {
  display: inline-block;
  vertical-align: top;
  width: 50px;
  box-sizing: border-box;
  position: relative; }

.page-header {
  display: block;
  position: relative;
  z-index: 50;
  background: #202020; }
  .page-header .container {
    padding: 0px; }
  .page-header .mobile-nav {
    display: none; }
  @media all and (max-width: 46.24em) {
    .page-header {
      position: fixed;
      background: white;
      top: 0; }
      .page-header .logo {
        margin-top: 15px;
        margin-left: 0px;
        z-index: 10; }
      .page-header .mobile-nav {
        position: absolute;
        display: block;
        top: 25px;
        right: 20px;
        height: 40px;
        padding: 5px 0;
        line-height: 24px;
        box-sizing: border-box;
        z-index: 60; }
        .page-header .mobile-nav .menu {
          margin-top: 1px;
          margin-right: 3px;
          display: inline-block; }
        .page-header .mobile-nav .icon {
          margin-left: 10px; }
      .page-header .site-nav {
        display: inline-block;
        top: -180vh;
        height: 100vh;
        -webkit-transition: all 0.3s ease-in-out 0.3s;
        -moz-transition: all 0.3s ease-in-out 0.3s;
        -ms-transition: all 0.3s ease-in-out 0.3s;
        -o-transition: all 0.3s ease-in-out 0.3s;
        transition: all 0.3s ease-in-out 0.3s;
        position: fixed;
        background: white;
        width: 100%;
        padding: 100px 20px 20px;
        z-index: 9;
        left: 0; }
        .page-header .site-nav .container {
          opacity: 0.0;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
      .page-header .main-nav li, .page-header .main-nav a {
        font-size: 18px;
        font-size: 1.8rem; }
      .page-header .main-nav a {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        padding: 5px 0; }
      .page-header .sub-nav {
        padding-left: 20px; }
        .page-header .sub-nav li, .page-header .sub-nav a {
          color: #6c6c75; }
      .page-header.show-nav .site-nav {
        top: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .page-header.show-nav .site-nav .container {
          opacity: 1.0;
          -webkit-transition: all 0.3s ease-in-out 0.3s;
          -moz-transition: all 0.3s ease-in-out 0.3s;
          -ms-transition: all 0.3s ease-in-out 0.3s;
          -o-transition: all 0.3s ease-in-out 0.3s;
          transition: all 0.3s ease-in-out 0.3s; } }
  @media all and (min-width: 46.25em) {
    .page-header {
      position: relative;
      position: fixed;
      text-align: right;
      width: 80px;
      box-sizing: border-box;
      min-width: 50px;
      padding: 20px 15px; }
      .page-header .logo {
        width: 50px;
        margin-top: 11px; }
        .page-header .logo .fa {
          position: absolute;
          top: 10px;
          right: -30px;
          background: whitesmoke;
          background-image: -webkit-gradient(linear, 0 0, 0 100%, from(whitesmoke), to(#dfdfdf));
          background-image: -webkit-linear-gradient(top, whitesmoke, #dfdfdf);
          background-color: #dfdfdf;
          background-image: -moz-linear-gradient(top, whitesmoke, #dfdfdf);
          background-image: -ms-linear-gradient(top, whitesmoke, #dfdfdf);
          background-image: -o-linear-gradient(top, whitesmoke, #dfdfdf);
          background-image: linear-gradient(top, whitesmoke, #dfdfdf);
          background-repeat: repeat-x;
          -webkit-box-shadow: 0 1px 3px rgba(32, 32, 32, 0.1);
          -moz-box-shadow: 0 1px 3px rgba(32, 32, 32, 0.1);
          box-shadow: 0 1px 3px rgba(32, 32, 32, 0.1);
          color: #8d92fc;
          font-size: 20px;
          font-size: 2rem;
          text-align: center;
          line-height: 20px;
          display: inline-block;
          width: 20px;
          height: 20px;
          padding: 5px;
          -webkit-border-radius: 100px;
          -moz-border-radius: 100px;
          border-radius: 100px; }
      .page-header .header-nav,
      .page-header .header-footer {
        width: 50px;
        text-align: center;
        line-height: 50px; }
        .page-header .header-nav .fa,
        .page-header .header-footer .fa {
          color: #dfdfdf;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          font-size: 20px;
          font-size: 2rem;
          background-color: rgba(255, 255, 255, 0.08);
          padding: 15px;
          height: 50px;
          box-sizing: border-box;
          -webkit-border-radius: 100px;
          -moz-border-radius: 100px;
          border-radius: 100px; }
          .page-header .header-nav .fa:hover,
          .page-header .header-footer .fa:hover {
            color: white;
            background: #535353; }
      .page-header .header-nav {
        margin-top: 12px;
        padding-top: 15px;
        border-top: 1px solid #535353; }
        .page-header .header-nav a {
          margin: 0 0 10px 0; }
      .page-header .header-footer {
        margin-bottom: 10px;
        padding-top: 10px;
        text-align: center;
        position: absolute;
        bottom: 0; }
      .page-header .site-nav {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        width: calc(100% - 180px); }
      .page-header .main-nav li,
      .page-header .sub-nav li {
        width: auto;
        position: relative; }
      .page-header .main-nav {
        margin: 20px 0 30px 0; }
        .page-header .main-nav li {
          margin: 0 5px 0 5px;
          padding: 10px; }
          .page-header .main-nav li:last-of-type {
            margin-right: -10px; }
        .page-header .main-nav a {
          border-bottom: 2px solid rgba(253, 215, 0, 0); }
          .page-header .main-nav a:hover {
            border-bottom: 2px solid #fdd700;
            text-decoration: none; }
      .page-header .sub-nav {
        position: absolute;
        left: -20px;
        width: 280px;
        text-align: left;
        padding: 0;
        background: white;
        padding: 10px 20px;
        pointer-events: none;
        top: 20px;
        opacity: 0.0;
        z-index: -100;
        -webkit-transition: all 0.3s ease-in-out 0.3s;
        -moz-transition: all 0.3s ease-in-out 0.3s;
        -ms-transition: all 0.3s ease-in-out 0.3s;
        -o-transition: all 0.3s ease-in-out 0.3s;
        transition: all 0.3s ease-in-out 0.3s; }
        .page-header .sub-nav li {
          margin: 0;
          padding: 2px 10px; }
      .page-header .main-nav li:hover .sub-nav {
        opacity: 1.0;
        z-index: 1;
        top: 35px;
        pointer-events: all; } }
.form-control {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin: 0 0 20px 0;
  width: 100%;
  max-width: 800px;
  position: relative; }
  .form-control.has-icon {
    padding-right: 35px; }
    .form-control.has-icon .fa {
      position: absolute;
      top: 5px;
      right: 5px;
      opacity: 0.0;
      font-size: 20px;
      font-size: 2rem; }
    .form-control.has-icon.icon-checked .fa {
      opacity: 1.0; }
  .form-control .cal-icon:after {
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: 11px;
    right: 11px;
    opacity: 1.0;
    text-align: center;
    width: 22px;
    font-size: 20px;
    font-size: 2rem;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f073";
    background: white;
    z-index: 100; }
  .form-control .cal-icon:hover:after {
    pointer-events: none; }
  .form-control .file {
    line-height: 18px;
    margin-top: 10px; }
  @media all and (min-width: 46.25em) {
    .form-control {
      padding-left: 140px; }
      .form-control .label {
        width: 130px;
        margin: 0 0 0 -140px;
        float: left;
        font-family: "AvenirBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 30px; } }
.label {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "AvenirBook", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .label .fa {
    font-size: 13px;
    font-size: 1.3rem;
    margin: 0 4px 0 0;
    opacity: 0.8; }

.field {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 5px 10px;
  border: 1px solid #6c6c75;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }
  .field:focus {
    border-color: #6c6c75; }
  .field:hover {
    border-color: #535353; }
  .field.auto-width {
    width: auto; }
  .field.full-width {
    width: 100%; }

textarea {
  min-height: 150px; }

.checkbox {
  display: inline-block;
  vertical-align: top;
  width: auto;
  box-sizing: border-box;
  position: relative;
  margin: 5px 5px 0 0; }

.radio {
  display: inline-block;
  vertical-align: top;
  width: auto;
  box-sizing: border-box;
  position: relative;
  margin: 5px 5px 0 0; }

.req {
  color: #fa272b;
  font-style: normal; }

.icon-input {
  margin: 0 0 0px 0; }
  .icon-input .checkbox {
    display: inline-block;
    display: none;
    width: auto; }

.radio-control,
.checkbox-control {
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem; }
  .radio-control input.radio,
  .radio-control input.checkbox,
  .checkbox-control input.radio,
  .checkbox-control input.checkbox {
    display: none;
    display: inline-block;
    opacity: 0.5; }
  .radio-control.selected,
  .checkbox-control.selected {
    color: #6ebd48; }

.select-container {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  background: white;
  color: #252b43;
  border: 1px solid #dfdfdf; }
  .select-container select, .select-container .select, .select-container option {
    border: none;
    color: #252b43;
    position: relative;
    padding: 5px 10px;
    margin: 0;
    height: 37px;
    z-index: 1;
    -webkit-appearance: none; }
  .select-container:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 10;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #404040; }

.additional-content-container {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
  position: relative; }
  .additional-content-container .additional-content-text {
    display: block;
    max-height: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden; }
  .additional-content-container.show-text .additional-content-text {
    max-height: 1000px; }

.login-form {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  margin: 40px 0 40px;
  max-width: 600px;
  margin-top: 20px;
  padding: 20px 20px 20px;
  color: #252b43;
  background: #eee; }
  .login-form .title {
    padding: 0; }
  .login-form .form-control {
    margin: 20px 0;
    display: block; }
  .login-form label {
    color: #252b43;
    padding: 0; }
  .login-form .field, .login-form .btn {
    font-size: 20px;
    font-size: 2rem;
    padding: 10px; }
  .login-form .checkbox {
    display: inline-block; }
  .login-form .btn {
    background: #8d92fc;
    color: white;
    padding: 10px 30px;
    margin-right: 10px;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .login-form .btn:hover {
      background: #202020; }
  .login-form.site-live.env-local .btn.submit, .login-form.site-live.env-stage .btn.submit {
    background: #fa272b;
    cursor: not-allowed; }

.image-bg {
  background-color: #ededed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden; }
  .image-bg img {
    left: -9999em;
    position: relative; }
  .lightergrey-bg .image-bg {
    background-color: white; }

.white-bg {
  background-color: white; }

.offwhite-bg {
  background-color: whitesmoke; }

.lightergrey-bg {
  background-color: #ededed; }

.grey-bg {
  background-color: #6c6c75; }

.blue-bg {
  background-color: #378adf; }

.dark-bg {
  background-color: #535353;
  color: white; }

.black-bg {
  background-color: #202020;
  color: white; }

.images {
  list-style: none;
  clear: both;
  float: none;
  margin: 0 0 1.4em 0;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  opacity: 1.0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .images li {
    margin: 0;
    padding: 0; }
  .images li {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    margin: 0 0 0;
    padding: 0px;
    font-size: 14px;
    font-size: 1.4rem; }
  .images .status-dot {
    width: 14px;
    height: 14px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background: #6ebd48;
    cursor: pointer; }
  .images li.alert .status-dot {
    background: #fdb035; }
  .images li.expired .status-dot {
    background: #fa272b;
    max-width: none;
    width: auto;
    text-align: center;
    font-size: 9px;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: white;
    padding: 0 0px 0;
    line-height: 16px;
    max-width: 50px; }
    .images li.expired .status-dot strong {
      padding: 0 6px;
      display: inline-block; }
  .images .image-title {
    width: 100%;
    display: inline-block; }
  .images .image-text {
    color: #6c6c75;
    width: 100%;
    display: inline-block; }
  .images .tag {
    font-size: 11px;
    font-size: 1.1rem;
    color: #6c6c75;
    padding: 1px 4px;
    background: rgba(32, 32, 32, 0.08);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 3px 3px 0;
    display: inline-block; }
  .images.fade-out {
    opacity: 0.0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .images.is-grid {
    margin: 0 -10px 10px;
    align-content: flex-start; }
    .images.is-grid li {
      overflow: hidden;
      padding: 0px;
      margin: 0 0 10px; }
    .images.is-grid li.expired .status {
      padding-left: 50px; }
    .images.is-grid li.expired:hover .image-actions {
      opacity: 1.0;
      background-color: rgba(141, 146, 252, 0.8); }
    .images.is-grid .title-row {
      display: none; }
    .images.is-grid .image-container {
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      width: 100%;
      height: 0px;
      padding-bottom: 100%;
      position: relative; }
      .images.is-grid .image-container .icon-input {
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        position: absolute;
        top: 0px;
        right: 0px;
        display: inline-block;
        opacity: 0.0;
        z-index: -1;
        pointer-events: none;
        width: 100%;
        height: 100%; }
        .images.is-grid .image-container .icon-input a, .images.is-grid .image-container .icon-input .icon-container {
          width: 100%;
          height: 100%;
          color: #252b43; }
        .images.is-grid .image-container .icon-input .fa {
          position: absolute;
          top: 13px;
          right: 13px;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          background: #ededed;
          background: whitesmoke; }
          .images.is-grid .image-container .icon-input .fa:hover {
            border-color: #202020;
            color: #202020; }
          .images.is-grid .image-container .icon-input .fa.fa-close {
            padding: 2px 3px 2px;
            font-size: 10px;
            font-size: 1rem; }
            .images.is-grid .image-container .icon-input .fa.fa-close:hover {
              color: #fa272b;
              border-color: #fa272b; }
        .images.is-grid .image-container .icon-input.selected .icon-container .fa {
          border-color: #202020;
          background: #202020;
          color: white; }
    .images.is-grid .image-actions {
      width: 100%;
      padding: 0px 0px 100%;
      box-sizing: border-box;
      text-align: center;
      position: absolute;
      top: 0;
      right: 0;
      opacity: 0.0;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .images.is-grid .image-actions .image-actions-container {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        box-sizing: border-box;
        padding: 10%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: space-evenly;
        justify-content: space-evenly; }
      .images.is-grid .image-actions .icon-input {
        font-size: 40px;
        font-size: 4rem;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-border-radius: 1000px;
        -moz-border-radius: 1000px;
        border-radius: 1000px;
        padding: 2px 2px;
        height: 30%;
        width: 30%;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        margin: 5%;
        background: rgba(255, 255, 255, 0); }
        .images.is-grid .image-actions .icon-input .fa.fa-search .fa {
          font-size: 13px;
          font-size: 1.3rem;
          top: calc(50% - 8px);
          left: calc(50% - 8px); }
        .images.is-grid .image-actions .icon-input .fa.fa-folder-o .fa {
          font-size: 13px;
          font-size: 1.3rem;
          top: calc(50% - 5px);
          left: calc(50% - 6px); }
        .images.is-grid .image-actions .icon-input .icon-container {
          color: #252b43;
          color: white;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
        .images.is-grid .image-actions .icon-input:hover {
          background: rgba(255, 255, 255, 0.2);
          color: white; }
          .images.is-grid .image-actions .icon-input:hover .icon-container {
            color: #252b43; }
        .images.is-grid .image-actions .icon-input.selected {
          color: white; }
    .images.is-grid .status {
      position: absolute;
      bottom: 8px;
      left: 8px; }
    .images.is-grid .image-title {
      font-size: 14px;
      font-size: 1.4rem;
      max-height: 38px;
      overflow: hidden; }
      .images.is-grid .image-title .flagged {
        color: white;
        background: #fa272b;
        font-size: 10px;
        font-size: 1rem;
        padding: 2px 2px 2px;
        width: 9px;
        height: 9px;
        top: -1px;
        position: relative;
        text-align: center;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px; }
      .images.is-grid .image-title .thumb {
        height: 15px;
        filter: grayscale(10);
        position: relative;
        display: inline-block; }
        .images.is-grid .image-title .thumb img {
          display: inline-block;
          width: 100%;
          height: 100%; }
    .images.is-grid .image-details {
      padding: 10px 0px 0;
      font-size: 11px;
      font-size: 1.1rem;
      width: 100%;
      box-sizing: border-box;
      max-height: 101px;
      overflow: hidden;
      background: transparent;
      bottom: 0;
      left: 0;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .images.is-grid .image-details .label .fa {
        display: none;
        margin-right: 3px;
        color: #6c6c75; }
      .images.is-grid .image-details .image-text {
        display: none; }
      .images.is-grid .image-details .dates {
        display: none;
        opacity: 0.0;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s; }
    .images.is-grid .image-date {
      display: none; }
    .images.is-grid li:hover .image-actions {
      opacity: 0.9;
      top: 0; }
    .images.is-grid li.ui-selecting .image-actions {
      opacity: 0.9;
      top: 0; }
    .images.is-grid li.fade-out {
      width: 0px;
      margin-left: -10px !important;
      -webkit-transform: scale(0.5);
      -moz-transform: scale(0.5);
      -ms-transform: scale(0.5);
      -o-transform: scale(0.5);
      transform: scale(0.5);
      -webkit-transition: all 0.2s ease-in-out 0.2s;
      -moz-transition: all 0.2s ease-in-out 0.2s;
      -ms-transition: all 0.2s ease-in-out 0.2s;
      -o-transition: all 0.2s ease-in-out 0.2s;
      transition: all 0.2s ease-in-out 0.2s; }
      .images.is-grid li.fade-out .image-container,
      .images.is-grid li.fade-out .image-details {
        opacity: 0.0;
        -webkit-transition: 0.2s;
        -moz-transition: 0.2s;
        -ms-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s; }
    @media all and (min-width: 37.5em) {
      .images.is-grid {
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        margin: 0 -10px 10px; }
        .images.is-grid li {
          width: calc(50% - 20px);
          margin: 10px 10px 20px; } }
    @media all and (min-width: 46.25em) {
      .images.is-grid li {
        width: calc(33.333% - 20px); } }
    @media all and (min-width: 61.25em) {
      .images.is-grid li {
        width: calc(25% - 20px); } }
    @media all and (min-width: 87.5em) {
      .images.is-grid li {
        width: calc(16.5% - 20px); } }
    @media all and (min-width: 118.75em) {
      .images.is-grid li {
        width: calc(12.5% - 20px); } }
  .images.is-list {
    margin: 0 -10px 10px; }
    .images.is-list li {
      background: white;
      overflow: hidden;
      padding: 10px;
      margin: 0px 0 0px;
      display: flex;
      flex-direction: row;
      border-top: 1px solid #dfdfdf; }
      .images.is-list li:hover {
        background-color: #ededed;
        background-color: whitesmoke; }
    .images.is-list .title-row {
      border-top: none;
      font-weight: 700;
      color: #6c6c75; }
      .images.is-list .title-row strong {
        color: #252b43;
        font-family: "AvenirBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
      .images.is-list .title-row .image-container {
        width: 70px;
        height: auto; }
      .images.is-list .title-row .image-actions {
        text-align: left;
        padding: 0 20px; }
    .images.is-list .image-container {
      width: 70px;
      height: 70px;
      margin-left: 25px;
      margin-right: 20px;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      .images.is-list .image-container .status {
        position: absolute;
        top: calc(50% - 9px);
        top: 20px;
        left: 8px;
        pointer-events: none; }
      .images.is-list .image-container .icon-input {
        opacity: 0.0;
        z-index: -1;
        pointer-events: none;
        position: absolute;
        bottom: 00px;
        left: 0px;
        width: 100%;
        height: 100%; }
        .images.is-list .image-container .icon-input a, .images.is-list .image-container .icon-input .icon-container {
          width: 100%;
          height: 100%;
          color: #252b43;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
          .images.is-list .image-container .icon-input a .fa, .images.is-list .image-container .icon-input .icon-container .fa {
            position: absolute;
            bottom: 20px;
            left: 8px; }
        .images.is-list .image-container .icon-input.selected .icon-container .fa {
          border-color: #202020;
          background: #202020;
          color: white; }
    .images.is-list .image-details {
      width: calc(100% - 300px);
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .images.is-list .image-details .image-text {
        display: inline-block;
        font-size: 13px;
        font-size: 1.3rem; }
    .images.is-list .image-actions {
      width: 200px;
      padding: 0px 0px 0;
      box-sizing: border-box;
      text-align: center;
      top: 0;
      right: 0;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      background: transparent; }
      .images.is-list .image-actions .image-actions-container {
        box-sizing: border-box;
        padding: 0 10px;
        height: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between; }
      .images.is-list .image-actions .icon-input {
        font-size: 27px;
        font-size: 2.7rem;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-border-radius: 1000px;
        -moz-border-radius: 1000px;
        border-radius: 1000px;
        padding: 2px 2px;
        height: 34px;
        width: 34px;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        color: #6c6c75;
        margin: 0%;
        background: rgba(255, 255, 255, 0); }
        .images.is-list .image-actions .icon-input .fa.fa-search .fa {
          font-size: 10px;
          font-size: 1rem;
          top: calc(50% - 5px);
          left: calc(50% - 6px); }
        .images.is-list .image-actions .icon-input .fa.fa-folder-o .fa {
          font-size: 10px;
          font-size: 1rem;
          top: calc(50% - 3px);
          left: calc(50% - 5px); }
        .images.is-list .image-actions .icon-input:hover {
          background: rgba(255, 255, 255, 0.2);
          color: #202020; }
        .images.is-list .image-actions .icon-input.selected {
          color: white; }
    .images.is-list li.expired .status {
      padding-left: 16px; }
      .images.is-list li.expired .status .status-dot strong {
        display: none; }
  .images.select-mode.is-grid .image-container {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95); }
    .images.select-mode.is-grid .image-container .icon-input {
      opacity: 1.0;
      z-index: 1;
      pointer-events: all; }
    .images.select-mode.is-grid .image-container.selected-parent {
      -webkit-transform: scale(0.95);
      -moz-transform: scale(0.95);
      -ms-transform: scale(0.95);
      -o-transform: scale(0.95);
      transform: scale(0.95);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1); }
  .images.select-mode.is-grid .image-actions {
    opacity: 0.0;
    z-index: -1; }
  .images.select-mode.is-list .image-container .icon-input {
    opacity: 1.0;
    z-index: 1;
    pointer-events: all; }
  .images.select-mode.is-list .image-actions {
    opacity: 0.1;
    pointer-events: none; }
  .images.collections .image-details {
    padding: 10px;
    background-color: #6c6c75;
    color: white;
    font-family: "AvenirBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

@media all and (min-width: 46.25em) {
  .el {
    margin: 0 -5px 10px; }
    .el li {
      width: calc(49.5% - 10px);
      margin: 5px; } }

@media all and (min-width: 61.25em) {
  .el li {
    width: calc(33% - 10px); } }

@media all and (min-width: 87.5em) {
  .el li {
    width: calc(24.5% - 10px); } }

.page-title {
  padding: 15px 24px 20px;
  box-sizing: border-box; }
  .page-title .client-logo {
    height: 70px; }

.tags {
  list-style: none;
  clear: both;
  float: none;
  margin: 0;
  padding: 0; }
  .tags li {
    margin: 0;
    padding: 0; }
  .tags li {
    display: inline-block;
    vertical-align: top;
    width: auto;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 7px 10px;
    margin: 0 10px 10px 0; }
    .tags li .fa {
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      font-size: 9px;
      font-size: 0.9rem;
      margin-left: 5px;
      text-align: center;
      cursor: pointer;
      width: 12px;
      height: 12px;
      top: -2px;
      padding: 0 0 0 0px;
      line-height: 12px;
      background: rgba(32, 32, 32, 0.1);
      -webkit-border-radius: 100px;
      -moz-border-radius: 100px;
      border-radius: 100px; }
      .tags li .fa:hover {
        background: #202020;
        color: white; }
    .tags li .simple-status-icon {
      top: 3px;
      margin-right: 3px; }
    .tags li:not(.selected) {
      background: white;
      color: #535353;
      cursor: pointer; }
      .tags li:not(.selected):hover {
        background-color: #535353;
        color: white; }

.sticky-filters {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: -1px;
  z-index: 20;
  z-index: 20; }

.filters-container.sticky {
  z-index: 2000; }

.page-filters {
  background: #535353;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box; }
  .page-filters .filters-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 20px 0 10px;
    box-sizing: border-box;
    color: white; }
    .page-filters .filters-list .filter-group {
      color: white;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      font-family: "AvenirBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      cursor: pointer; }
      .page-filters .filters-list .filter-group.selected, .page-filters .filters-list .filter-group:hover {
        color: #202020; }
  @media all and (min-width: 46.25em) {
    .page-filters {
      flex-direction: row;
      justify-content: space-between; }
      .page-filters .filters-list {
        width: 100%;
        flex-direction: row;
        justify-content: space-between; }
        .page-filters .filters-list li {
          width: auto; } }
.filter-title,
.filter-group {
  padding: 15px 10px 15px 0px; }

.filter-group:hover {
  color: #202020; }

.filter-search {
  padding: 10px 55px 10px 10px;
  position: relative;
  background: #6c6c75;
  width: 30%; }
  .filter-search .field {
    border: none;
    background: transparent;
    padding: 7px 10px 8px 10px;
    color: white; }
    .filter-search .field::-webkit-input-placeholder {
      color: #ededed; }
    .filter-search .field:-moz-placeholder {
      color: #ededed; }
  .filter-search .submit-search {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0px;
    height: 100%;
    width: auto;
    color: white;
    background: transparent;
    padding: 10px 20px;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .filter-search .submit-search:hover {
      background-color: #535353; }
    .filter-search .submit-search:active, .filter-search .submit-search:focus {
      outline: none; }

.filter-refresh {
  padding: 15px 10px 15px 10px;
  background: #202020;
  color: white;
  width: 20%;
  border: none;
  min-width: 160px;
  text-decoration: none;
  text-align: center; }

.filter-dropdown {
  background: whitesmoke;
  padding: 0 30px;
  -webkit-box-shadow: 0 4px 0 rgba(32, 32, 32, 0.1);
  -moz-box-shadow: 0 4px 0 rgba(32, 32, 32, 0.1);
  box-shadow: 0 4px 0 rgba(32, 32, 32, 0.1);
  max-height: 0;
  opacity: 0.0;
  -webkit-transition: all 0.25s ease-in-out 0.3s;
  -moz-transition: all 0.25s ease-in-out 0.3s;
  -ms-transition: all 0.25s ease-in-out 0.3s;
  -o-transition: all 0.25s ease-in-out 0.3s;
  transition: all 0.25s ease-in-out 0.3s;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: absolute;
  top: 55px;
  width: 100%;
  left: 0; }
  @media all and (min-width: 61.25em) {
    .filter-dropdown {
      display: inline-block; } }
.filter-group:hover .filter-dropdown {
  padding: 20px 30px 10px;
  max-height: 400px;
  opacity: 1.0;
  -webkit-transition: all 0.25s ease-in-out 0.25s;
  -moz-transition: all 0.25s ease-in-out 0.25s;
  -ms-transition: all 0.25s ease-in-out 0.25s;
  -o-transition: all 0.25s ease-in-out 0.25s;
  transition: all 0.25s ease-in-out 0.25s; }

.date-range {
  display: flex;
  flex-direction: row;
  margin: 0 0 20px; }
  .date-range .label {
    margin: 0 10px 0 0; }

.grid-header {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  background: white;
  padding-bottom: 8px;
  margin: 10px 0 20px; }
  .grid-header .grid-header-row {
    display: flex;
    flex-direction: column; }
  .grid-header .grid-header-bottom-row {
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    border-top: 2px solid #dfdfdf;
    padding-top: 15px;
    margin-top: 15px; }
    .grid-header .grid-header-bottom-row .status {
      top: 3px;
      background: transparent;
      cursor: pointer; }
  .grid-header .grid-title {
    margin: 0 0 10px; }
  .grid-header .search-breadcrumbs strong {
    font-family: "AvenirBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 0px 4px;
    text-decoration: underline; }
  .grid-header .grid-subtitle {
    color: #6c6c75; }
  .grid-header .grid-actions,
  .grid-header .image-switcher {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    .grid-header .grid-actions .btn,
    .grid-header .image-switcher .btn {
      margin-right: 5px;
      margin-bottom: 5px; }
    .grid-header .grid-actions .select-mode-only,
    .grid-header .image-switcher .select-mode-only {
      opacity: 0.0;
      pointer-events: none; }
    .grid-header .grid-actions .is-grid .fa,
    .grid-header .image-switcher .is-grid .fa {
      -webkit-transition: 0.6s;
      -moz-transition: 0.6s;
      -ms-transition: 0.6s;
      -o-transition: 0.6s;
      transition: 0.6s; }
    .grid-header .grid-actions .is-grid .list-btn,
    .grid-header .image-switcher .is-grid .list-btn {
      opacity: 0.3; }
    .grid-header .grid-actions .is-grid .grid-btn,
    .grid-header .image-switcher .is-grid .grid-btn {
      opacity: 1.0; }
    .grid-header .grid-actions .is-list .fa,
    .grid-header .image-switcher .is-list .fa {
      -webkit-transition: 0.6s;
      -moz-transition: 0.6s;
      -ms-transition: 0.6s;
      -o-transition: 0.6s;
      transition: 0.6s; }
    .grid-header .grid-actions .is-list .list-btn,
    .grid-header .image-switcher .is-list .list-btn {
      opacity: 1.0; }
    .grid-header .grid-actions .is-list .grid-btn,
    .grid-header .image-switcher .is-list .grid-btn {
      opacity: 0.3; }
  .grid-header.select-mode .select-mode-only {
    opacity: 1.0;
    pointer-events: all; }
  .grid-header.sticky {
    top: 51px;
    z-index: 18;
    padding-top: 10px;
    padding-bottom: 20px;
    background: white; }

.select-switcher span:before {
  content: "Select mode";
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  -moz-transition: all 0.3s ease-in-out 0.3s;
  -ms-transition: all 0.3s ease-in-out 0.3s;
  -o-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s; }

.select-switcher span:after {
  content: "Cancel select";
  opacity: 0.0;
  position: absolute;
  left: 15px;
  top: calc(50% - 12px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.select-switcher.select-mode span:before {
  opacity: 0.0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.select-switcher.select-mode span:after {
  content: "Cancel select";
  opacity: 1.0;
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  -moz-transition: all 0.3s ease-in-out 0.3s;
  -ms-transition: all 0.3s ease-in-out 0.3s;
  -o-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s; }

body.show-lightbox .lightbox-contents {
  margin-bottom: 0px; }

body.show-lightbox .view-lightbox-summary span:before {
  content: "Close"; }

body.show-lightbox .view-lightbox-summary .fa {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

body.show-lightbox .lightbox-actions {
  bottom: 0px; }
  body.show-lightbox .lightbox-actions .view-full-lightbox {
    top: 0px;
    opacity: 1.0; }
  body.show-lightbox .lightbox-actions .download-lightbox {
    opacity: 1.0;
    -webkit-transition: all 0.6s ease-in-out 1.2s;
    -moz-transition: all 0.6s ease-in-out 1.2s;
    -ms-transition: all 0.6s ease-in-out 1.2s;
    -o-transition: all 0.6s ease-in-out 1.2s;
    transition: all 0.6s ease-in-out 1.2s; }

body.show-lightbox.show-full-lightbox .lightbox-contents {
  height: calc(100vh - 70px); }

body.show-lightbox.show-full-lightbox .lightbox-actions .view-full-lightbox span:before {
  content: "Minimise"; }

body.show-lightbox.show-full-lightbox .lightbox-actions .view-full-lightbox .fa {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.main {
  width: calc(100% - 80px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.lightbox {
  z-index: 3001;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: 0;
  right: 0;
  width: calc(100% - 80px); }
  body.empty-lightbox .lightbox {
    bottom: -80px; }

.lightbox-preview {
  z-index: 101;
  bottom: 0;
  right: 0;
  height: 70px;
  box-sizing: border-box;
  padding: 20px 30px 20px;
  width: calc(100% + 0px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  -webkit-box-shadow: 0px -5px 0 rgba(32, 32, 32, 0.3);
  -moz-box-shadow: 0px -5px 0 rgba(32, 32, 32, 0.3);
  box-shadow: 0px -5px 0 rgba(32, 32, 32, 0.3); }
  .lightbox-preview .title {
    display: flex;
    flex-direction: row;
    align-items: center; }
    .lightbox-preview .title h3 {
      margin: 0 10px 0 0; }
    .lightbox-preview .title div {
      padding: 0 0px;
      font-size: 18px;
      font-size: 1.8rem;
      margin: 0 0 0 10px; }
  .lightbox-preview .view-lightbox-summary span:before {
    content: "Preview"; }
  .lightbox-preview .view-lightbox-summary .fa {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.lightbox-contents {
  width: 100%;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  bottom: 0;
  right: 0;
  background: #bfbfbf;
  height: 290px;
  z-index: 100;
  margin-bottom: -290px;
  display: flex;
  padding: 0px 0px 0px; }
  .lightbox-contents .vertical-browser {
    position: sticky;
    display: flex;
    flex-direction: column;
    padding: 0 10px; }
    .lightbox-contents .vertical-browser .lightbox-header {
      width: 100%; }
    .lightbox-contents .vertical-browser .images {
      height: 100%;
      position: relative;
      width: calc(100% - 20px);
      height: 100%;
      padding: 10px 20px;
      margin-bottom: 0;
      overflow-y: scroll; }
  .lightbox-contents .images.is-grid li {
    margin: 10px; }
  .lightbox-contents .images.is-grid.select-mode .image-container {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
    .lightbox-contents .images.is-grid.select-mode .image-container .icon-input .fa {
      top: 10px;
      right: 9px; }

.lightbox-header {
  display: flex;
  flex-direction: row;
  background: #202020;
  color: white;
  min-height: 55px;
  max-height: 63px;
  position: sticky;
  top: 0;
  z-index: 110; }
  .lightbox-header .lightbox-title {
    padding: 10px 30px;
    width: 100%;
    margin: 0;
    align-self: center; }
  .lightbox-header .lightbox-secondary-title,
  .lightbox-header .lightbox-title-actions {
    width: 0;
    margin: 0;
    align-self: center;
    display: none; }

.lightbox-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 100;
  position: relative;
  bottom: -50px;
  height: 80px;
  width: calc(100% + 20px);
  -webkit-transition: all 0.6s ease-in-out 0.3s;
  -moz-transition: all 0.6s ease-in-out 0.3s;
  -ms-transition: all 0.6s ease-in-out 0.3s;
  -o-transition: all 0.6s ease-in-out 0.3s;
  transition: all 0.6s ease-in-out 0.3s;
  margin: 0 -10px;
  padding: 10px 30px;
  box-sizing: border-box;
  background: #535353;
  -webkit-box-shadow: 0 -5px 0 rgba(32, 32, 32, 0.3);
  -moz-box-shadow: 0 -5px 0 rgba(32, 32, 32, 0.3);
  box-shadow: 0 -5px 0 rgba(32, 32, 32, 0.3); }
  .lightbox-actions .view-full-lightbox {
    align-self: center;
    position: relative;
    color: white;
    font-size: 21px;
    font-size: 2.1rem;
    opacity: 0.0;
    -webkit-transition: all 0.6s cubic-bezier(0.14, 1.11, 0.35, 1.38) 0.9s;
    -moz-transition: all 0.6s cubic-bezier(0.14, 1.11, 0.35, 1.38) 0.9s;
    -ms-transition: all 0.6s cubic-bezier(0.14, 1.11, 0.35, 1.38) 0.9s;
    transition: all 0.6s cubic-bezier(0.14, 1.11, 0.35, 1.38) 0.9s;
    line-height: 1.2;
    top: 50px; }
    .lightbox-actions .view-full-lightbox span:before {
      content: "View full"; }
    .lightbox-actions .view-full-lightbox .fa.bordered {
      -webkit-border-radius: 100px;
      -moz-border-radius: 100px;
      border-radius: 100px;
      font-size: 19px;
      font-size: 1.9rem;
      line-height: 1.2;
      width: 22px;
      height: 22px;
      text-align: center;
      border-color: white;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
  .lightbox-actions .download-lightbox {
    align-self: center;
    color: white;
    opacity: 0.0;
    -webkit-transition: all 0.6s ease-in-out 0.2s;
    -moz-transition: all 0.6s ease-in-out 0.2s;
    -ms-transition: all 0.6s ease-in-out 0.2s;
    -o-transition: all 0.6s ease-in-out 0.2s;
    transition: all 0.6s ease-in-out 0.2s; }
    .lightbox-actions .download-lightbox .btn {
      margin-left: 10px; }

.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.5); }

.featherlight .featherlight-content {
  padding: 0;
  margin-left: 0px;
  margin-right: 0;
  max-height: 100%;
  height: 100%;
  background-color: transparent; }

.featherlight .featherlight-close {
  display: none; }

.featherlight .close-button,
.featherlight .featherlight-close {
  color: #535353;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer; }
  .featherlight .close-button:hover,
  .featherlight .featherlight-close:hover {
    color: #202020; }

@media all and (min-width: 46.25em) {
  .featherlight .featherlight-content {
    margin-left: 80px; } }

.overlay {
  background-color: white;
  padding: 30px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out 0.9s;
  -moz-transition: all 0.4s ease-in-out 0.9s;
  -ms-transition: all 0.4s ease-in-out 0.9s;
  -o-transition: all 0.4s ease-in-out 0.9s;
  transition: all 0.4s ease-in-out 0.9s;
  opacity: 0.0; }
  .overlay.sideways-fade {
    right: -100%; }
  .overlay.upwards-fade {
    bottom: -5%; }
  .overlay.animated, .overlay.fade-in {
    opacity: 1.0; }
    .overlay.animated.sideways-fade, .overlay.fade-in.sideways-fade {
      right: 0; }
    .overlay.animated.upwards-fade, .overlay.fade-in.upwards-fade {
      bottom: 0; }

.overlay-header {
  border-bottom: 2px solid #dfdfdf;
  padding-bottom: 10px;
  margin-bottom: 30px; }
  .overlay-header .grid-title .close-button {
    font-size: 20px;
    font-size: 2rem;
    position: absolute;
    right: 0;
    position: absolute;
    right: -20px;
    top: -20px;
    padding: 10px 12px;
    border-radius: 100px;
    color: white; }
    .overlay-header .grid-title .close-button:hover {
      background-color: #202020; }

.image-download-send {
  width: 90%;
  max-width: 700px;
  margin: 5vh auto; }

.overlay-content {
  display: flex;
  flex-direction: column; }
  .overlay-content .overlay-text {
    padding: 20px 0 20px 0; }
  @media all and (min-width: 46.25em) {
    .overlay-content {
      flex-direction: row; }
      .overlay-content .overlay-image {
        width: 65.6%;
        max-height: calc(100vh - 200px); }
      .overlay-content .overlay-text {
        width: 34%;
        padding: 20px 0 20px 30px; } }
.overlay-text-header {
  display: flex;
  flex-direction: row;
  margin: 0 0 30px 0; }
  .overlay-text-header .image-stat {
    font-size: 20px;
    font-size: 2rem;
    margin: 0 30px 0 0; }
    .overlay-text-header .image-stat .fa {
      font-size: 24px;
      font-size: 2.4rem;
      margin: 0 5px 0 0; }

.overlay-text p {
  margin-bottom: 5px; }

.details-list {
  list-style: none;
  clear: both;
  float: none;
  margin: 0 0 1.4em 0;
  padding: 0;
  margin: 0 0 30px 0; }
  .details-list li {
    margin: 0;
    padding: 0; }
  .details-list li {
    padding: 7px; }
    .details-list li:nth-of-type(odd) {
      background: whitesmoke; }
    .details-list li strong {
      font-family: "AvenirBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .details-list li.alert {
      padding-left: 25px;
      position: relative; }
      .details-list li.alert:before {
        content: "";
        width: 8px;
        height: 8px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        border-radius: 100px;
        position: absolute;
        left: 8px;
        top: 14px;
        display: inline-block;
        background-color: #fdb035; }
      .details-list li.alert.expired:before {
        background-color: #fa272b; }
      .details-list li.alert.flagged:before {
        background-color: #535353; }

.overlay-text-actions .divider {
  border-top-color: #ededed; }

.overlay-text-actions .disabled {
  opacity: 0.2;
  pointer-events: none; }

.overlay-text-actions label span {
  display: inline-block;
  width: 100%; }

.overlay-text-actions label.has-right-icon {
  position: relative; }
  .overlay-text-actions label.has-right-icon .field-icon {
    position: absolute;
    right: 1px;
    bottom: 6px;
    width: 41px;
    height: 41px;
    text-align: center;
    padding: 11px 10px;
    border-left: 1px solid #ededed;
    box-sizing: border-box;
    -webkit-border-radius: 0 2px 2px 0;
    -moz-border-radius: 0 2px 2px 0;
    border-radius: 0 2px 2px 0;
    background: whitesmoke; }
    .overlay-text-actions label.has-right-icon .field-icon:hover .fa {
      color: #202020; }
    .overlay-text-actions label.has-right-icon .field-icon .fa {
      font-size: 18px;
      font-size: 1.8rem;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.overlay-text-actions .btn {
  margin-bottom: 5px;
  width: 100%; }

.overlay-text-actions .set-width {
  min-width: 200px; }

.overlay-text-actions .field {
  height: 43px;
  margin-bottom: 5px; }
  .overlay-text-actions .field.has-right-icon {
    padding-right: 50px; }
  .overlay-text-actions .field.disabled {
    cursor: default; }

.file-uploader {
  height: calc(100vh - 290px);
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .file-uploader p {
    text-align: center;
    margin: 10px 0; }
  .file-uploader > div {
    flex: 0 0 content; }
  .file-uploader .file-upload-dropzone {
    flex: 10 1 auto; }

.file-upload-dropzone {
  display: block;
  width: 100%;
  border: 3px dashed #c6c6c6;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  color: #6c6c75;
  text-align: center;
  box-sizing: border-box;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  margin: 0 0 20px; }
  .file-upload-dropzone .fa {
    color: #c6c6c6;
    font-size: 60px;
    font-size: 6rem;
    margin-bottom: 20px; }
  .file-upload-dropzone h3 {
    font-size: 26px;
    font-size: 2.6rem; }

.file-upload-btn {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 30px;
  border: 3px solid #c6c6c6;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center; }
  .file-upload-btn .file-input {
    display: none; }
  .file-upload-btn .file-input-label {
    font-size: 26px;
    font-size: 2.6rem;
    font-family: "AvenirBook", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #535353; }

.upload-bar {
  z-index: 101;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  z-index: 101;
  bottom: 0;
  right: 0;
  width: calc(100% - 80px); }
  body.empty-lightbox .upload-bar {
    bottom: -80px; }

.upload-bar-contents {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .upload-bar-contents .title {
    padding: 21px 30px; }
    .upload-bar-contents .title h3 {
      margin: 0; }
  .upload-bar-contents .upload-actions {
    padding: 13px 20px; }
  .upload-bar-contents .btn {
    font-family: "AvenirBook", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.file-details-form {
  padding: 20px; }
  .file-details-form p {
    max-width: 600px; }
  .file-details-form .label {
    line-height: 37px; }
  .file-details-form .field {
    -webkit-box-shadow: 0 2px 6px rgba(141, 146, 252, 0.3);
    -moz-box-shadow: 0 2px 6px rgba(141, 146, 252, 0.3);
    box-shadow: 0 2px 6px rgba(141, 146, 252, 0.3);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    padding: 7px 11px; }
  .file-details-form .tip {
    line-height: 37px;
    margin-left: 5px;
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem; }
  .file-details-form .tooltip {
    background: white;
    position: absolute;
    width: auto;
    max-width: 280px;
    top: 0;
    right: -325px;
    padding: 10px 15px; }
    .file-details-form .tooltip:before {
      position: absolute;
      content: "";
      left: -10px;
      top: 5px;
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-right: 10px solid white; }
  .file-details-form .form-control .tooltip {
    opacity: 0.0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .file-details-form .form-control:hover .tooltip {
    opacity: 1.0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .file-details-form .dropzone .dz-preview .dz-image {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #dfdfdf;
    display: flex;
    flex-direction: row;
    justify-content: center; }
    .file-details-form .dropzone .dz-preview .dz-image img {
      width: auto;
      height: 100%;
      max-width: none; }
  .file-details-form .dropzone .dz-preview .dz-details {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .file-details-form .dropzone .dz-preview .dz-details .dz-filename span,
    .file-details-form .dropzone .dz-preview .dz-details .dz-size span {
      background-color: rgba(255, 255, 255, 0.8); }
  .file-details-form .dropzone .dz-preview .dz-remove {
    font-size: 12px;
    font-size: 1.2rem; }
  .file-details-form .dropzone .dz-preview .dz-progress {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; }
    .file-details-form .dropzone .dz-preview .dz-progress .dz-upload {
      background: #8d92fc; }
  .file-details-form .dropzone .dz-preview:hover .dz-image img {
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -webkit-transition: 0.15s;
    -moz-transition: 0.15s;
    -ms-transition: 0.15s;
    -o-transition: 0.15s;
    transition: 0.15s; }

.lity {
  background: rgba(0, 0, 0, 0.6); }
  .lity.lity-opened .lity-close {
    opacity: 1.0;
    -webkit-transition: all 0.3s ease-in-out 0.6s;
    -moz-transition: all 0.3s ease-in-out 0.6s;
    -ms-transition: all 0.3s ease-in-out 0.6s;
    -o-transition: all 0.3s ease-in-out 0.6s;
    transition: all 0.3s ease-in-out 0.6s; }

.lity-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px; }

.lity-close {
  position: absolute;
  color: #378adf;
  text-shadow: none;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0.0;
  background: transparent url(/_assets/img/open-close-icon.png) center center no-repeat;
  background-size: cover;
  text-indent: -9999em;
  width: 28px;
  height: 28px;
  top: 6px;
  right: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .lity-close:hover {
    color: #fdb035;
    text-shadow: none;
    background: transparent url(/_assets/img/open-close-icon.png) center center no-repeat;
    background-size: cover;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }

.layout {
  padding: 10px; }
  .layout.single-col-layout {
    width: 100%;
    max-width: 400px; }

.fade {
  opacity: 0.0;
  -webkit-transition: all 0.3s ease-in-out 0.6s;
  -moz-transition: all 0.3s ease-in-out 0.6s;
  -ms-transition: all 0.3s ease-in-out 0.6s;
  -o-transition: all 0.3s ease-in-out 0.6s;
  transition: all 0.3s ease-in-out 0.6s; }
  .fade.animated {
    opacity: 1.0; }
  html.no-js .fade {
    opacity: 1.0; }

@media all and (min-width: 46.25em) {
  .no-flexbox .general-content .fi img {
    position: relative;
    bottom: auto; }
  .no-flexbox .mainnav > .fi {
    display: inline-block;
    width: 43%;
    vertical-align: top; }
  .no-flexbox .mainnav > ul.fi {
    width: 63%; } }

@media all and (min-width: 61.25em) {
  .no-flexbox .general-content > .fi {
    display: inline-block;
    width: 43%;
    vertical-align: top; } }

html .mod span {
  display: none; }

html.flexbox .flexbox, html.touch .touch, html.js .js, html.mediaqueries .mediaqueries, html.cookies .cookies, html.backgroundblendmode .backgroundblendmode, html.backgroundcliptext .backgroundcliptext, html.csscalc .csscalc, html.csscolumns .csscolumns, html.batteryapi .batteryapi, html.cssfilters .cssfilters, html.ligatures .ligatures, html.flash .flash {
  display: inline-block; }
  html.flexbox .flexbox:before, html.touch .touch:before, html.js .js:before, html.mediaqueries .mediaqueries:before, html.cookies .cookies:before, html.backgroundblendmode .backgroundblendmode:before, html.backgroundcliptext .backgroundcliptext:before, html.csscalc .csscalc:before, html.csscolumns .csscolumns:before, html.batteryapi .batteryapi:before, html.cssfilters .cssfilters:before, html.ligatures .ligatures:before, html.flash .flash:before {
    content: "";
    background: #6be468;
    margin: 0 5px 0 0;
    width: 8px;
    height: 8px;
    display: inline-block;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
    top: -1px; }

html.safari .safari {
  display: inline-block; }

html.chrome .chrome {
  display: inline-block; }

html.firefox .firefox {
  display: inline-block; }

html.ie .ie {
  display: inline-block; }

html.mac .mac {
  display: inline-block; }

html.win .win {
  display: inline-block; }

html.webkit .webkit {
  display: inline-block; }

html.gecko .gecko {
  display: inline-block; }

html.ipod .ipod {
  display: inline-block; }

html.iphone .iphone {
  display: inline-block; }

html.ipad .ipad {
  display: inline-block; }

html.webtv .webtv {
  display: inline-block; }

html.android .android {
  display: inline-block; }

html.mobile .mobile {
  display: inline-block; }

html.no-flexbox .no-flexbox, html.no-touch .no-touch, html.no-js .no-js, html.no-mediaqueries .no-mediaqueries, html.no-cookies .no-cookies, html.no-backgroundblendmode .no-backgroundblendmode, html.no-backgroundcliptext .no-backgroundcliptext, html.no-csscalc .no-csscalc, html.no-csscolumns .no-csscolumns, html.no-batteryapi .no-batteryapi, html.no-cssfilters .no-cssfilters, html.no-ligatures .no-ligatures, html.no-flash .no-flash {
  display: inline-block;
  font-weight: bold; }
  html.no-flexbox .no-flexbox:before, html.no-touch .no-touch:before, html.no-js .no-js:before, html.no-mediaqueries .no-mediaqueries:before, html.no-cookies .no-cookies:before, html.no-backgroundblendmode .no-backgroundblendmode:before, html.no-backgroundcliptext .no-backgroundcliptext:before, html.no-csscalc .no-csscalc:before, html.no-csscolumns .no-csscolumns:before, html.no-batteryapi .no-batteryapi:before, html.no-cssfilters .no-cssfilters:before, html.no-ligatures .no-ligatures:before, html.no-flash .no-flash:before {
    content: "";
    background: #ec5463;
    margin: 0 5px 0 0;
    width: 8px;
    height: 8px;
    display: inline-block;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
    top: -1px; }

@media print {
  /* Print =================================================== */
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  @page {
    margin: 0.5cm; }
  h2, h3 {
    orphans: 3;
    widows: 3;
    page-break-after: avoid; }
  p {
    orphans: 3;
    widows: 3; }
  pre, blockquote {
    border: 1px solid #6c6c75;
    page-break-inside: avoid; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a, a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  img {
    max-width: 100% !important;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr {
    page-break-inside: avoid; } }

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