/* Collection default theme */

.ReactVirtualized__Collection {
}

.ReactVirtualized__Collection__innerScrollContainer {
}

/* Grid default theme */

.ReactVirtualized__Grid {
}

.ReactVirtualized__Grid__innerScrollContainer {
}

/* Table default theme */

.ReactVirtualized__Table {
}

.ReactVirtualized__Table__Grid {
}

.ReactVirtualized__Table__headerRow {
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ReactVirtualized__Table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ReactVirtualized__Table__headerTruncatedText {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ReactVirtualized__Table__headerColumn,
.ReactVirtualized__Table__rowColumn {
  margin-right: 10px;
  min-width: 0px;
}
.ReactVirtualized__Table__rowColumn {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ReactVirtualized__Table__headerColumn:first-of-type,
.ReactVirtualized__Table__rowColumn:first-of-type {
  margin-left: 10px;
}
.ReactVirtualized__Table__sortableHeaderColumn {
  cursor: pointer;
}

.ReactVirtualized__Table__sortableHeaderIconContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ReactVirtualized__Table__sortableHeaderIcon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 1em;
  width: 1em;
  fill: currentColor;
}

/* List default theme */

.ReactVirtualized__List {
}.select2-container li img.avatar {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 6px;
}

.select2-search-choice {
  max-width: calc(100% - 5px);
}

.select2-search-choice > div > div {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select2-results li img.avatar {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 6px;
}

.select2-result-label > div > span {
  display: inline-block;
  max-width: calc(100% - 46px);
  position: relative;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select2-result-label > div > span > span,
.select2-result-label > div > span > small {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
}

.select2-result-label > div > span > span.name {
  vertical-align: middle;
}

.select2-result-label > div > span > small {
  vertical-align: top;
}

.select2-container-multi .select2-choices {
  background-image: none;
}
.select2-container-multi .select2-choices .select2-search-field input {
  font-family: inherit;
  padding: 5px 12px;
}
.select2-container {
  margin: 0 auto !important;
}
/*
 * Showup.js jQuery Plugin
 * http://github.com/jonschlinkert/showup
 *
 * Copyright (c) 2013 Jon Schlinkert, contributors
 * Licensed under the MIT License (MIT).
 */

/**
 * Docs navbar transitions effects
 */

.navbar-tall,
.navbar-show {
  -webkit-transition: -webkit-transform .3s;
     -moz-transition:    -moz-transform .3s;
       -o-transition:      -o-transform .3s;
          transition:         transform .3s;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.navbar-hide {
  -webkit-transition: -webkit-transform .2s;
     -moz-transition:    -moz-transform .2s;
       -o-transition:      -o-transform .2s;
          transition:         transform .2s;
  -webkit-transform: translate(0, -60px);
      -ms-transform: translate(0, -60px);
          transform: translate(0, -60px);
}


.navbar-tall,
.navbar-short,
.navbar-tall .navbar-brand,
.navbar-short .navbar-brand,
.navbar-tall .navbar-nav > li > a,
.navbar-short .navbar-nav > li > a {
  -webkit-transition: all 0.2s linear;
          transition: all 0.2s linear;
}

.navbar-short {
  min-height: 40px;
}
.navbar-short .navbar-brand {
  font-size: 16px;
  padding: 13px 15px 10px;
}
.navbar-short .navbar-nav > li > a {
  padding-top: 12px;
  padding-bottom: 12px;
}


.navbar-tall {
  min-height: 70px;
}
.navbar-tall .navbar-brand {
  font-size: 24px;
  padding: 25px 15px;
}
.navbar-tall .navbar-nav > li > a {
  padding-top: 25px;
}



/**
 * Docs Buttons
 */

/* Fixed button, bottom right */
.btn-fixed-bottom {
  position: fixed;
  bottom: 30px;
  display: none;
  z-index: 5;
  width: 40px;
  height: 40px;
}

/* Toggles navbar classes */
.btn-hide-show {
  margin-right: 10px;
}

/* Light theme */
.btn-light {
  color: #555;
  background-color: rgba(0, 0, 0,.1);
}
.btn-light:hover {
  color: #111;
  background-color: rgba(0, 0, 0,.25);
}

/* Dark theme */
.btn-dark {
  color: #fff;
  background-color: rgba(0, 0, 0,.5);
}
.btn-dark:hover {
  color: #fff;
  background-color: rgba(0, 0, 0,.9);
}

/* Buttons displayed throughout the content */
.btn-showup {
  position: relative;
  color: #fff;
  font-weight: normal;
  background-color: #463265;
  border-color: #3F2961;
}

.btn-showup:hover,
.btn-showup:focus {
  color: #fff;
  outline: none;
  background-color: #39235A;
  border-color: #39235A;
}@charset "UTF-8";
.btn.btn-gray {
  border: 1px solid #fff;
  background: #333;
  color: #fff; }
  .btn.btn-gray:hover {
    background: #fff;
    color: #333; }

.btn.btn-black {
  border: 1px solid #fff;
  background: #262626;
  color: #fff; }
  .btn.btn-black:hover {
    background: #fff;
    color: #262626; }

#home .btn-lg {
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px; }

body.noscroll .navbar-hide {
  transform: none !important; }

.navbar-hide {
  -webkit-transform: translate(0, -130px);
  -ms-transform: translate(0, -130px);
  transform: translate(0, -130px); }

.navbar {
  border: none; }

.header-wrapper {
  letter-spacing: 0.3px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; }

.header .open .dropdown-menu {
  position: absolute;
  top: 49px;
  left: 0;
  z-index: 1000;
  display: block;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  text-align: left;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  @media (max-width: 767px) {
    .header .open .dropdown-menu {
      transform: translateX(0); } }

@media (max-width: 767px) {
  .header .navbar-right .dropdown-menu, .navbar-header #team-dropdown.dropdown-menu, .navbar-header .open #team-dropdown.dropdown-menu {
    display: block;
    background: #505050;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
    border-radius: 0;
    border: none;
    text-align: center;
    padding: 0;
    margin: 0;
    height: calc(100vh - 50px);
    overflow: auto;
    left: auto;
    right: 0;
    padding-bottom: 100px; }
    .header .navbar-right .dropdown-menu > li, .navbar-header #team-dropdown.dropdown-menu > li, .navbar-header .open #team-dropdown.dropdown-menu > li {
      line-height: 1.42857143;
      clear: both; }
    .header .navbar-right .dropdown-menu > li > a, .navbar-header #team-dropdown.dropdown-menu > li > a, .navbar-header .open #team-dropdown.dropdown-menu > li > a {
      line-height: 20px;
      font-weight: 600;
      font-size: 15px;
      color: #FFFFFF;
      padding: 16px 24px; }
      .header .navbar-right .dropdown-menu > li > a:hover, .navbar-header #team-dropdown.dropdown-menu > li > a:hover, .navbar-header .open #team-dropdown.dropdown-menu > li > a:hover {
        background-color: #848484; }
    .header .navbar-right .dropdown-menu > li + li:not(.divider), .navbar-header #team-dropdown.dropdown-menu > li + li:not(.divider), .navbar-header .open #team-dropdown.dropdown-menu > li + li:not(.divider) {
      border-top: 1px solid #686868; }
    .header .navbar-right .dropdown-menu > li.divider + li, .navbar-header #team-dropdown.dropdown-menu > li.divider + li, .navbar-header .open #team-dropdown.dropdown-menu > li.divider + li {
      border: none; }
    .header .navbar-right .dropdown-menu li:last-child, .navbar-header #team-dropdown.dropdown-menu li:last-child {
      border-bottom: 1px solid #686868; }
    .header .navbar-right .dropdown-menu .divider, .navbar-header #team-dropdown.dropdown-menu .divider {
      margin: 0;
      background-color: #979797; } }

.header {
  border-bottom: 1px solid #4F4F4F;
  background-color: #4F4F4F;
  height: 50px; }
  .header .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
    top: 49px; }
    @media (max-width: 767px) {
      .header .navbar-right .dropdown-menu {
        top: 50px;
        transition: transform .2s;
        transform: translateX(205px);
        width: 200px; } }
  @media (min-width: 768px) {
    .header .navbar-right .open .dropdown-menu {
      right: 0;
      left: auto; } }
  @media (max-width: 767px) {
    .header .navbar-right .open .dropdown-menu {
      transform: translateX(0);
      transition: transform .3s; } }

@media (max-width: 767px) {
  .navbar-header #team-dropdown.dropdown-menu {
    display: none; } }

@media (max-width: 767px) {
  .navbar-header .open #team-dropdown.dropdown-menu {
    display: block;
    width: 100vw;
    left: -15px;
    text-align: left; }
    .navbar-header .open #team-dropdown.dropdown-menu > li > a {
      padding: 16px 22px; } }

.header .ui-team-name {
  display: inline-block;
  vertical-align: bottom;
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis; }

.navbar-brand {
  height: 50px;
  padding: 15px 30px 16px 0;
  font-size: 2rem;
  border: none; }
  @media (max-width: 767px) {
    .navbar-brand {
      font-size: 18px; } }

.navbar-nav > li > a,
.navbar-nav > li > button {
  font-weight: bold; }

.nav > li > a {
  padding: 10px 0px; }

@media (min-width: 768px) {
  .nav > li {
    margin: 0 15px; }
  .navbar-nav:last-child > li:last-child > a {
    padding-right: 0;
    margin-right: 0; }
  .navbar-nav:last-child > li:last-child {
    margin-right: 0; }
  .navbar-nav > li:last-child > button {
    margin-right: 0;
    margin-left: 0; } }

@media (max-width: 767px) {
  .navbar-nav:last-child > li:last-child > a {
    margin-right: 10px; } }

@media (min-width: 768px) {
  .navbar-nav > li.active {
    border-bottom-color: white;
    border-width: 0 0 2px;
    padding-bottom: 3px;
    border-style: solid; } }

.navbar-nav > li > a {
  padding-top: 14px;
  font-size: 1.6rem; }
  @media (max-width: 767px) {
    .navbar-nav > li > a:not(.btn) {
      padding: 16px 10px; } }

.navbar-nav > li > button {
  border: none;
  margin: 9px 15px;
  padding: 0 15px;
  font-size: 1.5rem;
  line-height: 32px; }

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover,
.nav > li > a:hover,
.nav > li > a:focus {
  color: #CDCDCD;
  background: transparent;
  border-color: transparent; }

@media (max-width: 767px) {
  .navbar-toggle {
    float: left;
    margin: 0 19px 0 -16px;
    padding: 0 18px;
    font-size: 2rem;
    line-height: 49px;
    border: none;
    border-right: 1px solid #333333;
    border-radius: 0;
    background: #4F4F4F; }
    .navbar-toggle.active {
      background: #333333; }
  .navbar-collapse {
    transition: transform .2s;
    display: flex;
    flex-flow: column-reverse;
    justify-content: flex-end;
    position: absolute;
    z-index: 1080;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
    top: 50px;
    left: -225px;
    width: 200px;
    height: calc(100vh - 50px);
    padding-bottom: 100px;
    border: none;
    background: #4f4f4f;
    overflow-y: scroll; }
    .navbar-collapse.in {
      transition: transform .3s;
      transform: translateX(200px);
      display: flex; }
  .navbar-nav {
    margin-top: 0;
    margin-bottom: 0; }
    .navbar-nav .divider {
      height: 1px;
      overflow: hidden; }
  #header-navbar .dropdown-menu > li > a {
    color: #fff; }
  #header-navbar .nav > li + li:not(.divider) {
    border-top: solid 1px #686868; }
  #header-navbar .nav > li.divider + li {
    border: none; }
  #header-navbar .nav > li:last-child {
    border-bottom: 1px solid #686868; }
  #header-navbar .nav > li.divider {
    margin: 0;
    border: 0px;
    background-color: #979797; }
  #header-navbar .nav:not(:first-child) > li:last-child {
    border-bottom: none; } }

.modal-backdrop.dim {
  opacity: 0;
  background: rgba(51, 51, 51, 0.75);
  z-index: 990;
  transition: opacity 300ms;
  visibility: hidden; }
  .modal-backdrop.dim.in {
    opacity: 1;
    visibility: visible; }

@media (min-width: 768px) {
  .container-center-wrapper-inner {
    vertical-align: middle; } }

.container-center-wrapper {
  display: table;
  width: 100%;
  height: 100%;
  min-height: 100%; }

.container-center-wrapper-inner {
  display: table-cell;
  vertical-align: top; }

@media (max-width: 1032px) {
  .container-thin {
    padding-left: 1.6rem;
    padding-right: 1.6rem; } }

@media (min-width: 992px) {
  .container-thin {
    max-width: 1000px;
    margin: 0 auto; }
    .container-thin .row {
      padding-left: 0;
      padding-right: 0; } }

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
  color: #FF6363; }

.has-error .form-control {
  border-color: #FF6363; }

.btn-large {
  font-size: 18px;
  width: 180px;
  padding: 10px;
  margin: 0 10px; }

.modal.signin-modal {
  color: #333333;
  font-size: 18px; }
  .modal.signin-modal .social-buttons-container {
    margin-bottom: 30px; }
    @media (min-width: 471px) {
      .modal.signin-modal .social-buttons-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; } }
  .modal.signin-modal .btn-social {
    width: 199px;
    margin-top: 10px;
    display: inline-block; }
    .modal.signin-modal .btn-social.btn-social.btn-lg {
      padding-left: 45px; }
    .modal.signin-modal .btn-social.btn-social.btn-lg :first-child {
      border: none; }
    @media (max-width: 470px) {
      .modal.signin-modal .btn-social {
        display: block;
        margin: 10px auto 0 auto; } }
  .modal.signin-modal p {
    margin: 15px 0 15px 0; }
    .modal.signin-modal p a {
      text-decoration: underline;
      color: #333333; }
      .modal.signin-modal p a:hover, .modal.signin-modal p a:active, .modal.signin-modal p a:focus {
        cursor: pointer;
        color: #7a7a7a; }
    .modal.signin-modal p.seperator {
      margin: 30px 0;
      font-weight: 600; }
  .modal.signin-modal .modal-dialog {
    max-width: 476px; }
    @media (max-width: 768px) {
      .modal.signin-modal .modal-dialog {
        margin: 0 auto; } }
  .modal.signin-modal h3 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 600; }
  .modal.signin-modal .modal-content {
    text-align: center;
    padding: 0 30px 30px 30px; }
  .modal.signin-modal .form-group {
    text-align: left; }
    .modal.signin-modal .form-group input {
      height: 40px;
      font-size: 16px;
      margin-top: 7px; }
    .modal.signin-modal .form-group .control-label {
      font-size: 18px; }
    .modal.signin-modal .form-group .help-block.control-label {
      font-size: 12px; }
      .modal.signin-modal .form-group .help-block.control-label ul {
        margin-bottom: 0px; }
  .modal.signin-modal .has-error .help-block {
    text-align: right; }
  .modal.signin-modal label.control-label {
    font-weight: normal; }
  .modal.signin-modal .has-error label.control-label {
    color: initial; }

.has-error.form-group .form-control:focus {
  border-color: #ff6363;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff6363; }

.navbar .announcement-label {
  box-shadow: none;
  line-height: 19px;
  vertical-align: middle; }
  .navbar .announcement-label .label {
    padding: 4px 6px;
    height: 20px;
    display: inline-block;
    vertical-align: middle; }

.navbar .announcement-area {
  max-width: 350px;
  margin-left: 20px;
  text-align: left; }
  .navbar .announcement-area .caption {
    font-weight: 600;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 22px;
    height: 22px;
    display: flex;
    align-items: center; }
    .navbar .announcement-area .caption .label {
      padding: 4px 6px;
      height: 20px; }
    .navbar .announcement-area .caption .text {
      vertical-align: middle;
      display: inline-block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      flex-grow: 1; }
    .navbar .announcement-area .caption.inverse {
      color: #686868; }

.navbar .announcement-popover {
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  width: 370px;
  max-width: 100vw;
  max-height: 100vh;
  overflow: auto;
  text-align: left;
  background: #FFFFFF;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  z-index: 1001;
  cursor: default; }
  .navbar .announcement-popover a {
    text-decoration: none; }
  .navbar .announcement-popover .caption {
    color: #686868;
    font-weight: 600;
    line-height: 16px;
    display: block;
    max-width: 100%;
    height: auto;
    cursor: pointer; }
    .navbar .announcement-popover .caption .label {
      padding: 4px 6px;
      display: inline-block;
      vertical-align: middle; }
    .navbar .announcement-popover .caption .text {
      display: inline;
      vertical-align: middle;
      overflow: visible;
      word-break: break-all;
      white-space: pre-wrap;
      overflow-wrap: break-word; }
  .navbar .announcement-popover .announcement-popover-header {
    padding: 15px 20px 14px 20px;
    background: #F8F8F8;
    border-bottom: 1px solid #E7E7E7;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
  .navbar .announcement-popover .announcement-popover-body {
    padding: 20px;
    background: #FFFFFF;
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    line-height: 22px; }
    .navbar .announcement-popover .announcement-popover-body img {
      width: 100%;
      padding-bottom: 15px; }
  .navbar .announcement-popover .announcement-popover-footer {
    padding: 0 20px 10px 20px;
    background: #FFFFFF;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
    .navbar .announcement-popover .announcement-popover-footer .btn-text {
      font-weight: 400;
      font-size: 14px;
      color: #888888;
      text-align: center;
      line-height: 14px;
      padding: 5px;
      box-shadow: none; }
      .navbar .announcement-popover .announcement-popover-footer .btn-text:hover, .navbar .announcement-popover .announcement-popover-footer .btn-text:active {
        color: #337AB7; }
  .navbar .announcement-popover.center {
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%); }
    .navbar .announcement-popover.center .caption .text {
      line-height: 19px; }
    @media (max-width: 350px) {
      .navbar .announcement-popover.center {
        border-radius: 0; }
        .navbar .announcement-popover.center .announcement-popover-header {
          border-top-left-radius: 0;
          border-top-right-radius: 0; }
        .navbar .announcement-popover.center .announcement-popover-footer {
          border-bottom-left-radius: 0;
          border-bottom-right-radius: 0; } }

.navbar .announcement-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000; }
  .navbar .announcement-backdrop.dim {
    display: block; }

.text-gray-darkest {
  color: #262626; }

.bg-gray-darkest {
  background: #262626; }

.text-gray-dark {
  color: #4f4f4f; }

.bg-gray-dark {
  background: #4f4f4f; }

.text-gray {
  color: #686868; }

.bg-gray {
  background: #686868; }

.text-gray-light {
  color: #888; }

.bg-gray-light {
  background: #888; }

.text-gray-lighter {
  color: #8f8f8f; }

.bg-gray-lighter {
  background: #8f8f8f; }

.text-gray-lightest {
  color: #CDCDCD; }

.bg-gray-lightest {
  background: #CDCDCD; }

.plan {
  display: block;
  position: relative;
  background: #262626;
  border: 1px solid #686868;
  border-radius: 6px;
  overflow: hidden;
  width: 31.3%; }
  .plan h3 {
    font-weight: 600;
    font-size: 2.2rem;
    color: #FFFFFF;
    line-height: 2.4rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #4f4f4f;
    margin: 0 0 16px; }
  .plan p {
    font-size: 1.8rem;
    color: #FFFFFF;
    line-height: 2.5rem;
    min-height: 5rem;
    margin-bottom: 22px;
    letter-spacing: 0; }
  .plan .btn-lg {
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.8rem;
    width: 180px; }
  .plan.highlight, .plan.highlight:focus, .plan.highlight:hover {
    border: 1px solid #fff; }
  .plan ul {
    font-size: 1.6rem;
    min-height: 160px; }
  .plan .ribbon {
    font-size: 2.2rem;
    font-weight: 600;
    width: 140px;
    background: #fff;
    position: absolute;
    top: 19px;
    right: -35px;
    text-align: center;
    line-height: 35px;
    letter-spacing: 1px;
    color: #262626;
    transform: rotate(45deg); }
  .plan .list-checks li {
    font-size: 15px;
    padding-bottom: 1rem; }

@media (max-width: 767px) {
  .plan {
    width: 100%; } }

.footer {
  position: relative;
  background-color: #333;
  border-top: 1px solid #6D6D6D;
  padding-left: 10px;
  padding-right: 10px; }

.mastfoot {
  color: #6D6D6D;
  font-weight: 600;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px; }

.mastfoot-left,
.mastfoot-center,
.mastfoot-right {
  line-height: 30px; }

.mastfoot-left {
  text-align: left;
  color: #FFF; }

.ui-brand {
  margin-right: 20px; }

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

.mastfoot-internal-links {
  font-size: 13px; }

.mastfoot-internal-links a {
  color: #D1D1D1; }

.mastfoot-internal-links a:focus,
.mastfoot-internal-links a:active,
.mastfoot-internal-links a:hover {
  color: #FFF;
  text-decoration: none; }

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

.mastfoot-external-links a {
  color: #FFF;
  font-size: 16px; }

.mastfoot-external-links a:focus,
.mastfoot-external-links a:active,
.mastfoot-external-links a:hover {
  color: #D1D1D1;
  text-decoration: none; }

.mastfoot select {
  border: 1px solid #6D6D6D;
  border-radius: 4px;
  font-size: 13px;
  line-height: 14px;
  color: #FFF;
  background-color: transparent;
  padding: 7px 20px 7px 6px;
  min-width: 130px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' width='20' height='14' viewBox='0 0 8 14' xmlns='http://www.w3.org/2000/svg'><path d='M8 5.5q0 0.203-0.148 0.352l-3.5 3.5q-0.148 0.148-0.352 0.148t-0.352-0.148l-3.5-3.5q-0.148-0.148-0.148-0.352t0.148-0.352 0.352-0.148h7q0.203 0 0.352 0.148t0.148 0.352z' /></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 7px;
  cursor: pointer; }

.mastfoot select:hover,
.mastfoot select:focus {
  color: #D1D1D1; }

.mastfoot select option {
  color: #333; }

@media (max-width: 767px) {
  .mastfoot {
    padding-top: 10px;
    padding-bottom: 10px; }
  .mastfoot-left {
    text-align: center; }
  .ui-brand {
    display: block;
    margin: 0; }
  .mastfoot-internal-links {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 20px; }
  .mastfoot-right {
    text-align: center; } }

.btn-social {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px; }

.btn-google {
  background-color: #FFFFFF;
  color: #757575; }

.btn-google:hover,
.btn-google:focus,
.btn-google:active,
.btn-google.active,
.open > .dropdown-toggle.btn-google {
  background-color: #EEEEEE;
  color: #757575; }

.btn-google.disabled,
.btn-google[disabled],
fieldset[disabled] .btn-google,
.btn-google.disabled:hover,
.btn-google[disabled]:hover,
fieldset[disabled] .btn-google:hover,
.btn-google.disabled:focus,
.btn-google[disabled]:focus,
fieldset[disabled] .btn-google:focus,
.btn-google.disabled:active,
.btn-google[disabled]:active,
fieldset[disabled] .btn-google:active,
.btn-google.disabled.active,
btn-google[disabled].active,
fieldset[disabled] .btn-google.active {
  background-color: rgba(0, 0, 0, 0.08); }

.btn-google .icon::before {
  content: ' ';
  display: block;
  width: 34px;
  height: 2em;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; }

.btn-google .icon-google::before {
  width: 21px;
  height: 44px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMThweCIgaGVpZ2h0PSIxOHB4IiB2aWV3Qm94PSIwIDAgMTggMTgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUwLjIgKDU1MDQ3KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5zdXBlciBnPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9Ikdvb2dsZS1CdXR0b24iIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJHb29nbGUtU2lnbi1pbi1leGFtcGxlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNjcuMDAwMDAwLCAtNDMzLjAwMDAwMCkiIGZpbGw9IiMwMDAwMDAiPgogICAgICAgICAgICA8ZyBpZD0iYnV0dG9uIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg1Ni4wMDAwMDAsIDQyMi4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxnIGlkPSJzdXBlci1nIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4wMDAwMDAsIDExLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik05LDMuNDggQzEwLjY5LDMuNDggMTEuODMsNC4yMSAxMi40OCw0LjgyIEwxNS4wMiwyLjM0IEMxMy40NiwwLjg5IDExLjQzLDAgOSwwIEM1LjQ4LDAgMi40NCwyLjAyIDAuOTYsNC45NiBMMy44Nyw3LjIyIEM0LjYsNS4wNSA2LjYyLDMuNDggOSwzLjQ4IEw5LDMuNDggWiIgaWQ9IlNoYXBlIiBmaWxsPSIjRUE0MzM1Ij48L3BhdGg+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTE3LjY0LDkuMiBDMTcuNjQsOC40NiAxNy41OCw3LjkyIDE3LjQ1LDcuMzYgTDksNy4zNiBMOSwxMC43IEwxMy45NiwxMC43IEMxMy44NiwxMS41MyAxMy4zMiwxMi43OCAxMi4xMiwxMy42MiBMMTQuOTYsMTUuODIgQzE2LjY2LDE0LjI1IDE3LjY0LDExLjk0IDE3LjY0LDkuMiBMMTcuNjQsOS4yIFoiIGlkPSJTaGFwZSIgZmlsbD0iIzQyODVGNCI+PC9wYXRoPgogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zLjg4LDEwLjc4IEMzLjY5LDEwLjIyIDMuNTgsOS42MiAzLjU4LDkgQzMuNTgsOC4zOCAzLjY5LDcuNzggMy44Nyw3LjIyIEwwLjk2LDQuOTYgQzAuMzUsNi4xOCAwLDcuNTUgMCw5IEMwLDEwLjQ1IDAuMzUsMTEuODIgMC45NiwxMy4wNCBMMy44OCwxMC43OCBMMy44OCwxMC43OCBaIiBpZD0iU2hhcGUiIGZpbGw9IiNGQkJDMDUiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNOSwxOCBDMTEuNDMsMTggMTMuNDcsMTcuMiAxNC45NiwxNS44MiBMMTIuMTIsMTMuNjIgQzExLjM2LDE0LjE1IDEwLjM0LDE0LjUyIDksMTQuNTIgQzYuNjIsMTQuNTIgNC42LDEyLjk1IDMuODgsMTAuNzggTDAuOTcsMTMuMDQgQzIuNDUsMTUuOTggNS40OCwxOCA5LDE4IEw5LDE4IFoiIGlkPSJTaGFwZSIgZmlsbD0iIzM0QTg1MyI+PC9wYXRoPgogICAgICAgICAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJTaGFwZSIgZmlsbD0ibm9uZSIgcG9pbnRzPSIwIDAgMTggMCAxOCAxOCAwIDE4Ij48L3BvbHlnb24+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==); }

.btn-google .disabled .icon-google::before,
.btn-google [disabled] .icon-google::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMThweCIgaGVpZ2h0PSIxOHB4IiB2aWV3Qm94PSIwIDAgMTggMTgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUwLjIgKDU1MDQ3KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5TaGFwZSBDb3B5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9Ikdvb2dsZS1CdXR0b24iIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGZpbGwtb3BhY2l0eT0iMC40Ij4KICAgICAgICA8ZyBpZD0iYnRuX2dvb2dsZV9zaWduaW5fbGlnaHRfZGlzYWJsZWRfd2ViIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTUuMDAwMDAwLCAtMTUuMDAwMDAwKSIgZmlsbD0iIzAwMDAwMCI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yNC4wMDEsMjUuNzEgTDI0LjAwMSwyMi4zNjIgTDMyLjQyNSwyMi4zNjIgQzMyLjU1MSwyMi45MjkgMzIuNjUsMjMuNDYgMzIuNjUsMjQuMjA3IEMzMi42NSwyOS4zNDYgMjkuMjAzLDMzIDI0LjAxLDMzIEMxOS4wNDIsMzMgMTUuMDEsMjguOTY4IDE1LjAxLDI0IEMxNS4wMSwxOS4wMzIgMTkuMDQyLDE1IDI0LjAxLDE1IEMyNi40NCwxNSAyOC40NzQsMTUuODkxIDMwLjAzMSwxNy4zNDkgTDI3LjQ3NSwxOS44MzMgQzI2LjgyNywxOS4yMjEgMjUuNjkzLDE4LjUwMSAyNC4wMSwxOC41MDEgQzIxLjAzMSwxOC41MDEgMTguNjAxLDIwLjk3NiAxOC42MDEsMjQuMDA5IEMxOC42MDEsMjcuMDQyIDIxLjAzMSwyOS41MTcgMjQuMDEsMjkuNTE3IEMyNy40NTcsMjkuNTE3IDI4LjcyNiwyNy4xMzIgMjguOTYsMjUuNzE5IEwyNC4wMDEsMjUuNzE5IEwyNC4wMDEsMjUuNzEgWiIgaWQ9IlNoYXBlLUNvcHkiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==); }

.fa.fa-18 {
  font-size: 18px;
  line-height: 16px;
  vertical-align: -15%; }

.fa.fa-20 {
  font-size: 20px;
  line-height: 0.75em;
  vertical-align: -15%; }

#docflow-header {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  letter-spacing: 0em;
  display: flex;
  height: 50px;
  background-color: #4F4F4F;
  padding: 15px; }
  #docflow-header a {
    color: white;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600; }
    #docflow-header a:hover, #docflow-header a:active, #docflow-header a:focus {
      text-decoration: none;
      color: #d1d1d1; }

.docflow-setup {
  text-align: left; }
  .docflow-setup .form-horizontal .form-group {
    margin-left: auto;
    margin-right: auto; }
  .docflow-setup .form-group {
    font-size: 16px;
    position: relative;
    margin-left: auto;
    margin-right: auto; }
  @media (min-width: 768px) {
    .docflow-setup .form-horizontal .control-label {
      padding-top: 0px;
      margin-bottom: 5px; } }
  .docflow-setup .form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
  .docflow-setup .form-group-pull-right {
    float: right;
    height: 0;
    margin-right: 0;
    z-index: 1; }
  .docflow-setup .form-group .row {
    line-height: 36px; }
  .docflow-setup .form-group.has-error {
    border-color: #FF6363; }
    .docflow-setup .form-group.has-error .control-label {
      color: white;
      font-size: 18px; }
    .docflow-setup .form-group.has-error .control-label.help-block {
      color: #FF6363;
      font-size: 12px;
      margin-bottom: 0px; }
      .docflow-setup .form-group.has-error .control-label.help-block ul {
        margin-bottom: 0px; }
    .docflow-setup .form-group.has-error .control-label.errors {
      display: inline-block;
      color: #FF6363;
      font-size: 12px; }
  .docflow-setup .control-label {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-align: left; }
  .docflow-setup .control-label.errors {
    font-size: 12px;
    color: #FF6363;
    display: none; }
  .docflow-setup .has-error .form-control {
    border-color: #FF6363; }
  .docflow-setup .input-block {
    position: relative; }
  .docflow-setup .has-error .help-block {
    color: #FF6363; }
  .docflow-setup .has-error.form-group span.error-sign {
    position: absolute;
    right: 10px;
    top: 9px;
    color: #FF6363; }
    .docflow-setup .has-error.form-group span.error-sign:after {
      content: "\F071";
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: inherit;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased; }
  .docflow-setup input.form-control {
    height: 40px;
    font-size: 16px;
    margin-top: 0px; }
  .docflow-setup .form-control {
    font-size: 16px;
    border: 1px solid #6D6D6D;
    background-color: #333;
    color: #FFF; }
  .docflow-setup .form-control:focus {
    box-shadow: none;
    border-color: #FFF; }
  .docflow-setup .form-control::placeholder,
  .docflow-setup .form-group small {
    color: #868686; }
  .docflow-setup .form-group p {
    font-size: 14px; }
  .docflow-setup .form-group .btn-default {
    font-size: 16px;
    border: 1px solid #FFFFFF;
    background-color: #333;
    color: #FFF; }
  .docflow-setup .form-group .btn-default:hover,
  .docflow-setup .form-group .btn-default:focus {
    background-color: #FFF;
    color: #333; }
  .docflow-setup .form-group .btn-primary {
    font-size: 16px; }
  .docflow-setup .form-group .flex-row > div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .docflow-setup .form-control[disabled], .docflow-setup .form-control[readonly], .docflow-setup fieldset[disabled] .form-control {
    background-color: #525252;
    color: #adadad; }
  .docflow-setup .has-error.form-group .form-control:focus {
    border-color: #ff6363;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff6363; }
  @media (max-width: 1000px) {
    .docflow-setup {
      max-width: 100vw; } }
  .docflow-setup [class*="col-"] {
    padding: 0; }
  .docflow-setup h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px; }
  .docflow-setup h4 {
    font-size: 22px;
    margin-top: 30px; }
  .docflow-setup hr {
    margin: 40px 0;
    border-color: #4F4F4F; }
  .docflow-setup .form-group {
    margin-bottom: 30px; }
    .docflow-setup .form-group .flex-group {
      display: flex; }
    .docflow-setup .form-group .limit-label {
      max-width: 260px; }
    @media (min-width: 768px) {
      .docflow-setup .form-group .control-label.mini-indent:before {
        content: '\3000\3000\3000'; } }
  @media (min-width: 768px) {
    .docflow-setup .form-group {
      display: flex;
      align-items: center; }
      .docflow-setup .form-group.flex-start {
        align-items: flex-start; } }
  .docflow-setup .btn {
    font-size: 16px;
    width: 150px;
    padding: 8px;
    margin: 0; }
    .docflow-setup .btn:disabled:hover, .docflow-setup .btn:disabled:focus {
      color: inherit;
      background-color: inherit; }
  .docflow-setup p {
    font-size: 18px;
    line-height: 1.6em; }
    .docflow-setup p a {
      text-decoration: underline; }
      .docflow-setup p a:hover, .docflow-setup p a:focus, .docflow-setup p a:visited {
        color: #d1d1d1; }
  .docflow-setup ul:not(.dropdown-menu) {
    padding-inline-start: 1.3em;
    font-size: 18px; }
    .docflow-setup ul:not(.dropdown-menu) li {
      line-height: 1.8em; }
  .docflow-setup code {
    color: white;
    background-color: #4F4F4F;
    font-size: 14px; }
  .docflow-setup pre {
    background-color: #4F4F4F;
    color: white;
    font-size: 14px;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 16px; }
  .docflow-setup .divider {
    border-bottom: 1px solid #4f4f4f; }
  .docflow-setup .item {
    font-size: 18px;
    padding: 8px 0; }

.docflow {
  text-align: left; }
  .docflow .vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none; }
  .docflow h1 {
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 40px; }
    @media (max-width: 768px) {
      .docflow h1 {
        font-size: 26px; } }
  .docflow p {
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 20px; }
    .docflow p a {
      text-decoration: underline; }
      .docflow p a:hover, .docflow p a:focus, .docflow p a:visited {
        color: #d1d1d1; }
  .docflow large {
    font-size: 28px; }
    @media (max-width: 768px) {
      .docflow large {
        font-size: 22px; } }
  .docflow .row {
    margin: 0;
    padding: 60px 0; }
  .docflow .black-fullwidth-section {
    background-color: #262626;
    min-height: calc(100vh - 50px);
    display: flex;
    align-items: center; }
    .docflow .black-fullwidth-section .row {
      max-width: 1000px;
      margin: 0 auto; }
  .docflow .row.cta {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap; }
    @media (min-width: 769px) {
      .docflow .row.cta > *:not(:last-child) {
        margin-right: 30px; } }
    @media (max-width: 768px) {
      .docflow .row.cta {
        flex-direction: column;
        align-items: center; }
        .docflow .row.cta > *:not(:last-child) {
          margin-bottom: 20px; } }
  .docflow img {
    margin: 0 auto;
    display: block;
    max-width: 100%; }
  .docflow .btn.cta {
    line-height: 1.7em;
    height: 46px;
    width: 205px;
    font-size: 18px;
    margin-top: 10px; }

.docflow-dropdown {
  display: none;
  background-color: #333;
  border-bottom: 2px solid #4f4f4f; }
  @media (max-width: 768px) {
    .docflow-dropdown {
      display: block; } }
  .docflow-dropdown .btn {
    background-color: #333 !important;
    color: white !important;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0;
    padding: 15px 0 !important;
    text-align: left;
    width: 160px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center; }
  .docflow-dropdown .dropdown-menu {
    background: #333;
    color: white;
    box-shadow: none;
    max-width: 160px;
    width: 160px;
    padding: 10px 0;
    margin-top: 0px;
    text-align: left;
    border: 1px solid #CDCDCD;
    border-radius: 0 0 4px 4px; }
    .docflow-dropdown .dropdown-menu > li > a {
      color: white;
      padding: 4px 11px; }
      .docflow-dropdown .dropdown-menu > li > a:hover {
        background-color: white;
        color: #333; }

nav.docflow-nav {
  font-size: 16px;
  padding: 15px 0;
  border-bottom: 2px solid #4F4F4F;
  display: none; }
  @media (min-width: 769px) {
    nav.docflow-nav {
      display: block; } }
  nav.docflow-nav a {
    padding: 15px 0 16px;
    color: #BEBEBE;
    text-decoration: none; }
    nav.docflow-nav a:visited {
      text-decoration: none; }
    nav.docflow-nav a:hover, nav.docflow-nav a:active, nav.docflow-nav a.active {
      color: white;
      text-decoration: none;
      border-bottom: 2px solid white; }
    nav.docflow-nav a:not(:last-child) {
      margin-right: 30px; }

/* Links */
a,
a:focus,
a:hover {
  color: #fff; }

/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
  color: #333;
  text-shadow: none;
  /* Prevent inheritence from `body` */
  background-color: #fff; }

/*
 * Base structure
 */
html {
  height: 100%; }

html,
body {
  background-color: #333; }

body {
  min-height: 100%;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); }

.site-wrapper {
  padding-top: 23px;
  min-height: 100vh; }

@media (max-width: 767px) {
  .site-wrapper {
    padding-top: 13px; } }

/* Padding for spacing */
.inner {
  padding: 10px 0;
  position: relative; }

.dropdown-backdrop.dim {
  background: rgba(51, 51, 51, 0.75); }

.noscroll {
  overflow: hidden; }

html.noscroll body,
body.noscroll {
  position: fixed;
  width: 100%; }

@media (min-width: 768px) {
  .inner {
    padding: 20px 0px; } }

/*
 * Cover
 */
.cover {
  padding: 0 20px; }

.cover .btn-lg {
  padding: 10px 20px;
  font-weight: bold; }

footer select {
  border: 1px solid #888;
  border-radius: 4px;
  font-size: 13px;
  line-height: 14px;
  color: #FFF;
  padding: 2px 20px 2px 4px;
  min-width: 130px;
  background: transparent no-repeat;
  background-position-x: 100%;
  background-position-y: 7px;
  cursor: pointer; }
  footer select:hover, footer select:focus {
    color: #D1D1D1; }
  footer select option {
    color: #333; }

footer input[name=amount] {
  border: none;
  background: transparent;
  color: #fff; }

footer h4 {
  border-bottom: 2px #4f4f4f solid; }

/*
 * Footer
 */
/*
 * Affix and center
 */
.section ul {
  list-style: none; }

.section > div > hr {
  border-top: 2px solid #4F4F4F; }

.list-checks li {
  list-style: none;
  font-weight: 400;
  padding-bottom: 1.5rem; }

.list-checks li:before {
  font-family: FontAwesome;
  line-height: 1em;
  padding-right: .8rem; }

.list-dot {
  padding-left: 0; }
  .list-dot li:not(:last-child) {
    margin-bottom: 15px; }
  .list-dot li:before {
    background-color: #777;
    content: "";
    width: 6px;
    padding: 3px;
    height: 6px;
    border-radius: 50%;
    margin-top: 10px;
    margin-right: 9px; }

.list-checks {
  padding-left: 0; }
  .list-checks li:before {
    content: '\F058';
    font-size: 1em;
    padding-top: 3px;
    padding-right: 6px; }

/* custom */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  line-height: unset; }

.cover-heading {
  font-weight: 600; }

h1.cover-heading {
  font-size: 36px;
  line-height: 45px;
  letter-spacing: -0.5px; }

h2.cover-heading {
  font-size: 28px; }

p.lead {
  font-weight: 700;
  font-size: 24px;
  line-height: 21px; }

@media (max-width: 767px) {
  h1.cover-heading {
    font-size: 3rem; }
  p.lead {
    font-size: 1.8rem; } }

div.lead {
  margin-bottom: 120px; }

div.lead.dark {
  background-color: #262626; }

div.lead.wide {
  width: 100vw;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 50px 30px;
  margin-bottom: 0;
  font-size: 18px; }

div.lead.wide h1 {
  font-size: 26px; }

div.lead .logo {
  width: 120px;
  height: 120px;
  padding: 10px;
  object-fit: contain;
  background-color: white;
  border-radius: 60px; }

p.cover-paragraph,
p.feature-paragraph {
  font-weight: 300;
  font-size: 18px;
  text-align: left; }

p.cover-paragraph {
  padding-top: 20px; }

p.feature-paragraph {
  padding-top: 10px; }

p.feature-paragraph em {
  font-weight: bold;
  font-style: normal; }

.scenrio {
  padding-bottom: 20px; }

.concept {
  padding: 55px 0 60px 0;
  margin: 0 auto;
  width: 95%; }

@media (min-width: 760px) {
  .concept-icons > div:not(:last-child)::after {
    content: "\F105";
    font-family: FontAwesome;
    position: absolute;
    display: block;
    top: calc(50% - 4.8rem);
    right: -8px;
    font-size: 3.6rem; } }

.concept-icons p.h4 {
  line-height: 25px;
  margin-top: 16px;
  margin-bottom: 0; }

.features {
  display: inline-block;
  padding-bottom: 60px; }

.feature {
  padding-top: 40px;
  padding-right: 0;
  padding-left: 0; }

.feature:nth-child(odd) {
  padding-right: 50px; }

.feature:nth-child(even) {
  padding-left: 50px; }

.feature.full {
  padding-left: 0;
  padding-right: 0; }

@media (max-width: 991px) {
  .feature {
    padding-top: 20px; }
  .feature:nth-child(odd),
  .feature:nth-child(even) {
    padding-left: 0;
    padding-right: 0; } }

.feature-heading {
  font-weight: 600;
  font-size: 26px;
  line-height: 28px;
  text-align: left; }

.feature-heading span {
  display: inline-block;
  vertical-align: middle;
  max-width: calc(100% - 80px);
  word-break: break-word; }

.feature-heading .fa-stack {
  left: -5px; }

.feature-heading .fa-circle {
  color: #CDCDCD; }

.feature-heading .fa-circle.dark {
  color: #9B9B9B; }

.feature-heading .fa-stack-1x {
  color: #333333; }

@media (max-width: 991px) {
  .feature:nth-child(odd) .feature-heading .fa-circle {
    color: #CDCDCD; }
  .feature:nth-child(even) .feature-heading .fa-circle {
    color: #9B9B9B; } }

.trusted-by-customer-block > * {
  height: 120px;
  padding: 0 14.5px; }
  .trusted-by-customer-block > * .customer-card {
    height: 100%;
    padding-top: 19px;
    padding-bottom: 19px;
    border-color: #686868;
    border-style: solid;
    border-width: 1px;
    transition: border-color 300ms ease-in-out; }
    .trusted-by-customer-block > * .customer-card[href*="g0v"] {
      padding-top: 19px;
      padding-bottom: 19px; }
    .trusted-by-customer-block > * .customer-card[href*="ethereum"] {
      padding-top: 18px;
      padding-bottom: 17px; }
    .trusted-by-customer-block > * .customer-card[href*="trinkler"] {
      padding-top: 44px;
      padding-bottom: 44px; }
    .trusted-by-customer-block > * .customer-card[href*="techstars"] {
      padding-top: 19px;
      padding-bottom: 20px; }
    .trusted-by-customer-block > * .customer-card:hover {
      border-color: white; }
  @media (max-width: 767px) {
    .trusted-by-customer-block > *:not(:last-child) {
      margin-bottom: 29px; } }

.icon::before {
  content: ' ';
  display: block;
  width: 34px;
  height: 2em;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; }

.icon.icon-bias::before {
  position: absolute;
  left: 18px;
  top: -2px; }

.icon-context-captured::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjM3cHgiIGhlaWdodD0iMzdweCIgdmlld0JveD0iMCAwIDM3IDM3IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCA0NiAoNDQ0MjMpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPlBhZ2UgMTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPgogICAgICAgIDxwb2x5Z29uIGlkPSJwYXRoLTEiIHBvaW50cz0iMTguNSAzNyAzNyAzNyAzNyAwIDAgMCAwIDE4LjUgMCAzNyI+PC9wb2x5Z29uPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkRlc2t0b3AtSEQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02OTguMDAwMDAwLCAtODM2LjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iUGFnZS0xIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2OTguMDAwMDAwLCA4MzYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTUuMDMxMjUsNi45Mzc1IEMxMC41Njg4NDc3LDYuOTM3NSA2LjkzNzUsMTAuNTY4MjY5NSA2LjkzNzUsMTUuMDMxMjUgQzYuOTM3NSwxNS42Njk3ODkxIDcuNDU0NjMyODEsMTYuMTg3NSA4LjA5Mzc1LDE2LjE4NzUgQzguNzMyODY3MTksMTYuMTg3NSA5LjI1LDE1LjY2OTc4OTEgOS4yNSwxNS4wMzEyNSBDOS4yNSwxMS44NDM2ODU1IDExLjg0MzY4NTUsOS4yNSAxNS4wMzEyNSw5LjI1IEMxNS42NzAzNjcyLDkuMjUgMTYuMTg3NSw4LjczMjI4OTA2IDE2LjE4NzUsOC4wOTM3NSBDMTYuMTg3NSw3LjQ1NTIxMDk0IDE1LjY3MDM2NzIsNi45Mzc1IDE1LjAzMTI1LDYuOTM3NSIgaWQ9IkZpbGwtMSIgZmlsbD0iIzMzMzMzMyI+PC9wYXRoPgogICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTUiPgogICAgICAgICAgICAgICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4KICAgICAgICAgICAgICAgICAgICAgICAgPHVzZSB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgICAgICAgICAgPGcgaWQ9IkNsaXAtNCI+PC9nPgogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik00LjYyNSwxNS4wMzEyNSBDNC42MjUsOS4yOTM1MDM5MSA5LjI5MjkyNTc4LDQuNjI1IDE1LjAzMTI1LDQuNjI1IEMyMC43Njk1NzQyLDQuNjI1IDI1LjQzNzUsOS4yOTM1MDM5MSAyNS40Mzc1LDE1LjAzMTI1IEMyNS40Mzc1LDIwLjc2ODk5NjEgMjAuNzY5NTc0MiwyNS40Mzc1IDE1LjAzMTI1LDI1LjQzNzUgQzkuMjkyOTI1NzgsMjUuNDM3NSA0LjYyNSwyMC43Njg5OTYxIDQuNjI1LDE1LjAzMTI1IEw0LjYyNSwxNS4wMzEyNSBaIE0zNS45ODM4MDA4LDMxLjA3ODc3MTUgTDI5LjY0NTIzODMsMjQuNzQwMjA5IEMzMC4zMzg2MjcsMjMuNDMwMDMzMiAzMC4xNDk1ODAxLDIxLjc3NTM2NzIgMjkuMDQ2MzAwOCwyMC42NzI1MjE1IEMyOS4wMjQyNTk4LDIwLjY1MDQ4MDUgMjguOTk3OTU1MSwyMC42MzU5NTUxIDI4Ljk3NTQ4MDUsMjAuNjE0NjM2NyBDMjkuNjcwMDI1NCwxOC44ODYzMzIgMzAuMDYyNSwxNy4wMDUxMTMzIDMwLjA2MjUsMTUuMDMxMjUgQzMwLjA2MjUsNi43NDI3NDQxNCAyMy4zMTkyNSwwIDE1LjAzMTI1LDAgQzYuNzQzMjUsMCAwLDYuNzQyNzQ0MTQgMCwxNS4wMzEyNSBDMCwyMy4zMTk3NTU5IDYuNzQzMzIyMjcsMzAuMDYyNSAxNS4wMzEyNSwzMC4wNjI1IEMxNy4wMDUwNDEsMzAuMDYyNSAxOC44ODYzMzIsMjkuNjcwMDI1NCAyMC42MTQ2MzY3LDI4Ljk3NTQwODIgQzIwLjYzNTk1NTEsMjguOTk3OTU1MSAyMC42NTA0ODA1LDI5LjAyNDI1OTggMjAuNjcyNTIxNSwyOS4wNDYyMjg1IEMyMS4zNTAwMTE3LDI5LjcyMzc5MSAyMi4yMzc1MDU5LDMwLjA2MjUgMjMuMTI1LDMwLjA2MjUgQzIzLjY4MjgxODQsMzAuMDYyNSAyNC4yMzQ0OTQxLDI5LjkxMjgzNzkgMjQuNzQwMjA5LDI5LjY0NTIzODMgTDMxLjA3ODc3MTUsMzUuOTgzODAwOCBDMzEuNzU2MjYxNywzNi42NjEyOTEgMzIuNjQzNzU1OSwzNyAzMy41MzEyNSwzNyBDMzQuNDE4NzQ0MSwzNyAzNS4zMDYzMTA1LDM2LjY2MTIxODggMzUuOTgzODAwOCwzNS45ODM3Mjg1IEMzNy4zMzg3ODEyLDM0LjYyOTMyNjIgMzcuMzM4NzgxMiwzMi40MzMxNzM4IDM1Ljk4MzgwMDgsMzEuMDc4NzcxNSBaIiBpZD0iRmlsbC0zIiBmaWxsPSIjMzMzMzMzIiBtYXNrPSJ1cmwoI21hc2stMikiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+); }

.icon-markdown::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjQxcHgiIGhlaWdodD0iMjZweCIgdmlld0JveD0iMCAwIDQxIDI2IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCA0NiAoNDQ0MjMpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPk9jdGljb25zLW1hcmtkb3duPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkRlc2t0b3AtSEQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNzcuMDAwMDAwLCAtMTA4MS4wMDAwMDApIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGZpbGw9IiMzMzMzMzMiPgogICAgICAgICAgICA8ZyBpZD0iT2N0aWNvbnMtbWFya2Rvd24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3Ny4wMDAwMDAsIDEwODEuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzguMDQzMjc1NCwwIEwyLjk1NjcyNDYxLDAgQzEuMzI2Mzc0MDIsMCAwLDEuMzI2Mzc0MDIgMCwyLjk1NjcyNDYxIEwwLDIyLjY2ODI3NTQgQzAsMjQuMjk4NzA2MSAxLjMyNjM3NDAyLDI1LjYyNSAyLjk1NjcyNDYxLDI1LjYyNSBMMzguMDQzMjc1NCwyNS42MjUgQzM5LjY3MzcwNjEsMjUuNjI1IDQxLDI0LjI5ODcwNjEgNDEsMjIuNjY4Mjc1NCBMNDEsMi45NTY3MjQ2MSBDNDEsMS4zMjYzNzQwMiAzOS42NzM3MDYxLDAgMzguMDQzMjc1NCwwIFogTTIzLjA2MjUsMjAuNDk0OTk1MSBMMTcuOTM3NSwyMC41IEwxNy45Mzc1LDEyLjgxMjUgTDE0LjA5Mzc1LDE3Ljc0MDM4NzcgTDEwLjI1LDEyLjgxMjUgTDEwLjI1LDIwLjUgTDUuMTI1LDIwLjUgTDUuMTI1LDUuMTI1IEwxMC4yNSw1LjEyNSBMMTQuMDkzNzUsMTAuMjUgTDE3LjkzNzUsNS4xMjUgTDIzLjA2MjUsNS4xMTk5OTUxMiBMMjMuMDYyNSwyMC40OTQ5OTUxIFogTTMwLjcxMzYwNDUsMjEuNzc2MjQ1MSBMMjQuMzQzNzUsMTIuODEyNSBMMjguMTg3NSwxMi44MTI1IEwyOC4xODc1LDUuMTI1IEwzMy4zMTI1LDUuMTI1IEwzMy4zMTI1LDEyLjgxMjUgTDM3LjE1NjI1LDEyLjgxMjUgTDMwLjcxMzYwNDUsMjEuNzc2MjQ1MSBaIiBpZD0iU2hhcGUiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+); }

.icon-knowledge-net::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjQxcHgiIGhlaWdodD0iMzFweCIgdmlld0JveD0iMCAwIDQxIDMxIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCA0NiAoNDQ0MjMpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPmhpZXJhcmNoaWNhbC1zdHJ1Y3R1cmUgY29weTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJEZXNrdG9wLUhEIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNzAwLjAwMDAwMCwgLTEwNzcuMDAwMDAwKSIgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSIjMzMzMzMzIj4KICAgICAgICAgICAgPGcgaWQ9ImhpZXJhcmNoaWNhbC1zdHJ1Y3R1cmUtY29weSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzAwLjAwMDAwMCwgMTA3Ny4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0yNS4xNDYxMDY2LDIyLjE0NjQ5MzIgTDIxLjYwOTAxNjQsMjIuMTQ2NDkzMiBMMjEuNjA5MDE2NCwyMi4xNDY0OTMyIEwxOS4zODI1ODIsMjIuMTQ2NDkzMiBMMTkuMzgyNTgyLDIyLjE0NjQ5MzIgTDE1Ljg0NTQ5MTgsMjIuMTQ2NDkzMiBDMTUuMDY0MTM5MywyMi4xNDY0OTMyIDE0LjQxNzIxMzEsMjIuNzc1OTM3MyAxNC40MTcyMTMxLDIzLjU1NDQ2MDIgTDE0LjQxNzIxMzEsMjguNjcyODM0NSBDMTQuNDE3MjEzMSwyOS40NDMwNzUzIDE1LjA1NTczNzcsMzAuMDgwODAxNiAxNS44NDU0OTE4LDMwLjA4MDgwMTYgTDI1LjEzNzcwNDksMzAuMDgwODAxNiBDMjUuOTE5MDU3NCwzMC4wODA4MDE2IDI2LjU2NTk4MzYsMjkuNDUxMzU3NSAyNi41NjU5ODM2LDI4LjY3MjgzNDUgTDI2LjU2NTk4MzYsMjMuNTU0NDYwMiBDMjYuNTc0Mzg1MiwyMi43ODQyMTk1IDI1LjkyNzQ1OSwyMi4xNDY0OTMyIDI1LjE0NjEwNjYsMjIuMTQ2NDkzMiBaIiBpZD0iU2hhcGUiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zOS41NzE3MjEzLDIyLjE0NjQ5MzIgTDM2LjAzNDYzMTEsMjIuMTQ2NDkzMiBMMzYuMDM0NjMxMSwyMi4xNDY0OTMyIEwzMy44MDgxOTY3LDIyLjE0NjQ5MzIgTDMzLjgwODE5NjcsMjIuMTQ2NDkzMiBMMzAuMjcxMTA2NiwyMi4xNDY0OTMyIEMyOS40ODk3NTQxLDIyLjE0NjQ5MzIgMjguODQyODI3OSwyMi43NzU5MzczIDI4Ljg0MjgyNzksMjMuNTU0NDYwMiBMMjguODQyODI3OSwyOC42NzI4MzQ1IEMyOC44NDI4Mjc5LDI5LjQ0MzA3NTMgMjkuNDgxMzUyNSwzMC4wODA4MDE2IDMwLjI3MTEwNjYsMzAuMDgwODAxNiBMMzkuNTcxNzIxMywzMC4wODA4MDE2IEM0MC4zNTMwNzM4LDMwLjA4MDgwMTYgNDEsMjkuNDUxMzU3NSA0MSwyOC42NzI4MzQ1IEw0MSwyMy41NTQ0NjAyIEM0MC45OTE1OTg0LDIyLjc4NDIxOTUgNDAuMzUzMDczOCwyMi4xNDY0OTMyIDM5LjU3MTcyMTMsMjIuMTQ2NDkzMiBaIiBpZD0iU2hhcGUiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMC43Mjg4OTM0LDIyLjE0NjQ5MzIgTDcuMTkxODAzMjgsMjIuMTQ2NDkzMiBMNy4xOTE4MDMyOCwyMi4xNDY0OTMyIEw0Ljk2NTM2ODg1LDIyLjE0NjQ5MzIgTDQuOTY1MzY4ODUsMjIuMTQ2NDkzMiBMMS40MjgyNzg2OSwyMi4xNDY0OTMyIEMwLjY0NjkyNjIzLDIyLjE0NjQ5MzIgMCwyMi43NzU5MzczIDAsMjMuNTU0NDYwMiBMMCwyOC42NzI4MzQ1IEMwLDI5LjQ0MzA3NTMgMC42Mzg1MjQ1OSwzMC4wODA4MDE2IDEuNDI4Mjc4NjksMzAuMDgwODAxNiBMMTAuNzIwNDkxOCwzMC4wODA4MDE2IEMxMS41MDE4NDQzLDMwLjA4MDgwMTYgMTIuMTQ4NzcwNSwyOS40NTEzNTc1IDEyLjE0ODc3MDUsMjguNjcyODM0NSBMMTIuMTQ4NzcwNSwyMy41NTQ0NjAyIEMxMi4xNDg3NzA1LDIyLjc4NDIxOTUgMTEuNTEwMjQ1OSwyMi4xNDY0OTMyIDEwLjcyODg5MzQsMjIuMTQ2NDkzMiBaIiBpZD0iU2hhcGUiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik03LjE5MTgwMzI4LDE3Ljc2NTIzMTEgTDE5LjM5MDk4MzYsMTcuNzY1MjMxMSBMMTkuMzkwOTgzNiwyMC4yMTY3NTAyIEwyMS42MTc0MTgsMjAuMjE2NzUwMiBMMjEuNjE3NDE4LDE3Ljc2NTIzMTEgTDMzLjgxNjU5ODQsMTcuNzY1MjMxMSBMMzMuODE2NTk4NCwyMC4yMTY3NTAyIEwzNi4wNDMwMzI4LDIwLjIxNjc1MDIgTDM2LjA0MzAzMjgsMTYuNjYzNzAzOSBDMzYuMDQzMDMyOCwxNi4wNTkxMDYzIDM1LjU0NzMzNjEsMTUuNTcwNDU5IDM0LjkzNDAxNjQsMTUuNTcwNDU5IEwyMS42MDkwMTY0LDE1LjU3MDQ1OSBMMjEuNjA5MDE2NCwxMS45NDI4NzMzIEwyNy44NjgyMzc3LDExLjk0Mjg3MzMgQzI4LjgxNzYyMywxMS45NDI4NzMzIDI5LjU5ODk3NTQsMTEuMTcyNjMyNSAyOS41OTg5NzU0LDEwLjIzNjc0ODUgTDI5LjU5ODk3NTQsMS43NzIzODIwMyBDMjkuNTk4OTc1NCwwLjgzNjQ5ODA2MSAyOC44MTc2MjMsMC4wNjYyNTcyNzIxIDI3Ljg2ODIzNzcsMC4wNjYyNTcyNzIxIEwyMi4xNjM1MjQ2LDAuMDY2MjU3MjcyMSBMMjIuMTYzNTI0NiwwLjA2NjI1NzI3MjEgTDE4LjgyODA3MzgsMC4wNjYyNTcyNzIxIEwxOC44MjgwNzM4LDAuMDY2MjU3MjcyMSBMMTMuMTIzMzYwNywwLjA2NjI1NzI3MjEgQzEyLjE3Mzk3NTQsMC4wNjYyNTcyNzIxIDExLjM5MjYyMywwLjgzNjQ5ODA2MSAxMS4zOTI2MjMsMS43NzIzODIwMyBMMTEuMzkyNjIzLDEwLjI0NTAzMDcgQzExLjM5MjYyMywxMS4xODA5MTQ3IDEyLjE3Mzk3NTQsMTEuOTUxMTU1NSAxMy4xMjMzNjA3LDExLjk1MTE1NTUgTDE5LjM4MjU4MiwxMS45NTExNTU1IEwxOS4zODI1ODIsMTUuNTc4NzQxMSBMNi4wNzQzODUyNSwxNS41Nzg3NDExIEM1LjQ2MTA2NTU3LDE1LjU3ODc0MTEgNC45NjUzNjg4NSwxNi4wNjczODg1IDQuOTY1MzY4ODUsMTYuNjcxOTg2MSBMNC45NjUzNjg4NSwyMC4yMjUwMzIzIEw3LjE5MTgwMzI4LDIwLjIyNTAzMjMgQzcuMTkxODAzMjgsMjAuMjI1MDMyMyA3LjE5MTgwMzI4LDE3Ljc2NTIzMTEgNy4xOTE4MDMyOCwxNy43NjUyMzExIFogTTE0LjIxNTU3MzgsNC4wMTY4NDcxMiBDMTQuMjE1NTczOCwzLjc0MzUzNTg4IDE0LjQ0MjQxOCwzLjUyODE5OTc0IDE0LjcxMTI3MDUsMy41MjgxOTk3NCBMMjYuMjg4NzI5NSwzLjUyODE5OTc0IEMyNi41NjU5ODM2LDMuNTI4MTk5NzQgMjYuNzg0NDI2MiwzLjc1MTgxODAzIDI2Ljc4NDQyNjIsNC4wMTY4NDcxMiBMMjYuNzg0NDI2Miw0LjY2Mjg1NTUzIEMyNi43ODQ0MjYyLDQuOTM2MTY2NzcgMjYuNTU3NTgyLDUuMTUxNTAyOTEgMjYuMjg4NzI5NSw1LjE1MTUwMjkxIEwxNC43MTEyNzA1LDUuMTUxNTAyOTEgQzE0LjQzNDAxNjQsNS4xNTE1MDI5MSAxNC4yMTU1NzM4LDQuOTI3ODg0NjIgMTQuMjE1NTczOCw0LjY2Mjg1NTUzIEwxNC4yMTU1NzM4LDQuMDE2ODQ3MTIgTDE0LjIxNTU3MzgsNC4wMTY4NDcxMiBaIE0xNC43MTEyNzA1LDguNDcyNjQ4NjcgQzE0LjQzNDAxNjQsOC40NzI2NDg2NyAxNC4yMTU1NzM4LDguMjQ5MDMwMzggMTQuMjE1NTczOCw3Ljk4NDAwMTI5IEwxNC4yMTU1NzM4LDcuMzM3OTkyODkgQzE0LjIxNTU3MzgsNy4wNjQ2ODE2NCAxNC40NDI0MTgsNi44NDkzNDU1MSAxNC43MTEyNzA1LDYuODQ5MzQ1NTEgTDI2LjI4ODcyOTUsNi44NDkzNDU1MSBDMjYuNTY1OTgzNiw2Ljg0OTM0NTUxIDI2Ljc4NDQyNjIsNy4wNzI5NjM4IDI2Ljc4NDQyNjIsNy4zMzc5OTI4OSBMMjYuNzg0NDI2Miw3Ljk4NDAwMTI5IEMyNi43ODQ0MjYyLDguMjU3MzEyNTQgMjYuNTU3NTgyLDguNDcyNjQ4NjcgMjYuMjg4NzI5NSw4LjQ3MjY0ODY3IEwxNC43MTEyNzA1LDguNDcyNjQ4NjcgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==); }

.icon-turn-note-into-slides::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjM3cHgiIGhlaWdodD0iMzdweCIgdmlld0JveD0iMCAwIDM3IDM3IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCA0NiAoNDQ0MjMpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPmJhci1jaGFydCBjb3B5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkRlc2t0b3AtSEQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNzkuMDAwMDAwLCAtMTU3OC4wMDAwMDApIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGZpbGw9IiMzMzMzMzMiPgogICAgICAgICAgICA8ZyBpZD0iYmFyLWNoYXJ0LWNvcHkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3OS4wMDAwMDAsIDE1NzguMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLXBhdGgiIHg9IjAiIHk9IjAuMDE4ODc3NTUxIiB3aWR0aD0iMzciIGhlaWdodD0iNC41ODM0NjkzOSI+PC9yZWN0PgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTMuNDY1OTE4MzcsMjUuNzk4MDYxMiBMMTcuNzY3NTUxLDI1Ljc5ODA2MTIgTDE3Ljc2NzU1MSwzMi4zNDQ3OTU5IEMxNi44MDEwMjA0LDMyLjY2OTQ4OTggMTYuMDkxMjI0NSwzMy41NDU0MDgyIDE2LjA5MTIyNDUsMzQuNjAyNTUxIEMxNi4wOTEyMjQ1LDM1LjkyMzk3OTYgMTcuMTc4NTcxNCwzNi45ODExMjI0IDE4LjUzMDIwNDEsMzYuOTgxMTIyNCBDMTkuODgxODM2NywzNi45ODExMjI0IDIwLjk2OTE4MzcsMzUuOTIzOTc5NiAyMC45NjkxODM3LDM0LjYwMjU1MSBDMjAuOTY5MTgzNywzMy41NDU0MDgyIDIwLjI2NjkzODgsMzIuNjMxNzM0NyAxOS4yOTI4NTcxLDMyLjM0NDc5NTkgTDE5LjI5Mjg1NzEsMjUuNzk4MDYxMiBMMzMuNTk0NDg5OCwyNS43OTgwNjEyIEwzMy41OTQ0ODk4LDYuNDgyNTUxMDIgTDMuNDY1OTE4MzcsNi40ODI1NTEwMiBMMy40NjU5MTgzNywyNS43OTgwNjEyIEwzLjQ2NTkxODM3LDI1Ljc5ODA2MTIgWiBNOC40NTcxNDI4NiwyMC42NjMzNjczIEwxMC4zNjc1NTEsMjAuNjYzMzY3MyBMMTAuMzY3NTUxLDEzLjkzNTQwODIgQzEwLjM2NzU1MSwxMy40MDY4MzY3IDEwLjc3NTMwNjEsMTIuOTk5MDgxNiAxMS4zMDM4Nzc2LDEyLjk5OTA4MTYgQzExLjgzMjQ0OSwxMi45OTkwODE2IDEyLjI0MDIwNDEsMTMuNDA2ODM2NyAxMi4yNDAyMDQxLDEzLjkzNTQwODIgTDEyLjI0MDIwNDEsMjAuNjYzMzY3MyBMMTUuMTc3NTUxLDIwLjY2MzM2NzMgTDE1LjE3NzU1MSwxMC42ODA5MTg0IEMxNS4xNzc1NTEsMTAuMTUyMzQ2OSAxNS41ODUzMDYxLDkuNzQ0NTkxODQgMTYuMTEzODc3Niw5Ljc0NDU5MTg0IEMxNi42NDI0NDksOS43NDQ1OTE4NCAxNy4wNTAyMDQxLDEwLjE1MjM0NjkgMTcuMDUwMjA0MSwxMC42ODA5MTg0IEwxNy4wNTAyMDQxLDIwLjY2MzM2NzMgTDE5Ljk4NzU1MSwyMC42NjMzNjczIEwxOS45ODc1NTEsMTUuMTEzMzY3MyBDMTkuOTg3NTUxLDE0LjU4NDc5NTkgMjAuMzk1MzA2MSwxNC4xNzcwNDA4IDIwLjkyMzg3NzYsMTQuMTc3MDQwOCBDMjEuNDUyNDQ5LDE0LjE3NzA0MDggMjEuODYwMjA0MSwxNC41ODQ3OTU5IDIxLjg2MDIwNDEsMTUuMTEzMzY3MyBMMjEuODYwMjA0MSwyMC42NjMzNjczIEwyNC43OTc1NTEsMjAuNjYzMzY3MyBMMjQuNzk3NTUxLDEzLjMyMzc3NTUgQzI0Ljc5NzU1MSwxMi43OTUyMDQxIDI1LjIwNTMwNjEsMTIuMzg3NDQ5IDI1LjczMzg3NzYsMTIuMzg3NDQ5IEMyNi4yNjI0NDksMTIuMzg3NDQ5IDI2LjY3MDIwNDEsMTIuNzk1MjA0MSAyNi42NzAyMDQxLDEzLjMyMzc3NTUgTDI2LjY3MDIwNDEsMjAuNjMzMTYzMyBMMjguNTgwNjEyMiwyMC42MzMxNjMzIEMyOS4xMDkxODM3LDIwLjYzMzE2MzMgMjkuNTE2OTM4OCwyMS4wNDA5MTg0IDI5LjUxNjkzODgsMjEuNTY5NDg5OCBDMjkuNTE2OTM4OCwyMi4wOTgwNjEyIDI5LjEwOTE4MzcsMjIuNTA1ODE2MyAyOC41ODA2MTIyLDIyLjUwNTgxNjMgTDguNDU3MTQyODYsMjIuNTA1ODE2MyBDNy45Mjg1NzE0MywyMi41MDU4MTYzIDcuNTIwODE2MzMsMjIuMDk4MDYxMiA3LjUyMDgxNjMzLDIxLjU2OTQ4OTggQzcuNTIwODE2MzMsMjEuMDcxMTIyNCA3LjkyODU3MTQzLDIwLjY2MzM2NzMgOC40NTcxNDI4NiwyMC42NjMzNjczIFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=); }

.icon-better-conference-experience::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjM2cHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAwIDM2IDQwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCA0NiAoNDQ0MjMpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPlBhZ2UgMTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJEZXNrdG9wLUhEIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNjk5LjAwMDAwMCwgLTE1NzIuMDAwMDAwKSIgZmlsbD0iIzMzMzMzMyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik03MDcuMDAwMDc4LDE1ODggTDcyNywxNTg4IEw3MjcsMTU4NCBMNzA3LjAwMDA3OCwxNTg0IEw3MDcuMDAwMDc4LDE1ODggWiBNNzA3LjAwMDA3OCwxNTk2IEw3MjcsMTU5NiBMNzI3LDE1OTIgTDcwNy4wMDAwNzgsMTU5MiBMNzA3LjAwMDA3OCwxNTk2IFogTTcwNy4wMDAwNzgsMTYwMy45OTk5MiBMNzIxLDE2MDMuOTk5OTIgTDcyMSwxNTk5Ljk5OTkyIEw3MDcuMDAwMDc4LDE1OTkuOTk5OTIgTDcwNy4wMDAwNzgsMTYwMy45OTk5MiBaIE03MTcsMTU3NiBDNzE4LjA5OTkyMiwxNTc2IDcxOC45OTk5MjIsMTU3Ni44OSA3MTguOTk5OTIyLDE1NzggQzcxOC45OTk5MjIsMTU3OS4xMSA3MTguMDk5OTIyLDE1ODAgNzE3LDE1ODAgQzcxNS45LDE1ODAgNzE1LDE1NzkuMTEgNzE1LDE1NzggQzcxNSwxNTc2Ljg5IDcxNS45LDE1NzYgNzE3LDE1NzYgTDcxNywxNTc2IFogTTczMSwxNTc2IEw3MjIuNjMwMDc4LDE1NzYgQzcyMS44MSwxNTczLjY4IDcxOS42MSwxNTcyIDcxNywxNTcyIEM3MTQuMzksMTU3MiA3MTIuMTg5OTIyLDE1NzMuNjggNzExLjM3LDE1NzYgTDcwMywxNTc2IEM3MDAuNzkwMDc4LDE1NzYgNjk5LDE1NzcuNzkgNjk5LDE1ODAuMDAwMDggTDY5OSwxNjA4IEM2OTksMTYxMC4yMDk5MiA3MDAuNzksMTYxMiA3MDMsMTYxMiBMNzMxLDE2MTIgQzczMy4yMSwxNjEyIDczNS4wMDAwNzgsMTYxMC4yMSA3MzUuMDAwMDc4LDE2MDggTDczNS4wMDAwNzgsMTU4MCBDNzM1LDE1NzcuNzkgNzMzLjIxLDE1NzYgNzMxLDE1NzYgTDczMSwxNTc2IFoiIGlkPSJQYWdlLTEiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==); }

.icon-quote-left::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjU1cHgiIGhlaWdodD0iMzhweCIgdmlld0JveD0iMCAwIDU1IDM4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCA0NiAoNDQ0MjMpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPlBhZ2UgMTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPgogICAgICAgIDxwb2x5Z29uIGlkPSJwYXRoLTEiIHBvaW50cz0iNTUgNS4zOTc3MjcyN2UtMDUgNTUgMzcuOTYyOTE3NiAzLjIyMjY1NjI1ZS0wNSAzNy45NjI5MTc2IDMuMjIyNjU2MjVlLTA1IDUuMzk3NzI3MjdlLTA1IDU1IDUuMzk3NzI3MjdlLTA1Ij48L3BvbHlnb24+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIwLjIiPgogICAgICAgIDxnIGlkPSJEZXNrdG9wLUhEIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjYyLjAwMDAwMCwgLTIwNTAuMDAwMDAwKSI+CiAgICAgICAgICAgIDxnIGlkPSJQYWdlLTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI2Mi4wMDAwMDAsIDIwNTAuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICAgICAgPHVzZSB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgICAgIDwvbWFzaz4KICAgICAgICAgICAgICAgIDxnIGlkPSJDbGlwLTIiPjwvZz4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik00Mi45ODA0OTEyLDEzLjgwNDc0MTUgQzQ5LjYxODYyNiwxMy44MDQ3NDE1IDU1LjAwMDAzMjIsMTkuMjEyODMyNCA1NS4wMDAwMzIyLDI1Ljg4Mzg4MzUgQzU1LjAwMDAzMjIsMzIuNTU0ODI2NyA0OS42MTg2MjYsMzcuOTYyOTE3NiA0Mi45ODA0OTEyLDM3Ljk2MjkxNzYgQzM2LjM0MjM1NjQsMzcuOTYyOTE3NiAzMC45NjA5NTAyLDMyLjU1NDgyNjcgMzAuOTYwOTUwMiwyNS44ODM4ODM1IEwzMC45MDczNDY3LDI0LjE1ODIzMDEgQzMwLjkwNzM0NjcsMTAuODE2MDE5OSA0MS42Njk4MzY5LDUuMzk3NzI3MjdlLTA1IDU0Ljk0NjMyMTMsNS4zOTc3MjcyN2UtMDUgTDU0Ljk0NjMyMTMsNi45MDIzNDM3NSBDNTAuMzYwMDUxOCw2LjkwMjM0Mzc1IDQ2LjA0NzgxNTQsOC42OTczMDM5OCA0Mi44MDQ4NTY0LDExLjk1NjU1OTcgQzQyLjE4MDQxMzEsMTIuNTgzOTkxNSA0MS42MTA2NDc1LDEzLjI1MTU4MjQgNDEuMDk2NzQxMiwxMy45NTI4NTUxIEM0MS43MTA1NDk4LDEzLjg1NTgwNCA0Mi4zMzk1MDQ5LDEzLjgwNDc0MTUgNDIuOTgwNDkxMiwxMy44MDQ3NDE1IE0xMi4wNzMxNzY4LDEzLjgwNDc0MTUgQzE4LjcxMTQxODksMTMuODA0NzQxNSAyNC4wOTI3MTc4LDE5LjIxMjgzMjQgMjQuMDkyNzE3OCwyNS44ODM4ODM1IEMyNC4wOTI3MTc4LDMyLjU1NDgyNjcgMTguNzExNDE4OSwzNy45NjI5MTc2IDEyLjA3MzE3NjgsMzcuOTYyOTE3NiBDNS40MzQ5MzQ1NywzNy45NjI5MTc2IDAuMDUzNjM1NzQyMiwzMi41NTQ4MjY3IDAuMDUzNjM1NzQyMiwyNS44ODM4ODM1IEwzLjIyMjY1NjI1ZS0wNSwyNC4xNTgyMzAxIEMzLjIyMjY1NjI1ZS0wNSwxMC44MTYwMTk5IDEwLjc2MjYyOTksNS4zOTc3MjcyN2UtMDUgMjQuMDM5MDA2OCw1LjM5NzcyNzI3ZS0wNSBMMjQuMDM5MDA2OCw2LjkwMjM0Mzc1IEMxOS40NTI2Mjk5LDYuOTAyMzQzNzUgMTUuMTQwNjA4NCw4LjY5NzMwMzk4IDExLjg5NzU0MiwxMS45NTY1NTk3IEMxMS4yNzMyMDYxLDEyLjU4Mzk5MTUgMTAuNzAzNDQwNCwxMy4yNTE1ODI0IDEwLjE4OTUzNDIsMTMuOTUyODU1MSBDMTAuODAzMzQyOCwxMy44NTU4MDQgMTEuNDMyMjk3OSwxMy44MDQ3NDE1IDEyLjA3MzE3NjgsMTMuODA0NzQxNSIgaWQ9IkZpbGwtMSIgZmlsbD0iI0ZGRkZGRiIgbWFzaz0idXJsKCNtYXNrLTIpIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==); }

.icon-quote-right::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjU1cHgiIGhlaWdodD0iMzhweCIgdmlld0JveD0iMCAwIDU1IDM4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCA0NiAoNDQ0MjMpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPgogICAgPHRpdGxlPlBhZ2UgMSBDb3B5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+CiAgICAgICAgPHBvbHlnb24gaWQ9InBhdGgtMSIgcG9pbnRzPSI1NSA1LjM5NzcyNzI3ZS0wNSA1NSAzNy45NjI5MTc2IDMuMjIyNjU2MjVlLTA1IDM3Ljk2MjkxNzYgMy4yMjI2NTYyNWUtMDUgNS4zOTc3MjcyN2UtMDUgNTUgNS4zOTc3MjcyN2UtMDUiPjwvcG9seWdvbj4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIG9wYWNpdHk9IjAuMiI+CiAgICAgICAgPGcgaWQ9IkRlc2t0b3AtSEQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC05NzMuMDAwMDAwLCAtMjE0Ni4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9IlBhZ2UtMS1Db3B5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMDAwLjUwMDAwMCwgMjE2NS4wMDAwMDApIHNjYWxlKC0xLCAtMSkgdHJhbnNsYXRlKC0xMDAwLjUwMDAwMCwgLTIxNjUuMDAwMDAwKSB0cmFuc2xhdGUoOTczLjAwMDAwMCwgMjE0Ni4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4KICAgICAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICAgICAgPC9tYXNrPgogICAgICAgICAgICAgICAgPGcgaWQ9IkNsaXAtMiI+PC9nPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTQyLjk4MDQ5MTIsMTMuODA0NzQxNSBDNDkuNjE4NjI2LDEzLjgwNDc0MTUgNTUuMDAwMDMyMiwxOS4yMTI4MzI0IDU1LjAwMDAzMjIsMjUuODgzODgzNSBDNTUuMDAwMDMyMiwzMi41NTQ4MjY3IDQ5LjYxODYyNiwzNy45NjI5MTc2IDQyLjk4MDQ5MTIsMzcuOTYyOTE3NiBDMzYuMzQyMzU2NCwzNy45NjI5MTc2IDMwLjk2MDk1MDIsMzIuNTU0ODI2NyAzMC45NjA5NTAyLDI1Ljg4Mzg4MzUgTDMwLjkwNzM0NjcsMjQuMTU4MjMwMSBDMzAuOTA3MzQ2NywxMC44MTYwMTk5IDQxLjY2OTgzNjksNS4zOTc3MjcyN2UtMDUgNTQuOTQ2MzIxMyw1LjM5NzcyNzI3ZS0wNSBMNTQuOTQ2MzIxMyw2LjkwMjM0Mzc1IEM1MC4zNjAwNTE4LDYuOTAyMzQzNzUgNDYuMDQ3ODE1NCw4LjY5NzMwMzk4IDQyLjgwNDg1NjQsMTEuOTU2NTU5NyBDNDIuMTgwNDEzMSwxMi41ODM5OTE1IDQxLjYxMDY0NzUsMTMuMjUxNTgyNCA0MS4wOTY3NDEyLDEzLjk1Mjg1NTEgQzQxLjcxMDU0OTgsMTMuODU1ODA0IDQyLjMzOTUwNDksMTMuODA0NzQxNSA0Mi45ODA0OTEyLDEzLjgwNDc0MTUgTTEyLjA3MzE3NjgsMTMuODA0NzQxNSBDMTguNzExNDE4OSwxMy44MDQ3NDE1IDI0LjA5MjcxNzgsMTkuMjEyODMyNCAyNC4wOTI3MTc4LDI1Ljg4Mzg4MzUgQzI0LjA5MjcxNzgsMzIuNTU0ODI2NyAxOC43MTE0MTg5LDM3Ljk2MjkxNzYgMTIuMDczMTc2OCwzNy45NjI5MTc2IEM1LjQzNDkzNDU3LDM3Ljk2MjkxNzYgMC4wNTM2MzU3NDIyLDMyLjU1NDgyNjcgMC4wNTM2MzU3NDIyLDI1Ljg4Mzg4MzUgTDMuMjIyNjU2MjVlLTA1LDI0LjE1ODIzMDEgQzMuMjIyNjU2MjVlLTA1LDEwLjgxNjAxOTkgMTAuNzYyNjI5OSw1LjM5NzcyNzI3ZS0wNSAyNC4wMzkwMDY4LDUuMzk3NzI3MjdlLTA1IEwyNC4wMzkwMDY4LDYuOTAyMzQzNzUgQzE5LjQ1MjYyOTksNi45MDIzNDM3NSAxNS4xNDA2MDg0LDguNjk3MzAzOTggMTEuODk3NTQyLDExLjk1NjU1OTcgQzExLjI3MzIwNjEsMTIuNTgzOTkxNSAxMC43MDM0NDA0LDEzLjI1MTU4MjQgMTAuMTg5NTM0MiwxMy45NTI4NTUxIEMxMC44MDMzNDI4LDEzLjg1NTgwNCAxMS40MzIyOTc5LDEzLjgwNDc0MTUgMTIuMDczMTc2OCwxMy44MDQ3NDE1IiBpZD0iRmlsbC0xIiBmaWxsPSIjRkZGRkZGIiBtYXNrPSJ1cmwoI21hc2stMikiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+); }

.quote {
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  padding-left: 7%;
  padding-right: 7%;
  padding-top: 40px;
  padding-bottom: 40px; }

.quote span {
  width: 86%; }

.quote .icon-quote-left::before {
  width: 55px;
  margin-left: 0;
  margin-bottom: -10px; }

.quote .icon-quote-right::before {
  width: 55px;
  margin-right: 0;
  margin-top: -10px; }

@media (max-width: 991px) {
  .quote .icon-quote-left::before,
  .quote .icon-quote-right::before {
    margin-top: 0;
    margin-bottom: 0; } }

body {
  overflow-x: hidden; }

input {
  color: black; }

.select2-drop {
  z-index: 999; }

.select2-drop-mask {
  z-index: 998; }

.select2-container-multi .select2-choices {
  background-image: none; }

.select2-container-multi .select2-choices .select2-search-field input {
  font-family: inherit;
  padding: 5px 12px; }

.select2-container {
  margin: 0 auto !important; }

.list {
  list-style: none;
  width: 100%;
  padding-left: 0;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start; }

.list-section h1 {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #4F4F4F;
  line-height: 1px;
  margin: 60px 0 14px;
  font-weight: bold;
  font-size: 26px; }

.list-section h1 span {
  background: #333;
  padding: 0 10px; }

.list {
  margin: 20px 0; }

.list li {
  padding: 0 10px; }

.list li * {
  word-break: break-word;
  word-wrap: break-word; }

.list li a {
  text-decoration: none; }

.list li p {
  color: #777; }

.list li .item {
  padding: 5px 25px;
  margin: 10px 0;
  background: white;
  border-radius: 5px;
  color: black;
  text-shadow: none;
  min-height: 165px;
  display: table;
  min-width: 100%; }

.list li .item.small {
  min-height: 110px; }

.list li .item.visited {
  background: #d4d4d4; }

.list li .item h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 46px; }

.list li .item .content {
  display: table-cell;
  vertical-align: middle; }

.list li .item .content .tags {
  line-height: 25px; }

.list li .item .content .tags span {
  display: inline-block;
  line-height: 15px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 12px;
  border-radius: 4px; }

.list li .item .content .tags .popover {
  background-color: #B8B8B8; }

.list li .item .content .tags .popover.bottom > .arrow:after {
  border-bottom-color: #B8B8B8; }

.list li .item .content .tags .tooltip {
  opacity: 1; }

.list li .item .content .tags .tooltip-inner {
  background-color: #B8B8B8; }
  .list li .item .content .tags .tooltip-inner .label {
    margin-top: 5px; }

.list li .item .content .tags .tooltip-arrow {
  border-bottom-color: #B8B8B8; }

.label-highlight {
  background: #333; }

.list li .item.wide {
  display: block; }

.list li .item.wide hr {
  margin-top: 10px;
  margin-bottom: 10px; }

.list li .item.wide .content {
  display: block; }

.list li .item.wide .content .title {
  padding-right: 100px; }

.list li .item.wide .content .title a,
.list li .item.wide .content .title a:focus,
.list li .item.wide .content .title a:hover {
  color: black; }

.list li .item.wide .content .title a:focus,
.list li .item.wide .content .title a:hover {
  text-decoration: underline; }

.list li .item.wide .content .pre {
  font-size: 16px;
  font-family: "Source Code Pro", Consolas, monaco, monospace;
  letter-spacing: 0.025em;
  line-height: 1.25;
  white-space: pre-wrap;
  padding: 10px 0; }

.list li .item.wide .info .create-time {
  display: inline-block;
  padding-right: 100px; }

.list li .item.wide .info .permission {
  position: absolute;
  right: 35px;
  bottom: 26px; }

.list li:hover .item,
.list li:focus .item {
  background: rgba(255, 255, 255, 0.9); }

.list.row-layout li {
  width: 100%; }

.list.row-layout li .item {
  margin: 0;
  padding: 3px 20px;
  min-height: inherit;
  border-radius: 0;
  border-bottom: 1px solid #D0D0D0; }

.list.row-layout li:first-child .item,
.list.row-layout li.first-child .item {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px; }

.list.row-layout li:last-child .item,
.list.row-layout li.last-child .item {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px; }

.list.row-layout li .item .content {
  padding: 0; }

.list.row-layout li .item h4 {
  float: left;
  text-align: left;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  max-width: 45%; }

.list.row-layout li .item p.time {
  float: right;
  margin-top: 12px; }

.list.row-layout li .item p.time i.time {
  display: none; }

.list.row-layout li .item .tags {
  margin-top: 12px;
  margin-left: 10px;
  vertical-align: middle;
  line-height: 10px;
  float: left; }

.list.row-layout li .item .share-with {
  position: relative;
  float: right;
  left: unset;
  bottom: unset;
  margin: 7px 13px 7px 0; }

.list.row-layout li .item .dot {
  position: relative;
  float: right;
  right: unset;
  bottom: unset;
  margin: 15px 13px; }

@media (max-width: 575.99px) {
  .list.row-layout li .item .tags {
    min-height: 21px;
    text-align: left;
    width: calc(100% - 55px);
    margin: 0 55px 10px 0; }
  .list.row-layout li .item .share-with {
    position: absolute;
    float: none;
    right: 28px;
    bottom: 13px;
    margin: 0; }
  .list.row-layout li .item .dot {
    position: absolute;
    float: none;
    right: 62px;
    bottom: 20px;
    margin: 0; } }

.dropdown,
.modal,
.select2-choices,
.select2-results {
  text-shadow: none; }

.pagination > li > a,
.pagination > li > span {
  text-shadow: none; }

.pagination.dark > li > a,
.pagination.dark > li > span {
  color: #7A7A7A;
  background-color: transparent;
  border-color: transparent; }

.pagination.dark > li > a:focus,
.pagination.dark > li > a:hover,
.pagination.dark > li > span:focus,
.pagination.dark > li > span:hover {
  color: #D4D4D4;
  background-color: transparent;
  border-color: transparent; }

.pagination.dark > .active > a,
.pagination.dark > .active > a:focus,
.pagination.dark > .active > a:hover,
.pagination.dark > .active > span,
.pagination.dark > .active > span:focus,
.pagination.dark > .active > span:hover {
  color: #FFFFFF;
  background-color: transparent;
  border-color: transparent; }

.pagination.dark > .disabled > a,
.pagination.dark > .disabled > a:focus,
.pagination.dark > .disabled > a:hover,
.pagination.dark > .disabled > span,
.pagination.dark > .disabled > span:focus,
.pagination.dark > .disabled > span:hover {
  color: #777;
  background-color: transparent;
  border-color: transparent; }

.form-inline {
  padding: 0 10px; }

.sort.asc {
  text-decoration: overline; }

.sort.desc {
  text-decoration: underline; }

.ui-avatar {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  vertical-align: middle;
  border-radius: 3px;
  object-fit: cover; }

.ui-avatar.circle {
  border-radius: 50%; }

.ui-history-close {
  position: absolute;
  right: 14px;
  top: 15px;
  font-size: 16px;
  opacity: 0.5; }

.ui-item {
  position: absolute;
  font-size: 16px;
  opacity: 0.5;
  color: black; }

.ui-item-edit {
  right: 30px;
  top: 25px; }

.ui-item-view {
  right: 55px;
  top: 25px; }

.ui-item-slide {
  right: 80px;
  top: 25px; }

.ui-item-book {
  right: 105px;
  top: 25px; }

.ui-item:hover,
.ui-item:focus {
  opacity: 1;
  color: black; }

.ui-history-close:hover {
  opacity: 1; }

.ui-history-pin {
  position: absolute;
  left: 14px;
  top: 15px;
  font-size: 16px;
  opacity: 0.2;
  transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out; }

.item:hover .ui-history-pin:hover {
  opacity: 1; }

.item .ui-history-pin.active {
  opacity: 1;
  color: #d43f3a; }

.item .share-with {
  position: absolute;
  left: 23px;
  bottom: 20px;
  font-size: 14px;
  color: #DFDFDF; }

.item .dot {
  position: absolute;
  right: 23px;
  bottom: 23px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #E75252; }

.ui-overview-sections-filter {
  margin-top: 34px; }

.btn-label,
.btn-label:hover,
.btn-label:focus {
  background: #505050;
  border: 1px solid #AAAAAA;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 10px;
  margin-left: 10px; }

.btn-label:hover,
.btn-label:focus {
  border: 1px solid #777; }

.btn-label.active,
.btn-label:active {
  background: #CBCBCB;
  color: #333333;
  box-shadow: none; }

.btn-label.active.focus,
.btn-label.active:focus,
.btn-label.active:hover,
.btn-label:active.focus,
.btn-label:active:focus,
.btn-label:active:hover {
  background: #AAA; }

.btn-label:first-child {
  margin-left: unset; }

.ui-or {
  font-size: 18px;
  padding: 0 15px; }

.ui-use-tags {
  min-width: 172px;
  max-width: 344px; }

.modal-title {
  text-align: left;
  color: #333;
  line-height: 1.42857143; }

.modal-body {
  color: #333;
  line-height: 1.1; }

.modal-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #333; }

.btn-file {
  position: relative;
  overflow: hidden; }

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block; }

.social-foot {
  line-height: 30px; }

.social-foot > * {
  line-height: 20px;
  vertical-align: middle !important;
  display: inline-block !important; }

.btn-link {
  font-weight: 600;
  color: white; }

.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  color: #D1D1D1;
  text-decoration: none; }

.btn-gray {
  color: #333;
  background-color: #eee;
  border: 1px solid #ccc; }

.btn-donate {
  border: none;
  background: none;
  padding: 0;
  color: white; }

.btn-donate + input[name="amount"] {
  border: none;
  background: none;
  color: white; }

.screenshot {
  margin: 30px auto;
  width: 100%;
  border-radius: 3px; }

select {
  color: black; }

@media (min-width: 768px) {
  .col-sm-offset-2p5 {
    margin-left: 20.83333333%; }
  .col-sm-2p5 {
    width: 20.83333333%; }
  .col-sm-5p5 {
    width: 45.83333333%; }
  .col-sm-6p5 {
    width: 54.16666667%; }
  .col-sm-9p5 {
    width: 79.16666667%; } }

.announcement {
  position: relative;
  width: 100vw;
  padding: 10px 40px;
  margin: 0;
  background-color: #6D6D6D;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.5);
  word-break: break-all; }

.announcement.blue {
  padding: 11px 0;
  font-size: 20px;
  background-color: #337AB7; }

.announcement .ui-close {
  position: absolute;
  top: 48%;
  right: 20px;
  transform: translateY(-50%); }

.announcement a:hover,
.announcement a:focus,
.announcement a:active {
  color: #D1D1D1;
  text-decoration: none; }

.about-us.inner {
  padding-left: 25px;
  padding-right: 25px; }

.about-us h1,
.about-us h2,
.about-us h3,
.about-us h4,
.about-us h5,
.about-us h6 {
  line-height: 1.1; }

.about-us .seperator {
  width: 8em;
  height: .5em;
  background-color: white;
  display: block;
  margin: 1em auto 2em auto; }

.about-us .card {
  background-color: transparent;
  padding: 0;
  overflow: hidden;
  color: #BABABA;
  max-width: 240px;
  margin: 0 auto 2em auto;
  position: relative;
  z-index: 1;
  user-select: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none; }

.about-us .card .profile-image {
  border-radius: 50%;
  overflow: hidden; }

.about-us .card .profile-image img {
  width: 215px;
  object-fit: contain; }

.about-us .card h4 {
  color: white; }

.about-us .card h4 .title {
  font-size: 14px;
  color: #BABABA;
  font-weight: lighter;
  line-height: 1.5em; }

.team-container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center; }

@media (max-width: 767px) {
  .team-container .row {
    display: block; } }

.timeline {
  position: relative; }

.timeline .timeline-line {
  height: 100%;
  width: 2px;
  top: -4px;
  left: calc(50% - 2px);
  position: absolute;
  background-color: #686868;
  display: block;
  margin: 0 auto; }

.timeline .timeline-event {
  margin: 3em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.timeline .timeline-event:last-child {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.timeline .timeline-event.left {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 1em; }

.timeline .timeline-event.right {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 1em; }

.timeline .timeline-event-line {
  height: 1px;
  width: 50vw;
  background-color: #454545;
  position: absolute; }

.timeline .timeline-event-line.left {
  right: 50%; }

.timeline .timeline-event-line.right {
  left: 50%; }

.timeline .timeline-event.left {
  margin-right: calc(50% + 1em);
  text-align: right; }

.timeline .timeline-event.right {
  margin-left: calc(50% + 1em);
  text-align: left; }

.timeline-event-detail {
  display: inline-block;
  position: relative;
  height: 2em;
  font-weight: lighter;
  font-family: "Source Sans Pro", "Lucida Sans Unicode", "Lucida Grande", sans-serif; }

.timeline-event:last-child .timeline-event-detail {
  margin-bottom: 2em; }

.timeline-event-detail .timeline-event-month {
  color: #A9A9A9; }

.timeline .timeline-event .timeline-event-detail {
  width: 100%;
  background-color: #333333;
  padding-left: 1em;
  padding-right: 1em; }

.timeline .timeline-event-year {
  position: absolute;
  text-align: center;
  border-width: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4em;
  height: 4em;
  left: calc(50% - 2em);
  border-radius: 50%;
  border-style: solid;
  background-color: #333333;
  z-index: 1;
  border-color: #686868;
  color: white;
  user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  font-weight: lighter;
  font-family: "Source Sans Pro", "Lucida Sans Unicode", "Lucida Grande", sans-serif; }

.timeline-event-dot {
  width: 2em;
  height: 2em;
  border-color: #686868;
  border-style: solid;
  border-width: 2px;
  left: calc(50% - 1.1em);
  position: absolute;
  background-color: #333;
  border-radius: 50%; }

#about-us h2 {
  text-transform: uppercase;
  margin-top: 26px;
  margin-bottom: 2em; }

#about-us h2:first-of-type {
  padding-top: 290px; }

#about-us .btn {
  background-color: #6B6B6B;
  color: white;
  width: 12em;
  border-radius: 5px;
  border-width: 2px;
  border-color: #6B6B6B;
  margin-bottom: .5em;
  margin-left: 1em;
  margin-right: 1em;
  text-transform: uppercase; }

#about-us .btn:hover, #about-us .btn:active {
  border-color: white; }

#about-us .cta-container {
  width: 100%;
  margin-top: 10em;
  margin-bottom: 3em; }

#about-us-banner {
  width: 100vw;
  top: 50px;
  left: 0;
  position: absolute;
  padding-left: 1em;
  padding-right: 1em;
  min-height: 270px;
  background-color: #999;
  background-size: cover;
  background-position: 50% 99%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center; }

#about-us-banner > p {
  font-size: 24px;
  margin-top: 50px; }

@media (max-width: 768px) {
  span.ui-or {
    display: block; }
  .ui-use-tags {
    max-width: 100%; }
  .announcement {
    font-size: 12px;
    padding: 11px 40px; }
  .announcement.blue {
    font-size: 14px;
    padding: 7px 40px; } }

.overview-sections-filters {
  width: 100%; }
  .overview-sections-filters.mobile .btn {
    padding: 6px 12px; }
  @media (max-width: 768px) {
    .overview-sections-filters.desktop {
      display: none; } }
  @media (min-width: 769px) {
    .overview-sections-filters.mobile {
      display: none; } }

.overview-widget-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */ }
  @media (max-width: 768px) {
    .overview-widget-group.desktop {
      display: none; } }
  @media (min-width: 769px) {
    .overview-widget-group.mobile {
      display: none; } }
  .overview-widget-group:first-child {
    margin-top: 20px; }
  .overview-widget-group:not(:last-child) {
    margin-bottom: 20px;
    margin-top: 20px; }
  .overview-widget-group .categories-toggle {
    display: flex;
    align-items: center;
    font-size: 16px; }
    .overview-widget-group .categories-toggle .switch {
      margin-right: 5px;
      margin-bottom: 0px; }
  .overview-widget-group .switch {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 20px; }
  .overview-widget-group .category-control-widgets {
    display: flex; }
  .overview-widget-group .sorting-widgets {
    font-size: 16px;
    display: flex;
    align-items: center; }
    .overview-widget-group .sorting-widgets span {
      margin-right: 10px; }
  .overview-widget-group .switch input {
    display: none; }
  .overview-widget-group .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    -webkit-transition: .4s;
    transition: .4s; }
  .overview-widget-group .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: -2px;
    bottom: -2px;
    background-color: #333;
    -webkit-transition: .4s;
    transition: .4s; }
  .overview-widget-group .btn {
    background-color: #333;
    color: white;
    border-color: #AAAAAA;
    border-style: solid;
    border-radius: 4px;
    padding: 6px 11px; }
    .overview-widget-group .btn:hover {
      background-color: white;
      color: #333;
      border-color: #AAAAAA; }
    .overview-widget-group .btn:visited {
      border-color: #AAAAAA; }
    .overview-widget-group .btn.active {
      background-color: #CCCCCC;
      color: #333; }
  .overview-widget-group input:checked + .slider {
    background-color: white; }
  .overview-widget-group input:focus + .slider {
    box-shadow: 0 0 1px white; }
  .overview-widget-group input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px); }
  .overview-widget-group .slider.round {
    border: solid white;
    border-radius: 34px;
    border-width: 2px; }
  .overview-widget-group .slider.round:before {
    border: solid white;
    border-radius: 50%;
    border-width: 2px; }
  .overview-widget-group .overview-filters .btn {
    font-size: 16px; }
  @media (max-width: 768px) {
    .overview-widget-group .overview-filters {
      display: none; } }
  .overview-widget-group .ui-category-description-icon a:hover,
  .overview-widget-group .ui-category-description-icon a:focus,
  .overview-widget-group .ui-category-description-icon a:active {
    color: #d1d1d1;
    text-decoration: none; }
  .overview-widget-group .ui-category-description-icon .popover {
    font-family: "Source Sans Pro", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-weight: bolder;
    background-color: #777;
    box-shadow: none;
    border: none; }
  .overview-widget-group .ui-category-description-icon .popover.bottom > .arrow {
    border-bottom-color: #777; }
  .overview-widget-group .ui-category-description-icon .popover.bottom > .arrow:after {
    border-bottom-color: #777; }
  .overview-widget-group .ui-category-description-icon .popover > h3, .overview-widget-group .ui-category-description-icon .popover > .popover-content {
    background-color: #777;
    border-radius: 50%; }

.tooltip {
  font-family: "Source Sans Pro", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px; }
  .tooltip .tooltip-inner {
    text-align: left;
    background-color: #777;
    padding: 6px 10px; }
  .tooltip .tooltip-arrow {
    border-bottom-color: #777 !important; }

.navbar .tooltip.bottom {
  margin-top: 10px; }

.nav-btn {
  width: 52px;
  height: 50px;
  margin: 0px !important; }

.nav-btn:hover,
.nav-btn-active {
  background-color: #333333; }

#overview-control-form {
  padding: 0px; }
  @media (min-width: 769px) {
    #overview-control-form #overview-keyword-input-container {
      flex: 1;
      max-width: 487px;
      margin-right: 29px; } }
  @media (max-width: 768px) {
    #overview-control-form #overview-keyword-input-container {
      width: 100%; } }
  #overview-control-form #overview-keyword-input-container #keyword-input-icon {
    z-index: 1;
    position: absolute;
    color: white;
    font-size: 15px;
    width: 34px;
    height: 34px;
    padding-top: 6px; }
  #overview-control-form #overview-keyword-input-container .select2-container {
    width: 100%;
    font-size: 16px;
    background-color: #333; }
  #overview-control-form #overview-keyword-input-container .select2-container-multi .select2-choices .select2-search-field input {
    width: 100% !important;
    min-width: 160px;
    padding: 5px 12px 5px 7px;
    color: white; }
  #overview-control-form #overview-keyword-input-container .select2-container .select2-choices {
    box-shadow: unset;
    background-color: #333;
    font-size: 14px;
    margin-left: -7px; }

.multi-select-dropdown-menu .ui-dropdown-label, .multi-select-dropdown-menu .dropdown-options {
  border-radius: 4px;
  border-color: #AAAAAA;
  border-width: 1px;
  border-style: solid; }

.form-control.select2-container.select2-dropdown-open {
  border-color: #AAAAAA; }

.form-control.select2-container {
  height: 100% !important; }

.select2-results {
  color: white;
  text-align: left; }

.select2-results .select2-highlighted {
  background: white;
  color: #333; }

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
  background: unset; }

.select2-drop-active {
  border: 1px solid #AAA; }

.select2-drop {
  background-color: #333; }

.select2-container-multi .select2-choices .select2-search-choice {
  margin: 6px 0 3px 5px; }

.multi-select-dropdown-menu {
  color: white;
  background-color: #333;
  font-size: 16px;
  text-align: left;
  user-select: none;
  position: relative; }
  @media (max-width: 768px) {
    .multi-select-dropdown-menu {
      font-size: 14px; } }
  .multi-select-dropdown-menu .dismiss-overlay {
    z-index: 9998;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0; }
  .multi-select-dropdown-menu .ui-dropdown-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 6px 11px;
    cursor: pointer; }
    .multi-select-dropdown-menu .ui-dropdown-label .fa {
      margin-left: 3px; }
  .multi-select-dropdown-menu .dropdown-options {
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    width: 100%;
    background-color: #333; }
    .multi-select-dropdown-menu .dropdown-options .option-group:not(:last-child) {
      border: #4F4F4F solid;
      border-width: 0 0 1px 0; }
    .multi-select-dropdown-menu .dropdown-options .option-group > div:first-child {
      font-weight: bold;
      padding: 6px 11px 9px; }
    .multi-select-dropdown-menu .dropdown-options .ui-option {
      font-weight: normal;
      padding: 6px 16px;
      cursor: pointer; }
      .multi-select-dropdown-menu .dropdown-options .ui-option:hover {
        background-color: white;
        color: #333; }
      .multi-select-dropdown-menu .dropdown-options .ui-option > .fa {
        display: inline-block;
        margin-right: 5px;
        visibility: hidden; }
        .multi-select-dropdown-menu .dropdown-options .ui-option > .fa.selected {
          visibility: visible; }

.no-notes-blank-stats {
  margin-top: 30px; }
  .no-notes-blank-stats h4 {
    margin-bottom: 20px; }

#overview-page .hide {
  opacity: 0; }

#overview-page .fade-enter {
  opacity: 0.01; }

#overview-page .fade-enter.fade-enter-active {
  opacity: 1;
  transition: opacity 300ms ease-in-out; }

#overview-page .fade-exit {
  opacity: 1; }

#overview-page .fade-exit.fade-exit-active {
  opacity: 0.01;
  transition: opacity 200ms ease-in-out; }

.manage, .settings {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 50px; }
  .manage h3, .settings h3 {
    font-weight: 600;
    font-size: 22px;
    padding-bottom: 12px;
    margin-top: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid #4F4F4F; }
  .manage .team-info, .settings .team-info {
    padding-bottom: 85px; }
  .manage .team-member .col-role, .settings .team-member .col-role {
    padding-left: 0; }
  .manage .team-member .col-add, .settings .team-member .col-add {
    padding-right: 50px; }

@media (min-width: 768px) {
  .settings .form-group.signin-methods .btn-social {
    max-width: 280px; } }

@media (max-width: 450px) {
  .settings .form-group.signin-methods .btn-social.btn-lg {
    padding-left: 50px; }
    .settings .form-group.signin-methods .btn-social.btn-lg:first-child {
      width: 40px; } }

.settings .form-group.signin-methods .btn-revoke .disconnect {
  display: none; }

.settings .form-group.signin-methods .btn-revoke:hover .connected {
  display: none; }

.settings .form-group.signin-methods .btn-revoke:hover .disconnect {
  display: flex; }

.section .form-horizontal .form-horizontal .form-group {
  margin-left: auto;
  margin-right: auto; }

.section .form-horizontal .form-group {
  font-size: 16px;
  position: relative;
  margin-left: auto;
  margin-right: auto; }

@media (min-width: 768px) {
  .section .form-horizontal .form-horizontal .control-label {
    padding-top: 0px;
    margin-bottom: 5px; } }

.section .form-horizontal .form-label-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; }

.section .form-horizontal .form-group-pull-right {
  float: right;
  height: 0;
  margin-right: 0;
  z-index: 1; }

.section .form-horizontal .form-group .row {
  line-height: 36px; }

.section .form-horizontal .form-group.has-error {
  border-color: #FF6363; }
  .section .form-horizontal .form-group.has-error .control-label {
    color: white;
    font-size: 18px; }
  .section .form-horizontal .form-group.has-error .control-label.help-block {
    color: #FF6363;
    font-size: 12px;
    margin-bottom: 0px; }
    .section .form-horizontal .form-group.has-error .control-label.help-block ul {
      margin-bottom: 0px; }
  .section .form-horizontal .form-group.has-error .control-label.errors {
    display: inline-block;
    color: #FF6363;
    font-size: 12px; }

.section .form-horizontal .control-label {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: left; }

.section .form-horizontal .control-label.errors {
  font-size: 12px;
  color: #FF6363;
  display: none; }

.section .form-horizontal .has-error .form-control {
  border-color: #FF6363; }

.section .form-horizontal .input-block {
  position: relative; }

.section .form-horizontal .has-error .help-block {
  color: #FF6363; }

.section .form-horizontal .has-error.form-group span.error-sign {
  position: absolute;
  right: 10px;
  top: 9px;
  color: #FF6363; }
  .section .form-horizontal .has-error.form-group span.error-sign:after {
    content: "\F071";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased; }

.section .form-horizontal input.form-control {
  height: 40px;
  font-size: 16px;
  margin-top: 0px; }

.section .form-horizontal .form-control {
  font-size: 16px;
  border: 1px solid #6D6D6D;
  background-color: #333;
  color: #FFF; }

.section .form-horizontal .form-control:focus {
  box-shadow: none;
  border-color: #FFF; }

.section .form-horizontal .form-control::placeholder,
.section .form-horizontal .form-group small {
  color: #868686; }

.section .form-horizontal .form-group p {
  font-size: 14px; }

.section .form-horizontal .form-group .btn-default {
  font-size: 16px;
  border: 1px solid #FFFFFF;
  background-color: #333;
  color: #FFF; }

.section .form-horizontal .form-group .btn-default:hover,
.section .form-horizontal .form-group .btn-default:focus {
  background-color: #FFF;
  color: #333; }

.section .form-horizontal .form-group .btn-primary {
  font-size: 16px; }

.section .form-horizontal .form-group .flex-row > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.section .form-horizontal .form-control[disabled], .section .form-horizontal .form-control[readonly], .section .form-horizontal fieldset[disabled] .form-control {
  background-color: #525252;
  color: #adadad; }

.section .form-horizontal .has-error.form-group .form-control:focus {
  border-color: #ff6363;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff6363; }

.section .form-horizontal .flex-row {
  display: flex; }

.section .form-horizontal .flex-row > div {
  width: unset; }

.section .form-horizontal .flex-row .flex-label {
  padding-right: 0;
  max-width: 28vw; }

.section .form-horizontal .flex-row .flex-col {
  flex: 1; }

.section .form-horizontal .select2-container .select2-focused {
  color: #FFF; }

.section .form-horizontal .select2-container .select2-choices {
  background-color: #333; }

.section .form-horizontal .select2-container-active .select2-choices {
  box-shadow: none; }

.section .form-horizontal .select2-dropdown-open {
  background-color: #FFF;
  border-color: #5897fb;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.section .form-horizontal .select2-dropdown-open .select2-focused {
  color: #333; }

.section .form-horizontal .select2-dropdown-open .select2-choices {
  background-color: #FFF; }

@media (max-width: 768px) {
  .section .form-horizontal .form-group-pull-right {
    float: unset;
    height: unset;
    margin-right: unset; }
  .section .form-horizontal .flex-row {
    display: block; }
  .section .form-horizontal .flex-row > div {
    width: 100%; }
  .section .form-horizontal .flex-row .flex-label {
    padding-right: 15px;
    max-width: calc(100vw - 10px); } }

.section .dropdown.select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
  border: 1px solid #6D6D6D;
  color: #FFF; }

.section .dropdown.select > .dropdown-toggle:hover,
.section .dropdown.select > .dropdown-toggle:focus {
  background-color: #333;
  color: #D1D1D1; }

.section .dropdown.select .dropdown-toggle.no-border {
  border: 1px solid #333; }

.section .dropdown.select .dropdown-toggle > .dropdown-label {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
  text-overflow: ellipsis; }

.section .dropdown.select .dropdown-menu {
  background-color: #333;
  border: 1px solid #6D6D6D;
  max-height: 50vh;
  overflow: auto; }

.section .dropdown.select .dropdown-menu > li > a {
  font-size: 16px;
  color: #FFFFFF;
  padding: 6px 14px; }

.section .dropdown.select .dropdown-menu > li > a:focus,
.section .dropdown.select .dropdown-menu > li > a:hover {
  background-color: #FFF;
  color: #333; }

.member-list .item {
  padding: 8px 0; }
  .member-list .item > * {
    line-height: 34px; }
    .member-list .item > * * {
      line-height: normal; }
  .member-list .item .ui-member-name {
    max-width: 45%;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    line-height: inherit;
    vertical-align: bottom; }
  .member-list .item .ui-member-email {
    color: #D1D1D1;
    max-width: 45%;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    line-height: inherit;
    vertical-align: bottom; }
  .member-list .item .ui-member-delete {
    color: #CECECE;
    cursor: pointer; }
    .member-list .item .ui-member-delete:hover, .member-list .item .ui-member-delete:focus {
      color: #FFF; }
  .member-list .item .ui-resend-invitation {
    display: none; }

.member-list .item.pending-invitation .ui-resend-invitation {
  display: inline-block; }

.member-list .divider {
  border-bottom: 1px solid #4F4F4F;
  margin-left: 26.5%;
  margin-right: 1.5%; }

@media (max-width: 767px) {
  .manage .team-info, .settings .team-info, .docflow-setup .team-info {
    padding-bottom: 60px; }
  .manage .team-member .col-role, .settings .team-member .col-role, .docflow-setup .team-member .col-role {
    padding-left: 15px;
    padding-right: 0;
    margin-top: 7px; }
  .manage .team-member .col-add, .settings .team-member .col-add, .docflow-setup .team-member .col-add {
    padding-right: 15px;
    margin-top: 7px; }
  .manage .team-member .col-delete, .settings .team-member .col-delete, .docflow-setup .team-member .col-delete {
    margin-top: 7px; }
  .member-list .divider {
    margin-left: 15px;
    margin-right: 15px; } }

.ui-shelf-files-view {
  width: 300px;
  background: #262626;
  display: flex;
  flex-direction: column; }

.ui-shelf-files {
  text-align: left;
  overflow: auto;
  flex: 1;
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  max-height: calc(100% - 60px);
  /* Rules below not implemented in browsers yet */
  -o-user-select: none;
  user-select: none; }
  .ui-shelf-files a.item {
    display: block; }
  .ui-shelf-files .ui-root {
    display: inline-block;
    padding-bottom: 15px;
    padding-right: 30px;
    flex: 1;
    min-width: 100%; }
    .ui-shelf-files .ui-root details, .ui-shelf-files .ui-root div, .ui-shelf-files .ui-root a.item {
      cursor: pointer; }
  .ui-shelf-files details summary::-webkit-details-marker {
    display: none; }
  .ui-shelf-files .ui-root > details, .ui-shelf-files .ui-root > .item {
    margin: 5px 0px; }
  .ui-shelf-files details, .ui-shelf-files div, .ui-shelf-files a.item {
    white-space: nowrap; }
  .ui-shelf-files .item {
    padding: 4px 20px; }

.ui-delete-shelf {
  cursor: pointer; }
  .ui-delete-shelf a:hover {
    background-color: #fff !important;
    color: #333 !important; }

.ui-shelf-push-sidenav-open {
  z-index: 975 !important;
  display: block;
  position: absolute;
  overflow: hidden; }
  .ui-shelf-push-sidenav-open.in {
    display: none; }
  .ui-shelf-push-sidenav-open .push-sidenav-open {
    width: 30px;
    height: 30px;
    padding: 4px;
    float: right;
    cursor: pointer;
    color: #868686;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    margin: 15px; }

/* The side navigation menu */
.ui-shelf-push-sidenav {
  display: flex;
  flex-direction: column;
  z-index: 980 !important;
  top: 50px;
  left: 0px;
  width: 300px;
  transition: margin-left .2s;
  margin-left: -300px;
  border: none;
  background: #262626;
  overflow: hidden;
  text-shadow: none; }
  .ui-shelf-push-sidenav .ui-shelf-files {
    overflow: hidden; }
  .ui-shelf-push-sidenav.in {
    margin-left: 0;
    transition: margin-left .3s; }
    .ui-shelf-push-sidenav.in .ui-shelf-files {
      overflow: auto; }
  .ui-shelf-push-sidenav .push-sidenav-close {
    width: 40px;
    padding: 20px 0px;
    cursor: pointer; }

/* The side navigation menu */
.ui-shelf-sidenav {
  position: absolute;
  z-index: 995 !important;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  top: 50px;
  left: -325px;
  transition: transform .2s;
  transform: translateX(0);
  width: 300px;
  height: calc(100vh - 50px);
  border: none;
  background: #262626;
  overflow: hidden;
  text-shadow: none; }
  .ui-shelf-sidenav.in {
    transition: transform .3s;
    transform: translateX(325px); }

.ui-repo-info.hidden-md .content {
  margin-top: 35px; }

@media (max-width: 767px) {
  .ui-repo-info.hidden-md .content {
    margin-top: 0; } }

.ui-repo-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  padding: 0;
  margin: 0 auto;
  overflow: hidden; }

@media (min-width: 992px) {
  .ui-repo-content {
    padding: 50px; }
    .ui-repo-content.fill {
      max-width: unset;
      padding: 0px; }
  .ui-shelf-note-preivew {
    border-radius: 4px; } }

.ui-shelf-note-preivew {
  width: 100%;
  border: none;
  flex: 1;
  display: none;
  border-radius: 0px; }
  .ui-shelf-note-preivew.fill {
    border-radius: 0px; }

.ui-shelf-home {
  padding: 15px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none !important;
  flex: 1; }

.modal-backdrop.dim.in {
  opacity: 1;
  visibility: visible; }

.modal-backdrop.dim {
  opacity: 0;
  background: rgba(51, 51, 51, 0.75);
  z-index: 990;
  transition: opacity .2s;
  visibility: hidden; }

.shelf-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  margin-left: 10px;
  font-size: 16px;
  padding: 5px 12px; }

.shelf-btn:hover {
  background-color: #fff !important;
  color: #333 !important;
  border: 1px solid white; }

.ui-shelf-icon {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  border-radius: 100%;
  margin-right: 10px;
  object-fit: cover; }
.text-gray-darkest {
  color: #262626; }

.bg-gray-darkest {
  background: #262626; }

.text-gray-dark {
  color: #4f4f4f; }

.bg-gray-dark {
  background: #4f4f4f; }

.text-gray {
  color: #686868; }

.bg-gray {
  background: #686868; }

.text-gray-light {
  color: #888; }

.bg-gray-light {
  background: #888; }

.text-gray-lighter {
  color: #8f8f8f; }

.bg-gray-lighter {
  background: #8f8f8f; }

.text-gray-lightest {
  color: #CDCDCD; }

.bg-gray-lightest {
  background: #CDCDCD; }

.pa-0 {
  padding: 0; }

.pv-0 {
  padding-top: 0;
  padding-bottom: 0; }

.ph-0 {
  padding-left: 0;
  padding-right: 0; }

.pt-0 {
  padding-top: 0; }

.pr-0 {
  padding-right: 0; }

.pb-0 {
  padding-bottom: 0; }

.pl-0 {
  padding-left: 0; }

.pa-1\/10 {
  padding: 1px; }

.pv-1\/10 {
  padding-top: 1px;
  padding-bottom: 1px; }

.ph-1\/10 {
  padding-left: 1px;
  padding-right: 1px; }

.pt-1\/10 {
  padding-top: 1px; }

.pr-1\/10 {
  padding-right: 1px; }

.pb-1\/10 {
  padding-bottom: 1px; }

.pl-1\/10 {
  padding-left: 1px; }

.pa-1\/5 {
  padding: 2px; }

.pv-1\/5 {
  padding-top: 2px;
  padding-bottom: 2px; }

.ph-1\/5 {
  padding-left: 2px;
  padding-right: 2px; }

.pt-1\/5 {
  padding-top: 2px; }

.pr-1\/5 {
  padding-right: 2px; }

.pb-1\/5 {
  padding-bottom: 2px; }

.pl-1\/5 {
  padding-left: 2px; }

.pa-1\/4 {
  padding: 0.25rem; }

.pv-1\/4 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem; }

.ph-1\/4 {
  padding-left: 0.25rem;
  padding-right: 0.25rem; }

.pt-1\/4 {
  padding-top: 0.25rem; }

.pr-1\/4 {
  padding-right: 0.25rem; }

.pb-1\/4 {
  padding-bottom: 0.25rem; }

.pl-1\/4 {
  padding-left: 0.25rem; }

.pa-3\/4 {
  padding: 0.75rem; }

.pv-3\/4 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem; }

.ph-3\/4 {
  padding-left: 0.75rem;
  padding-right: 0.75rem; }

.pt-3\/4 {
  padding-top: 0.75rem; }

.pr-3\/4 {
  padding-right: 0.75rem; }

.pb-3\/4 {
  padding-bottom: 0.75rem; }

.pl-3\/4 {
  padding-left: 0.75rem; }

.pa-1\/8 {
  padding: 0.125rem; }

.pv-1\/8 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem; }

.ph-1\/8 {
  padding-left: 0.125rem;
  padding-right: 0.125rem; }

.pt-1\/8 {
  padding-top: 0.125rem; }

.pr-1\/8 {
  padding-right: 0.125rem; }

.pb-1\/8 {
  padding-bottom: 0.125rem; }

.pl-1\/8 {
  padding-left: 0.125rem; }

.pa-1\/2 {
  padding: 5px; }

.pv-1\/2 {
  padding-top: 5px;
  padding-bottom: 5px; }

.ph-1\/2 {
  padding-left: 5px;
  padding-right: 5px; }

.pt-1\/2 {
  padding-top: 5px; }

.pr-1\/2 {
  padding-right: 5px; }

.pb-1\/2 {
  padding-bottom: 5px; }

.pl-1\/2 {
  padding-left: 5px; }

.pa-1 {
  padding: 10px; }

.pv-1 {
  padding-top: 10px;
  padding-bottom: 10px; }

.ph-1 {
  padding-left: 10px;
  padding-right: 10px; }

.pt-1 {
  padding-top: 10px; }

.pr-1 {
  padding-right: 10px; }

.pb-1 {
  padding-bottom: 10px; }

.pl-1 {
  padding-left: 10px; }

.pa-3\/2 {
  padding: 15px; }

.pv-3\/2 {
  padding-top: 15px;
  padding-bottom: 15px; }

.ph-3\/2 {
  padding-left: 15px;
  padding-right: 15px; }

.pt-3\/2 {
  padding-top: 15px; }

.pr-3\/2 {
  padding-right: 15px; }

.pb-3\/2 {
  padding-bottom: 15px; }

.pl-3\/2 {
  padding-left: 15px; }

.pa-2 {
  padding: 20px; }

.pv-2 {
  padding-top: 20px;
  padding-bottom: 20px; }

.ph-2 {
  padding-left: 20px;
  padding-right: 20px; }

.pt-2 {
  padding-top: 20px; }

.pr-2 {
  padding-right: 20px; }

.pb-2 {
  padding-bottom: 20px; }

.pl-2 {
  padding-left: 20px; }

.pa-25 {
  padding: 25px; }

.pv-25 {
  padding-top: 25px;
  padding-bottom: 25px; }

.ph-25 {
  padding-left: 25px;
  padding-right: 25px; }

.pt-25 {
  padding-top: 25px; }

.pr-25 {
  padding-right: 25px; }

.pb-25 {
  padding-bottom: 25px; }

.pl-25 {
  padding-left: 25px; }

.pa-3 {
  padding: 30px; }

.pv-3 {
  padding-top: 30px;
  padding-bottom: 30px; }

.ph-3 {
  padding-left: 30px;
  padding-right: 30px; }

.pt-3 {
  padding-top: 30px; }

.pr-3 {
  padding-right: 30px; }

.pb-3 {
  padding-bottom: 30px; }

.pl-3 {
  padding-left: 30px; }

.pa-4 {
  padding: 40px; }

.pv-4 {
  padding-top: 40px;
  padding-bottom: 40px; }

.ph-4 {
  padding-left: 40px;
  padding-right: 40px; }

.pt-4 {
  padding-top: 40px; }

.pr-4 {
  padding-right: 40px; }

.pb-4 {
  padding-bottom: 40px; }

.pl-4 {
  padding-left: 40px; }

.pa-5 {
  padding: 50px; }

.pv-5 {
  padding-top: 50px;
  padding-bottom: 50px; }

.ph-5 {
  padding-left: 50px;
  padding-right: 50px; }

.pt-5 {
  padding-top: 50px; }

.pr-5 {
  padding-right: 50px; }

.pb-5 {
  padding-bottom: 50px; }

.pl-5 {
  padding-left: 50px; }

.pa-7 {
  padding: 70px; }

.pv-7 {
  padding-top: 70px;
  padding-bottom: 70px; }

.ph-7 {
  padding-left: 70px;
  padding-right: 70px; }

.pt-7 {
  padding-top: 70px; }

.pr-7 {
  padding-right: 70px; }

.pb-7 {
  padding-bottom: 70px; }

.pl-7 {
  padding-left: 70px; }

.pa-8 {
  padding: 80px; }

.pv-8 {
  padding-top: 80px;
  padding-bottom: 80px; }

.ph-8 {
  padding-left: 80px;
  padding-right: 80px; }

.pt-8 {
  padding-top: 80px; }

.pr-8 {
  padding-right: 80px; }

.pb-8 {
  padding-bottom: 80px; }

.pl-8 {
  padding-left: 80px; }

.pa-10 {
  padding: 100px; }

.pv-10 {
  padding-top: 100px;
  padding-bottom: 100px; }

.ph-10 {
  padding-left: 100px;
  padding-right: 100px; }

.pt-10 {
  padding-top: 100px; }

.pr-10 {
  padding-right: 100px; }

.pb-10 {
  padding-bottom: 100px; }

.pl-10 {
  padding-left: 100px; }

.pa-14 {
  padding: 140px; }

.pv-14 {
  padding-top: 140px;
  padding-bottom: 140px; }

.ph-14 {
  padding-left: 140px;
  padding-right: 140px; }

.pt-14 {
  padding-top: 140px; }

.pr-14 {
  padding-right: 140px; }

.pb-14 {
  padding-bottom: 140px; }

.pl-14 {
  padding-left: 140px; }

.pa-16 {
  padding: 160px; }

.pv-16 {
  padding-top: 160px;
  padding-bottom: 160px; }

.ph-16 {
  padding-left: 160px;
  padding-right: 160px; }

.pt-16 {
  padding-top: 160px; }

.pr-16 {
  padding-right: 160px; }

.pb-16 {
  padding-bottom: 160px; }

.pl-16 {
  padding-left: 160px; }

.ma-0 {
  margin: 0; }

.mv-0 {
  margin-top: 0;
  margin-bottom: 0; }

.mh-0 {
  margin-left: 0;
  margin-right: 0; }

.mt-0 {
  margin-top: 0; }

.mr-0 {
  margin-right: 0; }

.mb-0 {
  margin-bottom: 0; }

.ml-0 {
  margin-left: 0; }

.nt-0 {
  margin-top: -0; }

.nr-0 {
  margin-right: -0; }

.nb-0 {
  margin-bottom: -0; }

.nl-0 {
  margin-left: -0; }

.ma-1\/10 {
  margin: 1px; }

.mv-1\/10 {
  margin-top: 1px;
  margin-bottom: 1px; }

.mh-1\/10 {
  margin-left: 1px;
  margin-right: 1px; }

.mt-1\/10 {
  margin-top: 1px; }

.mr-1\/10 {
  margin-right: 1px; }

.mb-1\/10 {
  margin-bottom: 1px; }

.ml-1\/10 {
  margin-left: 1px; }

.nt-1\/10 {
  margin-top: -1px; }

.nr-1\/10 {
  margin-right: -1px; }

.nb-1\/10 {
  margin-bottom: -1px; }

.nl-1\/10 {
  margin-left: -1px; }

.ma-1\/5 {
  margin: 2px; }

.mv-1\/5 {
  margin-top: 2px;
  margin-bottom: 2px; }

.mh-1\/5 {
  margin-left: 2px;
  margin-right: 2px; }

.mt-1\/5 {
  margin-top: 2px; }

.mr-1\/5 {
  margin-right: 2px; }

.mb-1\/5 {
  margin-bottom: 2px; }

.ml-1\/5 {
  margin-left: 2px; }

.nt-1\/5 {
  margin-top: -2px; }

.nr-1\/5 {
  margin-right: -2px; }

.nb-1\/5 {
  margin-bottom: -2px; }

.nl-1\/5 {
  margin-left: -2px; }

.ma-1\/4 {
  margin: 0.25rem; }

.mv-1\/4 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem; }

.mh-1\/4 {
  margin-left: 0.25rem;
  margin-right: 0.25rem; }

.mt-1\/4 {
  margin-top: 0.25rem; }

.mr-1\/4 {
  margin-right: 0.25rem; }

.mb-1\/4 {
  margin-bottom: 0.25rem; }

.ml-1\/4 {
  margin-left: 0.25rem; }

.nt-1\/4 {
  margin-top: -0.25rem; }

.nr-1\/4 {
  margin-right: -0.25rem; }

.nb-1\/4 {
  margin-bottom: -0.25rem; }

.nl-1\/4 {
  margin-left: -0.25rem; }

.ma-3\/4 {
  margin: 0.75rem; }

.mv-3\/4 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem; }

.mh-3\/4 {
  margin-left: 0.75rem;
  margin-right: 0.75rem; }

.mt-3\/4 {
  margin-top: 0.75rem; }

.mr-3\/4 {
  margin-right: 0.75rem; }

.mb-3\/4 {
  margin-bottom: 0.75rem; }

.ml-3\/4 {
  margin-left: 0.75rem; }

.nt-3\/4 {
  margin-top: -0.75rem; }

.nr-3\/4 {
  margin-right: -0.75rem; }

.nb-3\/4 {
  margin-bottom: -0.75rem; }

.nl-3\/4 {
  margin-left: -0.75rem; }

.ma-1\/8 {
  margin: 0.125rem; }

.mv-1\/8 {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem; }

.mh-1\/8 {
  margin-left: 0.125rem;
  margin-right: 0.125rem; }

.mt-1\/8 {
  margin-top: 0.125rem; }

.mr-1\/8 {
  margin-right: 0.125rem; }

.mb-1\/8 {
  margin-bottom: 0.125rem; }

.ml-1\/8 {
  margin-left: 0.125rem; }

.nt-1\/8 {
  margin-top: -0.125rem; }

.nr-1\/8 {
  margin-right: -0.125rem; }

.nb-1\/8 {
  margin-bottom: -0.125rem; }

.nl-1\/8 {
  margin-left: -0.125rem; }

.ma-1\/2 {
  margin: 5px; }

.mv-1\/2 {
  margin-top: 5px;
  margin-bottom: 5px; }

.mh-1\/2 {
  margin-left: 5px;
  margin-right: 5px; }

.mt-1\/2 {
  margin-top: 5px; }

.mr-1\/2 {
  margin-right: 5px; }

.mb-1\/2 {
  margin-bottom: 5px; }

.ml-1\/2 {
  margin-left: 5px; }

.nt-1\/2 {
  margin-top: -5px; }

.nr-1\/2 {
  margin-right: -5px; }

.nb-1\/2 {
  margin-bottom: -5px; }

.nl-1\/2 {
  margin-left: -5px; }

.ma-1 {
  margin: 10px; }

.mv-1 {
  margin-top: 10px;
  margin-bottom: 10px; }

.mh-1 {
  margin-left: 10px;
  margin-right: 10px; }

.mt-1 {
  margin-top: 10px; }

.mr-1 {
  margin-right: 10px; }

.mb-1 {
  margin-bottom: 10px; }

.ml-1 {
  margin-left: 10px; }

.nt-1 {
  margin-top: -10px; }

.nr-1 {
  margin-right: -10px; }

.nb-1 {
  margin-bottom: -10px; }

.nl-1 {
  margin-left: -10px; }

.ma-3\/2 {
  margin: 15px; }

.mv-3\/2 {
  margin-top: 15px;
  margin-bottom: 15px; }

.mh-3\/2 {
  margin-left: 15px;
  margin-right: 15px; }

.mt-3\/2 {
  margin-top: 15px; }

.mr-3\/2 {
  margin-right: 15px; }

.mb-3\/2 {
  margin-bottom: 15px; }

.ml-3\/2 {
  margin-left: 15px; }

.nt-3\/2 {
  margin-top: -15px; }

.nr-3\/2 {
  margin-right: -15px; }

.nb-3\/2 {
  margin-bottom: -15px; }

.nl-3\/2 {
  margin-left: -15px; }

.ma-2 {
  margin: 20px; }

.mv-2 {
  margin-top: 20px;
  margin-bottom: 20px; }

.mh-2 {
  margin-left: 20px;
  margin-right: 20px; }

.mt-2 {
  margin-top: 20px; }

.mr-2 {
  margin-right: 20px; }

.mb-2 {
  margin-bottom: 20px; }

.ml-2 {
  margin-left: 20px; }

.nt-2 {
  margin-top: -20px; }

.nr-2 {
  margin-right: -20px; }

.nb-2 {
  margin-bottom: -20px; }

.nl-2 {
  margin-left: -20px; }

.ma-25 {
  margin: 25px; }

.mv-25 {
  margin-top: 25px;
  margin-bottom: 25px; }

.mh-25 {
  margin-left: 25px;
  margin-right: 25px; }

.mt-25 {
  margin-top: 25px; }

.mr-25 {
  margin-right: 25px; }

.mb-25 {
  margin-bottom: 25px; }

.ml-25 {
  margin-left: 25px; }

.nt-25 {
  margin-top: -25px; }

.nr-25 {
  margin-right: -25px; }

.nb-25 {
  margin-bottom: -25px; }

.nl-25 {
  margin-left: -25px; }

.ma-3 {
  margin: 30px; }

.mv-3 {
  margin-top: 30px;
  margin-bottom: 30px; }

.mh-3 {
  margin-left: 30px;
  margin-right: 30px; }

.mt-3 {
  margin-top: 30px; }

.mr-3 {
  margin-right: 30px; }

.mb-3 {
  margin-bottom: 30px; }

.ml-3 {
  margin-left: 30px; }

.nt-3 {
  margin-top: -30px; }

.nr-3 {
  margin-right: -30px; }

.nb-3 {
  margin-bottom: -30px; }

.nl-3 {
  margin-left: -30px; }

.ma-4 {
  margin: 40px; }

.mv-4 {
  margin-top: 40px;
  margin-bottom: 40px; }

.mh-4 {
  margin-left: 40px;
  margin-right: 40px; }

.mt-4 {
  margin-top: 40px; }

.mr-4 {
  margin-right: 40px; }

.mb-4 {
  margin-bottom: 40px; }

.ml-4 {
  margin-left: 40px; }

.nt-4 {
  margin-top: -40px; }

.nr-4 {
  margin-right: -40px; }

.nb-4 {
  margin-bottom: -40px; }

.nl-4 {
  margin-left: -40px; }

.ma-5 {
  margin: 50px; }

.mv-5 {
  margin-top: 50px;
  margin-bottom: 50px; }

.mh-5 {
  margin-left: 50px;
  margin-right: 50px; }

.mt-5 {
  margin-top: 50px; }

.mr-5 {
  margin-right: 50px; }

.mb-5 {
  margin-bottom: 50px; }

.ml-5 {
  margin-left: 50px; }

.nt-5 {
  margin-top: -50px; }

.nr-5 {
  margin-right: -50px; }

.nb-5 {
  margin-bottom: -50px; }

.nl-5 {
  margin-left: -50px; }

.ma-7 {
  margin: 70px; }

.mv-7 {
  margin-top: 70px;
  margin-bottom: 70px; }

.mh-7 {
  margin-left: 70px;
  margin-right: 70px; }

.mt-7 {
  margin-top: 70px; }

.mr-7 {
  margin-right: 70px; }

.mb-7 {
  margin-bottom: 70px; }

.ml-7 {
  margin-left: 70px; }

.nt-7 {
  margin-top: -70px; }

.nr-7 {
  margin-right: -70px; }

.nb-7 {
  margin-bottom: -70px; }

.nl-7 {
  margin-left: -70px; }

.ma-8 {
  margin: 80px; }

.mv-8 {
  margin-top: 80px;
  margin-bottom: 80px; }

.mh-8 {
  margin-left: 80px;
  margin-right: 80px; }

.mt-8 {
  margin-top: 80px; }

.mr-8 {
  margin-right: 80px; }

.mb-8 {
  margin-bottom: 80px; }

.ml-8 {
  margin-left: 80px; }

.nt-8 {
  margin-top: -80px; }

.nr-8 {
  margin-right: -80px; }

.nb-8 {
  margin-bottom: -80px; }

.nl-8 {
  margin-left: -80px; }

.ma-10 {
  margin: 100px; }

.mv-10 {
  margin-top: 100px;
  margin-bottom: 100px; }

.mh-10 {
  margin-left: 100px;
  margin-right: 100px; }

.mt-10 {
  margin-top: 100px; }

.mr-10 {
  margin-right: 100px; }

.mb-10 {
  margin-bottom: 100px; }

.ml-10 {
  margin-left: 100px; }

.nt-10 {
  margin-top: -100px; }

.nr-10 {
  margin-right: -100px; }

.nb-10 {
  margin-bottom: -100px; }

.nl-10 {
  margin-left: -100px; }

.ma-14 {
  margin: 140px; }

.mv-14 {
  margin-top: 140px;
  margin-bottom: 140px; }

.mh-14 {
  margin-left: 140px;
  margin-right: 140px; }

.mt-14 {
  margin-top: 140px; }

.mr-14 {
  margin-right: 140px; }

.mb-14 {
  margin-bottom: 140px; }

.ml-14 {
  margin-left: 140px; }

.nt-14 {
  margin-top: -140px; }

.nr-14 {
  margin-right: -140px; }

.nb-14 {
  margin-bottom: -140px; }

.nl-14 {
  margin-left: -140px; }

.ma-16 {
  margin: 160px; }

.mv-16 {
  margin-top: 160px;
  margin-bottom: 160px; }

.mh-16 {
  margin-left: 160px;
  margin-right: 160px; }

.mt-16 {
  margin-top: 160px; }

.mr-16 {
  margin-right: 160px; }

.mb-16 {
  margin-bottom: 160px; }

.ml-16 {
  margin-left: 160px; }

.nt-16 {
  margin-top: -160px; }

.nr-16 {
  margin-right: -160px; }

.nb-16 {
  margin-bottom: -160px; }

.nl-16 {
  margin-left: -160px; }

.mh-auto- {
  margin: 0 auto; }

@media (max-width: 767px) {
  .pa-0-xs {
    padding: 0; }
  .pv-0-xs {
    padding-top: 0;
    padding-bottom: 0; }
  .ph-0-xs {
    padding-left: 0;
    padding-right: 0; }
  .pt-0-xs {
    padding-top: 0; }
  .pr-0-xs {
    padding-right: 0; }
  .pb-0-xs {
    padding-bottom: 0; }
  .pl-0-xs {
    padding-left: 0; }
  .pa-1\/10-xs {
    padding: 1px; }
  .pv-1\/10-xs {
    padding-top: 1px;
    padding-bottom: 1px; }
  .ph-1\/10-xs {
    padding-left: 1px;
    padding-right: 1px; }
  .pt-1\/10-xs {
    padding-top: 1px; }
  .pr-1\/10-xs {
    padding-right: 1px; }
  .pb-1\/10-xs {
    padding-bottom: 1px; }
  .pl-1\/10-xs {
    padding-left: 1px; }
  .pa-1\/5-xs {
    padding: 2px; }
  .pv-1\/5-xs {
    padding-top: 2px;
    padding-bottom: 2px; }
  .ph-1\/5-xs {
    padding-left: 2px;
    padding-right: 2px; }
  .pt-1\/5-xs {
    padding-top: 2px; }
  .pr-1\/5-xs {
    padding-right: 2px; }
  .pb-1\/5-xs {
    padding-bottom: 2px; }
  .pl-1\/5-xs {
    padding-left: 2px; }
  .pa-1\/4-xs {
    padding: 0.25rem; }
  .pv-1\/4-xs {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem; }
  .ph-1\/4-xs {
    padding-left: 0.25rem;
    padding-right: 0.25rem; }
  .pt-1\/4-xs {
    padding-top: 0.25rem; }
  .pr-1\/4-xs {
    padding-right: 0.25rem; }
  .pb-1\/4-xs {
    padding-bottom: 0.25rem; }
  .pl-1\/4-xs {
    padding-left: 0.25rem; }
  .pa-3\/4-xs {
    padding: 0.75rem; }
  .pv-3\/4-xs {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem; }
  .ph-3\/4-xs {
    padding-left: 0.75rem;
    padding-right: 0.75rem; }
  .pt-3\/4-xs {
    padding-top: 0.75rem; }
  .pr-3\/4-xs {
    padding-right: 0.75rem; }
  .pb-3\/4-xs {
    padding-bottom: 0.75rem; }
  .pl-3\/4-xs {
    padding-left: 0.75rem; }
  .pa-1\/8-xs {
    padding: 0.125rem; }
  .pv-1\/8-xs {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem; }
  .ph-1\/8-xs {
    padding-left: 0.125rem;
    padding-right: 0.125rem; }
  .pt-1\/8-xs {
    padding-top: 0.125rem; }
  .pr-1\/8-xs {
    padding-right: 0.125rem; }
  .pb-1\/8-xs {
    padding-bottom: 0.125rem; }
  .pl-1\/8-xs {
    padding-left: 0.125rem; }
  .pa-1\/2-xs {
    padding: 5px; }
  .pv-1\/2-xs {
    padding-top: 5px;
    padding-bottom: 5px; }
  .ph-1\/2-xs {
    padding-left: 5px;
    padding-right: 5px; }
  .pt-1\/2-xs {
    padding-top: 5px; }
  .pr-1\/2-xs {
    padding-right: 5px; }
  .pb-1\/2-xs {
    padding-bottom: 5px; }
  .pl-1\/2-xs {
    padding-left: 5px; }
  .pa-1-xs {
    padding: 10px; }
  .pv-1-xs {
    padding-top: 10px;
    padding-bottom: 10px; }
  .ph-1-xs {
    padding-left: 10px;
    padding-right: 10px; }
  .pt-1-xs {
    padding-top: 10px; }
  .pr-1-xs {
    padding-right: 10px; }
  .pb-1-xs {
    padding-bottom: 10px; }
  .pl-1-xs {
    padding-left: 10px; }
  .pa-3\/2-xs {
    padding: 15px; }
  .pv-3\/2-xs {
    padding-top: 15px;
    padding-bottom: 15px; }
  .ph-3\/2-xs {
    padding-left: 15px;
    padding-right: 15px; }
  .pt-3\/2-xs {
    padding-top: 15px; }
  .pr-3\/2-xs {
    padding-right: 15px; }
  .pb-3\/2-xs {
    padding-bottom: 15px; }
  .pl-3\/2-xs {
    padding-left: 15px; }
  .pa-2-xs {
    padding: 20px; }
  .pv-2-xs {
    padding-top: 20px;
    padding-bottom: 20px; }
  .ph-2-xs {
    padding-left: 20px;
    padding-right: 20px; }
  .pt-2-xs {
    padding-top: 20px; }
  .pr-2-xs {
    padding-right: 20px; }
  .pb-2-xs {
    padding-bottom: 20px; }
  .pl-2-xs {
    padding-left: 20px; }
  .pa-25-xs {
    padding: 25px; }
  .pv-25-xs {
    padding-top: 25px;
    padding-bottom: 25px; }
  .ph-25-xs {
    padding-left: 25px;
    padding-right: 25px; }
  .pt-25-xs {
    padding-top: 25px; }
  .pr-25-xs {
    padding-right: 25px; }
  .pb-25-xs {
    padding-bottom: 25px; }
  .pl-25-xs {
    padding-left: 25px; }
  .pa-3-xs {
    padding: 30px; }
  .pv-3-xs {
    padding-top: 30px;
    padding-bottom: 30px; }
  .ph-3-xs {
    padding-left: 30px;
    padding-right: 30px; }
  .pt-3-xs {
    padding-top: 30px; }
  .pr-3-xs {
    padding-right: 30px; }
  .pb-3-xs {
    padding-bottom: 30px; }
  .pl-3-xs {
    padding-left: 30px; }
  .pa-4-xs {
    padding: 40px; }
  .pv-4-xs {
    padding-top: 40px;
    padding-bottom: 40px; }
  .ph-4-xs {
    padding-left: 40px;
    padding-right: 40px; }
  .pt-4-xs {
    padding-top: 40px; }
  .pr-4-xs {
    padding-right: 40px; }
  .pb-4-xs {
    padding-bottom: 40px; }
  .pl-4-xs {
    padding-left: 40px; }
  .pa-5-xs {
    padding: 50px; }
  .pv-5-xs {
    padding-top: 50px;
    padding-bottom: 50px; }
  .ph-5-xs {
    padding-left: 50px;
    padding-right: 50px; }
  .pt-5-xs {
    padding-top: 50px; }
  .pr-5-xs {
    padding-right: 50px; }
  .pb-5-xs {
    padding-bottom: 50px; }
  .pl-5-xs {
    padding-left: 50px; }
  .pa-7-xs {
    padding: 70px; }
  .pv-7-xs {
    padding-top: 70px;
    padding-bottom: 70px; }
  .ph-7-xs {
    padding-left: 70px;
    padding-right: 70px; }
  .pt-7-xs {
    padding-top: 70px; }
  .pr-7-xs {
    padding-right: 70px; }
  .pb-7-xs {
    padding-bottom: 70px; }
  .pl-7-xs {
    padding-left: 70px; }
  .pa-8-xs {
    padding: 80px; }
  .pv-8-xs {
    padding-top: 80px;
    padding-bottom: 80px; }
  .ph-8-xs {
    padding-left: 80px;
    padding-right: 80px; }
  .pt-8-xs {
    padding-top: 80px; }
  .pr-8-xs {
    padding-right: 80px; }
  .pb-8-xs {
    padding-bottom: 80px; }
  .pl-8-xs {
    padding-left: 80px; }
  .pa-10-xs {
    padding: 100px; }
  .pv-10-xs {
    padding-top: 100px;
    padding-bottom: 100px; }
  .ph-10-xs {
    padding-left: 100px;
    padding-right: 100px; }
  .pt-10-xs {
    padding-top: 100px; }
  .pr-10-xs {
    padding-right: 100px; }
  .pb-10-xs {
    padding-bottom: 100px; }
  .pl-10-xs {
    padding-left: 100px; }
  .pa-14-xs {
    padding: 140px; }
  .pv-14-xs {
    padding-top: 140px;
    padding-bottom: 140px; }
  .ph-14-xs {
    padding-left: 140px;
    padding-right: 140px; }
  .pt-14-xs {
    padding-top: 140px; }
  .pr-14-xs {
    padding-right: 140px; }
  .pb-14-xs {
    padding-bottom: 140px; }
  .pl-14-xs {
    padding-left: 140px; }
  .pa-16-xs {
    padding: 160px; }
  .pv-16-xs {
    padding-top: 160px;
    padding-bottom: 160px; }
  .ph-16-xs {
    padding-left: 160px;
    padding-right: 160px; }
  .pt-16-xs {
    padding-top: 160px; }
  .pr-16-xs {
    padding-right: 160px; }
  .pb-16-xs {
    padding-bottom: 160px; }
  .pl-16-xs {
    padding-left: 160px; }
  .ma-0-xs {
    margin: 0; }
  .mv-0-xs {
    margin-top: 0;
    margin-bottom: 0; }
  .mh-0-xs {
    margin-left: 0;
    margin-right: 0; }
  .mt-0-xs {
    margin-top: 0; }
  .mr-0-xs {
    margin-right: 0; }
  .mb-0-xs {
    margin-bottom: 0; }
  .ml-0-xs {
    margin-left: 0; }
  .nt-0-xs {
    margin-top: -0; }
  .nr-0-xs {
    margin-right: -0; }
  .nb-0-xs {
    margin-bottom: -0; }
  .nl-0-xs {
    margin-left: -0; }
  .ma-1\/10-xs {
    margin: 1px; }
  .mv-1\/10-xs {
    margin-top: 1px;
    margin-bottom: 1px; }
  .mh-1\/10-xs {
    margin-left: 1px;
    margin-right: 1px; }
  .mt-1\/10-xs {
    margin-top: 1px; }
  .mr-1\/10-xs {
    margin-right: 1px; }
  .mb-1\/10-xs {
    margin-bottom: 1px; }
  .ml-1\/10-xs {
    margin-left: 1px; }
  .nt-1\/10-xs {
    margin-top: -1px; }
  .nr-1\/10-xs {
    margin-right: -1px; }
  .nb-1\/10-xs {
    margin-bottom: -1px; }
  .nl-1\/10-xs {
    margin-left: -1px; }
  .ma-1\/5-xs {
    margin: 2px; }
  .mv-1\/5-xs {
    margin-top: 2px;
    margin-bottom: 2px; }
  .mh-1\/5-xs {
    margin-left: 2px;
    margin-right: 2px; }
  .mt-1\/5-xs {
    margin-top: 2px; }
  .mr-1\/5-xs {
    margin-right: 2px; }
  .mb-1\/5-xs {
    margin-bottom: 2px; }
  .ml-1\/5-xs {
    margin-left: 2px; }
  .nt-1\/5-xs {
    margin-top: -2px; }
  .nr-1\/5-xs {
    margin-right: -2px; }
  .nb-1\/5-xs {
    margin-bottom: -2px; }
  .nl-1\/5-xs {
    margin-left: -2px; }
  .ma-1\/4-xs {
    margin: 0.25rem; }
  .mv-1\/4-xs {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem; }
  .mh-1\/4-xs {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }
  .mt-1\/4-xs {
    margin-top: 0.25rem; }
  .mr-1\/4-xs {
    margin-right: 0.25rem; }
  .mb-1\/4-xs {
    margin-bottom: 0.25rem; }
  .ml-1\/4-xs {
    margin-left: 0.25rem; }
  .nt-1\/4-xs {
    margin-top: -0.25rem; }
  .nr-1\/4-xs {
    margin-right: -0.25rem; }
  .nb-1\/4-xs {
    margin-bottom: -0.25rem; }
  .nl-1\/4-xs {
    margin-left: -0.25rem; }
  .ma-3\/4-xs {
    margin: 0.75rem; }
  .mv-3\/4-xs {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem; }
  .mh-3\/4-xs {
    margin-left: 0.75rem;
    margin-right: 0.75rem; }
  .mt-3\/4-xs {
    margin-top: 0.75rem; }
  .mr-3\/4-xs {
    margin-right: 0.75rem; }
  .mb-3\/4-xs {
    margin-bottom: 0.75rem; }
  .ml-3\/4-xs {
    margin-left: 0.75rem; }
  .nt-3\/4-xs {
    margin-top: -0.75rem; }
  .nr-3\/4-xs {
    margin-right: -0.75rem; }
  .nb-3\/4-xs {
    margin-bottom: -0.75rem; }
  .nl-3\/4-xs {
    margin-left: -0.75rem; }
  .ma-1\/8-xs {
    margin: 0.125rem; }
  .mv-1\/8-xs {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem; }
  .mh-1\/8-xs {
    margin-left: 0.125rem;
    margin-right: 0.125rem; }
  .mt-1\/8-xs {
    margin-top: 0.125rem; }
  .mr-1\/8-xs {
    margin-right: 0.125rem; }
  .mb-1\/8-xs {
    margin-bottom: 0.125rem; }
  .ml-1\/8-xs {
    margin-left: 0.125rem; }
  .nt-1\/8-xs {
    margin-top: -0.125rem; }
  .nr-1\/8-xs {
    margin-right: -0.125rem; }
  .nb-1\/8-xs {
    margin-bottom: -0.125rem; }
  .nl-1\/8-xs {
    margin-left: -0.125rem; }
  .ma-1\/2-xs {
    margin: 5px; }
  .mv-1\/2-xs {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mh-1\/2-xs {
    margin-left: 5px;
    margin-right: 5px; }
  .mt-1\/2-xs {
    margin-top: 5px; }
  .mr-1\/2-xs {
    margin-right: 5px; }
  .mb-1\/2-xs {
    margin-bottom: 5px; }
  .ml-1\/2-xs {
    margin-left: 5px; }
  .nt-1\/2-xs {
    margin-top: -5px; }
  .nr-1\/2-xs {
    margin-right: -5px; }
  .nb-1\/2-xs {
    margin-bottom: -5px; }
  .nl-1\/2-xs {
    margin-left: -5px; }
  .ma-1-xs {
    margin: 10px; }
  .mv-1-xs {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mh-1-xs {
    margin-left: 10px;
    margin-right: 10px; }
  .mt-1-xs {
    margin-top: 10px; }
  .mr-1-xs {
    margin-right: 10px; }
  .mb-1-xs {
    margin-bottom: 10px; }
  .ml-1-xs {
    margin-left: 10px; }
  .nt-1-xs {
    margin-top: -10px; }
  .nr-1-xs {
    margin-right: -10px; }
  .nb-1-xs {
    margin-bottom: -10px; }
  .nl-1-xs {
    margin-left: -10px; }
  .ma-3\/2-xs {
    margin: 15px; }
  .mv-3\/2-xs {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mh-3\/2-xs {
    margin-left: 15px;
    margin-right: 15px; }
  .mt-3\/2-xs {
    margin-top: 15px; }
  .mr-3\/2-xs {
    margin-right: 15px; }
  .mb-3\/2-xs {
    margin-bottom: 15px; }
  .ml-3\/2-xs {
    margin-left: 15px; }
  .nt-3\/2-xs {
    margin-top: -15px; }
  .nr-3\/2-xs {
    margin-right: -15px; }
  .nb-3\/2-xs {
    margin-bottom: -15px; }
  .nl-3\/2-xs {
    margin-left: -15px; }
  .ma-2-xs {
    margin: 20px; }
  .mv-2-xs {
    margin-top: 20px;
    margin-bottom: 20px; }
  .mh-2-xs {
    margin-left: 20px;
    margin-right: 20px; }
  .mt-2-xs {
    margin-top: 20px; }
  .mr-2-xs {
    margin-right: 20px; }
  .mb-2-xs {
    margin-bottom: 20px; }
  .ml-2-xs {
    margin-left: 20px; }
  .nt-2-xs {
    margin-top: -20px; }
  .nr-2-xs {
    margin-right: -20px; }
  .nb-2-xs {
    margin-bottom: -20px; }
  .nl-2-xs {
    margin-left: -20px; }
  .ma-25-xs {
    margin: 25px; }
  .mv-25-xs {
    margin-top: 25px;
    margin-bottom: 25px; }
  .mh-25-xs {
    margin-left: 25px;
    margin-right: 25px; }
  .mt-25-xs {
    margin-top: 25px; }
  .mr-25-xs {
    margin-right: 25px; }
  .mb-25-xs {
    margin-bottom: 25px; }
  .ml-25-xs {
    margin-left: 25px; }
  .nt-25-xs {
    margin-top: -25px; }
  .nr-25-xs {
    margin-right: -25px; }
  .nb-25-xs {
    margin-bottom: -25px; }
  .nl-25-xs {
    margin-left: -25px; }
  .ma-3-xs {
    margin: 30px; }
  .mv-3-xs {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mh-3-xs {
    margin-left: 30px;
    margin-right: 30px; }
  .mt-3-xs {
    margin-top: 30px; }
  .mr-3-xs {
    margin-right: 30px; }
  .mb-3-xs {
    margin-bottom: 30px; }
  .ml-3-xs {
    margin-left: 30px; }
  .nt-3-xs {
    margin-top: -30px; }
  .nr-3-xs {
    margin-right: -30px; }
  .nb-3-xs {
    margin-bottom: -30px; }
  .nl-3-xs {
    margin-left: -30px; }
  .ma-4-xs {
    margin: 40px; }
  .mv-4-xs {
    margin-top: 40px;
    margin-bottom: 40px; }
  .mh-4-xs {
    margin-left: 40px;
    margin-right: 40px; }
  .mt-4-xs {
    margin-top: 40px; }
  .mr-4-xs {
    margin-right: 40px; }
  .mb-4-xs {
    margin-bottom: 40px; }
  .ml-4-xs {
    margin-left: 40px; }
  .nt-4-xs {
    margin-top: -40px; }
  .nr-4-xs {
    margin-right: -40px; }
  .nb-4-xs {
    margin-bottom: -40px; }
  .nl-4-xs {
    margin-left: -40px; }
  .ma-5-xs {
    margin: 50px; }
  .mv-5-xs {
    margin-top: 50px;
    margin-bottom: 50px; }
  .mh-5-xs {
    margin-left: 50px;
    margin-right: 50px; }
  .mt-5-xs {
    margin-top: 50px; }
  .mr-5-xs {
    margin-right: 50px; }
  .mb-5-xs {
    margin-bottom: 50px; }
  .ml-5-xs {
    margin-left: 50px; }
  .nt-5-xs {
    margin-top: -50px; }
  .nr-5-xs {
    margin-right: -50px; }
  .nb-5-xs {
    margin-bottom: -50px; }
  .nl-5-xs {
    margin-left: -50px; }
  .ma-7-xs {
    margin: 70px; }
  .mv-7-xs {
    margin-top: 70px;
    margin-bottom: 70px; }
  .mh-7-xs {
    margin-left: 70px;
    margin-right: 70px; }
  .mt-7-xs {
    margin-top: 70px; }
  .mr-7-xs {
    margin-right: 70px; }
  .mb-7-xs {
    margin-bottom: 70px; }
  .ml-7-xs {
    margin-left: 70px; }
  .nt-7-xs {
    margin-top: -70px; }
  .nr-7-xs {
    margin-right: -70px; }
  .nb-7-xs {
    margin-bottom: -70px; }
  .nl-7-xs {
    margin-left: -70px; }
  .ma-8-xs {
    margin: 80px; }
  .mv-8-xs {
    margin-top: 80px;
    margin-bottom: 80px; }
  .mh-8-xs {
    margin-left: 80px;
    margin-right: 80px; }
  .mt-8-xs {
    margin-top: 80px; }
  .mr-8-xs {
    margin-right: 80px; }
  .mb-8-xs {
    margin-bottom: 80px; }
  .ml-8-xs {
    margin-left: 80px; }
  .nt-8-xs {
    margin-top: -80px; }
  .nr-8-xs {
    margin-right: -80px; }
  .nb-8-xs {
    margin-bottom: -80px; }
  .nl-8-xs {
    margin-left: -80px; }
  .ma-10-xs {
    margin: 100px; }
  .mv-10-xs {
    margin-top: 100px;
    margin-bottom: 100px; }
  .mh-10-xs {
    margin-left: 100px;
    margin-right: 100px; }
  .mt-10-xs {
    margin-top: 100px; }
  .mr-10-xs {
    margin-right: 100px; }
  .mb-10-xs {
    margin-bottom: 100px; }
  .ml-10-xs {
    margin-left: 100px; }
  .nt-10-xs {
    margin-top: -100px; }
  .nr-10-xs {
    margin-right: -100px; }
  .nb-10-xs {
    margin-bottom: -100px; }
  .nl-10-xs {
    margin-left: -100px; }
  .ma-14-xs {
    margin: 140px; }
  .mv-14-xs {
    margin-top: 140px;
    margin-bottom: 140px; }
  .mh-14-xs {
    margin-left: 140px;
    margin-right: 140px; }
  .mt-14-xs {
    margin-top: 140px; }
  .mr-14-xs {
    margin-right: 140px; }
  .mb-14-xs {
    margin-bottom: 140px; }
  .ml-14-xs {
    margin-left: 140px; }
  .nt-14-xs {
    margin-top: -140px; }
  .nr-14-xs {
    margin-right: -140px; }
  .nb-14-xs {
    margin-bottom: -140px; }
  .nl-14-xs {
    margin-left: -140px; }
  .ma-16-xs {
    margin: 160px; }
  .mv-16-xs {
    margin-top: 160px;
    margin-bottom: 160px; }
  .mh-16-xs {
    margin-left: 160px;
    margin-right: 160px; }
  .mt-16-xs {
    margin-top: 160px; }
  .mr-16-xs {
    margin-right: 160px; }
  .mb-16-xs {
    margin-bottom: 160px; }
  .ml-16-xs {
    margin-left: 160px; }
  .nt-16-xs {
    margin-top: -160px; }
  .nr-16-xs {
    margin-right: -160px; }
  .nb-16-xs {
    margin-bottom: -160px; }
  .nl-16-xs {
    margin-left: -160px; }
  .mh-auto--xs {
    margin: 0 auto; } }

@media (min-width: 768px) {
  .pa-0-sm {
    padding: 0; }
  .pv-0-sm {
    padding-top: 0;
    padding-bottom: 0; }
  .ph-0-sm {
    padding-left: 0;
    padding-right: 0; }
  .pt-0-sm {
    padding-top: 0; }
  .pr-0-sm {
    padding-right: 0; }
  .pb-0-sm {
    padding-bottom: 0; }
  .pl-0-sm {
    padding-left: 0; }
  .pa-1\/10-sm {
    padding: 1px; }
  .pv-1\/10-sm {
    padding-top: 1px;
    padding-bottom: 1px; }
  .ph-1\/10-sm {
    padding-left: 1px;
    padding-right: 1px; }
  .pt-1\/10-sm {
    padding-top: 1px; }
  .pr-1\/10-sm {
    padding-right: 1px; }
  .pb-1\/10-sm {
    padding-bottom: 1px; }
  .pl-1\/10-sm {
    padding-left: 1px; }
  .pa-1\/5-sm {
    padding: 2px; }
  .pv-1\/5-sm {
    padding-top: 2px;
    padding-bottom: 2px; }
  .ph-1\/5-sm {
    padding-left: 2px;
    padding-right: 2px; }
  .pt-1\/5-sm {
    padding-top: 2px; }
  .pr-1\/5-sm {
    padding-right: 2px; }
  .pb-1\/5-sm {
    padding-bottom: 2px; }
  .pl-1\/5-sm {
    padding-left: 2px; }
  .pa-1\/4-sm {
    padding: 0.25rem; }
  .pv-1\/4-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem; }
  .ph-1\/4-sm {
    padding-left: 0.25rem;
    padding-right: 0.25rem; }
  .pt-1\/4-sm {
    padding-top: 0.25rem; }
  .pr-1\/4-sm {
    padding-right: 0.25rem; }
  .pb-1\/4-sm {
    padding-bottom: 0.25rem; }
  .pl-1\/4-sm {
    padding-left: 0.25rem; }
  .pa-3\/4-sm {
    padding: 0.75rem; }
  .pv-3\/4-sm {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem; }
  .ph-3\/4-sm {
    padding-left: 0.75rem;
    padding-right: 0.75rem; }
  .pt-3\/4-sm {
    padding-top: 0.75rem; }
  .pr-3\/4-sm {
    padding-right: 0.75rem; }
  .pb-3\/4-sm {
    padding-bottom: 0.75rem; }
  .pl-3\/4-sm {
    padding-left: 0.75rem; }
  .pa-1\/8-sm {
    padding: 0.125rem; }
  .pv-1\/8-sm {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem; }
  .ph-1\/8-sm {
    padding-left: 0.125rem;
    padding-right: 0.125rem; }
  .pt-1\/8-sm {
    padding-top: 0.125rem; }
  .pr-1\/8-sm {
    padding-right: 0.125rem; }
  .pb-1\/8-sm {
    padding-bottom: 0.125rem; }
  .pl-1\/8-sm {
    padding-left: 0.125rem; }
  .pa-1\/2-sm {
    padding: 5px; }
  .pv-1\/2-sm {
    padding-top: 5px;
    padding-bottom: 5px; }
  .ph-1\/2-sm {
    padding-left: 5px;
    padding-right: 5px; }
  .pt-1\/2-sm {
    padding-top: 5px; }
  .pr-1\/2-sm {
    padding-right: 5px; }
  .pb-1\/2-sm {
    padding-bottom: 5px; }
  .pl-1\/2-sm {
    padding-left: 5px; }
  .pa-1-sm {
    padding: 10px; }
  .pv-1-sm {
    padding-top: 10px;
    padding-bottom: 10px; }
  .ph-1-sm {
    padding-left: 10px;
    padding-right: 10px; }
  .pt-1-sm {
    padding-top: 10px; }
  .pr-1-sm {
    padding-right: 10px; }
  .pb-1-sm {
    padding-bottom: 10px; }
  .pl-1-sm {
    padding-left: 10px; }
  .pa-3\/2-sm {
    padding: 15px; }
  .pv-3\/2-sm {
    padding-top: 15px;
    padding-bottom: 15px; }
  .ph-3\/2-sm {
    padding-left: 15px;
    padding-right: 15px; }
  .pt-3\/2-sm {
    padding-top: 15px; }
  .pr-3\/2-sm {
    padding-right: 15px; }
  .pb-3\/2-sm {
    padding-bottom: 15px; }
  .pl-3\/2-sm {
    padding-left: 15px; }
  .pa-2-sm {
    padding: 20px; }
  .pv-2-sm {
    padding-top: 20px;
    padding-bottom: 20px; }
  .ph-2-sm {
    padding-left: 20px;
    padding-right: 20px; }
  .pt-2-sm {
    padding-top: 20px; }
  .pr-2-sm {
    padding-right: 20px; }
  .pb-2-sm {
    padding-bottom: 20px; }
  .pl-2-sm {
    padding-left: 20px; }
  .pa-25-sm {
    padding: 25px; }
  .pv-25-sm {
    padding-top: 25px;
    padding-bottom: 25px; }
  .ph-25-sm {
    padding-left: 25px;
    padding-right: 25px; }
  .pt-25-sm {
    padding-top: 25px; }
  .pr-25-sm {
    padding-right: 25px; }
  .pb-25-sm {
    padding-bottom: 25px; }
  .pl-25-sm {
    padding-left: 25px; }
  .pa-3-sm {
    padding: 30px; }
  .pv-3-sm {
    padding-top: 30px;
    padding-bottom: 30px; }
  .ph-3-sm {
    padding-left: 30px;
    padding-right: 30px; }
  .pt-3-sm {
    padding-top: 30px; }
  .pr-3-sm {
    padding-right: 30px; }
  .pb-3-sm {
    padding-bottom: 30px; }
  .pl-3-sm {
    padding-left: 30px; }
  .pa-4-sm {
    padding: 40px; }
  .pv-4-sm {
    padding-top: 40px;
    padding-bottom: 40px; }
  .ph-4-sm {
    padding-left: 40px;
    padding-right: 40px; }
  .pt-4-sm {
    padding-top: 40px; }
  .pr-4-sm {
    padding-right: 40px; }
  .pb-4-sm {
    padding-bottom: 40px; }
  .pl-4-sm {
    padding-left: 40px; }
  .pa-5-sm {
    padding: 50px; }
  .pv-5-sm {
    padding-top: 50px;
    padding-bottom: 50px; }
  .ph-5-sm {
    padding-left: 50px;
    padding-right: 50px; }
  .pt-5-sm {
    padding-top: 50px; }
  .pr-5-sm {
    padding-right: 50px; }
  .pb-5-sm {
    padding-bottom: 50px; }
  .pl-5-sm {
    padding-left: 50px; }
  .pa-7-sm {
    padding: 70px; }
  .pv-7-sm {
    padding-top: 70px;
    padding-bottom: 70px; }
  .ph-7-sm {
    padding-left: 70px;
    padding-right: 70px; }
  .pt-7-sm {
    padding-top: 70px; }
  .pr-7-sm {
    padding-right: 70px; }
  .pb-7-sm {
    padding-bottom: 70px; }
  .pl-7-sm {
    padding-left: 70px; }
  .pa-8-sm {
    padding: 80px; }
  .pv-8-sm {
    padding-top: 80px;
    padding-bottom: 80px; }
  .ph-8-sm {
    padding-left: 80px;
    padding-right: 80px; }
  .pt-8-sm {
    padding-top: 80px; }
  .pr-8-sm {
    padding-right: 80px; }
  .pb-8-sm {
    padding-bottom: 80px; }
  .pl-8-sm {
    padding-left: 80px; }
  .pa-10-sm {
    padding: 100px; }
  .pv-10-sm {
    padding-top: 100px;
    padding-bottom: 100px; }
  .ph-10-sm {
    padding-left: 100px;
    padding-right: 100px; }
  .pt-10-sm {
    padding-top: 100px; }
  .pr-10-sm {
    padding-right: 100px; }
  .pb-10-sm {
    padding-bottom: 100px; }
  .pl-10-sm {
    padding-left: 100px; }
  .pa-14-sm {
    padding: 140px; }
  .pv-14-sm {
    padding-top: 140px;
    padding-bottom: 140px; }
  .ph-14-sm {
    padding-left: 140px;
    padding-right: 140px; }
  .pt-14-sm {
    padding-top: 140px; }
  .pr-14-sm {
    padding-right: 140px; }
  .pb-14-sm {
    padding-bottom: 140px; }
  .pl-14-sm {
    padding-left: 140px; }
  .pa-16-sm {
    padding: 160px; }
  .pv-16-sm {
    padding-top: 160px;
    padding-bottom: 160px; }
  .ph-16-sm {
    padding-left: 160px;
    padding-right: 160px; }
  .pt-16-sm {
    padding-top: 160px; }
  .pr-16-sm {
    padding-right: 160px; }
  .pb-16-sm {
    padding-bottom: 160px; }
  .pl-16-sm {
    padding-left: 160px; }
  .ma-0-sm {
    margin: 0; }
  .mv-0-sm {
    margin-top: 0;
    margin-bottom: 0; }
  .mh-0-sm {
    margin-left: 0;
    margin-right: 0; }
  .mt-0-sm {
    margin-top: 0; }
  .mr-0-sm {
    margin-right: 0; }
  .mb-0-sm {
    margin-bottom: 0; }
  .ml-0-sm {
    margin-left: 0; }
  .nt-0-sm {
    margin-top: -0; }
  .nr-0-sm {
    margin-right: -0; }
  .nb-0-sm {
    margin-bottom: -0; }
  .nl-0-sm {
    margin-left: -0; }
  .ma-1\/10-sm {
    margin: 1px; }
  .mv-1\/10-sm {
    margin-top: 1px;
    margin-bottom: 1px; }
  .mh-1\/10-sm {
    margin-left: 1px;
    margin-right: 1px; }
  .mt-1\/10-sm {
    margin-top: 1px; }
  .mr-1\/10-sm {
    margin-right: 1px; }
  .mb-1\/10-sm {
    margin-bottom: 1px; }
  .ml-1\/10-sm {
    margin-left: 1px; }
  .nt-1\/10-sm {
    margin-top: -1px; }
  .nr-1\/10-sm {
    margin-right: -1px; }
  .nb-1\/10-sm {
    margin-bottom: -1px; }
  .nl-1\/10-sm {
    margin-left: -1px; }
  .ma-1\/5-sm {
    margin: 2px; }
  .mv-1\/5-sm {
    margin-top: 2px;
    margin-bottom: 2px; }
  .mh-1\/5-sm {
    margin-left: 2px;
    margin-right: 2px; }
  .mt-1\/5-sm {
    margin-top: 2px; }
  .mr-1\/5-sm {
    margin-right: 2px; }
  .mb-1\/5-sm {
    margin-bottom: 2px; }
  .ml-1\/5-sm {
    margin-left: 2px; }
  .nt-1\/5-sm {
    margin-top: -2px; }
  .nr-1\/5-sm {
    margin-right: -2px; }
  .nb-1\/5-sm {
    margin-bottom: -2px; }
  .nl-1\/5-sm {
    margin-left: -2px; }
  .ma-1\/4-sm {
    margin: 0.25rem; }
  .mv-1\/4-sm {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem; }
  .mh-1\/4-sm {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }
  .mt-1\/4-sm {
    margin-top: 0.25rem; }
  .mr-1\/4-sm {
    margin-right: 0.25rem; }
  .mb-1\/4-sm {
    margin-bottom: 0.25rem; }
  .ml-1\/4-sm {
    margin-left: 0.25rem; }
  .nt-1\/4-sm {
    margin-top: -0.25rem; }
  .nr-1\/4-sm {
    margin-right: -0.25rem; }
  .nb-1\/4-sm {
    margin-bottom: -0.25rem; }
  .nl-1\/4-sm {
    margin-left: -0.25rem; }
  .ma-3\/4-sm {
    margin: 0.75rem; }
  .mv-3\/4-sm {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem; }
  .mh-3\/4-sm {
    margin-left: 0.75rem;
    margin-right: 0.75rem; }
  .mt-3\/4-sm {
    margin-top: 0.75rem; }
  .mr-3\/4-sm {
    margin-right: 0.75rem; }
  .mb-3\/4-sm {
    margin-bottom: 0.75rem; }
  .ml-3\/4-sm {
    margin-left: 0.75rem; }
  .nt-3\/4-sm {
    margin-top: -0.75rem; }
  .nr-3\/4-sm {
    margin-right: -0.75rem; }
  .nb-3\/4-sm {
    margin-bottom: -0.75rem; }
  .nl-3\/4-sm {
    margin-left: -0.75rem; }
  .ma-1\/8-sm {
    margin: 0.125rem; }
  .mv-1\/8-sm {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem; }
  .mh-1\/8-sm {
    margin-left: 0.125rem;
    margin-right: 0.125rem; }
  .mt-1\/8-sm {
    margin-top: 0.125rem; }
  .mr-1\/8-sm {
    margin-right: 0.125rem; }
  .mb-1\/8-sm {
    margin-bottom: 0.125rem; }
  .ml-1\/8-sm {
    margin-left: 0.125rem; }
  .nt-1\/8-sm {
    margin-top: -0.125rem; }
  .nr-1\/8-sm {
    margin-right: -0.125rem; }
  .nb-1\/8-sm {
    margin-bottom: -0.125rem; }
  .nl-1\/8-sm {
    margin-left: -0.125rem; }
  .ma-1\/2-sm {
    margin: 5px; }
  .mv-1\/2-sm {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mh-1\/2-sm {
    margin-left: 5px;
    margin-right: 5px; }
  .mt-1\/2-sm {
    margin-top: 5px; }
  .mr-1\/2-sm {
    margin-right: 5px; }
  .mb-1\/2-sm {
    margin-bottom: 5px; }
  .ml-1\/2-sm {
    margin-left: 5px; }
  .nt-1\/2-sm {
    margin-top: -5px; }
  .nr-1\/2-sm {
    margin-right: -5px; }
  .nb-1\/2-sm {
    margin-bottom: -5px; }
  .nl-1\/2-sm {
    margin-left: -5px; }
  .ma-1-sm {
    margin: 10px; }
  .mv-1-sm {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mh-1-sm {
    margin-left: 10px;
    margin-right: 10px; }
  .mt-1-sm {
    margin-top: 10px; }
  .mr-1-sm {
    margin-right: 10px; }
  .mb-1-sm {
    margin-bottom: 10px; }
  .ml-1-sm {
    margin-left: 10px; }
  .nt-1-sm {
    margin-top: -10px; }
  .nr-1-sm {
    margin-right: -10px; }
  .nb-1-sm {
    margin-bottom: -10px; }
  .nl-1-sm {
    margin-left: -10px; }
  .ma-3\/2-sm {
    margin: 15px; }
  .mv-3\/2-sm {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mh-3\/2-sm {
    margin-left: 15px;
    margin-right: 15px; }
  .mt-3\/2-sm {
    margin-top: 15px; }
  .mr-3\/2-sm {
    margin-right: 15px; }
  .mb-3\/2-sm {
    margin-bottom: 15px; }
  .ml-3\/2-sm {
    margin-left: 15px; }
  .nt-3\/2-sm {
    margin-top: -15px; }
  .nr-3\/2-sm {
    margin-right: -15px; }
  .nb-3\/2-sm {
    margin-bottom: -15px; }
  .nl-3\/2-sm {
    margin-left: -15px; }
  .ma-2-sm {
    margin: 20px; }
  .mv-2-sm {
    margin-top: 20px;
    margin-bottom: 20px; }
  .mh-2-sm {
    margin-left: 20px;
    margin-right: 20px; }
  .mt-2-sm {
    margin-top: 20px; }
  .mr-2-sm {
    margin-right: 20px; }
  .mb-2-sm {
    margin-bottom: 20px; }
  .ml-2-sm {
    margin-left: 20px; }
  .nt-2-sm {
    margin-top: -20px; }
  .nr-2-sm {
    margin-right: -20px; }
  .nb-2-sm {
    margin-bottom: -20px; }
  .nl-2-sm {
    margin-left: -20px; }
  .ma-25-sm {
    margin: 25px; }
  .mv-25-sm {
    margin-top: 25px;
    margin-bottom: 25px; }
  .mh-25-sm {
    margin-left: 25px;
    margin-right: 25px; }
  .mt-25-sm {
    margin-top: 25px; }
  .mr-25-sm {
    margin-right: 25px; }
  .mb-25-sm {
    margin-bottom: 25px; }
  .ml-25-sm {
    margin-left: 25px; }
  .nt-25-sm {
    margin-top: -25px; }
  .nr-25-sm {
    margin-right: -25px; }
  .nb-25-sm {
    margin-bottom: -25px; }
  .nl-25-sm {
    margin-left: -25px; }
  .ma-3-sm {
    margin: 30px; }
  .mv-3-sm {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mh-3-sm {
    margin-left: 30px;
    margin-right: 30px; }
  .mt-3-sm {
    margin-top: 30px; }
  .mr-3-sm {
    margin-right: 30px; }
  .mb-3-sm {
    margin-bottom: 30px; }
  .ml-3-sm {
    margin-left: 30px; }
  .nt-3-sm {
    margin-top: -30px; }
  .nr-3-sm {
    margin-right: -30px; }
  .nb-3-sm {
    margin-bottom: -30px; }
  .nl-3-sm {
    margin-left: -30px; }
  .ma-4-sm {
    margin: 40px; }
  .mv-4-sm {
    margin-top: 40px;
    margin-bottom: 40px; }
  .mh-4-sm {
    margin-left: 40px;
    margin-right: 40px; }
  .mt-4-sm {
    margin-top: 40px; }
  .mr-4-sm {
    margin-right: 40px; }
  .mb-4-sm {
    margin-bottom: 40px; }
  .ml-4-sm {
    margin-left: 40px; }
  .nt-4-sm {
    margin-top: -40px; }
  .nr-4-sm {
    margin-right: -40px; }
  .nb-4-sm {
    margin-bottom: -40px; }
  .nl-4-sm {
    margin-left: -40px; }
  .ma-5-sm {
    margin: 50px; }
  .mv-5-sm {
    margin-top: 50px;
    margin-bottom: 50px; }
  .mh-5-sm {
    margin-left: 50px;
    margin-right: 50px; }
  .mt-5-sm {
    margin-top: 50px; }
  .mr-5-sm {
    margin-right: 50px; }
  .mb-5-sm {
    margin-bottom: 50px; }
  .ml-5-sm {
    margin-left: 50px; }
  .nt-5-sm {
    margin-top: -50px; }
  .nr-5-sm {
    margin-right: -50px; }
  .nb-5-sm {
    margin-bottom: -50px; }
  .nl-5-sm {
    margin-left: -50px; }
  .ma-7-sm {
    margin: 70px; }
  .mv-7-sm {
    margin-top: 70px;
    margin-bottom: 70px; }
  .mh-7-sm {
    margin-left: 70px;
    margin-right: 70px; }
  .mt-7-sm {
    margin-top: 70px; }
  .mr-7-sm {
    margin-right: 70px; }
  .mb-7-sm {
    margin-bottom: 70px; }
  .ml-7-sm {
    margin-left: 70px; }
  .nt-7-sm {
    margin-top: -70px; }
  .nr-7-sm {
    margin-right: -70px; }
  .nb-7-sm {
    margin-bottom: -70px; }
  .nl-7-sm {
    margin-left: -70px; }
  .ma-8-sm {
    margin: 80px; }
  .mv-8-sm {
    margin-top: 80px;
    margin-bottom: 80px; }
  .mh-8-sm {
    margin-left: 80px;
    margin-right: 80px; }
  .mt-8-sm {
    margin-top: 80px; }
  .mr-8-sm {
    margin-right: 80px; }
  .mb-8-sm {
    margin-bottom: 80px; }
  .ml-8-sm {
    margin-left: 80px; }
  .nt-8-sm {
    margin-top: -80px; }
  .nr-8-sm {
    margin-right: -80px; }
  .nb-8-sm {
    margin-bottom: -80px; }
  .nl-8-sm {
    margin-left: -80px; }
  .ma-10-sm {
    margin: 100px; }
  .mv-10-sm {
    margin-top: 100px;
    margin-bottom: 100px; }
  .mh-10-sm {
    margin-left: 100px;
    margin-right: 100px; }
  .mt-10-sm {
    margin-top: 100px; }
  .mr-10-sm {
    margin-right: 100px; }
  .mb-10-sm {
    margin-bottom: 100px; }
  .ml-10-sm {
    margin-left: 100px; }
  .nt-10-sm {
    margin-top: -100px; }
  .nr-10-sm {
    margin-right: -100px; }
  .nb-10-sm {
    margin-bottom: -100px; }
  .nl-10-sm {
    margin-left: -100px; }
  .ma-14-sm {
    margin: 140px; }
  .mv-14-sm {
    margin-top: 140px;
    margin-bottom: 140px; }
  .mh-14-sm {
    margin-left: 140px;
    margin-right: 140px; }
  .mt-14-sm {
    margin-top: 140px; }
  .mr-14-sm {
    margin-right: 140px; }
  .mb-14-sm {
    margin-bottom: 140px; }
  .ml-14-sm {
    margin-left: 140px; }
  .nt-14-sm {
    margin-top: -140px; }
  .nr-14-sm {
    margin-right: -140px; }
  .nb-14-sm {
    margin-bottom: -140px; }
  .nl-14-sm {
    margin-left: -140px; }
  .ma-16-sm {
    margin: 160px; }
  .mv-16-sm {
    margin-top: 160px;
    margin-bottom: 160px; }
  .mh-16-sm {
    margin-left: 160px;
    margin-right: 160px; }
  .mt-16-sm {
    margin-top: 160px; }
  .mr-16-sm {
    margin-right: 160px; }
  .mb-16-sm {
    margin-bottom: 160px; }
  .ml-16-sm {
    margin-left: 160px; }
  .nt-16-sm {
    margin-top: -160px; }
  .nr-16-sm {
    margin-right: -160px; }
  .nb-16-sm {
    margin-bottom: -160px; }
  .nl-16-sm {
    margin-left: -160px; }
  .mh-auto--sm {
    margin: 0 auto; } }

@media (min-width: 992px) {
  .pa-0-md {
    padding: 0; }
  .pv-0-md {
    padding-top: 0;
    padding-bottom: 0; }
  .ph-0-md {
    padding-left: 0;
    padding-right: 0; }
  .pt-0-md {
    padding-top: 0; }
  .pr-0-md {
    padding-right: 0; }
  .pb-0-md {
    padding-bottom: 0; }
  .pl-0-md {
    padding-left: 0; }
  .pa-1\/10-md {
    padding: 1px; }
  .pv-1\/10-md {
    padding-top: 1px;
    padding-bottom: 1px; }
  .ph-1\/10-md {
    padding-left: 1px;
    padding-right: 1px; }
  .pt-1\/10-md {
    padding-top: 1px; }
  .pr-1\/10-md {
    padding-right: 1px; }
  .pb-1\/10-md {
    padding-bottom: 1px; }
  .pl-1\/10-md {
    padding-left: 1px; }
  .pa-1\/5-md {
    padding: 2px; }
  .pv-1\/5-md {
    padding-top: 2px;
    padding-bottom: 2px; }
  .ph-1\/5-md {
    padding-left: 2px;
    padding-right: 2px; }
  .pt-1\/5-md {
    padding-top: 2px; }
  .pr-1\/5-md {
    padding-right: 2px; }
  .pb-1\/5-md {
    padding-bottom: 2px; }
  .pl-1\/5-md {
    padding-left: 2px; }
  .pa-1\/4-md {
    padding: 0.25rem; }
  .pv-1\/4-md {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem; }
  .ph-1\/4-md {
    padding-left: 0.25rem;
    padding-right: 0.25rem; }
  .pt-1\/4-md {
    padding-top: 0.25rem; }
  .pr-1\/4-md {
    padding-right: 0.25rem; }
  .pb-1\/4-md {
    padding-bottom: 0.25rem; }
  .pl-1\/4-md {
    padding-left: 0.25rem; }
  .pa-3\/4-md {
    padding: 0.75rem; }
  .pv-3\/4-md {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem; }
  .ph-3\/4-md {
    padding-left: 0.75rem;
    padding-right: 0.75rem; }
  .pt-3\/4-md {
    padding-top: 0.75rem; }
  .pr-3\/4-md {
    padding-right: 0.75rem; }
  .pb-3\/4-md {
    padding-bottom: 0.75rem; }
  .pl-3\/4-md {
    padding-left: 0.75rem; }
  .pa-1\/8-md {
    padding: 0.125rem; }
  .pv-1\/8-md {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem; }
  .ph-1\/8-md {
    padding-left: 0.125rem;
    padding-right: 0.125rem; }
  .pt-1\/8-md {
    padding-top: 0.125rem; }
  .pr-1\/8-md {
    padding-right: 0.125rem; }
  .pb-1\/8-md {
    padding-bottom: 0.125rem; }
  .pl-1\/8-md {
    padding-left: 0.125rem; }
  .pa-1\/2-md {
    padding: 5px; }
  .pv-1\/2-md {
    padding-top: 5px;
    padding-bottom: 5px; }
  .ph-1\/2-md {
    padding-left: 5px;
    padding-right: 5px; }
  .pt-1\/2-md {
    padding-top: 5px; }
  .pr-1\/2-md {
    padding-right: 5px; }
  .pb-1\/2-md {
    padding-bottom: 5px; }
  .pl-1\/2-md {
    padding-left: 5px; }
  .pa-1-md {
    padding: 10px; }
  .pv-1-md {
    padding-top: 10px;
    padding-bottom: 10px; }
  .ph-1-md {
    padding-left: 10px;
    padding-right: 10px; }
  .pt-1-md {
    padding-top: 10px; }
  .pr-1-md {
    padding-right: 10px; }
  .pb-1-md {
    padding-bottom: 10px; }
  .pl-1-md {
    padding-left: 10px; }
  .pa-3\/2-md {
    padding: 15px; }
  .pv-3\/2-md {
    padding-top: 15px;
    padding-bottom: 15px; }
  .ph-3\/2-md {
    padding-left: 15px;
    padding-right: 15px; }
  .pt-3\/2-md {
    padding-top: 15px; }
  .pr-3\/2-md {
    padding-right: 15px; }
  .pb-3\/2-md {
    padding-bottom: 15px; }
  .pl-3\/2-md {
    padding-left: 15px; }
  .pa-2-md {
    padding: 20px; }
  .pv-2-md {
    padding-top: 20px;
    padding-bottom: 20px; }
  .ph-2-md {
    padding-left: 20px;
    padding-right: 20px; }
  .pt-2-md {
    padding-top: 20px; }
  .pr-2-md {
    padding-right: 20px; }
  .pb-2-md {
    padding-bottom: 20px; }
  .pl-2-md {
    padding-left: 20px; }
  .pa-25-md {
    padding: 25px; }
  .pv-25-md {
    padding-top: 25px;
    padding-bottom: 25px; }
  .ph-25-md {
    padding-left: 25px;
    padding-right: 25px; }
  .pt-25-md {
    padding-top: 25px; }
  .pr-25-md {
    padding-right: 25px; }
  .pb-25-md {
    padding-bottom: 25px; }
  .pl-25-md {
    padding-left: 25px; }
  .pa-3-md {
    padding: 30px; }
  .pv-3-md {
    padding-top: 30px;
    padding-bottom: 30px; }
  .ph-3-md {
    padding-left: 30px;
    padding-right: 30px; }
  .pt-3-md {
    padding-top: 30px; }
  .pr-3-md {
    padding-right: 30px; }
  .pb-3-md {
    padding-bottom: 30px; }
  .pl-3-md {
    padding-left: 30px; }
  .pa-4-md {
    padding: 40px; }
  .pv-4-md {
    padding-top: 40px;
    padding-bottom: 40px; }
  .ph-4-md {
    padding-left: 40px;
    padding-right: 40px; }
  .pt-4-md {
    padding-top: 40px; }
  .pr-4-md {
    padding-right: 40px; }
  .pb-4-md {
    padding-bottom: 40px; }
  .pl-4-md {
    padding-left: 40px; }
  .pa-5-md {
    padding: 50px; }
  .pv-5-md {
    padding-top: 50px;
    padding-bottom: 50px; }
  .ph-5-md {
    padding-left: 50px;
    padding-right: 50px; }
  .pt-5-md {
    padding-top: 50px; }
  .pr-5-md {
    padding-right: 50px; }
  .pb-5-md {
    padding-bottom: 50px; }
  .pl-5-md {
    padding-left: 50px; }
  .pa-7-md {
    padding: 70px; }
  .pv-7-md {
    padding-top: 70px;
    padding-bottom: 70px; }
  .ph-7-md {
    padding-left: 70px;
    padding-right: 70px; }
  .pt-7-md {
    padding-top: 70px; }
  .pr-7-md {
    padding-right: 70px; }
  .pb-7-md {
    padding-bottom: 70px; }
  .pl-7-md {
    padding-left: 70px; }
  .pa-8-md {
    padding: 80px; }
  .pv-8-md {
    padding-top: 80px;
    padding-bottom: 80px; }
  .ph-8-md {
    padding-left: 80px;
    padding-right: 80px; }
  .pt-8-md {
    padding-top: 80px; }
  .pr-8-md {
    padding-right: 80px; }
  .pb-8-md {
    padding-bottom: 80px; }
  .pl-8-md {
    padding-left: 80px; }
  .pa-10-md {
    padding: 100px; }
  .pv-10-md {
    padding-top: 100px;
    padding-bottom: 100px; }
  .ph-10-md {
    padding-left: 100px;
    padding-right: 100px; }
  .pt-10-md {
    padding-top: 100px; }
  .pr-10-md {
    padding-right: 100px; }
  .pb-10-md {
    padding-bottom: 100px; }
  .pl-10-md {
    padding-left: 100px; }
  .pa-14-md {
    padding: 140px; }
  .pv-14-md {
    padding-top: 140px;
    padding-bottom: 140px; }
  .ph-14-md {
    padding-left: 140px;
    padding-right: 140px; }
  .pt-14-md {
    padding-top: 140px; }
  .pr-14-md {
    padding-right: 140px; }
  .pb-14-md {
    padding-bottom: 140px; }
  .pl-14-md {
    padding-left: 140px; }
  .pa-16-md {
    padding: 160px; }
  .pv-16-md {
    padding-top: 160px;
    padding-bottom: 160px; }
  .ph-16-md {
    padding-left: 160px;
    padding-right: 160px; }
  .pt-16-md {
    padding-top: 160px; }
  .pr-16-md {
    padding-right: 160px; }
  .pb-16-md {
    padding-bottom: 160px; }
  .pl-16-md {
    padding-left: 160px; }
  .ma-0-md {
    margin: 0; }
  .mv-0-md {
    margin-top: 0;
    margin-bottom: 0; }
  .mh-0-md {
    margin-left: 0;
    margin-right: 0; }
  .mt-0-md {
    margin-top: 0; }
  .mr-0-md {
    margin-right: 0; }
  .mb-0-md {
    margin-bottom: 0; }
  .ml-0-md {
    margin-left: 0; }
  .nt-0-md {
    margin-top: -0; }
  .nr-0-md {
    margin-right: -0; }
  .nb-0-md {
    margin-bottom: -0; }
  .nl-0-md {
    margin-left: -0; }
  .ma-1\/10-md {
    margin: 1px; }
  .mv-1\/10-md {
    margin-top: 1px;
    margin-bottom: 1px; }
  .mh-1\/10-md {
    margin-left: 1px;
    margin-right: 1px; }
  .mt-1\/10-md {
    margin-top: 1px; }
  .mr-1\/10-md {
    margin-right: 1px; }
  .mb-1\/10-md {
    margin-bottom: 1px; }
  .ml-1\/10-md {
    margin-left: 1px; }
  .nt-1\/10-md {
    margin-top: -1px; }
  .nr-1\/10-md {
    margin-right: -1px; }
  .nb-1\/10-md {
    margin-bottom: -1px; }
  .nl-1\/10-md {
    margin-left: -1px; }
  .ma-1\/5-md {
    margin: 2px; }
  .mv-1\/5-md {
    margin-top: 2px;
    margin-bottom: 2px; }
  .mh-1\/5-md {
    margin-left: 2px;
    margin-right: 2px; }
  .mt-1\/5-md {
    margin-top: 2px; }
  .mr-1\/5-md {
    margin-right: 2px; }
  .mb-1\/5-md {
    margin-bottom: 2px; }
  .ml-1\/5-md {
    margin-left: 2px; }
  .nt-1\/5-md {
    margin-top: -2px; }
  .nr-1\/5-md {
    margin-right: -2px; }
  .nb-1\/5-md {
    margin-bottom: -2px; }
  .nl-1\/5-md {
    margin-left: -2px; }
  .ma-1\/4-md {
    margin: 0.25rem; }
  .mv-1\/4-md {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem; }
  .mh-1\/4-md {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }
  .mt-1\/4-md {
    margin-top: 0.25rem; }
  .mr-1\/4-md {
    margin-right: 0.25rem; }
  .mb-1\/4-md {
    margin-bottom: 0.25rem; }
  .ml-1\/4-md {
    margin-left: 0.25rem; }
  .nt-1\/4-md {
    margin-top: -0.25rem; }
  .nr-1\/4-md {
    margin-right: -0.25rem; }
  .nb-1\/4-md {
    margin-bottom: -0.25rem; }
  .nl-1\/4-md {
    margin-left: -0.25rem; }
  .ma-3\/4-md {
    margin: 0.75rem; }
  .mv-3\/4-md {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem; }
  .mh-3\/4-md {
    margin-left: 0.75rem;
    margin-right: 0.75rem; }
  .mt-3\/4-md {
    margin-top: 0.75rem; }
  .mr-3\/4-md {
    margin-right: 0.75rem; }
  .mb-3\/4-md {
    margin-bottom: 0.75rem; }
  .ml-3\/4-md {
    margin-left: 0.75rem; }
  .nt-3\/4-md {
    margin-top: -0.75rem; }
  .nr-3\/4-md {
    margin-right: -0.75rem; }
  .nb-3\/4-md {
    margin-bottom: -0.75rem; }
  .nl-3\/4-md {
    margin-left: -0.75rem; }
  .ma-1\/8-md {
    margin: 0.125rem; }
  .mv-1\/8-md {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem; }
  .mh-1\/8-md {
    margin-left: 0.125rem;
    margin-right: 0.125rem; }
  .mt-1\/8-md {
    margin-top: 0.125rem; }
  .mr-1\/8-md {
    margin-right: 0.125rem; }
  .mb-1\/8-md {
    margin-bottom: 0.125rem; }
  .ml-1\/8-md {
    margin-left: 0.125rem; }
  .nt-1\/8-md {
    margin-top: -0.125rem; }
  .nr-1\/8-md {
    margin-right: -0.125rem; }
  .nb-1\/8-md {
    margin-bottom: -0.125rem; }
  .nl-1\/8-md {
    margin-left: -0.125rem; }
  .ma-1\/2-md {
    margin: 5px; }
  .mv-1\/2-md {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mh-1\/2-md {
    margin-left: 5px;
    margin-right: 5px; }
  .mt-1\/2-md {
    margin-top: 5px; }
  .mr-1\/2-md {
    margin-right: 5px; }
  .mb-1\/2-md {
    margin-bottom: 5px; }
  .ml-1\/2-md {
    margin-left: 5px; }
  .nt-1\/2-md {
    margin-top: -5px; }
  .nr-1\/2-md {
    margin-right: -5px; }
  .nb-1\/2-md {
    margin-bottom: -5px; }
  .nl-1\/2-md {
    margin-left: -5px; }
  .ma-1-md {
    margin: 10px; }
  .mv-1-md {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mh-1-md {
    margin-left: 10px;
    margin-right: 10px; }
  .mt-1-md {
    margin-top: 10px; }
  .mr-1-md {
    margin-right: 10px; }
  .mb-1-md {
    margin-bottom: 10px; }
  .ml-1-md {
    margin-left: 10px; }
  .nt-1-md {
    margin-top: -10px; }
  .nr-1-md {
    margin-right: -10px; }
  .nb-1-md {
    margin-bottom: -10px; }
  .nl-1-md {
    margin-left: -10px; }
  .ma-3\/2-md {
    margin: 15px; }
  .mv-3\/2-md {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mh-3\/2-md {
    margin-left: 15px;
    margin-right: 15px; }
  .mt-3\/2-md {
    margin-top: 15px; }
  .mr-3\/2-md {
    margin-right: 15px; }
  .mb-3\/2-md {
    margin-bottom: 15px; }
  .ml-3\/2-md {
    margin-left: 15px; }
  .nt-3\/2-md {
    margin-top: -15px; }
  .nr-3\/2-md {
    margin-right: -15px; }
  .nb-3\/2-md {
    margin-bottom: -15px; }
  .nl-3\/2-md {
    margin-left: -15px; }
  .ma-2-md {
    margin: 20px; }
  .mv-2-md {
    margin-top: 20px;
    margin-bottom: 20px; }
  .mh-2-md {
    margin-left: 20px;
    margin-right: 20px; }
  .mt-2-md {
    margin-top: 20px; }
  .mr-2-md {
    margin-right: 20px; }
  .mb-2-md {
    margin-bottom: 20px; }
  .ml-2-md {
    margin-left: 20px; }
  .nt-2-md {
    margin-top: -20px; }
  .nr-2-md {
    margin-right: -20px; }
  .nb-2-md {
    margin-bottom: -20px; }
  .nl-2-md {
    margin-left: -20px; }
  .ma-25-md {
    margin: 25px; }
  .mv-25-md {
    margin-top: 25px;
    margin-bottom: 25px; }
  .mh-25-md {
    margin-left: 25px;
    margin-right: 25px; }
  .mt-25-md {
    margin-top: 25px; }
  .mr-25-md {
    margin-right: 25px; }
  .mb-25-md {
    margin-bottom: 25px; }
  .ml-25-md {
    margin-left: 25px; }
  .nt-25-md {
    margin-top: -25px; }
  .nr-25-md {
    margin-right: -25px; }
  .nb-25-md {
    margin-bottom: -25px; }
  .nl-25-md {
    margin-left: -25px; }
  .ma-3-md {
    margin: 30px; }
  .mv-3-md {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mh-3-md {
    margin-left: 30px;
    margin-right: 30px; }
  .mt-3-md {
    margin-top: 30px; }
  .mr-3-md {
    margin-right: 30px; }
  .mb-3-md {
    margin-bottom: 30px; }
  .ml-3-md {
    margin-left: 30px; }
  .nt-3-md {
    margin-top: -30px; }
  .nr-3-md {
    margin-right: -30px; }
  .nb-3-md {
    margin-bottom: -30px; }
  .nl-3-md {
    margin-left: -30px; }
  .ma-4-md {
    margin: 40px; }
  .mv-4-md {
    margin-top: 40px;
    margin-bottom: 40px; }
  .mh-4-md {
    margin-left: 40px;
    margin-right: 40px; }
  .mt-4-md {
    margin-top: 40px; }
  .mr-4-md {
    margin-right: 40px; }
  .mb-4-md {
    margin-bottom: 40px; }
  .ml-4-md {
    margin-left: 40px; }
  .nt-4-md {
    margin-top: -40px; }
  .nr-4-md {
    margin-right: -40px; }
  .nb-4-md {
    margin-bottom: -40px; }
  .nl-4-md {
    margin-left: -40px; }
  .ma-5-md {
    margin: 50px; }
  .mv-5-md {
    margin-top: 50px;
    margin-bottom: 50px; }
  .mh-5-md {
    margin-left: 50px;
    margin-right: 50px; }
  .mt-5-md {
    margin-top: 50px; }
  .mr-5-md {
    margin-right: 50px; }
  .mb-5-md {
    margin-bottom: 50px; }
  .ml-5-md {
    margin-left: 50px; }
  .nt-5-md {
    margin-top: -50px; }
  .nr-5-md {
    margin-right: -50px; }
  .nb-5-md {
    margin-bottom: -50px; }
  .nl-5-md {
    margin-left: -50px; }
  .ma-7-md {
    margin: 70px; }
  .mv-7-md {
    margin-top: 70px;
    margin-bottom: 70px; }
  .mh-7-md {
    margin-left: 70px;
    margin-right: 70px; }
  .mt-7-md {
    margin-top: 70px; }
  .mr-7-md {
    margin-right: 70px; }
  .mb-7-md {
    margin-bottom: 70px; }
  .ml-7-md {
    margin-left: 70px; }
  .nt-7-md {
    margin-top: -70px; }
  .nr-7-md {
    margin-right: -70px; }
  .nb-7-md {
    margin-bottom: -70px; }
  .nl-7-md {
    margin-left: -70px; }
  .ma-8-md {
    margin: 80px; }
  .mv-8-md {
    margin-top: 80px;
    margin-bottom: 80px; }
  .mh-8-md {
    margin-left: 80px;
    margin-right: 80px; }
  .mt-8-md {
    margin-top: 80px; }
  .mr-8-md {
    margin-right: 80px; }
  .mb-8-md {
    margin-bottom: 80px; }
  .ml-8-md {
    margin-left: 80px; }
  .nt-8-md {
    margin-top: -80px; }
  .nr-8-md {
    margin-right: -80px; }
  .nb-8-md {
    margin-bottom: -80px; }
  .nl-8-md {
    margin-left: -80px; }
  .ma-10-md {
    margin: 100px; }
  .mv-10-md {
    margin-top: 100px;
    margin-bottom: 100px; }
  .mh-10-md {
    margin-left: 100px;
    margin-right: 100px; }
  .mt-10-md {
    margin-top: 100px; }
  .mr-10-md {
    margin-right: 100px; }
  .mb-10-md {
    margin-bottom: 100px; }
  .ml-10-md {
    margin-left: 100px; }
  .nt-10-md {
    margin-top: -100px; }
  .nr-10-md {
    margin-right: -100px; }
  .nb-10-md {
    margin-bottom: -100px; }
  .nl-10-md {
    margin-left: -100px; }
  .ma-14-md {
    margin: 140px; }
  .mv-14-md {
    margin-top: 140px;
    margin-bottom: 140px; }
  .mh-14-md {
    margin-left: 140px;
    margin-right: 140px; }
  .mt-14-md {
    margin-top: 140px; }
  .mr-14-md {
    margin-right: 140px; }
  .mb-14-md {
    margin-bottom: 140px; }
  .ml-14-md {
    margin-left: 140px; }
  .nt-14-md {
    margin-top: -140px; }
  .nr-14-md {
    margin-right: -140px; }
  .nb-14-md {
    margin-bottom: -140px; }
  .nl-14-md {
    margin-left: -140px; }
  .ma-16-md {
    margin: 160px; }
  .mv-16-md {
    margin-top: 160px;
    margin-bottom: 160px; }
  .mh-16-md {
    margin-left: 160px;
    margin-right: 160px; }
  .mt-16-md {
    margin-top: 160px; }
  .mr-16-md {
    margin-right: 160px; }
  .mb-16-md {
    margin-bottom: 160px; }
  .ml-16-md {
    margin-left: 160px; }
  .nt-16-md {
    margin-top: -160px; }
  .nr-16-md {
    margin-right: -160px; }
  .nb-16-md {
    margin-bottom: -160px; }
  .nl-16-md {
    margin-left: -160px; }
  .mh-auto--md {
    margin: 0 auto; } }

@media (min-width: 1200px) {
  .pa-0-lg {
    padding: 0; }
  .pv-0-lg {
    padding-top: 0;
    padding-bottom: 0; }
  .ph-0-lg {
    padding-left: 0;
    padding-right: 0; }
  .pt-0-lg {
    padding-top: 0; }
  .pr-0-lg {
    padding-right: 0; }
  .pb-0-lg {
    padding-bottom: 0; }
  .pl-0-lg {
    padding-left: 0; }
  .pa-1\/10-lg {
    padding: 1px; }
  .pv-1\/10-lg {
    padding-top: 1px;
    padding-bottom: 1px; }
  .ph-1\/10-lg {
    padding-left: 1px;
    padding-right: 1px; }
  .pt-1\/10-lg {
    padding-top: 1px; }
  .pr-1\/10-lg {
    padding-right: 1px; }
  .pb-1\/10-lg {
    padding-bottom: 1px; }
  .pl-1\/10-lg {
    padding-left: 1px; }
  .pa-1\/5-lg {
    padding: 2px; }
  .pv-1\/5-lg {
    padding-top: 2px;
    padding-bottom: 2px; }
  .ph-1\/5-lg {
    padding-left: 2px;
    padding-right: 2px; }
  .pt-1\/5-lg {
    padding-top: 2px; }
  .pr-1\/5-lg {
    padding-right: 2px; }
  .pb-1\/5-lg {
    padding-bottom: 2px; }
  .pl-1\/5-lg {
    padding-left: 2px; }
  .pa-1\/4-lg {
    padding: 0.25rem; }
  .pv-1\/4-lg {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem; }
  .ph-1\/4-lg {
    padding-left: 0.25rem;
    padding-right: 0.25rem; }
  .pt-1\/4-lg {
    padding-top: 0.25rem; }
  .pr-1\/4-lg {
    padding-right: 0.25rem; }
  .pb-1\/4-lg {
    padding-bottom: 0.25rem; }
  .pl-1\/4-lg {
    padding-left: 0.25rem; }
  .pa-3\/4-lg {
    padding: 0.75rem; }
  .pv-3\/4-lg {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem; }
  .ph-3\/4-lg {
    padding-left: 0.75rem;
    padding-right: 0.75rem; }
  .pt-3\/4-lg {
    padding-top: 0.75rem; }
  .pr-3\/4-lg {
    padding-right: 0.75rem; }
  .pb-3\/4-lg {
    padding-bottom: 0.75rem; }
  .pl-3\/4-lg {
    padding-left: 0.75rem; }
  .pa-1\/8-lg {
    padding: 0.125rem; }
  .pv-1\/8-lg {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem; }
  .ph-1\/8-lg {
    padding-left: 0.125rem;
    padding-right: 0.125rem; }
  .pt-1\/8-lg {
    padding-top: 0.125rem; }
  .pr-1\/8-lg {
    padding-right: 0.125rem; }
  .pb-1\/8-lg {
    padding-bottom: 0.125rem; }
  .pl-1\/8-lg {
    padding-left: 0.125rem; }
  .pa-1\/2-lg {
    padding: 5px; }
  .pv-1\/2-lg {
    padding-top: 5px;
    padding-bottom: 5px; }
  .ph-1\/2-lg {
    padding-left: 5px;
    padding-right: 5px; }
  .pt-1\/2-lg {
    padding-top: 5px; }
  .pr-1\/2-lg {
    padding-right: 5px; }
  .pb-1\/2-lg {
    padding-bottom: 5px; }
  .pl-1\/2-lg {
    padding-left: 5px; }
  .pa-1-lg {
    padding: 10px; }
  .pv-1-lg {
    padding-top: 10px;
    padding-bottom: 10px; }
  .ph-1-lg {
    padding-left: 10px;
    padding-right: 10px; }
  .pt-1-lg {
    padding-top: 10px; }
  .pr-1-lg {
    padding-right: 10px; }
  .pb-1-lg {
    padding-bottom: 10px; }
  .pl-1-lg {
    padding-left: 10px; }
  .pa-3\/2-lg {
    padding: 15px; }
  .pv-3\/2-lg {
    padding-top: 15px;
    padding-bottom: 15px; }
  .ph-3\/2-lg {
    padding-left: 15px;
    padding-right: 15px; }
  .pt-3\/2-lg {
    padding-top: 15px; }
  .pr-3\/2-lg {
    padding-right: 15px; }
  .pb-3\/2-lg {
    padding-bottom: 15px; }
  .pl-3\/2-lg {
    padding-left: 15px; }
  .pa-2-lg {
    padding: 20px; }
  .pv-2-lg {
    padding-top: 20px;
    padding-bottom: 20px; }
  .ph-2-lg {
    padding-left: 20px;
    padding-right: 20px; }
  .pt-2-lg {
    padding-top: 20px; }
  .pr-2-lg {
    padding-right: 20px; }
  .pb-2-lg {
    padding-bottom: 20px; }
  .pl-2-lg {
    padding-left: 20px; }
  .pa-25-lg {
    padding: 25px; }
  .pv-25-lg {
    padding-top: 25px;
    padding-bottom: 25px; }
  .ph-25-lg {
    padding-left: 25px;
    padding-right: 25px; }
  .pt-25-lg {
    padding-top: 25px; }
  .pr-25-lg {
    padding-right: 25px; }
  .pb-25-lg {
    padding-bottom: 25px; }
  .pl-25-lg {
    padding-left: 25px; }
  .pa-3-lg {
    padding: 30px; }
  .pv-3-lg {
    padding-top: 30px;
    padding-bottom: 30px; }
  .ph-3-lg {
    padding-left: 30px;
    padding-right: 30px; }
  .pt-3-lg {
    padding-top: 30px; }
  .pr-3-lg {
    padding-right: 30px; }
  .pb-3-lg {
    padding-bottom: 30px; }
  .pl-3-lg {
    padding-left: 30px; }
  .pa-4-lg {
    padding: 40px; }
  .pv-4-lg {
    padding-top: 40px;
    padding-bottom: 40px; }
  .ph-4-lg {
    padding-left: 40px;
    padding-right: 40px; }
  .pt-4-lg {
    padding-top: 40px; }
  .pr-4-lg {
    padding-right: 40px; }
  .pb-4-lg {
    padding-bottom: 40px; }
  .pl-4-lg {
    padding-left: 40px; }
  .pa-5-lg {
    padding: 50px; }
  .pv-5-lg {
    padding-top: 50px;
    padding-bottom: 50px; }
  .ph-5-lg {
    padding-left: 50px;
    padding-right: 50px; }
  .pt-5-lg {
    padding-top: 50px; }
  .pr-5-lg {
    padding-right: 50px; }
  .pb-5-lg {
    padding-bottom: 50px; }
  .pl-5-lg {
    padding-left: 50px; }
  .pa-7-lg {
    padding: 70px; }
  .pv-7-lg {
    padding-top: 70px;
    padding-bottom: 70px; }
  .ph-7-lg {
    padding-left: 70px;
    padding-right: 70px; }
  .pt-7-lg {
    padding-top: 70px; }
  .pr-7-lg {
    padding-right: 70px; }
  .pb-7-lg {
    padding-bottom: 70px; }
  .pl-7-lg {
    padding-left: 70px; }
  .pa-8-lg {
    padding: 80px; }
  .pv-8-lg {
    padding-top: 80px;
    padding-bottom: 80px; }
  .ph-8-lg {
    padding-left: 80px;
    padding-right: 80px; }
  .pt-8-lg {
    padding-top: 80px; }
  .pr-8-lg {
    padding-right: 80px; }
  .pb-8-lg {
    padding-bottom: 80px; }
  .pl-8-lg {
    padding-left: 80px; }
  .pa-10-lg {
    padding: 100px; }
  .pv-10-lg {
    padding-top: 100px;
    padding-bottom: 100px; }
  .ph-10-lg {
    padding-left: 100px;
    padding-right: 100px; }
  .pt-10-lg {
    padding-top: 100px; }
  .pr-10-lg {
    padding-right: 100px; }
  .pb-10-lg {
    padding-bottom: 100px; }
  .pl-10-lg {
    padding-left: 100px; }
  .pa-14-lg {
    padding: 140px; }
  .pv-14-lg {
    padding-top: 140px;
    padding-bottom: 140px; }
  .ph-14-lg {
    padding-left: 140px;
    padding-right: 140px; }
  .pt-14-lg {
    padding-top: 140px; }
  .pr-14-lg {
    padding-right: 140px; }
  .pb-14-lg {
    padding-bottom: 140px; }
  .pl-14-lg {
    padding-left: 140px; }
  .pa-16-lg {
    padding: 160px; }
  .pv-16-lg {
    padding-top: 160px;
    padding-bottom: 160px; }
  .ph-16-lg {
    padding-left: 160px;
    padding-right: 160px; }
  .pt-16-lg {
    padding-top: 160px; }
  .pr-16-lg {
    padding-right: 160px; }
  .pb-16-lg {
    padding-bottom: 160px; }
  .pl-16-lg {
    padding-left: 160px; }
  .ma-0-lg {
    margin: 0; }
  .mv-0-lg {
    margin-top: 0;
    margin-bottom: 0; }
  .mh-0-lg {
    margin-left: 0;
    margin-right: 0; }
  .mt-0-lg {
    margin-top: 0; }
  .mr-0-lg {
    margin-right: 0; }
  .mb-0-lg {
    margin-bottom: 0; }
  .ml-0-lg {
    margin-left: 0; }
  .nt-0-lg {
    margin-top: -0; }
  .nr-0-lg {
    margin-right: -0; }
  .nb-0-lg {
    margin-bottom: -0; }
  .nl-0-lg {
    margin-left: -0; }
  .ma-1\/10-lg {
    margin: 1px; }
  .mv-1\/10-lg {
    margin-top: 1px;
    margin-bottom: 1px; }
  .mh-1\/10-lg {
    margin-left: 1px;
    margin-right: 1px; }
  .mt-1\/10-lg {
    margin-top: 1px; }
  .mr-1\/10-lg {
    margin-right: 1px; }
  .mb-1\/10-lg {
    margin-bottom: 1px; }
  .ml-1\/10-lg {
    margin-left: 1px; }
  .nt-1\/10-lg {
    margin-top: -1px; }
  .nr-1\/10-lg {
    margin-right: -1px; }
  .nb-1\/10-lg {
    margin-bottom: -1px; }
  .nl-1\/10-lg {
    margin-left: -1px; }
  .ma-1\/5-lg {
    margin: 2px; }
  .mv-1\/5-lg {
    margin-top: 2px;
    margin-bottom: 2px; }
  .mh-1\/5-lg {
    margin-left: 2px;
    margin-right: 2px; }
  .mt-1\/5-lg {
    margin-top: 2px; }
  .mr-1\/5-lg {
    margin-right: 2px; }
  .mb-1\/5-lg {
    margin-bottom: 2px; }
  .ml-1\/5-lg {
    margin-left: 2px; }
  .nt-1\/5-lg {
    margin-top: -2px; }
  .nr-1\/5-lg {
    margin-right: -2px; }
  .nb-1\/5-lg {
    margin-bottom: -2px; }
  .nl-1\/5-lg {
    margin-left: -2px; }
  .ma-1\/4-lg {
    margin: 0.25rem; }
  .mv-1\/4-lg {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem; }
  .mh-1\/4-lg {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }
  .mt-1\/4-lg {
    margin-top: 0.25rem; }
  .mr-1\/4-lg {
    margin-right: 0.25rem; }
  .mb-1\/4-lg {
    margin-bottom: 0.25rem; }
  .ml-1\/4-lg {
    margin-left: 0.25rem; }
  .nt-1\/4-lg {
    margin-top: -0.25rem; }
  .nr-1\/4-lg {
    margin-right: -0.25rem; }
  .nb-1\/4-lg {
    margin-bottom: -0.25rem; }
  .nl-1\/4-lg {
    margin-left: -0.25rem; }
  .ma-3\/4-lg {
    margin: 0.75rem; }
  .mv-3\/4-lg {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem; }
  .mh-3\/4-lg {
    margin-left: 0.75rem;
    margin-right: 0.75rem; }
  .mt-3\/4-lg {
    margin-top: 0.75rem; }
  .mr-3\/4-lg {
    margin-right: 0.75rem; }
  .mb-3\/4-lg {
    margin-bottom: 0.75rem; }
  .ml-3\/4-lg {
    margin-left: 0.75rem; }
  .nt-3\/4-lg {
    margin-top: -0.75rem; }
  .nr-3\/4-lg {
    margin-right: -0.75rem; }
  .nb-3\/4-lg {
    margin-bottom: -0.75rem; }
  .nl-3\/4-lg {
    margin-left: -0.75rem; }
  .ma-1\/8-lg {
    margin: 0.125rem; }
  .mv-1\/8-lg {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem; }
  .mh-1\/8-lg {
    margin-left: 0.125rem;
    margin-right: 0.125rem; }
  .mt-1\/8-lg {
    margin-top: 0.125rem; }
  .mr-1\/8-lg {
    margin-right: 0.125rem; }
  .mb-1\/8-lg {
    margin-bottom: 0.125rem; }
  .ml-1\/8-lg {
    margin-left: 0.125rem; }
  .nt-1\/8-lg {
    margin-top: -0.125rem; }
  .nr-1\/8-lg {
    margin-right: -0.125rem; }
  .nb-1\/8-lg {
    margin-bottom: -0.125rem; }
  .nl-1\/8-lg {
    margin-left: -0.125rem; }
  .ma-1\/2-lg {
    margin: 5px; }
  .mv-1\/2-lg {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mh-1\/2-lg {
    margin-left: 5px;
    margin-right: 5px; }
  .mt-1\/2-lg {
    margin-top: 5px; }
  .mr-1\/2-lg {
    margin-right: 5px; }
  .mb-1\/2-lg {
    margin-bottom: 5px; }
  .ml-1\/2-lg {
    margin-left: 5px; }
  .nt-1\/2-lg {
    margin-top: -5px; }
  .nr-1\/2-lg {
    margin-right: -5px; }
  .nb-1\/2-lg {
    margin-bottom: -5px; }
  .nl-1\/2-lg {
    margin-left: -5px; }
  .ma-1-lg {
    margin: 10px; }
  .mv-1-lg {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mh-1-lg {
    margin-left: 10px;
    margin-right: 10px; }
  .mt-1-lg {
    margin-top: 10px; }
  .mr-1-lg {
    margin-right: 10px; }
  .mb-1-lg {
    margin-bottom: 10px; }
  .ml-1-lg {
    margin-left: 10px; }
  .nt-1-lg {
    margin-top: -10px; }
  .nr-1-lg {
    margin-right: -10px; }
  .nb-1-lg {
    margin-bottom: -10px; }
  .nl-1-lg {
    margin-left: -10px; }
  .ma-3\/2-lg {
    margin: 15px; }
  .mv-3\/2-lg {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mh-3\/2-lg {
    margin-left: 15px;
    margin-right: 15px; }
  .mt-3\/2-lg {
    margin-top: 15px; }
  .mr-3\/2-lg {
    margin-right: 15px; }
  .mb-3\/2-lg {
    margin-bottom: 15px; }
  .ml-3\/2-lg {
    margin-left: 15px; }
  .nt-3\/2-lg {
    margin-top: -15px; }
  .nr-3\/2-lg {
    margin-right: -15px; }
  .nb-3\/2-lg {
    margin-bottom: -15px; }
  .nl-3\/2-lg {
    margin-left: -15px; }
  .ma-2-lg {
    margin: 20px; }
  .mv-2-lg {
    margin-top: 20px;
    margin-bottom: 20px; }
  .mh-2-lg {
    margin-left: 20px;
    margin-right: 20px; }
  .mt-2-lg {
    margin-top: 20px; }
  .mr-2-lg {
    margin-right: 20px; }
  .mb-2-lg {
    margin-bottom: 20px; }
  .ml-2-lg {
    margin-left: 20px; }
  .nt-2-lg {
    margin-top: -20px; }
  .nr-2-lg {
    margin-right: -20px; }
  .nb-2-lg {
    margin-bottom: -20px; }
  .nl-2-lg {
    margin-left: -20px; }
  .ma-25-lg {
    margin: 25px; }
  .mv-25-lg {
    margin-top: 25px;
    margin-bottom: 25px; }
  .mh-25-lg {
    margin-left: 25px;
    margin-right: 25px; }
  .mt-25-lg {
    margin-top: 25px; }
  .mr-25-lg {
    margin-right: 25px; }
  .mb-25-lg {
    margin-bottom: 25px; }
  .ml-25-lg {
    margin-left: 25px; }
  .nt-25-lg {
    margin-top: -25px; }
  .nr-25-lg {
    margin-right: -25px; }
  .nb-25-lg {
    margin-bottom: -25px; }
  .nl-25-lg {
    margin-left: -25px; }
  .ma-3-lg {
    margin: 30px; }
  .mv-3-lg {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mh-3-lg {
    margin-left: 30px;
    margin-right: 30px; }
  .mt-3-lg {
    margin-top: 30px; }
  .mr-3-lg {
    margin-right: 30px; }
  .mb-3-lg {
    margin-bottom: 30px; }
  .ml-3-lg {
    margin-left: 30px; }
  .nt-3-lg {
    margin-top: -30px; }
  .nr-3-lg {
    margin-right: -30px; }
  .nb-3-lg {
    margin-bottom: -30px; }
  .nl-3-lg {
    margin-left: -30px; }
  .ma-4-lg {
    margin: 40px; }
  .mv-4-lg {
    margin-top: 40px;
    margin-bottom: 40px; }
  .mh-4-lg {
    margin-left: 40px;
    margin-right: 40px; }
  .mt-4-lg {
    margin-top: 40px; }
  .mr-4-lg {
    margin-right: 40px; }
  .mb-4-lg {
    margin-bottom: 40px; }
  .ml-4-lg {
    margin-left: 40px; }
  .nt-4-lg {
    margin-top: -40px; }
  .nr-4-lg {
    margin-right: -40px; }
  .nb-4-lg {
    margin-bottom: -40px; }
  .nl-4-lg {
    margin-left: -40px; }
  .ma-5-lg {
    margin: 50px; }
  .mv-5-lg {
    margin-top: 50px;
    margin-bottom: 50px; }
  .mh-5-lg {
    margin-left: 50px;
    margin-right: 50px; }
  .mt-5-lg {
    margin-top: 50px; }
  .mr-5-lg {
    margin-right: 50px; }
  .mb-5-lg {
    margin-bottom: 50px; }
  .ml-5-lg {
    margin-left: 50px; }
  .nt-5-lg {
    margin-top: -50px; }
  .nr-5-lg {
    margin-right: -50px; }
  .nb-5-lg {
    margin-bottom: -50px; }
  .nl-5-lg {
    margin-left: -50px; }
  .ma-7-lg {
    margin: 70px; }
  .mv-7-lg {
    margin-top: 70px;
    margin-bottom: 70px; }
  .mh-7-lg {
    margin-left: 70px;
    margin-right: 70px; }
  .mt-7-lg {
    margin-top: 70px; }
  .mr-7-lg {
    margin-right: 70px; }
  .mb-7-lg {
    margin-bottom: 70px; }
  .ml-7-lg {
    margin-left: 70px; }
  .nt-7-lg {
    margin-top: -70px; }
  .nr-7-lg {
    margin-right: -70px; }
  .nb-7-lg {
    margin-bottom: -70px; }
  .nl-7-lg {
    margin-left: -70px; }
  .ma-8-lg {
    margin: 80px; }
  .mv-8-lg {
    margin-top: 80px;
    margin-bottom: 80px; }
  .mh-8-lg {
    margin-left: 80px;
    margin-right: 80px; }
  .mt-8-lg {
    margin-top: 80px; }
  .mr-8-lg {
    margin-right: 80px; }
  .mb-8-lg {
    margin-bottom: 80px; }
  .ml-8-lg {
    margin-left: 80px; }
  .nt-8-lg {
    margin-top: -80px; }
  .nr-8-lg {
    margin-right: -80px; }
  .nb-8-lg {
    margin-bottom: -80px; }
  .nl-8-lg {
    margin-left: -80px; }
  .ma-10-lg {
    margin: 100px; }
  .mv-10-lg {
    margin-top: 100px;
    margin-bottom: 100px; }
  .mh-10-lg {
    margin-left: 100px;
    margin-right: 100px; }
  .mt-10-lg {
    margin-top: 100px; }
  .mr-10-lg {
    margin-right: 100px; }
  .mb-10-lg {
    margin-bottom: 100px; }
  .ml-10-lg {
    margin-left: 100px; }
  .nt-10-lg {
    margin-top: -100px; }
  .nr-10-lg {
    margin-right: -100px; }
  .nb-10-lg {
    margin-bottom: -100px; }
  .nl-10-lg {
    margin-left: -100px; }
  .ma-14-lg {
    margin: 140px; }
  .mv-14-lg {
    margin-top: 140px;
    margin-bottom: 140px; }
  .mh-14-lg {
    margin-left: 140px;
    margin-right: 140px; }
  .mt-14-lg {
    margin-top: 140px; }
  .mr-14-lg {
    margin-right: 140px; }
  .mb-14-lg {
    margin-bottom: 140px; }
  .ml-14-lg {
    margin-left: 140px; }
  .nt-14-lg {
    margin-top: -140px; }
  .nr-14-lg {
    margin-right: -140px; }
  .nb-14-lg {
    margin-bottom: -140px; }
  .nl-14-lg {
    margin-left: -140px; }
  .ma-16-lg {
    margin: 160px; }
  .mv-16-lg {
    margin-top: 160px;
    margin-bottom: 160px; }
  .mh-16-lg {
    margin-left: 160px;
    margin-right: 160px; }
  .mt-16-lg {
    margin-top: 160px; }
  .mr-16-lg {
    margin-right: 160px; }
  .mb-16-lg {
    margin-bottom: 160px; }
  .ml-16-lg {
    margin-left: 160px; }
  .nt-16-lg {
    margin-top: -160px; }
  .nr-16-lg {
    margin-right: -160px; }
  .nb-16-lg {
    margin-bottom: -160px; }
  .nl-16-lg {
    margin-left: -160px; }
  .mh-auto--lg {
    margin: 0 auto; } }

.w-1 {
  width: 10px; }

.mw-1 {
  max-width: 10px; }

.nw-1 {
  min-width: 10px; }

.w-2 {
  width: 20px; }

.mw-2 {
  max-width: 20px; }

.nw-2 {
  min-width: 20px; }

.w-4 {
  width: 40px; }

.mw-4 {
  max-width: 40px; }

.nw-4 {
  min-width: 40px; }

.w-8 {
  width: 80px; }

.mw-8 {
  max-width: 80px; }

.nw-8 {
  min-width: 80px; }

.w-16 {
  width: 160px; }

.mw-16 {
  max-width: 160px; }

.nw-16 {
  min-width: 160px; }

.w-18 {
  width: 180px; }

.mw-18 {
  max-width: 180px; }

.nw-18 {
  min-width: 180px; }

.w-1\/10 {
  width: 10%; }

.mw-1\/10 {
  max-width: 10%; }

.nw-1\/10 {
  min-width: 10%; }

.w-1\/5 {
  width: 20%; }

.mw-1\/5 {
  max-width: 20%; }

.nw-1\/5 {
  min-width: 20%; }

.w-1\/4 {
  width: 25%; }

.mw-1\/4 {
  max-width: 25%; }

.nw-1\/4 {
  min-width: 25%; }

.w-3\/10 {
  width: 30%; }

.mw-3\/10 {
  max-width: 30%; }

.nw-3\/10 {
  min-width: 30%; }

.w-1\/3 {
  width: 33.3333%; }

.mw-1\/3 {
  max-width: 33.3333%; }

.nw-1\/3 {
  min-width: 33.3333%; }

.w-2\/5 {
  width: 40%; }

.mw-2\/5 {
  max-width: 40%; }

.nw-2\/5 {
  min-width: 40%; }

.w-1\/2 {
  width: 50%; }

.mw-1\/2 {
  max-width: 50%; }

.nw-1\/2 {
  min-width: 50%; }

.w-3\/5 {
  width: 60%; }

.mw-3\/5 {
  max-width: 60%; }

.nw-3\/5 {
  min-width: 60%; }

.w-7\/10 {
  width: 70%; }

.mw-7\/10 {
  max-width: 70%; }

.nw-7\/10 {
  min-width: 70%; }

.w-3\/4 {
  width: 75%; }

.mw-3\/4 {
  max-width: 75%; }

.nw-3\/4 {
  min-width: 75%; }

.w-4\/5 {
  width: 80%; }

.mw-4\/5 {
  max-width: 80%; }

.nw-4\/5 {
  min-width: 80%; }

.w-9\/10 {
  width: 90%; }

.mw-9\/10 {
  max-width: 90%; }

.nw-9\/10 {
  min-width: 90%; }

.w-full {
  width: 100%; }

.mw-full {
  max-width: 100%; }

.nw-full {
  min-width: 100%; }

.w-auto {
  width: 100%; }

.mw-auto {
  max-width: 100%; }

.nw-auto {
  min-width: 100%; }

@media (min-width: 768px) {
  .w-1-sm {
    width: 10px; }
  .mw-1-sm {
    max-width: 10px; }
  .nw-1-sm {
    min-width: 10px; }
  .w-2-sm {
    width: 20px; }
  .mw-2-sm {
    max-width: 20px; }
  .nw-2-sm {
    min-width: 20px; }
  .w-4-sm {
    width: 40px; }
  .mw-4-sm {
    max-width: 40px; }
  .nw-4-sm {
    min-width: 40px; }
  .w-8-sm {
    width: 80px; }
  .mw-8-sm {
    max-width: 80px; }
  .nw-8-sm {
    min-width: 80px; }
  .w-16-sm {
    width: 160px; }
  .mw-16-sm {
    max-width: 160px; }
  .nw-16-sm {
    min-width: 160px; }
  .w-18-sm {
    width: 180px; }
  .mw-18-sm {
    max-width: 180px; }
  .nw-18-sm {
    min-width: 180px; }
  .w-1\/10-sm {
    width: 10%; }
  .mw-1\/10-sm {
    max-width: 10%; }
  .nw-1\/10-sm {
    min-width: 10%; }
  .w-1\/5-sm {
    width: 20%; }
  .mw-1\/5-sm {
    max-width: 20%; }
  .nw-1\/5-sm {
    min-width: 20%; }
  .w-1\/4-sm {
    width: 25%; }
  .mw-1\/4-sm {
    max-width: 25%; }
  .nw-1\/4-sm {
    min-width: 25%; }
  .w-3\/10-sm {
    width: 30%; }
  .mw-3\/10-sm {
    max-width: 30%; }
  .nw-3\/10-sm {
    min-width: 30%; }
  .w-1\/3-sm {
    width: 33.3333%; }
  .mw-1\/3-sm {
    max-width: 33.3333%; }
  .nw-1\/3-sm {
    min-width: 33.3333%; }
  .w-2\/5-sm {
    width: 40%; }
  .mw-2\/5-sm {
    max-width: 40%; }
  .nw-2\/5-sm {
    min-width: 40%; }
  .w-1\/2-sm {
    width: 50%; }
  .mw-1\/2-sm {
    max-width: 50%; }
  .nw-1\/2-sm {
    min-width: 50%; }
  .w-3\/5-sm {
    width: 60%; }
  .mw-3\/5-sm {
    max-width: 60%; }
  .nw-3\/5-sm {
    min-width: 60%; }
  .w-7\/10-sm {
    width: 70%; }
  .mw-7\/10-sm {
    max-width: 70%; }
  .nw-7\/10-sm {
    min-width: 70%; }
  .w-3\/4-sm {
    width: 75%; }
  .mw-3\/4-sm {
    max-width: 75%; }
  .nw-3\/4-sm {
    min-width: 75%; }
  .w-4\/5-sm {
    width: 80%; }
  .mw-4\/5-sm {
    max-width: 80%; }
  .nw-4\/5-sm {
    min-width: 80%; }
  .w-9\/10-sm {
    width: 90%; }
  .mw-9\/10-sm {
    max-width: 90%; }
  .nw-9\/10-sm {
    min-width: 90%; }
  .w-full-sm {
    width: 100%; }
  .mw-full-sm {
    max-width: 100%; }
  .nw-full-sm {
    min-width: 100%; }
  .w-auto-sm {
    width: 100%; }
  .mw-auto-sm {
    max-width: 100%; }
  .nw-auto-sm {
    min-width: 100%; } }

@media (min-width: 992px) {
  .w-1-md {
    width: 10px; }
  .mw-1-md {
    max-width: 10px; }
  .nw-1-md {
    min-width: 10px; }
  .w-2-md {
    width: 20px; }
  .mw-2-md {
    max-width: 20px; }
  .nw-2-md {
    min-width: 20px; }
  .w-4-md {
    width: 40px; }
  .mw-4-md {
    max-width: 40px; }
  .nw-4-md {
    min-width: 40px; }
  .w-8-md {
    width: 80px; }
  .mw-8-md {
    max-width: 80px; }
  .nw-8-md {
    min-width: 80px; }
  .w-16-md {
    width: 160px; }
  .mw-16-md {
    max-width: 160px; }
  .nw-16-md {
    min-width: 160px; }
  .w-18-md {
    width: 180px; }
  .mw-18-md {
    max-width: 180px; }
  .nw-18-md {
    min-width: 180px; }
  .w-1\/10-md {
    width: 10%; }
  .mw-1\/10-md {
    max-width: 10%; }
  .nw-1\/10-md {
    min-width: 10%; }
  .w-1\/5-md {
    width: 20%; }
  .mw-1\/5-md {
    max-width: 20%; }
  .nw-1\/5-md {
    min-width: 20%; }
  .w-1\/4-md {
    width: 25%; }
  .mw-1\/4-md {
    max-width: 25%; }
  .nw-1\/4-md {
    min-width: 25%; }
  .w-3\/10-md {
    width: 30%; }
  .mw-3\/10-md {
    max-width: 30%; }
  .nw-3\/10-md {
    min-width: 30%; }
  .w-1\/3-md {
    width: 33.3333%; }
  .mw-1\/3-md {
    max-width: 33.3333%; }
  .nw-1\/3-md {
    min-width: 33.3333%; }
  .w-2\/5-md {
    width: 40%; }
  .mw-2\/5-md {
    max-width: 40%; }
  .nw-2\/5-md {
    min-width: 40%; }
  .w-1\/2-md {
    width: 50%; }
  .mw-1\/2-md {
    max-width: 50%; }
  .nw-1\/2-md {
    min-width: 50%; }
  .w-3\/5-md {
    width: 60%; }
  .mw-3\/5-md {
    max-width: 60%; }
  .nw-3\/5-md {
    min-width: 60%; }
  .w-7\/10-md {
    width: 70%; }
  .mw-7\/10-md {
    max-width: 70%; }
  .nw-7\/10-md {
    min-width: 70%; }
  .w-3\/4-md {
    width: 75%; }
  .mw-3\/4-md {
    max-width: 75%; }
  .nw-3\/4-md {
    min-width: 75%; }
  .w-4\/5-md {
    width: 80%; }
  .mw-4\/5-md {
    max-width: 80%; }
  .nw-4\/5-md {
    min-width: 80%; }
  .w-9\/10-md {
    width: 90%; }
  .mw-9\/10-md {
    max-width: 90%; }
  .nw-9\/10-md {
    min-width: 90%; }
  .w-full-md {
    width: 100%; }
  .mw-full-md {
    max-width: 100%; }
  .nw-full-md {
    min-width: 100%; }
  .w-auto-md {
    width: 100%; }
  .mw-auto-md {
    max-width: 100%; }
  .nw-auto-md {
    min-width: 100%; } }

@media (min-width: 1200px) {
  .w-1-lg {
    width: 10px; }
  .mw-1-lg {
    max-width: 10px; }
  .nw-1-lg {
    min-width: 10px; }
  .w-2-lg {
    width: 20px; }
  .mw-2-lg {
    max-width: 20px; }
  .nw-2-lg {
    min-width: 20px; }
  .w-4-lg {
    width: 40px; }
  .mw-4-lg {
    max-width: 40px; }
  .nw-4-lg {
    min-width: 40px; }
  .w-8-lg {
    width: 80px; }
  .mw-8-lg {
    max-width: 80px; }
  .nw-8-lg {
    min-width: 80px; }
  .w-16-lg {
    width: 160px; }
  .mw-16-lg {
    max-width: 160px; }
  .nw-16-lg {
    min-width: 160px; }
  .w-18-lg {
    width: 180px; }
  .mw-18-lg {
    max-width: 180px; }
  .nw-18-lg {
    min-width: 180px; }
  .w-1\/10-lg {
    width: 10%; }
  .mw-1\/10-lg {
    max-width: 10%; }
  .nw-1\/10-lg {
    min-width: 10%; }
  .w-1\/5-lg {
    width: 20%; }
  .mw-1\/5-lg {
    max-width: 20%; }
  .nw-1\/5-lg {
    min-width: 20%; }
  .w-1\/4-lg {
    width: 25%; }
  .mw-1\/4-lg {
    max-width: 25%; }
  .nw-1\/4-lg {
    min-width: 25%; }
  .w-3\/10-lg {
    width: 30%; }
  .mw-3\/10-lg {
    max-width: 30%; }
  .nw-3\/10-lg {
    min-width: 30%; }
  .w-1\/3-lg {
    width: 33.3333%; }
  .mw-1\/3-lg {
    max-width: 33.3333%; }
  .nw-1\/3-lg {
    min-width: 33.3333%; }
  .w-2\/5-lg {
    width: 40%; }
  .mw-2\/5-lg {
    max-width: 40%; }
  .nw-2\/5-lg {
    min-width: 40%; }
  .w-1\/2-lg {
    width: 50%; }
  .mw-1\/2-lg {
    max-width: 50%; }
  .nw-1\/2-lg {
    min-width: 50%; }
  .w-3\/5-lg {
    width: 60%; }
  .mw-3\/5-lg {
    max-width: 60%; }
  .nw-3\/5-lg {
    min-width: 60%; }
  .w-7\/10-lg {
    width: 70%; }
  .mw-7\/10-lg {
    max-width: 70%; }
  .nw-7\/10-lg {
    min-width: 70%; }
  .w-3\/4-lg {
    width: 75%; }
  .mw-3\/4-lg {
    max-width: 75%; }
  .nw-3\/4-lg {
    min-width: 75%; }
  .w-4\/5-lg {
    width: 80%; }
  .mw-4\/5-lg {
    max-width: 80%; }
  .nw-4\/5-lg {
    min-width: 80%; }
  .w-9\/10-lg {
    width: 90%; }
  .mw-9\/10-lg {
    max-width: 90%; }
  .nw-9\/10-lg {
    min-width: 90%; }
  .w-full-lg {
    width: 100%; }
  .mw-full-lg {
    max-width: 100%; }
  .nw-full-lg {
    min-width: 100%; }
  .w-auto-lg {
    width: 100%; }
  .mw-auto-lg {
    max-width: 100%; }
  .nw-auto-lg {
    min-width: 100%; } }

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

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

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

@media (min-width: 768px) {
  .text-left-sm {
    text-align: left; }
  .text-right-sm {
    text-align: right; }
  .text-center-sm {
    text-align: center; } }

@media (min-width: 992px) {
  .text-left-md {
    text-align: left; }
  .text-right-md {
    text-align: right; }
  .text-center-md {
    text-align: center; } }

@media (min-width: 1200px) {
  .text-left-lg {
    text-align: left; }
  .text-right-lg {
    text-align: right; }
  .text-center-lg {
    text-align: center; } }

.text-underline {
  text-decoration: underline; }

.flex {
  display: flex; }

.inline-flex {
  display: inline-flex; }

.flex-auto {
  flex: 1 1 auto;
  min-width: 0;
  /* 1 */
  min-height: 0;
  /* 1 */ }

.flex-none {
  flex: none; }

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

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

.flex-wrap {
  flex-wrap: wrap; }

.flex-nowrap {
  flex-wrap: nowrap; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-last {
  order: 99999; }

.flex-grow-0 {
  flex-grow: 0; }

.flex-grow-1 {
  flex-grow: 1; }

.flex-shrink-0 {
  flex-shrink: 0; }

.flex-shrink-1 {
  flex-shrink: 1; }

@media (max-width: 767px) {
  .flex-xs {
    display: flex; }
  .inline-flex-xs {
    display: inline-flex; }
  .flex-auto-xs {
    flex: 1 1 auto;
    min-width: 0;
    /* 1 */
    min-height: 0;
    /* 1 */ }
  .flex-none-xs {
    flex: none; }
  .flex-column-xs {
    flex-direction: column; }
  .flex-row-xs {
    flex-direction: row; }
  .flex-wrap-xs {
    flex-wrap: wrap; }
  .flex-nowrap-xs {
    flex-wrap: nowrap; }
  .flex-wrap-reverse-xs {
    flex-wrap: wrap-reverse; }
  .flex-column-reverse-xs {
    flex-direction: column-reverse; }
  .flex-row-reverse-xs {
    flex-direction: row-reverse; }
  .items-start-xs {
    align-items: flex-start; }
  .items-end-xs {
    align-items: flex-end; }
  .items-center-xs {
    align-items: center; }
  .items-baseline-xs {
    align-items: baseline; }
  .items-stretch-xs {
    align-items: stretch; }
  .self-start-xs {
    align-self: flex-start; }
  .self-end-xs {
    align-self: flex-end; }
  .self-center-xs {
    align-self: center; }
  .self-baseline-xs {
    align-self: baseline; }
  .self-stretch-xs {
    align-self: stretch; }
  .justify-start-xs {
    justify-content: flex-start; }
  .justify-end-xs {
    justify-content: flex-end; }
  .justify-center-xs {
    justify-content: center; }
  .justify-between-xs {
    justify-content: space-between; }
  .justify-around-xs {
    justify-content: space-around; }
  .content-start-xs {
    align-content: flex-start; }
  .content-end-xs {
    align-content: flex-end; }
  .content-center-xs {
    align-content: center; }
  .content-between-xs {
    align-content: space-between; }
  .content-around-xs {
    align-content: space-around; }
  .content-stretch-xs {
    align-content: stretch; }
  .order-0-xs {
    order: 0; }
  .order-1-xs {
    order: 1; }
  .order-2-xs {
    order: 2; }
  .order-3-xs {
    order: 3; }
  .order-4-xs {
    order: 4; }
  .order-5-xs {
    order: 5; }
  .order-6-xs {
    order: 6; }
  .order-7-xs {
    order: 7; }
  .order-8-xs {
    order: 8; }
  .order-last-xs {
    order: 99999; }
  .flex-grow-0-xs {
    flex-grow: 0; }
  .flex-grow-1-xs {
    flex-grow: 1; }
  .flex-shrink-0-xs {
    flex-shrink: 0; }
  .flex-shrink-1-xs {
    flex-shrink: 1; } }

@media (min-width: 768px) {
  .flex-sm {
    display: flex; }
  .inline-flex-sm {
    display: inline-flex; }
  .flex-auto-sm {
    flex: 1 1 auto;
    min-width: 0;
    /* 1 */
    min-height: 0;
    /* 1 */ }
  .flex-none-sm {
    flex: none; }
  .flex-column-sm {
    flex-direction: column; }
  .flex-row-sm {
    flex-direction: row; }
  .flex-wrap-sm {
    flex-wrap: wrap; }
  .flex-nowrap-sm {
    flex-wrap: nowrap; }
  .flex-wrap-reverse-sm {
    flex-wrap: wrap-reverse; }
  .flex-column-reverse-sm {
    flex-direction: column-reverse; }
  .flex-row-reverse-sm {
    flex-direction: row-reverse; }
  .items-start-sm {
    align-items: flex-start; }
  .items-end-sm {
    align-items: flex-end; }
  .items-center-sm {
    align-items: center; }
  .items-baseline-sm {
    align-items: baseline; }
  .items-stretch-sm {
    align-items: stretch; }
  .self-start-sm {
    align-self: flex-start; }
  .self-end-sm {
    align-self: flex-end; }
  .self-center-sm {
    align-self: center; }
  .self-baseline-sm {
    align-self: baseline; }
  .self-stretch-sm {
    align-self: stretch; }
  .justify-start-sm {
    justify-content: flex-start; }
  .justify-end-sm {
    justify-content: flex-end; }
  .justify-center-sm {
    justify-content: center; }
  .justify-between-sm {
    justify-content: space-between; }
  .justify-around-sm {
    justify-content: space-around; }
  .content-start-sm {
    align-content: flex-start; }
  .content-end-sm {
    align-content: flex-end; }
  .content-center-sm {
    align-content: center; }
  .content-between-sm {
    align-content: space-between; }
  .content-around-sm {
    align-content: space-around; }
  .content-stretch-sm {
    align-content: stretch; }
  .order-0-sm {
    order: 0; }
  .order-1-sm {
    order: 1; }
  .order-2-sm {
    order: 2; }
  .order-3-sm {
    order: 3; }
  .order-4-sm {
    order: 4; }
  .order-5-sm {
    order: 5; }
  .order-6-sm {
    order: 6; }
  .order-7-sm {
    order: 7; }
  .order-8-sm {
    order: 8; }
  .order-last-sm {
    order: 99999; }
  .flex-grow-0-sm {
    flex-grow: 0; }
  .flex-grow-1-sm {
    flex-grow: 1; }
  .flex-shrink-0-sm {
    flex-shrink: 0; }
  .flex-shrink-1-sm {
    flex-shrink: 1; } }

@media (min-width: 992px) {
  .flex-md {
    display: flex; }
  .inline-flex-md {
    display: inline-flex; }
  .flex-auto-md {
    flex: 1 1 auto;
    min-width: 0;
    /* 1 */
    min-height: 0;
    /* 1 */ }
  .flex-none-md {
    flex: none; }
  .flex-column-md {
    flex-direction: column; }
  .flex-row-md {
    flex-direction: row; }
  .flex-wrap-md {
    flex-wrap: wrap; }
  .flex-nowrap-md {
    flex-wrap: nowrap; }
  .flex-wrap-reverse-md {
    flex-wrap: wrap-reverse; }
  .flex-column-reverse-md {
    flex-direction: column-reverse; }
  .flex-row-reverse-md {
    flex-direction: row-reverse; }
  .items-start-md {
    align-items: flex-start; }
  .items-end-md {
    align-items: flex-end; }
  .items-center-md {
    align-items: center; }
  .items-baseline-md {
    align-items: baseline; }
  .items-stretch-md {
    align-items: stretch; }
  .self-start-md {
    align-self: flex-start; }
  .self-end-md {
    align-self: flex-end; }
  .self-center-md {
    align-self: center; }
  .self-baseline-md {
    align-self: baseline; }
  .self-stretch-md {
    align-self: stretch; }
  .justify-start-md {
    justify-content: flex-start; }
  .justify-end-md {
    justify-content: flex-end; }
  .justify-center-md {
    justify-content: center; }
  .justify-between-md {
    justify-content: space-between; }
  .justify-around-md {
    justify-content: space-around; }
  .content-start-md {
    align-content: flex-start; }
  .content-end-md {
    align-content: flex-end; }
  .content-center-md {
    align-content: center; }
  .content-between-md {
    align-content: space-between; }
  .content-around-md {
    align-content: space-around; }
  .content-stretch-md {
    align-content: stretch; }
  .order-0-md {
    order: 0; }
  .order-1-md {
    order: 1; }
  .order-2-md {
    order: 2; }
  .order-3-md {
    order: 3; }
  .order-4-md {
    order: 4; }
  .order-5-md {
    order: 5; }
  .order-6-md {
    order: 6; }
  .order-7-md {
    order: 7; }
  .order-8-md {
    order: 8; }
  .order-last-md {
    order: 99999; }
  .flex-grow-0-md {
    flex-grow: 0; }
  .flex-grow-1-md {
    flex-grow: 1; }
  .flex-shrink-0-md {
    flex-shrink: 0; }
  .flex-shrink-1-md {
    flex-shrink: 1; } }

@media (min-width: 1200px) {
  .flex-lg {
    display: flex; }
  .inline-flex-lg {
    display: inline-flex; }
  .flex-auto-lg {
    flex: 1 1 auto;
    min-width: 0;
    /* 1 */
    min-height: 0;
    /* 1 */ }
  .flex-none-lg {
    flex: none; }
  .flex-column-lg {
    flex-direction: column; }
  .flex-row-lg {
    flex-direction: row; }
  .flex-wrap-lg {
    flex-wrap: wrap; }
  .flex-nowrap-lg {
    flex-wrap: nowrap; }
  .flex-wrap-reverse-lg {
    flex-wrap: wrap-reverse; }
  .flex-column-reverse-lg {
    flex-direction: column-reverse; }
  .flex-row-reverse-lg {
    flex-direction: row-reverse; }
  .items-start-lg {
    align-items: flex-start; }
  .items-end-lg {
    align-items: flex-end; }
  .items-center-lg {
    align-items: center; }
  .items-baseline-lg {
    align-items: baseline; }
  .items-stretch-lg {
    align-items: stretch; }
  .self-start-lg {
    align-self: flex-start; }
  .self-end-lg {
    align-self: flex-end; }
  .self-center-lg {
    align-self: center; }
  .self-baseline-lg {
    align-self: baseline; }
  .self-stretch-lg {
    align-self: stretch; }
  .justify-start-lg {
    justify-content: flex-start; }
  .justify-end-lg {
    justify-content: flex-end; }
  .justify-center-lg {
    justify-content: center; }
  .justify-between-lg {
    justify-content: space-between; }
  .justify-around-lg {
    justify-content: space-around; }
  .content-start-lg {
    align-content: flex-start; }
  .content-end-lg {
    align-content: flex-end; }
  .content-center-lg {
    align-content: center; }
  .content-between-lg {
    align-content: space-between; }
  .content-around-lg {
    align-content: space-around; }
  .content-stretch-lg {
    align-content: stretch; }
  .order-0-lg {
    order: 0; }
  .order-1-lg {
    order: 1; }
  .order-2-lg {
    order: 2; }
  .order-3-lg {
    order: 3; }
  .order-4-lg {
    order: 4; }
  .order-5-lg {
    order: 5; }
  .order-6-lg {
    order: 6; }
  .order-7-lg {
    order: 7; }
  .order-8-lg {
    order: 8; }
  .order-last-lg {
    order: 99999; }
  .flex-grow-0-lg {
    flex-grow: 0; }
  .flex-grow-1-lg {
    flex-grow: 1; }
  .flex-shrink-0-lg {
    flex-shrink: 0; }
  .flex-shrink-1-lg {
    flex-shrink: 1; } }

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  font-weight: 600; }

h2, .h2, .f2 {
  font-size: 2.8rem;
  line-height: 2.4rem; }

h3, .h3, .f3 {
  font-size: 2.2rem; }

h4, .h4, .f4 {
  font-size: 1.8rem; }

@media (max-width: 767px) {
  h2, .h2, .f2 {
    font-size: 2.4rem; }
  h3, .h3, .f3 {
    font-size: 1.8rem; } }

.br0 {
  border-radius: 0; }

.br1 {
  border-radius: .125rem; }

.br2 {
  border-radius: .25rem; }

.br3 {
  border-radius: .5rem; }

.br4 {
  border-radius: 1rem; }

.br-100 {
  border-radius: 100%; }

.br-pill {
  border-radius: 9999px; }

.dn {
  display: none; }

.di {
  display: inline; }

.db {
  display: block; }

.dib {
  display: inline-block; }

.dit {
  display: inline-table; }

.dt {
  display: table; }

.dtc {
  display: table-cell; }

.dt-row {
  display: table-row; }

.dt-row-group {
  display: table-row-group; }

.dt-column {
  display: table-column; }

.dt-column-group {
  display: table-column-group; }

@media (min-width: 768px) {
  .dn-sm {
    display: none; }
  .di-sm {
    display: inline; }
  .db-sm {
    display: block; }
  .dib-sm {
    display: inline-block; }
  .dit-sm {
    display: inline-table; }
  .dt-sm {
    display: table; }
  .dtc-sm {
    display: table-cell; }
  .dt-row-sm {
    display: table-row; }
  .dt-row-group-sm {
    display: table-row-group; }
  .dt-column-sm {
    display: table-column; }
  .dt-column-group-sm {
    display: table-column-group; } }

@media (min-width: 992px) {
  .dn-md {
    display: none; }
  .di-md {
    display: inline; }
  .db-md {
    display: block; }
  .dib-md {
    display: inline-block; }
  .dit-md {
    display: inline-table; }
  .dt-md {
    display: table; }
  .dtc-md {
    display: table-cell; }
  .dt-row-md {
    display: table-row; }
  .dt-row-group-md {
    display: table-row-group; }
  .dt-column-md {
    display: table-column; }
  .dt-column-group-md {
    display: table-column-group; } }

@media (min-width: 1200px) {
  .dn-lg {
    display: none; }
  .di-lg {
    display: inline; }
  .db-lg {
    display: block; }
  .dib-lg {
    display: inline-block; }
  .dit-lg {
    display: inline-table; }
  .dt-lg {
    display: table; }
  .dtc-lg {
    display: table-cell; }
  .dt-row-lg {
    display: table-row; }
  .dt-row-group-lg {
    display: table-row-group; }
  .dt-column-lg {
    display: table-column; }
  .dt-column-group-lg {
    display: table-column-group; } }
/* for all pages should include this */
body {
    font-smoothing: subpixel-antialiased !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
    -moz-osx-font-smoothing: auto !important;
    text-shadow: 0 0 1em transparent, 1px 1px 1.2px rgba(0, 0, 0, 0.004);
    /*text-rendering: optimizeLegibility;*/
    -webkit-overflow-scrolling: touch;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    letter-spacing: 0.025em;
}
:focus, .focus {
    outline: none !important;
}
::-moz-focus-inner {
    border: 0 !important;
}

/* manual fix for bootstrap issue 14040, there is an unnecessary padding-right on modal open */
body.modal-open {
    overflow-y: auto;
    padding-right: 0 !important;
}
.ribbon-wrap {
    width: 92px;
    height: 95px;
    overflow: hidden;
    /* Hide when the size of width and height is exceeded */
    position: absolute;
    top: 10px;
    right: 10px;
}
.ribbon {
    position: relative;
    right: 28px;
    top: 15px;
    width: 176px;
    background-color: #FAA330;
    color: white;
    padding: 1px 0;
    text-align: center;
    transform: rotate(45deg);
    font-size: 22px;
    font-weight: bold;
}

.ribbon-wrap-mobile {
    width: 85px;
    height: 80px;
    overflow: hidden;
    /* Hide when the size of width and height is exceeded */
    position: absolute;
    top: 7.5px;
    right: 10px;
    border-radius: 5px;
}
.ribbon-mobile {
    position: relative;
    bottom: 10px;
    width: 140px;
    background-color: #FAA330;
    color: white;
    padding-top: 20px;
    padding-bottom: 5px;
    text-align: center;
    transform: rotate(45deg);
    font-size: 18px;
    font-weight: bold;
}

.list li:hover .ribbon,
.list li:focus .ribbon,
.list li:hover .ribbon-mobile,
.list li:focus .ribbon-mobile {
    opacity: 0.9;
}

.text-mobile {
    text-align:left;
    margin: 0px;
    height: 44px;
    vertical-align: middle;
    display: table-cell;
    padding-left: 15px;
    font-size: 16px;
}
/**
 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/chriskempson/tomorrow-theme
 * @author Rose Pritchard
 */

code[class*="language-"],
pre[class*="language-"] {
	color: #ccc;
	background: none;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;

}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #2d2d2d;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #999;
}

.token.punctuation {
	color: #ccc;
}

.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted {
	color: #e2777a;
}

.token.function-name {
	color: #6196cc;
}

.token.boolean,
.token.number,
.token.function {
	color: #f08d49;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
	color: #f8c555;
}

.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
	color: #cc99cd;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
	color: #7ec699;
}

.token.operator,
.token.entity,
.token.url {
	color: #67cdcc;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

.token.inserted {
	color: green;
}
