@charset "UTF-8";
/* ----------------------------------------------------------- */
/* == tingle v0.13.2 */
/* ----------------------------------------------------------- */
.tingle-modal * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease; }

/* confirm and alerts
-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center; }

/* modal
-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default; }

.tingle-modal--noClose .tingle-modal__close {
  display: none; }

.tingle-modal__close {
  position: fixed;
  top: 10px;
  right: 28px;
  z-index: 1000;
  padding: 0;
  width: 5rem;
  height: 5rem;
  border: none;
  background-color: transparent;
  color: #f0f0f0;
  font-size: 6rem;
  font-family: monospace;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: color .3s ease;
  transition: color .3s ease; }

.tingle-modal__closeLabel {
  display: none; }

.tingle-modal__close:hover {
  color: #fff; }

.tingle-modal-box {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(0.8);
          transform: scale(0.8); }

.tingle-modal-box__content {
  padding: 3rem 3rem; }

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto; }

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: ""; }

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  -webkit-transition: bottom .3s ease-in-out .3s;
  transition: bottom .3s ease-in-out .3s; }

/* state
-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0; }

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0; }

.tingle-enabled .tingle-content-wrapper {
  -webkit-filter: blur(8px);
          filter: blur(8px); }

.tingle-modal--visible {
  visibility: visible;
  opacity: 1; }

.tingle-modal--visible .tingle-modal-box {
  -webkit-transform: scale(1);
          transform: scale(1); }

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh; }

/* btn
-------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease; }

.tingle-btn--primary {
  background-color: #3498db; }

.tingle-btn--danger {
  background-color: #e74c3c; }

.tingle-btn--default {
  background-color: #34495e; }

.tingle-btn--pull-left {
  float: left; }

.tingle-btn--pull-right {
  float: right; }

/* responsive
-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%; }
  .tingle-modal-box {
    width: auto;
    border-radius: 0; }
  .tingle-modal-box__content {
    overflow-y: scroll; }
  .tingle-modal--noClose {
    top: 0; }
  .tingle-modal--noOverlayClose {
    padding-top: 0; }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%; }
  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #fff;
    line-height: 55px; }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; }
  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: .5rem;
    vertical-align: middle;
    font-size: 4rem; } }

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .tingle-modal {
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px); }
  @media (max-width: 540px) {
    .tingle-modal {
      -webkit-backdrop-filter: blur(8px);
              backdrop-filter: blur(8px); } }
  .tingle-enabled .tingle-content-wrapper {
    -webkit-filter: none;
            filter: none; } }

/*! instantsearch.js 2.8.0 | © Algolia Inc. and other contributors; Licensed MIT | github.com/algolia/instantsearch.js */
.ais-search-box {
  position: relative;
  max-width: 300px;
  width: 100%; }

.ais-search-box--input {
  /* search input */
  padding-left: 24px;
  height: 100%;
  width: 100%; }

.ais-search-box--magnifier {
  background: transparent;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: 4px;
  left: 7px; }

.ais-search-box--magnifier svg {
  display: block;
  vertical-align: middle;
  height: 14px;
  width: 14px; }

.ais-search-box--loading-indicator-wrapper {
  display: none;
  background: transparent;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: 4px;
  left: 7px; }

.ais-search-box--loading-indicator-wrapper svg {
  vertical-align: middle;
  height: 14px;
  width: 14px; }

.ais-search-box--reset {
  background: none;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  margin: 0;
  border: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.ais-search-box--reset svg {
  display: block;
  width: 12px;
  height: 12px; }

.ais-search-box--powered-by {
  font-size: .8em;
  text-align: right;
  margin-top: 2px; }

.ais-search-box--powered-by-link {
  display: inline-block;
  width: 45px;
  height: 16px;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  background-image: url('data:image/svg+xml;utf8,<svg width="169" height="54" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1366 362"><linearGradient id="a" x1="428.3" x2="434.1" y1="404.1" y2="409.9" gradientTransform="matrix(94.045 0 0 -94.072 -40381.5 38479.5)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="%2300aeff"/><stop offset="1" stop-color="%233369e7"/></linearGradient><path fill="url(%23a)" d="M61.8 15.4h242.8A43.4 43.4 0 0 1 348 58.8v242.9a43.4 43.4 0 0 1-43.4 43.4H61.8a43.4 43.4 0 0 1-43.4-43.4v-243a43.3 43.3 0 0 1 43.4-43.3z"/><path fill="%23fff" d="M187 98.7a93.1 93.1 0 1 0 0 186.3 93.1 93.1 0 0 0 0-186.3zm0 158.8a65.6 65.6 0 1 1 0-131.3 65.6 65.6 0 0 1 0 131.3zm0-117.8v48.9c0 1.4 1.5 2.4 2.8 1.7l43.4-22.5c1-.5 1.3-1.7.8-2.7a54 54 0 0 0-45-27.3c-1 0-2 .8-2 1.9zm-60.8-35.9l-5.7-5.7a14.2 14.2 0 0 0-20.2 0l-6.8 6.8a14.2 14.2 0 0 0 0 20.2l5.6 5.6c.9.9 2.2.7 3-.2a110 110 0 0 1 23.8-23.8c1-.6 1.1-2 .3-2.9zM217.5 89V77.7c0-7.9-6.4-14.3-14.3-14.3h-33.3c-7.9 0-14.3 6.4-14.3 14.3v11.6c0 1.3 1.2 2.2 2.5 1.9a104.2 104.2 0 0 1 57-.3 2 2 0 0 0 2.4-1.9z"/><path fill="%23182359" d="M842.5 267.6c0 26.7-6.8 46.2-20.5 58.6-13.7 12.4-34.6 18.6-62.8 18.6-10.3 0-31.7-2-48.8-5.8l6.3-31c14.3 3 33.2 3.8 43.1 3.8 15.7 0 26.9-3.2 33.6-9.6s10-15.9 10-28.5v-6.4c-3.9 1.9-9 3.8-15.3 5.8a75.7 75.7 0 0 1-21.8 2.9 82 82 0 0 1-29.5-5.1 61.7 61.7 0 0 1-37.7-39.8 144.7 144.7 0 0 1 .3-78.3 72.1 72.1 0 0 1 42.8-43.3 96.3 96.3 0 0 1 35.5-6.7 214 214 0 0 1 35.8 3.5c11.4 1.9 21.1 3.9 29 6.1v155.2zm-108.7-77.2c0 16.4 3.6 34.6 10.8 42.2a36.7 36.7 0 0 0 27.9 11.4 59.5 59.5 0 0 0 31-8.7v-97.1c-2.8-.6-14.5-3-25.8-3.3a39 39 0 0 0-32.6 14.7c-7.5 9.3-11.3 25.6-11.3 40.8zm294.3 0c0 13.2-1.9 23.2-5.8 34.1s-9.4 20.2-16.5 27.9c-7.1 7.7-15.6 13.7-25.6 17.9s-25.4 6.6-33.1 6.6a102 102 0 0 1-32.9-6.6 74.5 74.5 0 0 1-25.5-17.9 92.8 92.8 0 0 1-22.6-62 107 107 0 0 1 5.8-36.7c4-10.8 9.6-20 16.8-27.7s15.8-13.6 25.6-17.8c9.9-4.2 20.8-6.2 32.6-6.2s22.7 2.1 32.7 6.2a71.5 71.5 0 0 1 25.6 17.8 82.5 82.5 0 0 1 16.6 27.7c4.2 10.8 6.3 23.5 6.3 36.7zm-40 .1c0-16.9-3.7-31-10.9-40.8a35.2 35.2 0 0 0-30.2-14.8c-12.9 0-23 4.9-30.2 14.8a69 69 0 0 0-10.7 40.8c0 17.1 3.6 28.6 10.8 38.5a35 35 0 0 0 30.2 14.9c12.9 0 23-5 30.2-14.9a61.4 61.4 0 0 0 10.8-38.5zm127.1 86.4c-64.1.3-64.1-51.8-64.1-60.1L1051 32l39.1-6.2v183.6c0 4.7 0 34.5 25.1 34.6v32.9zm68.9 0h-39.3V108.1l39.3-6.2v175zm-19.7-193.5a23.7 23.7 0 0 0 0-47.4 23.7 23.7 0 1 0 0 47.4zm117.4 18.6c12.9 0 23.8 1.6 32.6 4.8 8.8 3.2 15.9 7.7 21.1 13.4s8.9 13.5 11.1 21.7a100 100 0 0 1 3.4 27.1v100.6c-6 1.3-15.1 2.8-27.3 4.6s-25.9 2.7-41.1 2.7c-10.1 0-19.4-1-27.7-2.9-8.4-1.9-15.5-5-21.5-9.3a45 45 0 0 1-13.9-16.6c-3.3-6.8-5-16.4-5-26.4 0-9.6 1.9-15.7 5.6-22.3 3.8-6.6 8.9-12 15.3-16.2a65.8 65.8 0 0 1 22.4-9 128.3 128.3 0 0 1 55.4.8v-6.4c0-4.5-.5-8.8-1.6-12.8-1.1-4.1-3-7.6-5.6-10.7-2.7-3.1-6.2-5.5-10.6-7.2s-10-3-16.7-3a142.7 142.7 0 0 0-43.1 6.9l-4.7-32.1a170.2 170.2 0 0 1 51.9-7.7zm3.3 141.9c12 0 20.9-.7 27.1-1.9v-39.8a93.2 93.2 0 0 0-36.1-1.9c-4.4.6-8.4 1.8-11.9 3.5s-6.4 4.1-8.5 7.2a13.6 13.6 0 0 0-3.2 9.6c0 9.2 3.2 14.5 9 18a44.9 44.9 0 0 0 23.6 5.3zM512.9 103c12.9 0 23.8 1.6 32.6 4.8a52.2 52.2 0 0 1 21.1 13.4 52.1 52.1 0 0 1 11.1 21.7 100 100 0 0 1 3.4 27.1v100.6c-6 1.3-15.1 2.8-27.3 4.6a283.4 283.4 0 0 1-41.1 2.7c-10.1 0-19.4-1-27.7-2.9-8.4-1.9-15.5-5-21.5-9.3a45 45 0 0 1-13.9-16.6c-3.3-6.8-5-16.4-5-26.4 0-9.6 1.9-15.7 5.6-22.3 3.8-6.6 8.9-12 15.3-16.2a65.8 65.8 0 0 1 22.4-9 128.3 128.3 0 0 1 55.4.8v-6.4c0-4.5-.5-8.8-1.6-12.8-1.1-4.1-3-7.6-5.6-10.7a26.3 26.3 0 0 0-10.6-7.2c-4.4-1.7-10-3-16.7-3a142.7 142.7 0 0 0-43.1 6.9l-4.7-32.1c4.9-1.7 12.2-3.4 21.6-5.1 9.4-1.8 19.5-2.6 30.3-2.6zm3.4 142c12 0 20.9-.7 27.1-1.9v-39.8a93.2 93.2 0 0 0-36.1-1.9c-4.4.6-8.4 1.8-11.9 3.5s-6.4 4.1-8.5 7.2a13.6 13.6 0 0 0-3.2 9.6c0 9.2 3.2 14.5 9 18s13.7 5.3 23.6 5.3zm158.5 31.9c-64.1.3-64.1-51.8-64.1-60.1L610.6 32l39.1-6.2v183.6c0 4.7 0 34.5 25.1 34.6v32.9z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle; }

.ais-search-box.ais-stalled-search .ais-search-box--magnifier-wrapper {
  display: none; }

.ais-search-box.ais-stalled-search .ais-search-box--loading-indicator-wrapper {
  display: block; }

.sbx-sffv {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 26px;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px; }

.sbx-sffv__wrapper {
  width: 100%;
  height: 100%; }

.sbx-sffv__input {
  display: inline-block;
  -webkit-transition: background .4s ease, -webkit-box-shadow .4s ease;
  transition: background .4s ease, -webkit-box-shadow .4s ease;
  transition: box-shadow .4s ease, background .4s ease;
  transition: box-shadow .4s ease, background .4s ease, -webkit-box-shadow .4s ease;
  border: 0;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 0 1px #CCCCCC;
          box-shadow: inset 0 0 0 1px #CCCCCC;
  background: #FFFFFF;
  padding: 0;
  padding-right: 20px;
  padding-left: 26px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  white-space: normal;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.sbx-sffv__input::-webkit-search-decoration, .sbx-sffv__input::-webkit-search-cancel-button, .sbx-sffv__input::-webkit-search-results-button, .sbx-sffv__input::-webkit-search-results-decoration {
  display: none; }

.sbx-sffv__input:hover {
  -webkit-box-shadow: inset 0 0 0 1px #b3b3b3;
          box-shadow: inset 0 0 0 1px #b3b3b3; }

.sbx-sffv__input:focus, .sbx-sffv__input:active {
  outline: 0;
  -webkit-box-shadow: inset 0 0 0 1px #337AB7;
          box-shadow: inset 0 0 0 1px #337AB7;
  background: #FFFFFF; }

.sbx-sffv__input::-webkit-input-placeholder {
  color: #BBBBBB; }

.sbx-sffv__input:-ms-input-placeholder {
  color: #BBBBBB; }

.sbx-sffv__input::-ms-input-placeholder {
  color: #BBBBBB; }

.sbx-sffv__input::placeholder {
  color: #BBBBBB; }

.sbx-sffv__submit {
  position: absolute;
  top: 0;
  right: inherit;
  left: 0;
  margin: 0;
  border: 0;
  border-radius: 3px 0 0 3px;
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
  width: 26px;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  font-size: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.sbx-sffv__submit::before {
  display: inline-block;
  margin-right: -4px;
  height: 100%;
  vertical-align: middle;
  content: ''; }

.sbx-sffv__submit:hover, .sbx-sffv__submit:active {
  cursor: pointer; }

.sbx-sffv__submit:focus {
  outline: 0; }

.sbx-sffv__submit svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  fill: #337AB7; }

.sbx-sffv__reset {
  display: none;
  position: absolute;
  top: 2px;
  right: 2px;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  fill: rgba(0, 0, 0, 0.5); }

.sbx-sffv__reset:focus {
  outline: 0; }

.sbx-sffv__reset svg {
  display: block;
  margin: 4px;
  width: 14px;
  height: 14px; }

.sbx-sffv__input:valid ~ .sbx-sffv__reset {
  display: block;
  -webkit-animation-name: sbx-reset-in;
  animation-name: sbx-reset-in;
  -webkit-animation-duration: .15s;
  animation-duration: .15s; }

@-webkit-keyframes sbx-reset-in {
  0% {
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes sbx-reset-in {
  0% {
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.ais-refinement-list--item em {
  font-style: normal;
  font-weight: bold; }

.ais-stats--header {
  /* widget header */ }

.ais-stats--body {
  /* widget body */ }

.ais-stats--time {
  /* processing time */ }

.ais-stats--footer {
  /* widget footer */ }

.ais-sort-by-selector--item {
  /* selector item */ }

.ais-hits__empty {
  /* empty container */ }

.ais-hits--item {
  /* hit item */ }

.ais-pagination--item {
  /* pagination item */
  display: inline-block;
  padding: 3px; }

.ais-pagination--item__disabled {
  /* disabled pagination item */
  visibility: hidden; }

.ais-pagination--item__active {
  /* active pagination item */ }

.ais-pagination--item__first {
  /* first pagination item */ }

.ais-pagination--item__previous {
  /* previous pagination item */ }

.ais-pagination--item__page {
  /* page pagination item */ }

.ais-pagination--item__next {
  /* next pagination item */ }

.ais-pagination--item__last {
  /* last pagination item */ }

.ais-pagination--link {
  /* pagination link */ }

.ais-refinement-list--header {
  /* widget header */ }

.ais-refinement-list--body {
  /* wudget footer */ }

.ais-refinement-list--list {
  /* item list */ }

.ais-refinement-list--item {
  /* list item */ }

.ais-refinement-list--item__active {
  /* active list item */ }

.ais-refinement-list--label {
  /* item label */ }

.ais-refinement-list--checkbox {
  /* item checkbox */ }

.ais-refinement-list--count {
  /* item count */ }

.ais-refinement-list--footer {
  /* widget footer */ }

/* Sub block for the show more of the refinement list */
.ais-show-more__active {
  /* Show more button is activated */ }

.ais-show-more__inactive {
  /* Show more button is deactivated */ }

.ais-menu--header {
  /* widget header */ }

.ais-menu--body {
  /* widget body */ }

.ais-menu--list {
  /* item list */ }

.ais-menu--item {
  /* list item */ }

.ais-menu--item__active {
  /* active list item */ }

.ais-menu--link {
  /* item link */ }

.ais-menu--count {
  /* item count */ }

.ais-menu--footer {
  /* widget footer */ }

.ais-toggle--header {
  /* widget header */ }

.ais-toggle--body {
  /* wudget body */ }

.ais-toggle--list {
  /* item list */ }

.ais-toggle--item {
  /* list item */ }

.ais-toggle--item__active {
  /* active list item */ }

.ais-toggle--label {
  /* item label */ }

.ais-toggle--checkbox {
  /* item checkbox */ }

.ais-toggle--count {
  /* item count */ }

.ais-toggle--footer {
  /* widget footer */ }

.ais-hierarchical-menu--header {
  /* widget header */ }

.ais-hierarchical-menu--body {
  /* widget body */ }

.ais-hierarchical-menu--list {
  /* item list */ }

.ais-hierarchical-menu--list__lvl0 {
  /* item list level 0 */ }

.ais-hierarchical-menu--list__lvl1 {
  /* item list level 1 */
  margin-left: 10px; }

.ais-hierarchical-menu--list__lvl2 {
  /* item list level 0 */
  margin-left: 10px; }

.ais-hierarchical-menu--item {
  /* list item */ }

.ais-hierarchical-menu--item__active {
  /* active list item */ }

.ais-hierarchical-menu--link {
  /* item link */ }

.ais-hierarchical-menu--count {
  /* item count */ }

.ais-hierarchical-menu--footer {
  /* widget footer */ }

.ais-range-input--fieldset {
  /* custom fieldset */
  margin: 0;
  padding: 0;
  border: 0; }

.ais-range-input--labelMin {
  /* custom label min */
  display: inline-block; }

.ais-range-input--inputMin {
  /* custom input min */
  min-width: 165px; }

.ais-range-input--inputMin:hover:disabled {
  cursor: not-allowed; }

.ais-range-input--separator {
  /* separator */
  margin: 0 5px; }

.ais-range-input--labelMax {
  /* custom label max */
  display: inline-block; }

.ais-range-input--inputMax {
  /* custom input max */
  min-width: 165px; }

.ais-range-input--inputMax:hover:disabled {
  cursor: not-allowed; }

.ais-range-input--submit {
  /* custom form button */
  margin-left: 5px; }

.ais-range-input--submit:disabled, .ais-range-input--submit:hover:disabled {
  cursor: not-allowed;
  background-color: #C9C9C9; }

.ais-range-slider .ais-range-slider--disabled {
  cursor: not-allowed; }

.ais-range-slider .ais-range-slider--disabled .ais-range-slider--handle {
  border-color: #DDD;
  cursor: not-allowed; }

.ais-range-slider .ais-range-slider--disabled .rheostat-horizontal .rheostat-progress {
  background-color: #DDD; }

.ais-range-slider .rheostat {
  overflow: visible;
  margin-top: 2em;
  margin-bottom: 2em; }

.ais-range-slider .rheostat-background {
  background-color: #FFFFFF;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  border-left: 2px solid #DDD;
  border-right: 2px solid #DDD;
  position: relative; }

.ais-range-slider .rheostat-horizontal .rheostat-background {
  height: 6px;
  top: 0;
  width: 100%; }

.ais-range-slider .rheostat-horizontal .rheostat-progress {
  background-color: #46AEDA;
  position: absolute;
  height: 4px;
  top: 1px; }

.ais-range-slider .rheostat-horizontal .rheostat-handle {
  margin-left: -12px;
  top: -7px; }

.ais-range-slider .rheostat-horizontal .rheostat-handle .ais-range-slider--tooltip {
  text-align: center;
  margin-left: -10px;
  width: 40px; }

.ais-range-slider .rheostat-horizontal .rheostat-handle::before, .ais-range-slider .rheostat-horizontal .rheostat-handle::after {
  top: 7px;
  height: 10px;
  width: 1px; }

.ais-range-slider .rheostat-horizontal .rheostat-handle::before {
  left: 10px; }

.ais-range-slider .rheostat-horizontal .rheostat-handle::after {
  left: 13px; }

.ais-range-slider--handle {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid #46AEDA;
  border-radius: 50%;
  cursor: pointer; }

.ais-range-slider--tooltip {
  position: absolute;
  background: #FFFFFF;
  top: -22px;
  font-size: .8em; }

.ais-range-slider--value {
  width: 40px;
  position: absolute;
  text-align: center;
  margin-left: -20px;
  padding-top: 15px;
  font-size: .8em; }

.ais-range-slider--marker {
  position: absolute;
  background: #DDD;
  margin-left: -1px;
  width: 1px;
  height: 5px; }

.ais-star-rating--header {
  /* widget header */ }

.ais-star-rating--body {
  /* wudget footer */ }

.ais-star-rating--list {
  /* item list */ }

.ais-star-rating--item {
  /* list item */
  vertical-align: middle; }

.ais-star-rating--item__active {
  /* active list item */
  font-weight: bold; }

.ais-star-rating--star {
  /* item star */
  display: inline-block;
  width: 1em;
  height: 1em; }

.ais-star-rating--star::before {
  content: '\2605';
  color: #FBAE00; }

.ais-star-rating--star__empty {
  /* empty star */
  display: inline-block;
  width: 1em;
  height: 1em; }

.ais-star-rating--star__empty::before {
  content: '\2606';
  color: #FBAE00; }

.ais-star-rating--link {
  /* item link */ }

.ais-star-rating--link__disabled {
  /* disabled list item */ }

.ais-star-rating--link__disabled .ais-star-rating--star::before {
  color: #C9C9C9; }

.ais-star-rating--link__disabled .ais-star-rating--star__empty::before {
  color: #C9C9C9; }

.ais-star-rating--count {
  /* item count */ }

.ais-star-rating--footer {
  /* widget footer */ }

.ais-price-ranges--header {
  /* widget header */ }

.ais-price-ranges--body {
  /* widget body */ }

.ais-price-ranges--footer {
  /* widget footer */ }

.ais-price-ranges--list {
  /* item list */ }

.ais-price-ranges--item {
  /* list item */ }

.ais-price-ranges--item__active {
  /* active list item */ }

.ais-price-ranges--link {
  /* item link */ }

.ais-price-ranges--form {
  /* custom form */ }

.ais-price-ranges--label {
  /* custom form label */ }

.ais-price-ranges--currency {
  /* currency */ }

.ais-price-ranges--input {
  /* custom form input */ }

.ais-price-ranges--separator {
  /* custom form separator */ }

.ais-price-ranges--button {
  /* custom form button */ }

.ais-clear-all--header {
  /* widget header */ }

.ais-clear-all--body {
  /* widget body */ }

.ais-clear-all--link {
  /* widget link */ }

.ais-clear-all--footer {
  /* widget footer */ }

.ais-current-refined-values--header {
  /* widget header */ }

.ais-current-refined-values--body {
  /* widget body */ }

.ais-current-refined-values--clear-all {
  /* widget clearAll link */ }

.ais-current-refined-values--list {
  /* widget list */ }

.ais-current-refined-values--item {
  /* widget item */ }

.ais-current-refined-values--link {
  /* widget link */ }

.ais-current-refined-values--count {
  /* widget count */ }

.ais-current-refined-values--footer {
  /* widget footer */ }

.ais-root__collapsible .ais-header {
  cursor: pointer; }

.ais-root__collapsed .ais-body, .ais-root__collapsed .ais-footer {
  display: none; }

.ais-breadcrumb--label,
.ais-breadcrumb--separator,
.ais-breadcrumb--home {
  display: inline;
  color: #3369E7; }

.ais-breadcrumb--item {
  display: inline; }

.ais-breadcrumb--disabledLabel {
  color: #444444;
  display: inline; }

.ais-geo-search {
  /* root element */
  height: 100%; }

.ais-geo-search--map {
  /* map element */
  height: 100%; }

.ais-geo-search--controls {
  /* map controls */ }

.ais-geo-search--clear {
  /* clear button */ }

.ais-geo-search--control {
  /* refine control */ }

.ais-geo-search--toggle-label {
  /* toggle label */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.ais-geo-search--toggle-input {
  /* toggle input */ }

.ais-geo-search--redo {
  /* redo button */ }

/*! instantsearch.js 2.8.0 | © Algolia Inc. and other contributors; Licensed MIT | github.com/algolia/instantsearch.js */
.ais-clear-all--link, .ais-current-refined-values--clear-all, .ais-price-ranges--button, .ais-range-input--submit, .ais-geo-search--clear, .ais-geo-search--redo {
  color: #FFFFFF;
  display: inline-block;
  background: #3369E7;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  padding: 4px 8px; }

.ais-clear-all--link:hover, .ais-current-refined-values--clear-all:hover, .ais-price-ranges--button:hover, .ais-range-input--submit:hover, .ais-geo-search--clear:hover, .ais-geo-search--redo:hover {
  text-decoration: none;
  color: #FFFFFF;
  background: #184ECD; }

.ais-clear-all--link-disabled, .ais-current-refined-values--clear-all-disabled {
  opacity: .5;
  pointer-events: none; }

.ais-current-refined-values--clear-all {
  margin-bottom: 5px; }

.ais-current-refined-values--item, .ais-hierarchical-menu--item, .ais-menu--item, .ais-refinement-list--item, .ais-star-rating--item, .ais-toggle--item, .ais-geo-search--toggle-label {
  font-size: 14px;
  line-height: 30px; }

.ais-current-refined-values--link, .ais-hierarchical-menu--link, .ais-menu--link, .ais-refinement-list--label, .ais-toggle--label, .ais-geo-search--toggle-label, .ais-price-ranges--link, .ais-star-rating--link {
  color: #3E82F7;
  text-decoration: none; }

.ais-current-refined-values--link:hover, .ais-hierarchical-menu--link:hover, .ais-menu--link:hover, .ais-refinement-list--label:hover, .ais-toggle--label:hover, .ais-geo-search--toggle-label:hover, .ais-price-ranges--link:hover, .ais-star-rating--link:hover {
  color: #184ECD;
  text-decoration: none; }

.ais-current-refined-values--count, .ais-hierarchical-menu--count, .ais-menu--count, .ais-refinement-list--count, .ais-star-rating--count, .ais-toggle--count {
  background: rgba(39, 81, 175, 0.1);
  border-radius: 31px;
  color: #3E82F7;
  padding: 2px 10px; }

.ais-hierarchical-menu--item__active > div > .ais-hierarchical-menu--link {
  font-weight: bold; }

.ais-hierarchical-menu--item__active > div > .ais-hierarchical-menu--link::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.ais-hierarchical-menu--link {
  position: relative; }

.ais-hierarchical-menu--link::after {
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 8 13' xmlns='http://www.w3.org/2000/svg'><path d='M1.5 1.5l5 4.98-5 5.02' stroke='%23697782' stroke-width='1.5' fill='none' fill-rule='evenodd' stroke-linecap='round' opacity='.4'/></svg>") no-repeat center center/contain;
  content: ' ';
  display: block;
  position: absolute;
  top: calc(50% - 14px / 2);
  right: -22px;
  height: 14px;
  width: 14px; }

select.ais-hits-per-page-selector, select.ais-numeric-selector, select.ais-sort-by-selector, select.ais-menu-select--select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFFFFF url("data:image/svg+xml;utf8,<svg viewBox='0 0 12 7' xmlns='http://www.w3.org/2000/svg'><path d='M11 1L6.02 6 1 1' stroke-width='1.5' stroke='%23BFC7D8' fill='none' fill-rule='evenodd' stroke-linecap='round'/></svg>") no-repeat center right 16px/10px;
  -webkit-box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2) !important;
          box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2) !important;
  border: solid 1px #D4D8E3 !important;
  border-radius: 4px;
  color: #697782;
  font-size: 12px;
  -webkit-transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  padding: 8px 32px 8px 16px;
  outline: none; }

.ais-menu--item__active > div > .ais-menu--link {
  font-weight: bold; }

.ais-menu button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px; }

.ais-refinement-list--item {
  line-height: 24px; }

.ais-refinement-list--item__active > div > .ais-refinement-list--label, .ais-refinement-list--item__active > div > .ais-toggle--label, .ais-refinement-list--item__active > div > .ais-geo-search--toggle-label {
  font-weight: bold; }

.ais-refinement-list--label, .ais-toggle--label, .ais-geo-search--toggle-label {
  cursor: pointer; }

.ais-refinement-list--label input[type="radio"], .ais-toggle--label input[type="radio"], .ais-geo-search--toggle-label input[type="radio"],
.ais-refinement-list--label input[type="checkbox"], .ais-toggle--label input[type="checkbox"], .ais-geo-search--toggle-label input[type="checkbox"] {
  margin-right: 5px; }

.ais-refinement-list div > button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px; }

.ais-pagination {
  background: #FFFFFF;
  -webkit-box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
          box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
  border: solid 1px #D4D8E3;
  border-radius: 4px;
  display: inline-block;
  padding: 8px 16px;
  width: auto; }

.ais-pagination--item {
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  width: 28px; }

.ais-pagination--item:hover {
  background: rgba(39, 81, 175, 0.1); }

.ais-pagination--item__disabled {
  color: #BBB;
  opacity: .5;
  pointer-events: none;
  visibility: visible; }

.ais-pagination--item__active {
  background: #3369E7; }

.ais-pagination--item__active .ais-pagination--link {
  color: #FFFFFF; }

.ais-pagination--link {
  color: #697782;
  display: block;
  text-decoration: none;
  width: 100%; }

.ais-pagination--link:hover {
  color: #3369E7;
  text-decoration: none; }

.ais-price-ranges--item {
  font-size: 14px;
  line-height: 24px; }

.ais-price-ranges--item__active {
  font-weight: bold; }

.ais-price-ranges--form {
  margin-top: 10px; }

.ais-price-ranges--input {
  background: #FFFFFF;
  -webkit-box-shadow: inset 0 1px 1px 0 rgba(85, 95, 110, 0.2);
          box-shadow: inset 0 1px 1px 0 rgba(85, 95, 110, 0.2);
  border: solid 1px #D4D8E3;
  border-radius: 4px;
  outline: none; }

.ais-price-ranges--button {
  border: 0;
  outline: none;
  margin-left: 5px;
  position: relative;
  top: -2px; }

.ais-range-input--inputMin, .ais-range-input--inputMax {
  background: #FFFFFF;
  -webkit-box-shadow: inset 0 1px 1px 0 rgba(85, 95, 110, 0.2);
          box-shadow: inset 0 1px 1px 0 rgba(85, 95, 110, 0.2);
  border: solid 1px #D4D8E3;
  border-radius: 4px;
  outline: none; }

.ais-range-input--submit {
  border: none;
  outline: none;
  margin-left: 5px;
  position: relative;
  top: -2px; }

.ais-range-slider--handle {
  border: 1px solid #3369E7; }

.ais-range-slider .rheostat-progress {
  background-color: #3369E7 !important; }

.ais-search-box {
  display: inline-block;
  position: relative;
  height: 46px;
  white-space: nowrap;
  font-size: 14px; }

.ais-search-box--input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  background: #FFFFFF;
  display: inline-block;
  border: 1px solid #D4D8E3;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
          box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
  -webkit-transition: background .4s ease, -webkit-box-shadow .4s ease;
  transition: background .4s ease, -webkit-box-shadow .4s ease;
  transition: box-shadow .4s ease, background .4s ease;
  transition: box-shadow .4s ease, background .4s ease, -webkit-box-shadow .4s ease;
  padding: 10px 10px 10px 35px;
  vertical-align: middle;
  white-space: normal;
  height: 100%;
  width: 100%; }

.ais-search-box--input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0; }

.ais-search-box--reset {
  fill: #BFC7D8;
  top: calc(50% - 12px / 2);
  right: 13px; }

.ais-search-box--magnifier {
  fill: #BFC7D8;
  left: 12px;
  top: calc(50% - 18px / 2); }

.ais-search-box--magnifier svg {
  height: 18px;
  width: 18px; }

.ais-search-box--loading-indicator-wrapper {
  fill: #BFC7D8;
  left: 12px;
  top: calc(50% - 18px / 2); }

.ais-search-box--loading-indicator-wrapper svg {
  height: 18px;
  width: 18px; }

.ais-stats {
  color: #697782;
  font-size: 14px;
  opacity: .6; }

.ais-toggle--item__active {
  font-weight: bold; }

.ais-breadcrumb--root .ais-breadcrumb--label,
.ais-breadcrumb--root .ais-breadcrumb--separator,
.ais-breadcrumb--root .ais-breadcrumb--home {
  display: inline;
  color: #3369E7; }

.ais-breadcrumb--root .ais-breadcrumb--label div,
.ais-breadcrumb--root .ais-breadcrumb--separator div,
.ais-breadcrumb--root .ais-breadcrumb--home div {
  display: inline; }

.ais-breadcrumb--root .ais-breadcrumb--disabledLabel {
  color: #444444;
  display: inline; }

.ais-breadcrumb--root .ais-breadcrumb--separator {
  position: relative;
  display: inline-block;
  height: 14px;
  width: 14px; }

.ais-breadcrumb--root .ais-breadcrumb--separator::after {
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 8 13' xmlns='http://www.w3.org/2000/svg'><path d='M1.5 1.5l5 4.98-5 5.02' stroke='%23697782' stroke-width='1.5' fill='none' fill-rule='evenodd' stroke-linecap='round' opacity='.4'/></svg>") no-repeat center center/contain;
  content: ' ';
  display: block;
  position: absolute;
  top: 2px;
  height: 14px;
  width: 14px; }

.ais-geo-search {
  position: relative; }

.ais-geo-search--clear {
  -webkit-box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
          box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
  border: solid 1px #D4D8E3;
  border-radius: 4px;
  padding: 8px 15px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.ais-geo-search--clear:hover {
  cursor: pointer; }

.ais-geo-search--control {
  position: absolute;
  top: 10px;
  left: 50px; }

.ais-geo-search--toggle-label {
  font-size: 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
          box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
  border: solid 1px #D4D8E3;
  border-radius: 4px;
  padding: 0 15px; }

.ais-geo-search--redo {
  -webkit-box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
          box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
  border: solid 1px #D4D8E3;
  border-radius: 4px;
  padding: 8px 15px; }

.ais-geo-search--redo:hover {
  cursor: pointer; }

.ais-geo-search--redo:disabled {
  background: #A0B8F3; }

[class^="ais-"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

[class^="ais-"] > *,
[class^="ais-"] > *::after,
[class^="ais-"] > *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.ais-header {
  border-bottom: 2px solid #EEE;
  font-size: .8em;
  margin: 0 0 6px;
  padding: 0 0 6px;
  text-transform: uppercase; }

.ml-stack-nav-toggle {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  width: 26px;
  height: 22px;
  border: 0;
  background: none;
  color: #525261;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  .ml-stack-nav-toggle__line {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 9px;
    background: #525261;
    opacity: 1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
    .ml-stack-nav-toggle__line:nth-child(2) {
      top: 9px; }
    .ml-stack-nav-toggle__line:nth-child(3) {
      top: 18px; }
  .ml-stack-nav-toggle.is-active .ml-stack-nav-toggle__line:nth-child(1) {
    top: 9px;
    left: 50%;
    width: 0; }
  .ml-stack-nav-toggle.is-active .ml-stack-nav-toggle__line:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .ml-stack-nav-toggle.is-active .ml-stack-nav-toggle__line:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.ml-stack-nav {
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%; }
  .ml-stack-nav *,
  .ml-stack-nav *:after,
  .ml-stack-nav *:before {
    -webkit-box-sizing: inherit;
            box-sizing: inherit; }
  .ml-stack-nav__menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 20px;
    z-index: 900;
    visibility: hidden;
    margin: 0;
    padding: 0;
    border: 1px solid #000;
    background-color: #fff;
    list-style-position: inside;
    -webkit-transition: visibility 0.3s, -webkit-transform 0.3s;
    transition: visibility 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, visibility 0.3s;
    transition: transform 0.3s, visibility 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); }
  .ml-stack-nav > .ml-stack-nav__menu {
    left: 0; }
  .ml-stack-nav--slide-left .ml-stack-nav__menu {
    right: 20px;
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); }
  .ml-stack-nav--slide-left > .ml-stack-nav__menu {
    right: 0; }
  .no-js .ml-stack-nav:target {
    position: static;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
    .no-js .ml-stack-nav:target .ml-stack-nav__menu {
      position: static;
      visibility: visible;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
  .no-js .ml-stack-nav .ml-stack-nav__next,
  .no-js .ml-stack-nav .ml-stack-nav__back {
    display: none; }

.is-open > .ml-stack-nav__menu {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.is-active > .ml-stack-nav__menu {
  overflow-x: hidden;
  overflow-y: auto; }

/**
 * Spacers
 */
.m-a-0 {
  margin: 0rem 0rem !important; }

.m-t-0 {
  margin-top: 0rem !important; }

.m-r-0 {
  margin-right: 0rem !important; }

.m-b-0 {
  margin-bottom: 0rem !important; }

.m-l-0 {
  margin-left: 0rem !important; }

.m-x-0 {
  margin-right: 0rem !important;
  margin-left: 0rem !important; }

.m-y-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important; }

.m-a-1 {
  margin: 2rem 2rem !important; }

.m-t-1 {
  margin-top: 2rem !important; }

.m-r-1 {
  margin-right: 2rem !important; }

.m-b-1 {
  margin-bottom: 2rem !important; }

.m-l-1 {
  margin-left: 2rem !important; }

.m-x-1 {
  margin-right: 2rem !important;
  margin-left: 2rem !important; }

.m-y-1 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important; }

.m-a-2 {
  margin: 4rem 4rem !important; }

.m-t-2 {
  margin-top: 4rem !important; }

.m-r-2 {
  margin-right: 4rem !important; }

.m-b-2 {
  margin-bottom: 4rem !important; }

.m-l-2 {
  margin-left: 4rem !important; }

.m-x-2 {
  margin-right: 4rem !important;
  margin-left: 4rem !important; }

.m-y-2 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important; }

.m-a-3 {
  margin: 6rem 6rem !important; }

.m-t-3 {
  margin-top: 6rem !important; }

.m-r-3 {
  margin-right: 6rem !important; }

.m-b-3 {
  margin-bottom: 6rem !important; }

.m-l-3 {
  margin-left: 6rem !important; }

.m-x-3 {
  margin-right: 6rem !important;
  margin-left: 6rem !important; }

.m-y-3 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important; }

.p-a-0 {
  padding: 0rem 0rem !important; }

.p-t-0 {
  padding-top: 0rem !important; }

.p-r-0 {
  padding-right: 0rem !important; }

.p-b-0 {
  padding-bottom: 0rem !important; }

.p-l-0 {
  padding-left: 0rem !important; }

.p-x-0 {
  padding-right: 0rem !important;
  padding-left: 0rem !important; }

.p-y-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important; }

.p-a-1 {
  padding: 2rem 2rem !important; }

.p-t-1 {
  padding-top: 2rem !important; }

.p-r-1 {
  padding-right: 2rem !important; }

.p-b-1 {
  padding-bottom: 2rem !important; }

.p-l-1 {
  padding-left: 2rem !important; }

.p-x-1 {
  padding-right: 2rem !important;
  padding-left: 2rem !important; }

.p-y-1 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important; }

.p-a-2 {
  padding: 4rem 4rem !important; }

.p-t-2 {
  padding-top: 4rem !important; }

.p-r-2 {
  padding-right: 4rem !important; }

.p-b-2 {
  padding-bottom: 4rem !important; }

.p-l-2 {
  padding-left: 4rem !important; }

.p-x-2 {
  padding-right: 4rem !important;
  padding-left: 4rem !important; }

.p-y-2 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important; }

.p-a-3 {
  padding: 6rem 6rem !important; }

.p-t-3 {
  padding-top: 6rem !important; }

.p-r-3 {
  padding-right: 6rem !important; }

.p-b-3 {
  padding-bottom: 6rem !important; }

.p-l-3 {
  padding-left: 6rem !important; }

.p-x-3 {
  padding-right: 6rem !important;
  padding-left: 6rem !important; }

.p-y-3 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important; }

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: "Roboto", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: 900; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: "Roboto", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/**
 * Slider specific styles
 */
.slider {
  position: relative;
  margin: 0 auto;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
  padding: 0; }

.frame,
.events_log {
  position: relative;
  width: 880px;
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap; }

.frame li {
  position: relative;
  display: inline-block;
  text-align: center;
  white-space: normal;
  vertical-align: top; }

.slides {
  display: inline-block;
  padding: 0; }
  .slides li {
    position: relative;
    display: inline-block;
    max-width: 100%; }

.simple > .frame li,
.rewind > .frame li,
.events > .frame li {
  width: 270px;
  margin-right: 10px; }

.dots {
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  width: 100%; }

.dots > li {
  background-color: #eee;
  border: 1px solid #666;
  border-radius: 5px;
  -webkit-box-shadow: inset 1px 1px 1px #888;
          box-shadow: inset 1px 1px 1px #888;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  cursor: pointer; }

.dots > li.active {
  background-color: #41ABE5;
  -webkit-box-shadow: inset 2px 0px 2px -2px #333;
          box-shadow: inset 2px 0px 2px -2px #333; }

.percentage .slides {
  display: block;
  padding: 0; }

.percentage .frame {
  width: 87.452%; }

.percentage li {
  width: 100%; }

.variablewidth li {
  max-width: 200px;
  width: auto;
  margin-right: 50px;
  display: inline-block;
  vertical-align: middle; }

.multipleelements li, .multislides li, .ease li {
  width: 300px;
  margin-right: 20px; }

.simple > .frame li:last-child,
.rewind > .frame li:last-child,
.events > .frame li:last-child,
.variablewidth li:last-child,
.multipleelements li:last-child,
.multislides li:last-child,
.ease li:last-child {
  margin-right: 0; }

.prev, .next {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  display: block;
  cursor: pointer; }

.next {
  right: 0; }

.prev {
  left: 0; }

.next.disabled,
.prev.disabled {
  opacity: .3;
  pointer-events: none; }

.next svg, .prev svg {
  width: 25px;
  -webkit-transition: .4s;
  transition: .4s; }

.next svg:hover, .prev svg:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

.events_log {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  background-color: #fcfcfc;
  border: 1px solid #d2d2d2;
  margin-top: -20px;
  margin-bottom: 20px; }

.events_log > span {
  display: none; }

.events_log > span:nth-last-child(-n+5) {
  display: block; }

/* Uncomment and set these variables to customize the grid. */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem; }

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem; }

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse; }

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse; }

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem; }

.col-xs {
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%; }

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%; }

.col-xs-2 {
  -ms-flex-preferred-size: 16.6666667%;
  flex-basis: 16.6666667%;
  max-width: 16.6666667%; }

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%; }

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%; }

.col-xs-5 {
  -ms-flex-preferred-size: 41.6666667%;
  flex-basis: 41.6666667%;
  max-width: 41.6666667%; }

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%; }

.col-xs-8 {
  -ms-flex-preferred-size: 66.6666667%;
  flex-basis: 66.6666667%;
  max-width: 66.6666667%; }

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%; }

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%; }

.col-xs-11 {
  -ms-flex-preferred-size: 91.6666667%;
  flex-basis: 91.6666667%;
  max-width: 91.6666667%; }

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

.col-xs-offset-1 {
  margin-left: 8.333%; }

.col-xs-offset-2 {
  margin-left: 16.6666667%; }

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

.col-xs-offset-4 {
  margin-left: 33.333%; }

.col-xs-offset-5 {
  margin-left: 41.6666667%; }

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

.col-xs-offset-7 {
  margin-left: 58.333%; }

.col-xs-offset-8 {
  margin-left: 66.6666667%; }

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

.col-xs-offset-10 {
  margin-left: 83.333%; }

.col-xs-offset-11 {
  margin-left: 91.6666667%; }

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start; }

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center; }

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end; }

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start; }

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center; }

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end; }

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between; }

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1; }

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1; }

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem; }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem; }
  .col-sm {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%; }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.6666667%;
    flex-basis: 16.6666667%;
    max-width: 16.6666667%; }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%; }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.6666667%;
    flex-basis: 41.6666667%;
    max-width: 41.6666667%; }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%; }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.6666667%;
    flex-basis: 66.6666667%;
    max-width: 66.6666667%; }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%; }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.6666667%;
    flex-basis: 91.6666667%;
    max-width: 91.6666667%; }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-sm-offset-1 {
    margin-left: 8.333%; }
  .col-sm-offset-2 {
    margin-left: 16.6666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.333%; }
  .col-sm-offset-5 {
    margin-left: 41.6666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.333%; }
  .col-sm-offset-8 {
    margin-left: 66.6666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.333%; }
  .col-sm-offset-11 {
    margin-left: 91.6666667%; }
  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center; }
  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start; }
  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }
  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end; }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between; }
  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; } }

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem; }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem; }
  .col-md {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%; }
  .col-md-2 {
    -ms-flex-preferred-size: 16.6666667%;
    flex-basis: 16.6666667%;
    max-width: 16.6666667%; }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%; }
  .col-md-5 {
    -ms-flex-preferred-size: 41.6666667%;
    flex-basis: 41.6666667%;
    max-width: 41.6666667%; }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%; }
  .col-md-8 {
    -ms-flex-preferred-size: 66.6666667%;
    flex-basis: 66.6666667%;
    max-width: 66.6666667%; }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%; }
  .col-md-11 {
    -ms-flex-preferred-size: 91.6666667%;
    flex-basis: 91.6666667%;
    max-width: 91.6666667%; }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-md-offset-1 {
    margin-left: 8.333%; }
  .col-md-offset-2 {
    margin-left: 16.6666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.333%; }
  .col-md-offset-5 {
    margin-left: 41.6666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.333%; }
  .col-md-offset-8 {
    margin-left: 66.6666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.333%; }
  .col-md-offset-11 {
    margin-left: 91.6666667%; }
  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center; }
  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start; }
  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }
  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end; }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between; }
  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; } }

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem; }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem; }
  .col-lg {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%; }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.6666667%;
    flex-basis: 16.6666667%;
    max-width: 16.6666667%; }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%; }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.6666667%;
    flex-basis: 41.6666667%;
    max-width: 41.6666667%; }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%; }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.6666667%;
    flex-basis: 66.6666667%;
    max-width: 66.6666667%; }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%; }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.6666667%;
    flex-basis: 91.6666667%;
    max-width: 91.6666667%; }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-lg-offset-1 {
    margin-left: 8.333%; }
  .col-lg-offset-2 {
    margin-left: 16.6666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.333%; }
  .col-lg-offset-5 {
    margin-left: 41.6666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.333%; }
  .col-lg-offset-8 {
    margin-left: 66.6666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.333%; }
  .col-lg-offset-11 {
    margin-left: 91.6666667%; }
  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center; }
  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start; }
  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }
  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end; }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between; }
  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; } }

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.main {
  position: relative; }

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

a {
  color: #3497DA;
  text-decoration: none;
  -webkit-transition: ease-in-out all .25s;
  transition: ease-in-out all .25s; }
  a:hover, a:active, a:focus {
    opacity: .5;
    text-decoration: underline; }

a:hover {
  text-decoration: none;
  border-bottom-color: #3497DA; }

img {
  max-width: 100%;
  height: auto; }

/**
 * Basic typography style for copy text
 */
html {
  font-size: 11px; }

body {
  font-family: "Roboto", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #454545;
  counter-reset: sidenote-counter;
  font-weight: 400;
  letter-spacing: .03em; }

h1 {
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  line-height: 5rem;
  font-weight: 600;
  font-style: normal;
  color: #454545; }

h2 {
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 600;
  font-style: normal;
  color: #5f5f5f; }

h3 {
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  font-style: normal;
  color: #929292; }

h4 {
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  font-style: normal;
  color: #c5c5c5; }

h5 {
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 600;
  font-style: normal;
  color: #d1d1d1; }

h6 {
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  line-height: 2.5rem;
  font-weight: 600;
  font-style: normal;
  color: #dedede; }

hr {
  display: block;
  border: 0;
  border-top: 1px solid #ecf0f1;
  margin: 2em auto;
  padding: 0;
  clear: both; }

article {
  position: relative; }

p,
ol,
ul,
table {
  font-size: 1.4rem;
  line-height: 2rem; }

p {
  vertical-align: baseline;
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-top: .7rem;
  margin-bottom: 1.4rem;
  padding-right: 0;
  vertical-align: baseline;
  letter-spacing: .03em; }

blockquote {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2rem; }

cite {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-top: 10px;
  letter-spacing: .5px;
  color: #8B959C;
  font-size: 1.5em; }

figure {
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  margin: 0 0 3em 0; }

figcaption {
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: baseline;
  position: relative; }
  figcaption h4 {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: normal;
    font-style: italic; }

figure.fullwidth figcaption {
  margin-right: 24%; }

/* Sidenotes, margin notes, figures, captions */
img {
  max-width: 100%; }

code {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 1.0rem;
  line-height: 1.42; }

.sans > code {
  font-size: 1.2rem; }

h1 > code,
h2 > code,
h3 > code {
  font-size: 0.80em; }

pre {
  background-color: #3d3d3d;
  padding: 1rem;
  overflow: auto;
  word-wrap: break-word;
  border-radius: 3px;
  font-size: 15px;
  line-height: 1.4em;
  word-wrap: break-word;
  text-align: justify; }
  pre code {
    font-size: 0.9rem;
    width: 52.5%;
    margin-left: 1rem;
    overflow-x: auto;
    background: transparent; }

code {
  color: #27AA5E;
  font-style: initial; }

.material-icons {
  vertical-align: middle;
  font-size: inherit; }
  .material-icons.dot {
    border: solid 3px;
    border-radius: 50%; }

ul.unstyled, header nav ul.main-menu > li.sub-menu ul.sub {
  margin: 0;
  padding: 0;
  list-style: none; }

ul li {
  margin-bottom: calc($spacer-xs / 2); }

.text-sm, .help-block {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300; }

.text-md, .customers blockquote {
  font-size: 2rem;
  line-height: 3rem; }

.text-lg {
  font-size: 3rem;
  line-height: 4rem; }

.text-huge {
  font-size: 5rem;
  line-height: 6rem;
  margin: 0; }

.lead {
  font-size: 2em;
  line-height: 3rem;
  color: #78C9CF; }

.light {
  font-weight: light; }

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

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

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

.text-normal {
  font-weight: normal; }

.text-italic {
  font-style: italic; }

.text-bold {
  font-weight: bold; }

.darken {
  background: rgba(49, 49, 49, 0.3); }

.lighten {
  background: rgba(255, 255, 255, 0.3); }

.text-default {
  color: #454545; }

.text-disabled, .text-muted, .help-block, .text-muted A, .help-block A {
  color: #bcc3c7; }

.text-primary {
  color: #0075A8; }

.text-secondary {
  color: #34495E; }

.text-success {
  color: #27AA5E; }

.text-info {
  color: #78C9CF; }

.text-warning {
  color: #F1C40F; }

.text-error {
  color: #F15354; }

.text-white {
  color: white; }

.text-black {
  color: #313131; }

.help-block {
  margin: 5px 0 0 0; }
  .help-block a {
    color: #3497DA; }

.bg-body {
  background: white; }

.bg-default, .pagination li {
  background-color: #f2f5f5; }

.bg-accent, body .hs-button.primary,
body input[type="submit"],
body input[type="button"],
body .hs-button.primary:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover,
body .hs-button.primary:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus {
  background-color: #a5c63b;
  color: white; }

.bg-disabled, .btn-disabled,
.btn.disabled, .pagination li.disabled, .inline-form .disabled.input-label, .inline-form .disabled.input-group-addon, .inline-form .disabled.inline-label, body .disabled.hs-button.primary,
body input.disabled[type="submit"],
body input.disabled[type="button"], .ais-infinite-hits--showmore button.disabled,
.btn[disabled], .pagination li[disabled], .inline-form .input-label[disabled], .inline-form .input-group-addon[disabled], .inline-form .inline-label[disabled], body .hs-button.primary[disabled],
body input[disabled][type="submit"],
body input[disabled][type="button"], .ais-infinite-hits--showmore button[disabled],
fieldset[disabled] .btn, fieldset[disabled] .pagination li, .pagination fieldset[disabled] li, fieldset[disabled] .inline-form .input-label, .inline-form fieldset[disabled] .input-label, fieldset[disabled] .inline-form .input-group-addon, .inline-form fieldset[disabled] .input-group-addon, fieldset[disabled] .inline-form .inline-label, .inline-form fieldset[disabled] .inline-label, fieldset[disabled] body .hs-button.primary, body fieldset[disabled] .hs-button.primary,
fieldset[disabled] body input[type="submit"], body fieldset[disabled] input[type="submit"],
fieldset[disabled] body input[type="button"], body fieldset[disabled] input[type="button"], fieldset[disabled] .ais-infinite-hits--showmore button, .ais-infinite-hits--showmore fieldset[disabled] button, input.disabled[type='text'], input[type='text'][disabled], input[type='text'][disabled]:hover,
input.disabled[type='password'],
input[type='password'][disabled],
input[type='password'][disabled]:hover,
input.disabled[type='number'],
input[type='number'][disabled],
input[type='number'][disabled]:hover,
input.disabled[type='date'],
input[type='date'][disabled],
input[type='date'][disabled]:hover,
input.disabled[type='email'],
input[type='email'][disabled],
input[type='email'][disabled]:hover,
input.disabled[type='search'],
input[type='search'][disabled],
input[type='search'][disabled]:hover,
input.disabled[type='tel'],
input[type='tel'][disabled],
input[type='tel'][disabled]:hover,
input.disabled[type='url'],
input[type='url'][disabled],
input[type='url'][disabled]:hover,
textarea.disabled,
textarea[disabled],
textarea[disabled]:hover {
  background-color: #d0d4d7;
  color: #7d8890; }

.bg-primary, [class^='btn-group'] .btn.active, [class^='btn-group'] .pagination li.active, .pagination [class^='btn-group'] li.active, [class^='btn-group'] .inline-form .active.input-label, .inline-form [class^='btn-group'] .active.input-label, [class^='btn-group'] .inline-form .active.input-group-addon, .inline-form [class^='btn-group'] .active.input-group-addon, [class^='btn-group'] .inline-form .active.inline-label, .inline-form [class^='btn-group'] .active.inline-label, [class^='btn-group'] body .active.hs-button.primary, body [class^='btn-group'] .active.hs-button.primary,
[class^='btn-group'] body input.active[type="submit"], body [class^='btn-group'] input.active[type="submit"],
[class^='btn-group'] body input.active[type="button"], body [class^='btn-group'] input.active[type="button"], [class^='btn-group'] .ais-infinite-hits--showmore button.active, .ais-infinite-hits--showmore [class^='btn-group'] button.active, [class^='btn-group'] .btn-xs.active {
  background-color: #0075A8; }

.bg-secondary {
  background-color: #34495E;
  color: white; }
  .bg-secondary h1, .bg-secondary h2, .bg-secondary h3, .bg-secondary h4, .bg-secondary h5, .bg-secondary h6 {
    color: #78C9CF; }

.bg-success {
  background-color: #27AA5E; }

.bg-info {
  background-color: #78C9CF; }

.bg-warning {
  background-color: #F1C40F; }

.bg-error {
  background-color: #F15354; }

.bg-link, .pagination li.active, .ais-infinite-hits--showmore button {
  background-color: #3497DA;
  color: white; }
  .bg-link *, .pagination li.active *, .ais-infinite-hits--showmore button * {
    color: white; }
  .bg-link .border-right > *, .pagination li.active .border-right > *, .ais-infinite-hits--showmore button .border-right > * {
    border-right: solid 2px #268bcf; }

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

.bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.3); }

.bg-transparent {
  background-color: transparent; }
  .bg-transparent a {
    border-bottom: none;
    padding: 0; }
    .bg-transparent a:before {
      display: none; }

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: '';
  display: table; }

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap; }

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.pull-right, .btn.has-label .btn-label, .pagination li.has-label .btn-label, .inline-form .has-label.input-label .btn-label, .inline-form .has-label.input-group-addon .btn-label, .inline-form .has-label.inline-label .btn-label, body .has-label.hs-button.primary .btn-label, body input.has-label[type="submit"] .btn-label, body input.has-label[type="button"] .btn-label, .ais-infinite-hits--showmore button.has-label .btn-label,
button.has-label .btn-label,
[class^='btn-'].has-label .btn-label {
  float: right !important; }

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

.inline-block > * {
  display: inline-block;
  vertical-align: middle; }

.p-a-xs {
  padding: 1rem; }

.p-t-xs {
  padding-top: 1rem; }

.p-r-xs {
  padding-right: 1rem; }

.p-b-xs {
  padding-bottom: 1rem; }

.p-l-xs {
  padding-left: 1rem; }

.p-h-xs {
  padding-left: 1rem;
  padding-right: 1rem; }

.p-v-xs, ul.checklist li {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.p-a-sm {
  padding: 2rem; }

.p-t-sm {
  padding-top: 2rem; }

.p-r-sm {
  padding-right: 2rem; }

.p-b-sm {
  padding-bottom: 2rem; }

.p-l-sm {
  padding-left: 2rem; }

.p-h-sm {
  padding-left: 2rem;
  padding-right: 2rem; }

.p-v-sm {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.p-a-md {
  padding: 4rem; }

.p-t-md {
  padding-top: 4rem; }

.p-r-md {
  padding-right: 4rem; }

.p-b-md {
  padding-bottom: 4rem; }

.p-l-md {
  padding-left: 4rem; }

.p-h-md {
  padding-right: 4rem;
  padding-left: 4rem; }

.p-v-md {
  padding-top: 4rem;
  padding-bottom: 4rem; }

.p-a-lg {
  padding: 6rem; }

.p-t-lg {
  padding-top: 6rem; }

.p-r-lg {
  padding-right: 6rem; }

.p-b-lg {
  padding-bottom: 6rem; }

.p-l-lg {
  padding-left: 6rem; }

.p-h-lg {
  padding-right: 6rem;
  padding-left: 6rem; }

.p-v-lg {
  padding-top: 6rem;
  padding-bottom: 6rem; }

.m-a-sm {
  margin: 2rem; }

.m-t-sm {
  margin-top: 2rem; }

.m-r-sm {
  margin-right: 2rem; }

.m-b-sm {
  margin-bottom: 2rem; }

.m-l-sm {
  margin-left: 2rem; }

.m-h-sm {
  margin-left: 2rem;
  margin-right: 2rem; }

.m-v-sm {
  margin-top: 2rem;
  margin-bottom: 2rem; }

.m-a-md {
  margin: 4rem; }

.m-t-md {
  margin-top: 4rem; }

.m-r-md {
  margin-right: 4rem; }

.m-b-md {
  margin-bottom: 4rem; }

.m-l-md {
  margin-left: 4rem; }

.m-h-md {
  margin-right: 4rem;
  margin-left: 4rem; }

.m-v-md {
  margin-top: 4rem;
  margin-bottom: 4rem; }

.m-a-lg {
  margin: 6rem; }

.m-t-lg {
  margin-top: 6rem; }

.m-r-lg {
  margin-right: 6rem; }

.m-b-lg {
  margin-bottom: 6rem; }

.m-l-lg {
  margin-left: 6rem; }

.m-h-lg {
  margin-right: 6rem;
  margin-left: 6rem; }

.m-v-lg {
  margin-top: 6rem;
  margin-bottom: 6rem; }

.m-0 {
  margin: 0; }

.p-0 {
  padding: 0; }

.sticky {
  position: fixed;
  top: 0;
  overflow: auto; }

.wrap {
  max-width: 1280px;
  margin: 0 auto; }

header {
  padding: 0 1rem;
  background-color: #2470A2;
  width: 100%;
  z-index: 1001; }
  header nav .sticky-header {
    background-color: #1F608B;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10; }
  header nav .cta-header {
    margin: 58px 0 0 0;
    padding: 1rem;
    list-style-type: none; }
  header nav ul.main-menu {
    padding: 0 2rem; }
    header nav ul.main-menu > li {
      display: inline-block;
      vertical-align: middle;
      margin: 0; }
      header nav ul.main-menu > li a.btn, header nav ul.main-menu > li .inline-form a.input-label, .inline-form header nav ul.main-menu > li a.input-label, header nav ul.main-menu > li .inline-form a.input-group-addon, .inline-form header nav ul.main-menu > li a.input-group-addon, header nav ul.main-menu > li .inline-form a.inline-label, .inline-form header nav ul.main-menu > li a.inline-label, header nav ul.main-menu > li body a.hs-button.primary, body header nav ul.main-menu > li a.hs-button.primary {
        border-bottom: 0;
        -webkit-transition: ease-in-out .15s all;
        transition: ease-in-out .15s all;
        color: white; }
        header nav ul.main-menu > li a.btn:hover, header nav ul.main-menu > li .inline-form a.input-label:hover, .inline-form header nav ul.main-menu > li a.input-label:hover, header nav ul.main-menu > li .inline-form a.input-group-addon:hover, .inline-form header nav ul.main-menu > li a.input-group-addon:hover, header nav ul.main-menu > li .inline-form a.inline-label:hover, .inline-form header nav ul.main-menu > li a.inline-label:hover,
        header nav ul.main-menu > li body a.hs-button.primary:hover, body header nav ul.main-menu > li a.hs-button.primary:hover {
          color: rgba(255, 255, 255, 0.5);
          background: #268bcf; }
      header nav ul.main-menu > li.sub-menu ul.sub {
        list-style: none;
        padding: 0;
        background-color: white;
        text-align: left;
        -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
                box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
        min-width: 250px;
        z-index: 1000; }
        header nav ul.main-menu > li.sub-menu ul.sub a {
          color: #3497DA;
          padding: .75rem 1rem;
          border-bottom: solid thin #ecf0f1; }
          header nav ul.main-menu > li.sub-menu ul.sub a:hover {
            background: #ecf0f1; }
  header .social img {
    -webkit-filter: grayscale(100%) brightness(1000%);
            filter: grayscale(100%) brightness(1000%); }
  header .social .btn, header .social .pagination li, .pagination header .social li, header .social .inline-form .input-label, .inline-form header .social .input-label, header .social .inline-form .input-group-addon, .inline-form header .social .input-group-addon, header .social .inline-form .inline-label, .inline-form header .social .inline-label, header .social body .hs-button.primary, body header .social .hs-button.primary,
  header .social body input[type="submit"], body header .social input[type="submit"],
  header .social body input[type="button"], body header .social input[type="button"], header .social .ais-infinite-hits--showmore button, .ais-infinite-hits--showmore header .social button {
    border: solid 2px rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: 90px;
    margin: 0 1rem; }
    header .social .btn:hover, header .social .pagination li:hover, .pagination header .social li:hover, header .social .inline-form .input-label:hover, .inline-form header .social .input-label:hover, header .social .inline-form .input-group-addon:hover, .inline-form header .social .input-group-addon:hover, header .social .inline-form .inline-label:hover, .inline-form header .social .inline-label:hover,
    header .social body .hs-button.primary:hover, body header .social .hs-button.primary:hover,
    header .social body input:hover[type="submit"], body header .social input:hover[type="submit"],
    header .social body input:hover[type="button"], body header .social input:hover[type="button"], header .social .ais-infinite-hits--showmore button:hover, .ais-infinite-hits--showmore header .social button:hover {
      background: rgba(255, 255, 255, 0.1); }
  header .sub-header {
    padding: 0 3rem; }

.mobile-header {
  display: none; }

.ml-stack-nav-toggle__line {
  background: #fff; }

.ml-stack-nav {
  top: 75px;
  right: 0;
  bottom: 0;
  left: 0;
  height: auto; }
  .ml-stack-nav__menu {
    list-style: none;
    border: none;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    background: #fff; }
  .ml-stack-nav__link {
    display: block;
    padding: 1rem; }
  .ml-stack-nav__item {
    border-bottom: solid thin #ecf0f1;
    font-size: 12px; }
    .ml-stack-nav__item a.btn, .ml-stack-nav__item .inline-form a.input-label, .inline-form .ml-stack-nav__item a.input-label, .ml-stack-nav__item .inline-form a.input-group-addon, .inline-form .ml-stack-nav__item a.input-group-addon, .ml-stack-nav__item .inline-form a.inline-label, .inline-form .ml-stack-nav__item a.inline-label, .ml-stack-nav__item body a.hs-button.primary, body .ml-stack-nav__item a.hs-button.primary {
      color: #3497DA;
      font-size: 12px; }
  .ml-stack-nav__item-inner {
    position: relative; }
  .ml-stack-nav__next {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    cursor: pointer;
    width: 70px;
    text-align: center;
    padding: 1rem; }
  .ml-stack-nav__back {
    width: 100%; }

.ml-stack-nav__item-inner {
  margin: 0 !important; }

.fixed-buttons {
  position: fixed;
  bottom: 0;
  right: 1rem;
  z-index: 9; }
  .fixed-buttons a.btn, .fixed-buttons .inline-form a.input-label, .inline-form .fixed-buttons a.input-label, .fixed-buttons .inline-form a.input-group-addon, .inline-form .fixed-buttons a.input-group-addon, .fixed-buttons .inline-form a.inline-label, .inline-form .fixed-buttons a.inline-label, .fixed-buttons body a.hs-button.primary, body .fixed-buttons a.hs-button.primary {
    border-radius: 5px 5px 0 0; }
    .fixed-buttons a.btn.contact-btn, .fixed-buttons .inline-form a.contact-btn.input-label, .inline-form .fixed-buttons a.contact-btn.input-label, .fixed-buttons .inline-form a.contact-btn.input-group-addon, .inline-form .fixed-buttons a.contact-btn.input-group-addon, .fixed-buttons .inline-form a.contact-btn.inline-label, .inline-form .fixed-buttons a.contact-btn.inline-label, .fixed-buttons body a.contact-btn.hs-button.primary, body .fixed-buttons a.contact-btn.hs-button.primary {
      padding: 1rem 2rem;
      margin-right: 5px; }

footer {
  padding: 0 1rem;
  position: relative;
  z-index: 1; }
  footer h3 {
    border-bottom: solid 2px #dee0e2;
    padding-bottom: 5px;
    margin-bottom: 10px; }
  footer ul.unstyled li, footer header nav ul.main-menu > li.sub-menu ul.sub li, header nav ul.main-menu > li.sub-menu footer ul.sub li {
    font-size: .75em;
    line-height: 1.25;
    margin-bottom: .75rem; }
  footer .hbspt-form form div, footer .hbspt-form .hs-form-field div {
    padding: 0; }
  footer .hbspt-form > form {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
    width: 100%; }
    footer .hbspt-form > form label {
      display: none; }
    footer .hbspt-form > form .hbspt-form .hs-form-field {
      background-color: red; }
  footer .hbspt-form .hs-input, footer .hbspt-form .input {
    width: 100%; }
  footer .hbspt-form .hs-form-field {
    width: 100%; }
  footer h6 {
    margin: 0; }

.news form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.news .hs-form label, .news .hs-form .hs-form-field > label {
  display: inline-block;
  margin-bottom: 0 !important; }

.news .hbspt-form form div, .news .hbspt-form .hs-form-field div {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
  -ms-flex: 0 1 auto !important;
  -webkit-box-flex: 0 !important;
  flex: 0 1 auto !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  padding-bottom: 0 !important; }

.news input.hs-button.primary.large {
  padding: 11px 17px !important; }

aside .aside-item {
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); }
  aside .aside-item .thumbnail {
    width: 100px;
    height: 100px; }
    aside .aside-item .thumbnail img {
      overflow: hidden;
      height: 100px;
      width: 265px;
      max-width: 666px;
      margin: -89px -82px; }
  aside .aside-item .aside-info {
    padding: 1rem; }
    aside .aside-item .aside-info h3 {
      margin: 0 0 5px 0;
      font-family: "Poppins", sans-serif;
      text-transform: none;
      font-weight: 300;
      font-size: 1.35em; }
    aside .aside-item .aside-info a {
      display: block;
      color: #3497DA; }
    aside .aside-item .aside-info + ul {
      display: block; }

aside.docs-sidebar nav ul {
  font-size: 1em;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0; }
  aside.docs-sidebar nav ul ul {
    list-style: none; }

aside nav#TableOfContents .active {
  font-weight: bold; }

aside nav#TableOfContents ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  aside nav#TableOfContents ul:first-child {
    padding: 0;
    margin: 0;
    border: none; }
  aside nav#TableOfContents ul li a {
    display: block;
    font-size: .75em;
    line-height: 1.25em;
    border-bottom: solid thin #ecf0f1;
    padding: .5em 0; }
  aside nav#TableOfContents ul ul {
    margin-left: .5em; }

.bio img {
  display: inline-block;
  vertical-align: middle; }

.hero {
  padding: 6rem 0;
  color: white;
  background-image: url(../../img/farm-k8s.svg);
  background-color: #2980B9;
  background-size: cover;
  background-position: center 60px;
  text-align: center;
  background-repeat: no-repeat; }
  .hero h1 {
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
    margin: 0;
    color: white; }

.wrapper {
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px; }

.shadow, .main-content ol {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); }

.rounded-corners {
  border-radius: 3px; }

.circle {
  border-radius: 50%; }

.box {
  border: #ecf0f1 solid 0.5px;
  -webkit-box-shadow: 0 0 5px #ecf0f1;
          box-shadow: 0 0 5px #ecf0f1;
  border-radius: 6px; }
  .box h2 {
    font-size: 2em;
    font-family: "Roboto", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 300; }
  .box h3 {
    border-bottom: solid #ecf0f1 2px;
    padding-bottom: 10px;
    margin-bottom: 20px; }
  .box > .bg-default, .pagination .box > li {
    background: rgba(236, 240, 241, 0.35); }

/*box list*/
.box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0; }

.box-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5em;
  width: 100%; }

@media all and (min-width: 40em) {
  .box-list-item {
    width: 50%; } }

@media all and (min-width: 60em) {
  .box-list-item {
    width: 33.33%; } }

.box-list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  width: 100%; }
  .box-list-content h2 {
    margin: 1rem 0; }
  .box-list-content p {
    margin: 0 0 1.25rem; }
  .box-list-content .img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 75px; }
    .box-list-content .img-wrap img {
      max-height: 60px;
      max-width: 80%; }
  .box-list-content footer {
    margin-top: auto; }

/*mosonry*/
.masonry {
  -webkit-animation: fade 2s;
          animation: fade 2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-column-gap: 2rem;
          column-gap: 2rem;
  position: relative;
  -webkit-column-count: 4;
          column-count: 4; }

.masonry * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

@media (min-width: 768px) {
  .masonry {
    -webkit-column-count: 2;
            column-count: 2; } }

@media (min-width: 992px) {
  .masonry {
    -webkit-column-count: 4;
            column-count: 4; } }

.panel {
  padding: 1rem 0; }

.panel-content {
  overflow: hidden;
  width: 100%; }

@media (min-width: 768px) {
  .panel {
    -webkit-column-break-inside: avoid;
            break-inside: avoid; } }

.border-right > * {
  border-right: solid 2px #ecf0f1; }
  .border-right > *:last-child {
    border-right: none; }

.border-bottom {
  border-bottom: solid 2px #ecf0f1; }
  .border-bottom:last-child {
    border-bottom: none; }

.cloud {
  background-image: url(../../img/cloud-band.svg);
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 14rem; }

.cloud-after {
  position: relative; }
  .cloud-after:after {
    content: url(../../img/cloud-band.svg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px; }
  .cloud-after div {
    position: relative; }

.main-content {
  /* Links: replicate underline that clears descenders */ }
  .main-content h3,
  .main-content h4,
  .main-content h5,
  .main-content h6 {
    margin-top: 0; }
  .main-content p {
    margin-bottom: 1.75em; }
  .main-content a:link {
    color: #3497DA; }
    .main-content a:link.btn, .main-content .inline-form a.input-label:link, .inline-form .main-content a.input-label:link, .main-content .inline-form a.input-group-addon:link, .inline-form .main-content a.input-group-addon:link, .main-content .inline-form a.inline-label:link, .inline-form .main-content a.inline-label:link, .main-content body a.hs-button.primary:link, body .main-content a.hs-button.primary:link {
      border-bottom: none;
      color: white; }
  .main-content h1 a:link,
  .main-content h2 a:link,
  .main-content h3 a:link,
  .main-content h4 a:link,
  .main-content h4 a:link,
  .main-content h6 a:link {
    border: 0; }
  .main-content ul {
    list-style-type: none; }
    .main-content ul > li {
      position: relative; }
      .main-content ul > li:before {
        font-family: 'Material Icons';
        content: "label";
        color: #8B959C;
        padding-right: 15px;
        position: absolute;
        left: -30px; }
    .main-content ul li:not(:first-child) {
      margin-top: 1rem; }
    .main-content ul p {
      margin: .7rem 0; }
    .main-content ul ul {
      list-style: none; }
      .main-content ul ul > li:before {
        font-family: 'Material Icons';
        content: "label";
        font-size: .75em;
        color: #a0ceee;
        margin-right: 10px;
        display: inline-block;
        vertical-align: middle;
        float: left; }
    .main-content ul > ol {
      font-size: 1em;
      list-style-type: lower-alpha; }
  .main-content ol {
    padding: 0;
    border: solid thin #dde4e6;
    padding: 4rem; }
    .main-content ol > li {
      counter-increment: step-counter;
      list-style-type: none;
      border-bottom: solid thin #ecf0f1;
      position: relative;
      padding: 1rem 0; }
      .main-content ol > li:before {
        content: counter(step-counter) ":";
        float: left;
        margin: .15em 0;
        padding-right: 1rem;
        color: #8B959C; }
      .main-content ol > li:last-child {
        border-bottom: none;
        padding-bottom: 0; }
      .main-content ol > li p {
        margin: 0 0 .7rem 0; }
      .main-content ol > li ol {
        counter-reset: step-counter;
        list-style-type: none;
        -webkit-box-shadow: none;
                box-shadow: none;
        border: none;
        padding: 0;
        margin-left: 4rem;
        padding-left: 2rem;
        border-left: solid thin #ecf0f1; }
        .main-content ol > li ol li {
          -webkit-box-shadow: none;
                  box-shadow: none; }
          .main-content ol > li ol li:before {
            content: counter(step-counter, lower-alpha);
            color: #3497DA; }
      .main-content ol > li ul {
        padding-left: 2rem;
        list-style-type: none; }
        .main-content ol > li ul li:before {
          content: "-";
          color: #dde4e6;
          display: inline-block;
          float: left;
          padding-right: .5em; }
        .main-content ol > li ul li ul li:before {
          content: "subdirectory_arrow_right";
          font-family: 'Material Icons';
          font-size: .75em;
          line-height: 1.5em; }
  .main-content blockquote {
    background: #f8f9fa;
    border-bottom-right-radius: 2px;
    border-left: 4px solid #3497DA;
    border-top-right-radius: 2px;
    margin: 2em 0;
    padding: 1rem 2rem;
    position: relative; }
    .main-content blockquote strong {
      display: block;
      color: #8B959C;
      font-style: initial;
      font-family: "Poppins", sans-serif;
      font-weight: 600; }
    .main-content blockquote p {
      font-size: 1em;
      margin-top: 0; }
      .main-content blockquote p:last-child {
        margin-bottom: 0; }

code {
  background-color: rgba(39, 170, 94, 0.15);
  padding: 2px 4px; }

table {
  border-spacing: 0;
  border-top: solid #ecf0f1 2px;
  border-bottom: solid #ecf0f1 2px;
  min-width: 100%;
  margin: 0 auto; }
  table thead {
    color: #3d3d3d; }
    table thead tr th {
      text-align: left;
      padding: 10px 5px; }
  table tbody {
    background: #ecf0f1; }
    table tbody tr:nth-child(even) {
      background: #fbfcfc; }
    table tbody tr td {
      text-align: left;
      padding: 12px 9px; }

ul.checklist {
  list-style-type: none;
  color: #454545;
  font-weight: 300;
  text-align: left;
  margin: 0; }
  ul.checklist li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    ul.checklist li:before {
      font-family: 'Material Icons';
      content: "\E876";
      color: #a5c63b;
      font-size: 1.5em;
      padding-right: .25em; }
    ul.checklist li strong {
      color: #a5c63b; }

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0; }
  .pagination li {
    margin: 0 3px; }

.detail {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  color: #8B959C;
  font-family: "Poppins", sans-serif;
  font-weight: light; }

.cta-banner {
  text-align: center;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px); }

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0; }

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute; }

@media all and (max-width: null) {
  .hidden-md {
    display: none; } }

/*695-959*/
@media all and (max-width: 414px) {
  .hidden-sm {
    display: none; }
  .col-reverse-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .map {
    display: none; } }

@media all and (max-width: 767px) {
  header {
    display: none; }
  h1, h2, h3, h4, h5, h6 {
    max-width: 100%;
    overflow-wrap: normal;
    word-wrap: normal; }
  h1 {
    font-size: 4em; }
  p {
    font-size: 1.25rem;
    line-height: 1.75rem; }
  *[class*=" col-"] img {
    max-width: 100%;
    height: auto; }
  a, p, pre, code, li > * {
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto; }
  .mobile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .hidden-md {
    display: none; }
  .border-right > * {
    border-bottom: solid 2px #ecf0f1;
    border-right: none; }
  .cta-banner {
    margin: 1rem auto;
    padding: 1rem; }
  .bg-link .border-right > *, .pagination li.active .border-right > *, .ais-infinite-hits--showmore button .border-right > * {
    border-bottom: solid 2px #268bcf;
    border-right: none;
    padding: 2rem 0; }
  .pagination li {
    padding: .5em; }
  *[class*="p-a-"],
  *[class*="p-v-"],
  *[class*="p-h-"],
  *[class*="p-t-"],
  *[class*="p-b-"],
  *[class*="p-l-"],
  *[class*="p-r-"] {
    padding: 1rem; }
  *[class*="m-a-"],
  *[class*="m-v-"],
  *[class*="m-h-"],
  *[class*="m-t-"],
  *[class*="m-b-"],
  *[class*="m-l-"],
  *[class*="m-r-"] {
    margin: 1rem; }
  ul,
  table {
    font-size: 1.25em;
    line-height: 1.25em; }
  .text-right {
    text-align: left; }
    .text-right > * {
      text-align: left; }
  .sticky #TableOfContents {
    display: none; }
  .add-cluster {
    background-image: url() !important; }
  .add-cluster .wrapper .p-v-lg {
    padding: 1rem 0; }
  .logo-bg {
    display: none; } }

@media all and (min-width: 1440px) {
  .hidden-lg {
    display: none; }
  .photo-bubbles {
    overflow: visible; } }

ol.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  font-size: .85em;
  margin: 0;
  line-height: 0;
  padding-left: 0;
  padding: 2rem 0; }
  ol.breadcrumbs li {
    list-style-type: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    padding: 0; }
    ol.breadcrumbs li:before {
      display: none; }
    ol.breadcrumbs li:after {
      content: "keyboard_arrow_right";
      font-family: 'Material Icons';
      padding: 0 5px;
      font-size: 1em;
      line-height: 1;
      display: inline-block;
      position: relative;
      top: 2px; }
    ol.breadcrumbs li:last-child:after {
      color: transparent; }

button {
  -webkit-appearance: none;
  background-color: transparent; }

.btn, .pagination li, .inline-form .input-label, .inline-form .input-group-addon, .inline-form .inline-label, body .hs-button.primary,
body input[type="submit"],
body input[type="button"],
body .hs-button.primary:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover,
body .hs-button.primary:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus, .ais-infinite-hits--showmore button,
button,
[class^='btn-'] {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0 solid transparent;
  padding: 0.75rem 1.25rem;
  border-radius: 1.5px;
  font-size: 1.4rem;
  color: white; }
  .btn.bg-transparent, .pagination li.bg-transparent, .inline-form .bg-transparent.input-label, .inline-form .bg-transparent.input-group-addon, .inline-form .bg-transparent.inline-label, body .bg-transparent.hs-button.primary,
  body input.bg-transparent[type="submit"],
  body input.bg-transparent[type="button"], .ais-infinite-hits--showmore button.bg-transparent,
  button.bg-transparent,
  [class^='btn-'].bg-transparent {
    color: #268bcf; }
  .btn:hover, .pagination li:hover, .inline-form .input-label:hover, .inline-form .input-group-addon:hover, .inline-form .inline-label:hover,
  body .hs-button.primary:hover,
  body input:hover[type="submit"],
  body input:hover[type="button"], .ais-infinite-hits--showmore button:hover,
  button:hover,
  [class^='btn-']:hover {
    text-decoration: none; }
  .btn.has-label, .pagination li.has-label, .inline-form .has-label.input-label, .inline-form .has-label.input-group-addon, .inline-form .has-label.inline-label, body .has-label.hs-button.primary,
  body input.has-label[type="submit"],
  body input.has-label[type="button"],
  body input.has-label[type="submit"]:hover,
  body input.has-label[type="button"]:hover,
  body input.has-label[type="submit"]:focus,
  body input.has-label[type="button"]:focus, .ais-infinite-hits--showmore button.has-label,
  button.has-label,
  [class^='btn-'].has-label {
    text-align: left;
    padding: 5px 0 5px 15px;
    clear: both; }
    .btn.has-label .btn-label, .pagination li.has-label .btn-label, .inline-form .has-label.input-label .btn-label, .inline-form .has-label.input-group-addon .btn-label, .inline-form .has-label.inline-label .btn-label, body .has-label.hs-button.primary .btn-label, body input.has-label[type="submit"] .btn-label, body input.has-label[type="button"] .btn-label, .ais-infinite-hits--showmore button.has-label .btn-label,
    button.has-label .btn-label,
    [class^='btn-'].has-label .btn-label {
      text-align: center;
      min-width: 60px;
      padding: 5px 10px;
      border-radius: 0 3px 3px 0;
      background: rgba(139, 149, 156, 0.3);
      margin-top: -5px; }
    .btn.has-label .clip, .pagination li.has-label .clip, .inline-form .has-label.input-label .clip, .inline-form .has-label.input-group-addon .clip, .inline-form .has-label.inline-label .clip, body .has-label.hs-button.primary .clip, body input.has-label[type="submit"] .clip, body input.has-label[type="button"] .clip, .ais-infinite-hits--showmore button.has-label .clip,
    button.has-label .clip,
    [class^='btn-'].has-label .clip {
      max-width: calc(100% - 75px);
      display: inline-block;
      vertical-align: middle; }
  .btn.more-actions, .pagination li.more-actions, .inline-form .more-actions.input-label, .inline-form .more-actions.input-group-addon, .inline-form .more-actions.inline-label, body .more-actions.hs-button.primary,
  body input.more-actions[type="submit"],
  body input.more-actions[type="button"], .ais-infinite-hits--showmore button.more-actions,
  button.more-actions,
  [class^='btn-'].more-actions {
    background: #cbe4f6; }
    .btn.more-actions.bg-transparent:hover, .pagination li.more-actions.bg-transparent:hover, .inline-form .more-actions.bg-transparent.input-label:hover, .inline-form .more-actions.bg-transparent.input-group-addon:hover, .inline-form .more-actions.bg-transparent.inline-label:hover, body .more-actions.bg-transparent.hs-button.primary:hover,
    body input.more-actions.bg-transparent:hover[type="submit"],
    body input.more-actions.bg-transparent:hover[type="button"], .ais-infinite-hits--showmore button.more-actions.bg-transparent:hover,
    button.more-actions.bg-transparent:hover,
    [class^='btn-'].more-actions.bg-transparent:hover {
      color: #8ac3ea; }
    .btn.more-actions:focus, .pagination li.more-actions:focus, .inline-form .more-actions.input-label:focus, .inline-form .more-actions.input-group-addon:focus, .inline-form .more-actions.inline-label:focus,
    body .more-actions.hs-button.primary:focus,
    body input.more-actions:focus[type="submit"],
    body input.more-actions:focus[type="button"], .ais-infinite-hits--showmore button.more-actions:focus,
    button.more-actions:focus,
    [class^='btn-'].more-actions:focus {
      outline: 0; }
    .btn.more-actions:hover, .pagination li.more-actions:hover, .inline-form .more-actions.input-label:hover, .inline-form .more-actions.input-group-addon:hover, .inline-form .more-actions.inline-label:hover,
    body .more-actions.hs-button.primary:hover,
    body input.more-actions:hover[type="submit"],
    body input.more-actions:hover[type="button"], .ais-infinite-hits--showmore button.more-actions:hover,
    button.more-actions:hover,
    [class^='btn-'].more-actions:hover {
      background: #5fade2; }

.icon-btn {
  padding: 0; }
  .icon-btn.btn-sm {
    padding: 0; }
  .icon-btn .darken {
    padding: 5px 10px;
    display: inline-block; }
    .icon-btn .darken i {
      position: relative;
      top: -1px; }
  .icon-btn span {
    padding: 0 10px 0 5px;
    vertical-align: middle; }

.btn-xs,
.btn-group-xs > .btn,
.pagination .btn-group-xs > li,
.inline-form .btn-group-xs > .input-label,
.inline-form .btn-group-xs > .input-group-addon,
.inline-form .btn-group-xs > .inline-label,
body .btn-group-xs > .hs-button.primary,
body .btn-group-xs > input[type="submit"],
body .btn-group-xs > input[type="button"],
.ais-infinite-hits--showmore .btn-group-xs > button,
.btn-xs .btn-label {
  padding: 0.25rem 0.5rem;
  font-size: .65em;
  line-height: 1.5em; }

.btn-sm,
.btn-group-sm .btn,
.btn-group-sm .pagination li,
.pagination .btn-group-sm li,
.btn-group-sm .inline-form .input-label,
.inline-form .btn-group-sm .input-label,
.btn-group-sm .inline-form .input-group-addon,
.inline-form .btn-group-sm .input-group-addon,
.btn-group-sm .inline-form .inline-label,
.inline-form .btn-group-sm .inline-label,
.btn-group-sm body .hs-button.primary,
body .btn-group-sm .hs-button.primary,
.btn-group-sm body input[type="submit"],
body .btn-group-sm input[type="submit"],
.btn-group-sm body input[type="button"],
body .btn-group-sm input[type="button"],
.btn-group-sm .ais-infinite-hits--showmore button,
.ais-infinite-hits--showmore .btn-group-sm button,
.btn-sm .btn-label {
  padding: 0.5rem 0.75rem;
  font-size: 0.87em; }


.btn-group-sm .btn,
.btn-group-sm .pagination li,
.pagination .btn-group-sm li,
.btn-group-sm .inline-form .input-label,
.inline-form .btn-group-sm .input-label,
.btn-group-sm .inline-form .input-group-addon,
.inline-form .btn-group-sm .input-group-addon,
.btn-group-sm .inline-form .inline-label,
.inline-form .btn-group-sm .inline-label,
.btn-group-sm body .hs-button.primary,
body .btn-group-sm .hs-button.primary,
.btn-group-sm body input[type="submit"],
body .btn-group-sm input[type="submit"],
.btn-group-sm body input[type="button"],
body .btn-group-sm input[type="button"],
.btn-group-sm .ais-infinite-hits--showmore button,
.ais-infinite-hits--showmore .btn-group-sm button {
  margin-left: -3px; }

.btn-lg,
.btn-group-lg > .btn,
.pagination .btn-group-lg > li,
.inline-form .btn-group-lg > .input-label,
.inline-form .btn-group-lg > .input-group-addon,
.inline-form .btn-group-lg > .inline-label,
body .btn-group-lg > .hs-button.primary,
body .btn-group-lg > input[type="submit"],
body .btn-group-lg > input[type="button"],
.ais-infinite-hits--showmore .btn-group-lg > button,
.btn-lg .btn-label {
  padding: 1.25rem 1.5rem;
  font-size: 1.2em; }

.btn-disabled,
.btn.disabled,
.pagination li.disabled,
.inline-form .disabled.input-label,
.inline-form .disabled.input-group-addon,
.inline-form .disabled.inline-label,
body .disabled.hs-button.primary,
body input.disabled[type="submit"],
body input.disabled[type="button"],
.ais-infinite-hits--showmore button.disabled,
.btn[disabled],
.pagination li[disabled],
.inline-form .input-label[disabled],
.inline-form .input-group-addon[disabled],
.inline-form .inline-label[disabled],
body .hs-button.primary[disabled],
body input[disabled][type="submit"],
body input[disabled][type="button"],
.ais-infinite-hits--showmore button[disabled],
fieldset[disabled] .btn,
fieldset[disabled] .pagination li,
.pagination fieldset[disabled] li,
fieldset[disabled] .inline-form .input-label,
.inline-form fieldset[disabled] .input-label,
fieldset[disabled] .inline-form .input-group-addon,
.inline-form fieldset[disabled] .input-group-addon,
fieldset[disabled] .inline-form .inline-label,
.inline-form fieldset[disabled] .inline-label,
fieldset[disabled] body .hs-button.primary,
body fieldset[disabled] .hs-button.primary,
fieldset[disabled] body input[type="submit"],
body fieldset[disabled] input[type="submit"],
fieldset[disabled] body input[type="button"],
body fieldset[disabled] input[type="button"],
fieldset[disabled] .ais-infinite-hits--showmore button,
.ais-infinite-hits--showmore fieldset[disabled] button {
  cursor: not-allowed; }
  .btn-disabled:hover,
  .btn.disabled:hover,
  .pagination li.disabled:hover,
  .inline-form .disabled.input-label:hover,
  .inline-form .disabled.input-group-addon:hover,
  .inline-form .disabled.inline-label:hover,
  body .disabled.hs-button.primary:hover,
  body input.disabled:hover[type="submit"],
  body input.disabled:hover[type="button"],
  .ais-infinite-hits--showmore button.disabled:hover,
  .btn[disabled]:hover,
  .pagination li[disabled]:hover,
  .inline-form .input-label[disabled]:hover,
  .inline-form .input-group-addon[disabled]:hover,
  .inline-form .inline-label[disabled]:hover,
  body .hs-button.primary[disabled]:hover,
  body input[disabled]:hover[type="submit"],
  body input[disabled]:hover[type="button"],
  .ais-infinite-hits--showmore button[disabled]:hover,
  fieldset[disabled] .btn:hover,
  fieldset[disabled] .pagination li:hover,
  .pagination fieldset[disabled] li:hover,
  fieldset[disabled] .inline-form .input-label:hover,
  .inline-form fieldset[disabled] .input-label:hover,
  fieldset[disabled] .inline-form .input-group-addon:hover,
  .inline-form fieldset[disabled] .input-group-addon:hover,
  fieldset[disabled] .inline-form .inline-label:hover,
  .inline-form fieldset[disabled] .inline-label:hover,
  fieldset[disabled] body .hs-button.primary:hover,
  body fieldset[disabled] .hs-button.primary:hover,
  fieldset[disabled] body input:hover[type="submit"],
  body fieldset[disabled] input:hover[type="submit"],
  fieldset[disabled] body input:hover[type="button"],
  body fieldset[disabled] input:hover[type="button"],
  fieldset[disabled] .ais-infinite-hits--showmore button:hover,
  .ais-infinite-hits--showmore fieldset[disabled] button:hover {
    background: #d0d4d7; }

.btn-disabled-transparent {
  background-color: transparent !important;
  cursor: not-allowed; }
  .btn-disabled-transparent a {
    border-bottom: none;
    padding: 0; }
    .btn-disabled-transparent a:before {
      display: none; }
  .btn-disabled-transparent:hover {
    background: #d0d4d7; }

[class^='btn-group'] {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center; }
  [class^='btn-group'] :first-child .btn, [class^='btn-group'] :first-child .pagination li, .pagination [class^='btn-group'] :first-child li, [class^='btn-group'] :first-child .inline-form .input-label, .inline-form [class^='btn-group'] :first-child .input-label, [class^='btn-group'] :first-child .inline-form .input-group-addon, .inline-form [class^='btn-group'] :first-child .input-group-addon, [class^='btn-group'] :first-child .inline-form .inline-label, .inline-form [class^='btn-group'] :first-child .inline-label, [class^='btn-group'] :first-child body .hs-button.primary, body [class^='btn-group'] :first-child .hs-button.primary,
  [class^='btn-group'] :first-child body input[type="submit"], body [class^='btn-group'] :first-child input[type="submit"],
  [class^='btn-group'] :first-child body input[type="button"], body [class^='btn-group'] :first-child input[type="button"], [class^='btn-group'] :first-child .ais-infinite-hits--showmore button, .ais-infinite-hits--showmore [class^='btn-group'] :first-child button {
    border-radius: 1.5px 0 0 1.5px;
    margin-left: 2px; }
  [class^='btn-group'] :last-child .btn, [class^='btn-group'] :last-child .pagination li, .pagination [class^='btn-group'] :last-child li, [class^='btn-group'] :last-child .inline-form .input-label, .inline-form [class^='btn-group'] :last-child .input-label, [class^='btn-group'] :last-child .inline-form .input-group-addon, .inline-form [class^='btn-group'] :last-child .input-group-addon, [class^='btn-group'] :last-child .inline-form .inline-label, .inline-form [class^='btn-group'] :last-child .inline-label, [class^='btn-group'] :last-child body .hs-button.primary, body [class^='btn-group'] :last-child .hs-button.primary,
  [class^='btn-group'] :last-child body input[type="submit"], body [class^='btn-group'] :last-child input[type="submit"],
  [class^='btn-group'] :last-child body input[type="button"], body [class^='btn-group'] :last-child input[type="button"], [class^='btn-group'] :last-child .ais-infinite-hits--showmore button, .ais-infinite-hits--showmore [class^='btn-group'] :last-child button {
    border-radius: 0 1.5px 1.5px 0; }
  [class^='btn-group'] > span {
    display: inline-block; }
  [class^='btn-group'] .btn, [class^='btn-group'] .pagination li, .pagination [class^='btn-group'] li, [class^='btn-group'] .inline-form .input-label, .inline-form [class^='btn-group'] .input-label, [class^='btn-group'] .inline-form .input-group-addon, .inline-form [class^='btn-group'] .input-group-addon, [class^='btn-group'] .inline-form .inline-label, .inline-form [class^='btn-group'] .inline-label, [class^='btn-group'] body .hs-button.primary, body [class^='btn-group'] .hs-button.primary,
  [class^='btn-group'] body input[type="submit"], body [class^='btn-group'] input[type="submit"],
  [class^='btn-group'] body input[type="button"], body [class^='btn-group'] input[type="button"], [class^='btn-group'] .ais-infinite-hits--showmore button, .ais-infinite-hits--showmore [class^='btn-group'] button, [class^='btn-group'] .btn-xs {
    position: relative;
    display: inline-block; }
    > [class^='btn-group'] .btn:first-child, > [class^='btn-group'] .pagination li:first-child, > .pagination [class^='btn-group'] li:first-child, > [class^='btn-group'] .inline-form .input-label:first-child, > .inline-form [class^='btn-group'] .input-label:first-child, > [class^='btn-group'] .inline-form .input-group-addon:first-child, > .inline-form [class^='btn-group'] .input-group-addon:first-child, > [class^='btn-group'] .inline-form .inline-label:first-child, > .inline-form [class^='btn-group'] .inline-label:first-child, > [class^='btn-group'] body .hs-button.primary:first-child, > body [class^='btn-group'] .hs-button.primary:first-child,
    > [class^='btn-group'] body input:first-child[type="submit"], > body [class^='btn-group'] input:first-child[type="submit"],
    > [class^='btn-group'] body input:first-child[type="button"], > body [class^='btn-group'] input:first-child[type="button"], > [class^='btn-group'] .ais-infinite-hits--showmore button:first-child, > .ais-infinite-hits--showmore [class^='btn-group'] button:first-child, > [class^='btn-group'] .btn-xs:first-child {
      border-radius: 1.5px 0 0 1.5px;
      margin-left: 2px; }
    > [class^='btn-group'] .btn:last-child, > [class^='btn-group'] .pagination li:last-child, > .pagination [class^='btn-group'] li:last-child, > [class^='btn-group'] .inline-form .input-label:last-child, > .inline-form [class^='btn-group'] .input-label:last-child, > [class^='btn-group'] .inline-form .input-group-addon:last-child, > .inline-form [class^='btn-group'] .input-group-addon:last-child, > [class^='btn-group'] .inline-form .inline-label:last-child, > .inline-form [class^='btn-group'] .inline-label:last-child, > [class^='btn-group'] body .hs-button.primary:last-child, > body [class^='btn-group'] .hs-button.primary:last-child,
    > [class^='btn-group'] body input:last-child[type="submit"], > body [class^='btn-group'] input:last-child[type="submit"],
    > [class^='btn-group'] body input:last-child[type="button"], > body [class^='btn-group'] input:last-child[type="button"], > [class^='btn-group'] .ais-infinite-hits--showmore button:last-child, > .ais-infinite-hits--showmore [class^='btn-group'] button:last-child, > [class^='btn-group'] .btn-xs:last-child {
      border-radius: 0 1.5px 1.5px 0; }
    [class^='btn-group'] .btn:focus, [class^='btn-group'] .pagination li:focus, .pagination [class^='btn-group'] li:focus, [class^='btn-group'] .inline-form .input-label:focus, .inline-form [class^='btn-group'] .input-label:focus, [class^='btn-group'] .inline-form .input-group-addon:focus, .inline-form [class^='btn-group'] .input-group-addon:focus, [class^='btn-group'] .inline-form .inline-label:focus, .inline-form [class^='btn-group'] .inline-label:focus,
    [class^='btn-group'] body .hs-button.primary:focus, body [class^='btn-group'] .hs-button.primary:focus,
    [class^='btn-group'] body input:focus[type="submit"], body [class^='btn-group'] input:focus[type="submit"],
    [class^='btn-group'] body input:focus[type="button"], body [class^='btn-group'] input:focus[type="button"], [class^='btn-group'] .ais-infinite-hits--showmore button:focus, .ais-infinite-hits--showmore [class^='btn-group'] button:focus, [class^='btn-group'] .btn-xs:focus {
      z-index: 2; }

.border-btn {
  border: solid thin rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.15); }
  .border-btn:hover {
    border: solid thin;
    color: inherit;
    background-color: rgba(255, 255, 255, 0.4); }

.tingle-btn {
  background-color: #3497DA; }
  .tingle-btn .tingle-btn--primary {
    background-color: #3497DA; }

button.tingle-btn--primary {
  background-color: #3497DA; }

.hs-button.primary {
  background-color: #0075A8; }

.dropdown {
  position: relative;
  z-index: 1001; }
  .dropdown .dropdown-menu {
    display: none; }
    .dropdown .dropdown-menu.dropdown-show {
      display: block;
      position: absolute;
      left: 0;
      right: 0; }

ul.dropdown-menu {
  border: solid thin #ecf0f1;
  display: block;
  font-size: .85em; }
  ul.dropdown-menu.hidden {
    display: none; }
  ul.dropdown-menu li {
    margin-bottom: 0; }
    ul.dropdown-menu li a {
      text-decoration: none;
      display: block;
      padding: .5rem;
      border-bottom: solid thin #ecf0f1; }

.main .dropdown {
  z-index: 999 !important; }

select {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-width: 2px;
  border-color: #dde4e6;
  border-radius: 0;
  background: white;
  border: solid 2px #ecf0f1;
  padding: 5px 10px;
  font-size: 15px;
  -o-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  line-height: 24px; }
  select:not([multiple]) {
    position: relative;
    background-image: url(img/dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-size: 15px 10px;
    background-position: calc(100% - 10px) center; }

label {
  color: #3d3d3d;
  display: inline-block; }

input[type='checkbox'] {
  cursor: pointer; }

input[type='text'],
input[type='password'],
input[type='number'],
input[type='date'],
input[type='email'],
input[type='search'],
input[type='tel'],
input[type='url'],
textarea {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-width: 1.25px;
  border-color: #dde4e6;
  border-radius: 0;
  border-style: solid;
  background: #fbfcfc;
  padding: 5px 10px;
  font-size: 15px;
  line-height: 20px;
  width: 100%; }
  input[type='text'][size],
  input[type='password'][size],
  input[type='number'][size],
  input[type='date'][size],
  input[type='email'][size],
  input[type='search'][size],
  input[type='tel'][size],
  input[type='url'][size],
  textarea[size] {
    display: inline-block;
    width: auto; }
  input[type='text']::-webkit-input-placeholder,
  input[type='password']::-webkit-input-placeholder,
  input[type='number']::-webkit-input-placeholder,
  input[type='date']::-webkit-input-placeholder,
  input[type='email']::-webkit-input-placeholder,
  input[type='search']::-webkit-input-placeholder,
  input[type='tel']::-webkit-input-placeholder,
  input[type='url']::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #8B959C; }
  input[type='text']:-ms-input-placeholder,
  input[type='password']:-ms-input-placeholder,
  input[type='number']:-ms-input-placeholder,
  input[type='date']:-ms-input-placeholder,
  input[type='email']:-ms-input-placeholder,
  input[type='search']:-ms-input-placeholder,
  input[type='tel']:-ms-input-placeholder,
  input[type='url']:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #8B959C; }
  input[type='text']::-ms-input-placeholder,
  input[type='password']::-ms-input-placeholder,
  input[type='number']::-ms-input-placeholder,
  input[type='date']::-ms-input-placeholder,
  input[type='email']::-ms-input-placeholder,
  input[type='search']::-ms-input-placeholder,
  input[type='tel']::-ms-input-placeholder,
  input[type='url']::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    color: #8B959C; }
  input[type='text']::placeholder,
  input[type='password']::placeholder,
  input[type='number']::placeholder,
  input[type='date']::placeholder,
  input[type='email']::placeholder,
  input[type='search']::placeholder,
  input[type='tel']::placeholder,
  input[type='url']::placeholder,
  textarea::placeholder {
    color: #8B959C; }
  input[type='text']:hover,
  input[type='password']:hover,
  input[type='number']:hover,
  input[type='date']:hover,
  input[type='email']:hover,
  input[type='search']:hover,
  input[type='tel']:hover,
  input[type='url']:hover,
  textarea:hover {
    border-color: #8B959C;
    background: rgba(139, 149, 156, 0.2); }
    input[type='text']:hover::-webkit-input-placeholder,
    input[type='password']:hover::-webkit-input-placeholder,
    input[type='number']:hover::-webkit-input-placeholder,
    input[type='date']:hover::-webkit-input-placeholder,
    input[type='email']:hover::-webkit-input-placeholder,
    input[type='search']:hover::-webkit-input-placeholder,
    input[type='tel']:hover::-webkit-input-placeholder,
    input[type='url']:hover::-webkit-input-placeholder,
    textarea:hover::-webkit-input-placeholder {
      color: #8B959C; }
    input[type='text']:hover:-ms-input-placeholder,
    input[type='password']:hover:-ms-input-placeholder,
    input[type='number']:hover:-ms-input-placeholder,
    input[type='date']:hover:-ms-input-placeholder,
    input[type='email']:hover:-ms-input-placeholder,
    input[type='search']:hover:-ms-input-placeholder,
    input[type='tel']:hover:-ms-input-placeholder,
    input[type='url']:hover:-ms-input-placeholder,
    textarea:hover:-ms-input-placeholder {
      color: #8B959C; }
    input[type='text']:hover::-ms-input-placeholder,
    input[type='password']:hover::-ms-input-placeholder,
    input[type='number']:hover::-ms-input-placeholder,
    input[type='date']:hover::-ms-input-placeholder,
    input[type='email']:hover::-ms-input-placeholder,
    input[type='search']:hover::-ms-input-placeholder,
    input[type='tel']:hover::-ms-input-placeholder,
    input[type='url']:hover::-ms-input-placeholder,
    textarea:hover::-ms-input-placeholder {
      color: #8B959C; }
    input[type='text']:hover::placeholder,
    input[type='password']:hover::placeholder,
    input[type='number']:hover::placeholder,
    input[type='date']:hover::placeholder,
    input[type='email']:hover::placeholder,
    input[type='search']:hover::placeholder,
    input[type='tel']:hover::placeholder,
    input[type='url']:hover::placeholder,
    textarea:hover::placeholder {
      color: #8B959C; }
  input[type='text'].disabled, input[type='text'][disabled], input[type='text'][disabled]:hover,
  input[type='password'].disabled,
  input[type='password'][disabled],
  input[type='password'][disabled]:hover,
  input[type='number'].disabled,
  input[type='number'][disabled],
  input[type='number'][disabled]:hover,
  input[type='date'].disabled,
  input[type='date'][disabled],
  input[type='date'][disabled]:hover,
  input[type='email'].disabled,
  input[type='email'][disabled],
  input[type='email'][disabled]:hover,
  input[type='search'].disabled,
  input[type='search'][disabled],
  input[type='search'][disabled]:hover,
  input[type='tel'].disabled,
  input[type='tel'][disabled],
  input[type='tel'][disabled]:hover,
  input[type='url'].disabled,
  input[type='url'][disabled],
  input[type='url'][disabled]:hover,
  textarea.disabled,
  textarea[disabled],
  textarea[disabled]:hover {
    border-color: #b4bbbf;
    cursor: not-allowed; }
    input[type='text'].disabled::-webkit-input-placeholder, input[type='text'][disabled]::-webkit-input-placeholder, input[type='text'][disabled]:hover::-webkit-input-placeholder,
    input[type='password'].disabled::-webkit-input-placeholder,
    input[type='password'][disabled]::-webkit-input-placeholder,
    input[type='password'][disabled]:hover::-webkit-input-placeholder,
    input[type='number'].disabled::-webkit-input-placeholder,
    input[type='number'][disabled]::-webkit-input-placeholder,
    input[type='number'][disabled]:hover::-webkit-input-placeholder,
    input[type='date'].disabled::-webkit-input-placeholder,
    input[type='date'][disabled]::-webkit-input-placeholder,
    input[type='date'][disabled]:hover::-webkit-input-placeholder,
    input[type='email'].disabled::-webkit-input-placeholder,
    input[type='email'][disabled]::-webkit-input-placeholder,
    input[type='email'][disabled]:hover::-webkit-input-placeholder,
    input[type='search'].disabled::-webkit-input-placeholder,
    input[type='search'][disabled]::-webkit-input-placeholder,
    input[type='search'][disabled]:hover::-webkit-input-placeholder,
    input[type='tel'].disabled::-webkit-input-placeholder,
    input[type='tel'][disabled]::-webkit-input-placeholder,
    input[type='tel'][disabled]:hover::-webkit-input-placeholder,
    input[type='url'].disabled::-webkit-input-placeholder,
    input[type='url'][disabled]::-webkit-input-placeholder,
    input[type='url'][disabled]:hover::-webkit-input-placeholder,
    textarea.disabled::-webkit-input-placeholder,
    textarea[disabled]::-webkit-input-placeholder,
    textarea[disabled]:hover::-webkit-input-placeholder {
      color: #a7aeb3; }
    input[type='text'].disabled:-ms-input-placeholder, input[type='text'][disabled]:-ms-input-placeholder, input[type='text'][disabled]:hover:-ms-input-placeholder,
    input[type='password'].disabled:-ms-input-placeholder,
    input[type='password'][disabled]:-ms-input-placeholder,
    input[type='password'][disabled]:hover:-ms-input-placeholder,
    input[type='number'].disabled:-ms-input-placeholder,
    input[type='number'][disabled]:-ms-input-placeholder,
    input[type='number'][disabled]:hover:-ms-input-placeholder,
    input[type='date'].disabled:-ms-input-placeholder,
    input[type='date'][disabled]:-ms-input-placeholder,
    input[type='date'][disabled]:hover:-ms-input-placeholder,
    input[type='email'].disabled:-ms-input-placeholder,
    input[type='email'][disabled]:-ms-input-placeholder,
    input[type='email'][disabled]:hover:-ms-input-placeholder,
    input[type='search'].disabled:-ms-input-placeholder,
    input[type='search'][disabled]:-ms-input-placeholder,
    input[type='search'][disabled]:hover:-ms-input-placeholder,
    input[type='tel'].disabled:-ms-input-placeholder,
    input[type='tel'][disabled]:-ms-input-placeholder,
    input[type='tel'][disabled]:hover:-ms-input-placeholder,
    input[type='url'].disabled:-ms-input-placeholder,
    input[type='url'][disabled]:-ms-input-placeholder,
    input[type='url'][disabled]:hover:-ms-input-placeholder,
    textarea.disabled:-ms-input-placeholder,
    textarea[disabled]:-ms-input-placeholder,
    textarea[disabled]:hover:-ms-input-placeholder {
      color: #a7aeb3; }
    input[type='text'].disabled::-ms-input-placeholder, input[type='text'][disabled]::-ms-input-placeholder, input[type='text'][disabled]:hover::-ms-input-placeholder,
    input[type='password'].disabled::-ms-input-placeholder,
    input[type='password'][disabled]::-ms-input-placeholder,
    input[type='password'][disabled]:hover::-ms-input-placeholder,
    input[type='number'].disabled::-ms-input-placeholder,
    input[type='number'][disabled]::-ms-input-placeholder,
    input[type='number'][disabled]:hover::-ms-input-placeholder,
    input[type='date'].disabled::-ms-input-placeholder,
    input[type='date'][disabled]::-ms-input-placeholder,
    input[type='date'][disabled]:hover::-ms-input-placeholder,
    input[type='email'].disabled::-ms-input-placeholder,
    input[type='email'][disabled]::-ms-input-placeholder,
    input[type='email'][disabled]:hover::-ms-input-placeholder,
    input[type='search'].disabled::-ms-input-placeholder,
    input[type='search'][disabled]::-ms-input-placeholder,
    input[type='search'][disabled]:hover::-ms-input-placeholder,
    input[type='tel'].disabled::-ms-input-placeholder,
    input[type='tel'][disabled]::-ms-input-placeholder,
    input[type='tel'][disabled]:hover::-ms-input-placeholder,
    input[type='url'].disabled::-ms-input-placeholder,
    input[type='url'][disabled]::-ms-input-placeholder,
    input[type='url'][disabled]:hover::-ms-input-placeholder,
    textarea.disabled::-ms-input-placeholder,
    textarea[disabled]::-ms-input-placeholder,
    textarea[disabled]:hover::-ms-input-placeholder {
      color: #a7aeb3; }
    input[type='text'].disabled::placeholder, input[type='text'][disabled]::placeholder, input[type='text'][disabled]:hover::placeholder,
    input[type='password'].disabled::placeholder,
    input[type='password'][disabled]::placeholder,
    input[type='password'][disabled]:hover::placeholder,
    input[type='number'].disabled::placeholder,
    input[type='number'][disabled]::placeholder,
    input[type='number'][disabled]:hover::placeholder,
    input[type='date'].disabled::placeholder,
    input[type='date'][disabled]::placeholder,
    input[type='date'][disabled]:hover::placeholder,
    input[type='email'].disabled::placeholder,
    input[type='email'][disabled]::placeholder,
    input[type='email'][disabled]:hover::placeholder,
    input[type='search'].disabled::placeholder,
    input[type='search'][disabled]::placeholder,
    input[type='search'][disabled]:hover::placeholder,
    input[type='tel'].disabled::placeholder,
    input[type='tel'][disabled]::placeholder,
    input[type='tel'][disabled]:hover::placeholder,
    input[type='url'].disabled::placeholder,
    input[type='url'][disabled]::placeholder,
    input[type='url'][disabled]:hover::placeholder,
    textarea.disabled::placeholder,
    textarea[disabled]::placeholder,
    textarea[disabled]:hover::placeholder {
      color: #a7aeb3; }
  input[type='text']:focus,
  input[type='password']:focus,
  input[type='number']:focus,
  input[type='date']:focus,
  input[type='email']:focus,
  input[type='search']:focus,
  input[type='tel']:focus,
  input[type='url']:focus,
  textarea:focus {
    background: rgba(120, 201, 207, 0.2);
    border-color: #78C9CF; }
    input[type='text']:focus::-webkit-input-placeholder,
    input[type='password']:focus::-webkit-input-placeholder,
    input[type='number']:focus::-webkit-input-placeholder,
    input[type='date']:focus::-webkit-input-placeholder,
    input[type='email']:focus::-webkit-input-placeholder,
    input[type='search']:focus::-webkit-input-placeholder,
    input[type='tel']:focus::-webkit-input-placeholder,
    input[type='url']:focus::-webkit-input-placeholder,
    textarea:focus::-webkit-input-placeholder {
      color: #78C9CF; }
    input[type='text']:focus:-ms-input-placeholder,
    input[type='password']:focus:-ms-input-placeholder,
    input[type='number']:focus:-ms-input-placeholder,
    input[type='date']:focus:-ms-input-placeholder,
    input[type='email']:focus:-ms-input-placeholder,
    input[type='search']:focus:-ms-input-placeholder,
    input[type='tel']:focus:-ms-input-placeholder,
    input[type='url']:focus:-ms-input-placeholder,
    textarea:focus:-ms-input-placeholder {
      color: #78C9CF; }
    input[type='text']:focus::-ms-input-placeholder,
    input[type='password']:focus::-ms-input-placeholder,
    input[type='number']:focus::-ms-input-placeholder,
    input[type='date']:focus::-ms-input-placeholder,
    input[type='email']:focus::-ms-input-placeholder,
    input[type='search']:focus::-ms-input-placeholder,
    input[type='tel']:focus::-ms-input-placeholder,
    input[type='url']:focus::-ms-input-placeholder,
    textarea:focus::-ms-input-placeholder {
      color: #78C9CF; }
    input[type='text']:focus::placeholder,
    input[type='password']:focus::placeholder,
    input[type='number']:focus::placeholder,
    input[type='date']:focus::placeholder,
    input[type='email']:focus::placeholder,
    input[type='search']:focus::placeholder,
    input[type='tel']:focus::placeholder,
    input[type='url']:focus::placeholder,
    textarea:focus::placeholder {
      color: #78C9CF; }

.form-control-static {
  line-height: 24px;
  padding: 3px 0;
  border: 2px solid transparent; }

.inline-form .col-inline {
  padding: 9px 0; }

.inline-form .btn, .inline-form .pagination li, .pagination .inline-form li, .inline-form .input-label, .inline-form .input-group-addon, .inline-form .inline-label, .inline-form body .hs-button.primary, body .inline-form .hs-button.primary,
.inline-form body input[type="submit"], body .inline-form input[type="submit"],
.inline-form body input[type="button"], body .inline-form input[type="button"], .inline-form .ais-infinite-hits--showmore button, .ais-infinite-hits--showmore .inline-form button {
  border-radius: 0;
  overflow: hidden;
  position: relative; }

.inline-form .input-label, .inline-form .input-group-addon, .inline-form .inline-label {
  display: block;
  line-height: 1.84; }
  .inline-form .input-label label, .inline-form .input-group-addon label, .inline-form .inline-label label {
    margin-top: 0; }
  .inline-form .input-label.input-xs, .inline-form .input-xs.input-group-addon, .inline-form .inline-label.input-xs {
    padding: 2px 3px;
    line-height: initial;
    font-size: .65em; }
  .inline-form .input-label.input-sm, .inline-form .input-sm.input-group-addon, .inline-form .inline-label.input-sm {
    padding: 3px 8px;
    font-size: 0.87em; }
  .inline-form .input-label.input-lg, .inline-form .input-lg.input-group-addon, .inline-form .inline-label.input-lg {
    padding: 18px 30px;
    font-size: 1.25em; }

.inline-form .inline-label {
  text-align: left; }

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }

.input-group.search-group {
  position: relative; }
  .input-group.search-group input {
    padding-right: 34px; }
  .input-group.search-group .input-group-btn {
    position: absolute;
    right: 34px; }

.input-group .form-control:focus {
  z-index: 3; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
  vertical-align: middle; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  text-align: center; }

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  white-space: nowrap; }

.input-group-btn > .btn, .pagination .input-group-btn > li, .inline-form .input-group-btn > .input-label, .inline-form .input-group-btn > .input-group-addon, .inline-form .input-group-btn > .inline-label, body .input-group-btn > .hs-button.primary,
body .input-group-btn > input[type="submit"],
body .input-group-btn > input[type="button"], .ais-infinite-hits--showmore .input-group-btn > button {
  position: relative;
  border-radius: 0; }

.input-group-btn > .btn:hover, .pagination .input-group-btn > li:hover, .inline-form .input-group-btn > .input-label:hover, .inline-form .input-group-btn > .input-group-addon:hover, .inline-form .input-group-btn > .inline-label:hover,
body .input-group-btn > .hs-button.primary:hover,
body .input-group-btn > input:hover[type="submit"],
body .input-group-btn > input:hover[type="button"], .ais-infinite-hits--showmore .input-group-btn > button:hover,
.input-group-btn > .btn:focus,
.pagination .input-group-btn > li:focus,
.inline-form .input-group-btn > .input-label:focus,
.inline-form .input-group-btn > .input-group-addon:focus,
.inline-form .input-group-btn > .inline-label:focus,
body .input-group-btn > .hs-button.primary:focus,
body .input-group-btn > input:focus[type="submit"],
body .input-group-btn > input:focus[type="button"],
.ais-infinite-hits--showmore .input-group-btn > button:focus,
.input-group-btn > .btn:active,
.pagination .input-group-btn > li:active,
.inline-form .input-group-btn > .input-label:active,
.inline-form .input-group-btn > .input-group-addon:active,
.inline-form .input-group-btn > .inline-label:active,
body .input-group-btn > .hs-button.primary:active,
body .input-group-btn > input:active[type="submit"],
body .input-group-btn > input:active[type="button"],
.ais-infinite-hits--showmore .input-group-btn > button:active {
  z-index: 2; }

.input-group-btn:first-child > .btn, .pagination .input-group-btn:first-child > li, .inline-form .input-group-btn:first-child > .input-label, .inline-form .input-group-btn:first-child > .input-group-addon, .inline-form .input-group-btn:first-child > .inline-label, body .input-group-btn:first-child > .hs-button.primary,
body .input-group-btn:first-child > input[type="submit"],
body .input-group-btn:first-child > input[type="button"], .ais-infinite-hits--showmore .input-group-btn:first-child > button,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px; }

.input-xs,
input.input-xs,
.input-group.input-xs input,
.input-group.input-xs .input-group-addon {
  padding: 2px 3px;
  line-height: initial;
  font-size: .65em; }

.input-sm,
input.input-sm,
.input-group.input-sm input,
.input-group.input-sm .input-group-addon {
  padding: 3px 8px;
  font-size: 0.87em;
  max-height: 32px; }

.input-lg,
input.input-lg,
.input-group.input-lg input,
.input-group.input-lg .input-group-addon {
  padding: 18px 30px;
  font-size: 1.25em; }

.box input[type='text'],
.box input[type='password'],
.box input[type='number'],
.box input[type='date'],
.box input[type='email'],
.box input[type='search'],
.box input[type='tel'],
.box input[type='url'],
.box textarea, [class^='bg-'] input[type='text'],
[class^='bg-'] input[type='password'],
[class^='bg-'] input[type='number'],
[class^='bg-'] input[type='date'],
[class^='bg-'] input[type='email'],
[class^='bg-'] input[type='search'],
[class^='bg-'] input[type='tel'],
[class^='bg-'] input[type='url'],
[class^='bg-'] textarea {
  border-color: #cfd9db;
  background: white;
  color: #454545; }
  .box input[type='text']:hover, .box input[type='text']:active, .box input[type='text']:focus,
  .box input[type='password']:hover,
  .box input[type='password']:active,
  .box input[type='password']:focus,
  .box input[type='number']:hover,
  .box input[type='number']:active,
  .box input[type='number']:focus,
  .box input[type='date']:hover,
  .box input[type='date']:active,
  .box input[type='date']:focus,
  .box input[type='email']:hover,
  .box input[type='email']:active,
  .box input[type='email']:focus,
  .box input[type='search']:hover,
  .box input[type='search']:active,
  .box input[type='search']:focus,
  .box input[type='tel']:hover,
  .box input[type='tel']:active,
  .box input[type='tel']:focus,
  .box input[type='url']:hover,
  .box input[type='url']:active,
  .box input[type='url']:focus,
  .box textarea:hover,
  .box textarea:active,
  .box textarea:focus, [class^='bg-'] input[type='text']:hover, [class^='bg-'] input[type='text']:active, [class^='bg-'] input[type='text']:focus,
  [class^='bg-'] input[type='password']:hover,
  [class^='bg-'] input[type='password']:active,
  [class^='bg-'] input[type='password']:focus,
  [class^='bg-'] input[type='number']:hover,
  [class^='bg-'] input[type='number']:active,
  [class^='bg-'] input[type='number']:focus,
  [class^='bg-'] input[type='date']:hover,
  [class^='bg-'] input[type='date']:active,
  [class^='bg-'] input[type='date']:focus,
  [class^='bg-'] input[type='email']:hover,
  [class^='bg-'] input[type='email']:active,
  [class^='bg-'] input[type='email']:focus,
  [class^='bg-'] input[type='search']:hover,
  [class^='bg-'] input[type='search']:active,
  [class^='bg-'] input[type='search']:focus,
  [class^='bg-'] input[type='tel']:hover,
  [class^='bg-'] input[type='tel']:active,
  [class^='bg-'] input[type='tel']:focus,
  [class^='bg-'] input[type='url']:hover,
  [class^='bg-'] input[type='url']:active,
  [class^='bg-'] input[type='url']:focus,
  [class^='bg-'] textarea:hover,
  [class^='bg-'] textarea:active,
  [class^='bg-'] textarea:focus {
    opacity: 1;
    text-decoration: underline; }

.box .input-group-addon.bg-default, .box .pagination li.input-group-addon, .pagination .box li.input-group-addon {
  background: #cfd9db; }

.field-required {
  padding-left: 5px;
  font-weight: bold;
  color: #F15354; }

.with-input {
  display: inline-block;
  vertical-align: middle; }

.radio {
  padding: 5px 0; }

/* Labels (selects field labels and error messages) */
.hs-form label,
.hs-form .hs-form-field > label {
  margin-bottom: 1rem !important; }

.hs-form-field {
  width: 95% !important;
  float: none !important; }

.hs-form input[type="text"],
.hs-form input[type="password"],
.hs-form input[type="datetime"],
.hs-form input[type="datetime-local"],
.hs-form input[type="date"],
.hs-form input[type="month"],
.hs-form input[type="time"],
.hs-form input[type="week"],
.hs-form input[type="number"],
.hs-form input[type="email"],
.hs-form input[type="url"],
.hs-form input[type="search"],
.hs-form input[type="tel"],
.hs-form input[type="color"],
.hs-form input[type="file"],
.hs-form textarea,
.hs-form select {
  width: 100% !important; }

ul.hs-error-msgs {
  list-style-type: none; }
  ul.hs-error-msgs li label {
    color: #F15354; }

footer .hbspt-form > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

footer .hbspt-form .hs-form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.hbspt-form form div, .hbspt-form .hs-form-field div {
  padding-bottom: 1rem; }

.hbspt-form form .input, .hbspt-form .hs-form-field .input {
  width: 100%; }
  .hbspt-form form .input input, .hbspt-form .hs-form-field .input input {
    padding: 8px 10px; }

fieldset {
  width: 100%;
  max-width: 100% !important; }
  fieldset .input {
    width: 100%; }

body .hs-button.primary:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {
  background: darken #a5c63b, 5; }

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #8B959C !important; }

.tree-nav.invisible {
  visibility: hidden; }

.tree-nav ul {
  list-style-type: none;
  padding: 0; }

.tree-nav .tree-nav-item {
  cursor: pointer;
  cursor: hand;
  position: relative;
  border-bottom: 1px #ecf0f1 solid;
  border-radius: 3px;
  -webkit-transition: ease-in-out all .25s;
  transition: ease-in-out all .25s;
  font-size: 14px; }
  .tree-nav .tree-nav-item a {
    max-width: calc(100% - 40px); }
  .tree-nav .tree-nav-item i {
    opacity: .5;
    -webkit-transition: ease-in-out all .25s;
    transition: ease-in-out all .25s;
    font-size: .95em;
    margin-top: 5px;
    position: absolute;
    right: 0;
    top: 0; }
  .tree-nav .tree-nav-item .tree-nav-item {
    border-bottom: none; }
    .tree-nav .tree-nav-item .tree-nav-item a, .tree-nav .tree-nav-item .tree-nav-item i {
      padding: 0.25em 0 0.25em 2rem; }
    .tree-nav .tree-nav-item .tree-nav-item:before {
      content: "";
      position: absolute;
      top: 16px;
      width: 1rem;
      height: 2px;
      background-color: #ecf0f1; }
  .tree-nav .tree-nav-item.open > i {
    opacity: 1; }
  .tree-nav .tree-nav-item.active {
    background-color: rgba(165, 198, 59, 0.05);
    border-color: #a5c63b; }
    .tree-nav .tree-nav-item.active > a {
      color: #a5c63b; }
    .tree-nav .tree-nav-item.active:before {
      background-color: #a5c63b; }
  .tree-nav .tree-nav-item a, .tree-nav .tree-nav-item i {
    display: inline-block;
    vertical-align: middle;
    padding: 1rem;
    color: #3497DA; }
  .tree-nav .tree-nav-item .tree-nav-sublist {
    border-left: 1px #ecf0f1 solid;
    margin-left: 2rem;
    margin-bottom: 2rem; }
    .tree-nav .tree-nav-item .tree-nav-sublist.hide {
      display: none; }
  .tree-nav .tree-nav-item.open {
    border-left-color: #a5c63b; }
    .tree-nav .tree-nav-item.open > .expand-more {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }

ul.tabs {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: 0 2px 0 #ecf0f1;
          box-shadow: 0 2px 0 #ecf0f1; }
  ul.tabs li a {
    padding: 10px;
    display: block; }
  ul.tabs li.active {
    -webkit-box-shadow: 0 2px 0 #3497DA;
            box-shadow: 0 2px 0 #3497DA;
    position: relative; }
    ul.tabs li.active:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: calc(50% - 5px);
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 5px solid #3497DA; }

.tabbed-content {
  min-height: 250px;
  position: relative;
  width: 100%; }
  .tabbed-content > div {
    display: inline; }
    .tabbed-content > div > a {
      margin-left: -1px;
      position: relative;
      left: 1px;
      text-decoration: none;
      color: black;
      background: white;
      display: block;
      float: left;
      padding: 5px 10px;
      border: 1px solid #ccc;
      border-bottom: 1px solid white; }
    .tabbed-content > div:not(:target) > a {
      border-bottom: 0;
      background: -moz-linear-gradient(top, white, #eee); }
    .tabbed-content > div:target > a {
      background: white; }
    .tabbed-content > div > div {
      background: white;
      z-index: -2;
      left: 0;
      top: 30px;
      bottom: 0;
      right: 0;
      padding: 20px;
      border: 1px solid #ccc; }
    .tabbed-content > div:not(:target) > div {
      position: absolute; }
    .tabbed-content > div:target > div {
      position: absolute;
      z-index: -1; }

.content-tabs ul.nav-tabs {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 2px #ecf0f1;
  font-family: "Poppins", sans-serif;
  font-weight: bold; }
  .content-tabs ul.nav-tabs li {
    padding: 1rem 2rem;
    background-color: #ecf0f1;
    margin-right: 1rem;
    -webkit-transition: ease-in-out all .25s;
    transition: ease-in-out all .25s; }
    .content-tabs ul.nav-tabs li:before {
      content: none; }
    .content-tabs ul.nav-tabs li:not(:first-child) {
      margin-top: 0; }
    .content-tabs ul.nav-tabs li.active {
      background-color: #3497DA; }
      .content-tabs ul.nav-tabs li.active > a {
        color: white; }

.content-tabs .tab-content .tab-pane {
  display: none; }
  .content-tabs .tab-content .tab-pane.active {
    display: block; }

.main-content .content-tabs {
  margin: 4rem 0; }
  .main-content .content-tabs ul.nav-tabs {
    border-bottom: none; }
    .main-content .content-tabs ul.nav-tabs li {
      padding: 1rem 2rem;
      background-color: #ecf0f1;
      color: #cfd9db; }
      .main-content .content-tabs ul.nav-tabs li.active {
        background-color: #3497DA; }
        .main-content .content-tabs ul.nav-tabs li.active > a {
          color: white; }

.main-content .tab-content {
  border: solid #ecf0f1 thin;
  padding: 0 2rem; }

.tag {
  padding: .5em;
  margin: .25em;
  border-radius: 2px; }

.container-search {
  display: none; }
  .container-search.open {
    display: block; }
  .container-search .ais-search-box {
    position: relative;
    max-width: 100%; }
  .container-search .ais-search-box--input {
    border: 0;
    border-color: white;
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 1.9em;
    background-color: transparent;
    border-bottom: 1px solid white;
    width: 50%;
    float: right; }
    .container-search .ais-search-box--input:focus {
      background-color: transparent;
      outline: none; }

.overlay-search {
  background-color: rgba(255, 255, 255, 0.79);
  display: none;
  left: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000; }
  .overlay-search.open {
    display: block; }
  .overlay-search .search-results {
    border: 0; }
    .overlay-search .search-results .ais-infinite-hits--item {
      background-color: #ecf0f1;
      padding: 4rem;
      font-size: 1.4rem;
      line-height: 2rem; }
      .overlay-search .search-results .ais-infinite-hits--item h3 {
        margin-top: 0; }
      .overlay-search .search-results .ais-infinite-hits--item:nth-child(even) {
        background-color: white; }
      .overlay-search .search-results .ais-infinite-hits--item .body,
      .overlay-search .search-results .ais-infinite-hits--item h3 {
        font-size: 1.5rem;
        line-height: 2.5rem; }
        .overlay-search .search-results .ais-infinite-hits--item .body em,
        .overlay-search .search-results .ais-infinite-hits--item h3 em {
          font-weight: bold;
          background-color: rgba(165, 198, 59, 0.5);
          font-style: normal; }
  .overlay-search .ais-infinite-hits__empty h3 {
    text-align: center; }

.ais-infinite-hits--showmore {
  background-color: #ecf0f1;
  width: 100%;
  text-align: center; }
  .ais-infinite-hits--showmore button {
    margin: 15px 0; }

.add-cluster {
  background-image: url(../img/dashboard.png);
  background-size: 50%;
  background-position: 110% center;
  background-repeat: no-repeat; }
  .add-cluster .wrapper .p-v-lg {
    padding: 15rem 0; }

.logo-bg {
  background-image: url(../img/testimonial-bg.png);
  background-size: contain; }

.testimonial:before {
  content: ""; }

.announcment-sticker {
  background-color: #78C9CF;
  padding: 6em 0;
  width: 300px;
  border-radius: 50%;
  left: 10%;
  position: absolute;
  margin-top: -200px;
  -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg); }
  .announcment-sticker h3 {
    color: white; }

.pg-404 {
  height: 50vh; }

.thumbnail {
  width: 200px;
  height: 200px;
  overflow: hidden;
  background: #ecf0f1;
  float: left;
  margin: 0 1rem 1rem 0;
  border-radius: 4px; }
  .thumbnail img {
    overflow: hidden;
    height: 200px;
    width: 533px;
    max-width: 533px;
    margin: -188px -165px; }

img.feat-img {
  width: 100%; }

.team-member {
  position: relative;
  display: block; }
  .team-member > * {
    -webkit-transition: ease-in-out all 300ms;
    transition: ease-in-out all 300ms; }
  .team-member img {
    z-index: 1; }
  .team-member .team-info {
    font-family: "Poppins", sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    z-index: 3;
    color: white;
    width: 100%; }
    .team-member .team-info p {
      margin: 0; }
  .team-member:hover {
    opacity: 1; }
    .team-member:hover .team-info {
      opacity: 1; }
    .team-member:hover img {
      -webkit-filter: brightness(0.3);
              filter: brightness(0.3); }

.locations {
  position: relative; }
  .locations .map {
    position: absolute;
    z-index: -1;
    opacity: .5;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }

.photo-bubbles {
  margin: 0 auto;
  min-height: calc(6rem + 400px);
  max-width: 1439px;
  position: relative;
  overflow: hidden; }
  .photo-bubbles img {
    border-radius: 50%;
    width: 250px;
    position: absolute; }
    .photo-bubbles img:nth-child(2n+0) {
      width: 150px; }
    .photo-bubbles img:nth-child(3n+0) {
      width: 75px; }
    .photo-bubbles img:nth-child(1) {
      top: 0;
      left: -40px; }
    .photo-bubbles img:nth-child(2) {
      top: 170px;
      left: 215px; }
    .photo-bubbles img:nth-child(3) {
      top: 50px;
      left: 240px; }
    .photo-bubbles img:nth-child(4) {
      top: 20px;
      left: 335px; }
    .photo-bubbles img:nth-child(5) {
      top: 150px;
      left: 480px; }
    .photo-bubbles img:nth-child(6) {
      top: 50px;
      left: 560px; }
    .photo-bubbles img:nth-child(7) {
      top: 125px;
      left: 774px; }
    .photo-bubbles img:nth-child(8) {
      top: 0;
      left: 1022px; }
    .photo-bubbles img:nth-child(9) {
      top: 105px;
      left: 709px; }
    .photo-bubbles img:nth-child(10) {
      top: 175px;
      left: 1050px; }
    .photo-bubbles img:nth-child(11) {
      top: 0;
      left: 1189px; }
    .photo-bubbles img:nth-child(12) {
      top: 230px;
      left: 1395px; }

.news {
  -webkit-column-width: 300px;
          column-width: 300px;
  -webkit-column-gap: 4rem;
          column-gap: 4rem;
  -webkit-column-rule: #ecf0f1 solid 1px;
          column-rule: #ecf0f1 solid 1px; }
  .news .news-item {
    -webkit-column-break-inside: avoid;
            break-inside: avoid-column; }

.partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; }
  .partner img {
    max-height: 75px; }
  .partner .btn, .partner .pagination li, .pagination .partner li, .partner .inline-form .input-label, .inline-form .partner .input-label, .partner .inline-form .input-group-addon, .inline-form .partner .input-group-addon, .partner .inline-form .inline-label, .inline-form .partner .inline-label, .partner body .hs-button.primary, body .partner .hs-button.primary,
  .partner body input[type="submit"], body .partner input[type="submit"],
  .partner body input[type="button"], body .partner input[type="button"], .partner .ais-infinite-hits--showmore button, .ais-infinite-hits--showmore .partner button {
    position: absolute;
    right: -3px;
    top: -3px; }

.testimonials {
  position: relative; }
  .testimonials img {
    max-height: 75px;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    -webkit-transition: ease-in-out all .3s;
    transition: ease-in-out all .3s; }
    .testimonials img:hover {
      -webkit-filter: grayscale(0);
              filter: grayscale(0); }

.testimonial {
  border: solid thin #ecf0f1;
  -webkit-box-shadow: 0 0 15px rgba(139, 149, 156, 0.35);
          box-shadow: 0 0 15px rgba(139, 149, 156, 0.35);
  background-color: white; }

.hp-testimonials {
  position: relative; }
  .hp-testimonials img {
    max-height: 75px;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    -webkit-transition: ease-in-out all .3s;
    transition: ease-in-out all .3s; }
    .hp-testimonials img:hover {
      -webkit-filter: grayscale(0);
              filter: grayscale(0); }
  .hp-testimonials .testimonial, .hp-testimonials .testimonial blockquote {
    text-align: left;
    color: #3497DA; }

.customers .row.featured-story {
  padding: 0;
  margin: 0; }
  .customers .row.featured-story:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
  .customers .row.featured-story .col-md-6 {
    padding: 0;
    margin: 0; }

.customers .main-content h2 {
  margin-top: 0; }

.customers aside .feat-img {
  max-height: 75px;
  max-width: 100%;
  width: auto; }

.customers blockquote {
  position: relative;
  background: white;
  padding: 2rem;
  border-left: 0;
  border-top: solid thin #ecf0f1;
  border-bottom: solid thin #ecf0f1;
  text-align: center;
  padding: 6rem 0; }
  .customers blockquote p {
    line-height: 1.25em; }
  .customers blockquote:before {
    content: "";
    display: inline-block;
    position: absolute;
    height: 50px;
    width: 50px;
    top: -25px;
    left: calc(50% - 25px);
    border-radius: 50%;
    background-color: #a5c63b;
    background-image: url(/img/quote-white.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center; }

.customers .slider img {
  max-height: 60px; }

.customers .masonry.logo-grid {
  -webkit-column-count: 5 !important;
          column-count: 5 !important; }

.sub-section {
  margin-bottom: 50px; }
  .sub-section h3 {
    margin: 0;
    background: #3497DA;
    color: white;
    padding: 10px; }
  .sub-section p img {
    display: inline-block;
    vertical-align: middle; }

.img-fluid {
  width: 100%;
  height: auto; }

.yes,
.no {
  position: relative;
  padding: 10px; }
  .yes img,
  .no img {
    height: 75px; }
  .yes:before,
  .no:before {
    color: white;
    padding: 3px;
    height: 40px;
    width: 40px;
    display: block;
    border-radius: 50%;
    font-size: .75em;
    text-align: center;
    line-height: 35px;
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: 2;
    -webkit-transform: rotate(22.5deg);
    -moz-transform: rotate(22.5deg);
    -webkit-box-shadow: 0 0 3px rgba(49, 49, 49, 0.75);
            box-shadow: 0 0 3px rgba(49, 49, 49, 0.75); }

.yes:before {
  content: "yes";
  background: #27AA5E; }

.no:before {
  content: "nope";
  background: #F15354; }

.deal-cow {
  height: auto;
  width: 160px; }

.glasses {
  -webkit-animation: dealwithit ease 1s;
          animation: dealwithit ease 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

@-webkit-keyframes dealwithit {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px); }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes dealwithit {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px); }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.logo {
  height: 100px; }

.bg-light-grey {
  background: #ecf0f1; }

.bg-mid-grey {
  background: #8B959C; }

.bg-dark-grey {
  background: #3d3d3d; }

.bg-black {
  background: #313131; }

.color-dot {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 100%;
  position: relative; }

/* =Nav
-------------------------------------------------------------- */
#nav-trigger {
  display: none;
  text-align: center; }
  #nav-trigger > span {
    display: inline-block;
    padding: 10px 30px;
    background-color: #34495E;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    -webkit-transition: ease all .5s;
    transition: ease all .5s;
    display: inline-block;
    vertical-align: middle; }
    #nav-trigger > span:hover {
      background-color: #3497DA; }
    #nav-trigger > span .plus {
      display: inline-block;
      vertical-align: middle;
      position: relative;
      height: 16px;
      width: 16px; }
      #nav-trigger > span .plus:before {
        content: "";
        height: 2px;
        width: 16px;
        background: white;
        display: inline-block;
        position: absolute;
        top: 7px; }
      #nav-trigger > span .plus:after {
        content: "";
        -webkit-transition: ease-in-out all 600ms;
        transition: ease-in-out all 600ms;
        height: 16px;
        width: 2px;
        background: white;
        position: absolute;
        left: 23px; }
    #nav-trigger > span.open .plus:after {
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }

nav#nav-mobile ul {
  display: none;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto; }

nav#nav-mobile li:last-child {
  border-bottom: none; }

nav#nav-mobile a {
  display: block;
  margin: 0; }

/* =Media Queries
-------------------------------------------------------------- */
@media only screen and (max-width: 960px) {
  .span-3.yes, .span-3.no {
    width: 48%; } }

@media only screen and (max-width: 767px) {
  #nav-trigger {
    display: block; }
  nav#nav-main {
    display: none; }
  nav#nav-mobile {
    display: block; }
  main {
    margin-left: 0;
    padding: 0 20px; }
  .bg-light-grey {
    padding: 25px !important; }
  .span-2 {
    width: 32%;
    margin: 1% 1.25% 1% 0; }
  .span-4 {
    width: 32.333%;
    margin: 1% 1.25% 1% 0; }
  .sidebar {
    position: relative;
    width: 100%;
    z-index: 1; } }

@media only screen and (max-width: 414px) {
  .span-2 {
    width: 32.333%;
    margin: 1% 1% 1% 0; }
  .span-4 {
    width: 100%;
    margin: 0; }
  .sidebar {
    width: 100%;
    z-index: 1; } }

@media all and (max-width: null) {
  .hidden-md {
    display: none; } }

/*695-959*/
@media all and (max-width: 414px) {
  .hidden-sm {
    display: none; }
  .col-reverse-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .map {
    display: none; } }

@media all and (max-width: 767px) {
  header {
    display: none; }
  h1, h2, h3, h4, h5, h6 {
    max-width: 100%;
    overflow-wrap: normal;
    word-wrap: normal; }
  h1 {
    font-size: 4em; }
  p {
    font-size: 1.25rem;
    line-height: 1.75rem; }
  *[class*=" col-"] img {
    max-width: 100%;
    height: auto; }
  a, p, pre, code, li > * {
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto; }
  .mobile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .hidden-md {
    display: none; }
  .border-right > * {
    border-bottom: solid 2px #ecf0f1;
    border-right: none; }
  .cta-banner {
    margin: 1rem auto;
    padding: 1rem; }
  .bg-link .border-right > *, .pagination li.active .border-right > *, .ais-infinite-hits--showmore button .border-right > * {
    border-bottom: solid 2px #268bcf;
    border-right: none;
    padding: 2rem 0; }
  .pagination li {
    padding: .5em; }
  *[class*="p-a-"],
  *[class*="p-v-"],
  *[class*="p-h-"],
  *[class*="p-t-"],
  *[class*="p-b-"],
  *[class*="p-l-"],
  *[class*="p-r-"] {
    padding: 1rem; }
  *[class*="m-a-"],
  *[class*="m-v-"],
  *[class*="m-h-"],
  *[class*="m-t-"],
  *[class*="m-b-"],
  *[class*="m-l-"],
  *[class*="m-r-"] {
    margin: 1rem; }
  ul,
  table {
    font-size: 1.25em;
    line-height: 1.25em; }
  .text-right {
    text-align: left; }
    .text-right > * {
      text-align: left; }
  .sticky #TableOfContents {
    display: none; }
  .add-cluster {
    background-image: url() !important; }
  .add-cluster .wrapper .p-v-lg {
    padding: 1rem 0; }
  .logo-bg {
    display: none; } }

@media all and (min-width: 1440px) {
  .hidden-lg {
    display: none; }
  .photo-bubbles {
    overflow: visible; } }

.modal-content {
  display: none;
  visibility: hidden; }
