.gutter-grid--cols-1 > * {
  width: calc(99.9999% / 1);
}

.gutter-grid--cols-2 > * {
  width: calc(99.9999% / 2);
}

.gutter-grid--cols-2 > .gutter-grid__cell--span-2 {
  width: calc(2 / 2 * 100%);
}

@media (max-width: 600px) {
  .gutter-grid--cols-2:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-3 > * {
  width: calc(99.9999% / 3);
}

.gutter-grid--cols-3 > .gutter-grid__cell--span-2 {
  width: calc(2 / 3 * 100%);
}

.gutter-grid--cols-3 > .gutter-grid__cell--span-3 {
  width: calc(3 / 3 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-3:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-3:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-4 > * {
  width: calc(99.9999% / 4);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-2 {
  width: calc(2 / 4 * 100%);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-3 {
  width: calc(3 / 4 * 100%);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-4 {
  width: calc(4 / 4 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-4:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-4:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-5 > * {
  width: calc(99.9999% / 5);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-2 {
  width: calc(2 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-3 {
  width: calc(3 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-4 {
  width: calc(4 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-5 {
  width: calc(5 / 5 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 3);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-6 > * {
  width: calc(99.9999% / 6);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-2 {
  width: calc(2 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-3 {
  width: calc(3 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-4 {
  width: calc(4 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-5 {
  width: calc(5 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-6 {
  width: calc(6 / 6 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 3);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid {
  -gutter-grid-: grid;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  border: 0 solid transparent;
  display: flex;
  align-content: stretch;
}

.gutter-grid[class*="grid--cols"]:not(.gutter-grid--noWrap) {
  flex-wrap: wrap;
}

.gutter-grid__wrapper {
  padding-bottom: 0.1px;
}

.gutter-grid:not([class*="grid--cols"]):not(.gutter-grid--noStretch):not([class*="grid--align-"]):not([class*="grid--space-"]):not(.gutter-grid--noResize) > .gutter-grid__cell:not(.gutter-grid__cell--noStretch):not(.gutter-grid__cell--noResize) {
  flex-grow: 1;
}

.gutter-grid__cell {
  -gutter-grid-: cell;
  box-sizing: border-box;
  min-width: 0%;
  max-width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  background-clip: padding-box !important;
  border: 0 solid transparent;
}

.gutter-grid__cell[class*="cell--span-"] {
  flex-grow: 1;
}

.gutter-grid__cell.gutter-grid {
  display: flex;
}

.gutter-grid__cell, .gutter-grid__cell * > {
  max-width: 100%;
  flex-shrink: 1;
}

.gutter-grid__inner {
  -gutter-grid-: inner;
  display: block;
  box-sizing: border-box;
}

.gutter-grid--outerGutters {
  margin: 0;
}

.gutter-grid--outerGutters-v {
  margin-top: 0;
  margin-bottom: 0;
}

.gutter-grid--outerGutters-h {
  margin-left: 0;
  margin-right: 0;
}

.gutter-grid--outerGutters-top {
  margin-top: 0;
}

.gutter-grid--outerGutters-bottom {
  margin-bottom: 0;
}

.gutter-grid--outerGutters-left {
  margin-left: 0;
}

.gutter-grid--outerGutters-right {
  margin-right: 0;
}

.gutter-grid--hasInners > * {
  display: flex;
  align-items: stretch;
}

.gutter-grid--hasInners > * > * {
  display: block;
  width: 100%;
}

.gutter-grid--hasInners > * > *.gutter-grid {
  display: flex;
}

.gutter-grid--vAlign-center {
  align-items: center;
}

.gutter-grid--vAlign-top {
  align-items: flex-start;
}

.gutter-grid--vAlign-bottom {
  align-items: flex-end;
}

.gutter-grid--vertical {
  flex-direction: column;
}

.gutter-grid--stretch > * {
  flex-grow: 1;
}

.gutter-grid--noStretch > * {
  flex-grow: 0;
}

.gutter-grid--noShrink > * {
  flex-shrink: 0;
}

.gutter-grid--noResize > * {
  flex-shrink: 0;
  flex-grow: 0;
}

.gutter-grid--mini {
  min-width: 0;
}

@media (max-width: 1200px) {
  .gutter-grid {
    flex-wrap: wrap;
  }
}

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

.gutter-grid--noWrap {
  flex-wrap: nowrap;
}

.gutter-grid--space-between > *, .gutter-grid--space-around > * {
  flex-grow: 0;
}

.gutter-grid--space-between {
  justify-content: space-between;
}

.gutter-grid--space-around {
  justify-content: space-around;
}

.gutter-grid--space-evenly {
  justify-content: space-around;
  justify-content: space-evenly;
}

.gutter-grid--align-left > *, .gutter-grid--align-center > *, .gutter-grid--align-right > * {
  flex-grow: 0;
}

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

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

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

.gutter-grid--align-stretch > * {
  flex-grow: 1;
}

.gutter-grid__cell--vAlign-center {
  -ms-grid-row-align: center;
      align-self: center;
}

.gutter-grid__cell--vAlign-top {
  align-self: flex-start;
}

.gutter-grid__cell--vAlign-bottom {
  align-self: flex-end;
}

.gutter-grid__cell--stretch {
  flex-grow: 1;
}

.gutter-grid__cell--noStretch {
  flex-grow: 0;
}

.gutter-grid__cell--noShrink {
  flex-shrink: 0;
}

.gutter-grid__cell--noResize {
  flex-shrink: 0;
  flex-grow: 0;
}

.icon,
#random-div,
#inline-icon-test::after,
.top-nav .nav-item.locations .nav-menu__icon,
.navbar.menu--main .main-nav-container li:first-of-type .nav-menu__link,
.navigation.menu--main .main-nav-container li:first-of-type .nav-menu__link {
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
}

.icon--large {
  width: 32px;
  height: 32px;
}

.icon--heart,
#random-div,
#inline-icon-test::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.icon--home {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3l-10-9-10 9h3v8z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3l-10-9-10 9h3v8z'/%3E%3C/svg%3E");
}

.icon--arrow-down {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/%3E%3C/svg%3E");
}

.icon--arrow-down-blue {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%2325A2E4'%3E%3Cpath d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%2325A2E4'%3E%3Cpath d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/%3E%3C/svg%3E");
}

.icon--account {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
}

.icon--map-pin,
.top-nav .nav-item.locations .nav-menu__icon {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.icon--search {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
}

.icon--search-red {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='43' height='43' viewBox='0 0 43 43' fill='%23de1219'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='43' height='43' viewBox='0 0 43 43' fill='%23de1219'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
}

.icon--arrow-right-red {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23EF3E43'%3E%3Cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23EF3E43'%3E%3Cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");
}

.icon--arrow-right {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z'/%3E%3C/svg%3E");
}

.icon--social-share {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E\a     %3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z'/%3E\a%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E\a     %3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z'/%3E\a%3C/svg%3E");
}

.icon--three-line-menu {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23404040'%3E\a     %3Cpath d='M0 0h24v24H0z' fill='none'/%3E\a     %3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E\a%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23404040'%3E\a     %3Cpath d='M0 0h24v24H0z' fill='none'/%3E\a     %3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E\a%3C/svg%3E");
}

.icon--alert-warning {
  -webkit-mask: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E");
}

.icon--alert-message {
  -webkit-mask: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.icon--alert-close {
  -webkit-mask: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}

.icon--search-arrow {
  -webkit-mask: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E\a      %3Cpath d='M0 0h24v24H0z' fill='none'/%3E\a      %3Cpath d='M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z'/%3E\a      %3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E\a      %3Cpath d='M0 0h24v24H0z' fill='none'/%3E\a      %3Cpath d='M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z'/%3E\a      %3C/svg%3E");
}

#inline-icon-test::after {
  content: '';
  display: block;
}

.top-nav {
  font-family: "Roboto Condensed", Arial, "Nimbus Sans L", sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 0;
  text-align: left;
  background-color: #3c3c42;
  color: #fff;
  position: relative;
}

.top-nav .menu {
  margin: 0;
}

.top-nav .careers {
  display: none;
}

@media (min-width: 1025px) {
  .top-nav .careers {
    display: inline-block;
  }
}

.top-nav .nav-item.login, .top-nav .nav-item.logout {
  background-color: #f4f4f4;
  margin: 0 2px 0 0;
  padding: 7px 0 0;
}

.top-nav .nav-item.login .bibliocommons_embed_block .btn-primary, .top-nav .nav-item.logout .bibliocommons_embed_block .btn-primary {
  font-family: "Roboto Condensed", Arial, "Nimbus Sans L", sans-serif;
  font-size: 20px;
  border: none;
  background-color: transparent;
  color: #1f1f1f;
}

.top-nav .nav-item.login .bibliocommons_embed_block .dropdown-menu, .top-nav .nav-item.logout .bibliocommons_embed_block .dropdown-menu {
  right: 0;
  left: auto;
  color: #1f1f1f;
}

.top-nav .nav-item.login .bibliocommons_embed_block .dropdown-menu li, .top-nav .nav-item.logout .bibliocommons_embed_block .dropdown-menu li {
  margin: 0;
  padding: 0;
  height: auto;
  float: none;
}

.top-nav .nav-item.login .bibliocommons_embed_block .dropdown-menu li.dropdown-header, .top-nav .nav-item.logout .bibliocommons_embed_block .dropdown-menu li.dropdown-header {
  display: block;
  padding: 1rem 1rem 0;
  white-space: nowrap;
  border-top: 1px solid #777;
}

.top-nav .nav-item.login .bibliocommons_embed_block .dropdown-menu .indented, .top-nav .nav-item.logout .bibliocommons_embed_block .dropdown-menu .indented {
  margin-left: 0;
}

.top-nav .nav-item.login .bibliocommons_embed_block .dropdown-menu .info, .top-nav .nav-item.logout .bibliocommons_embed_block .dropdown-menu .info {
  margin-top: -5px;
  margin-bottom: -6px;
  padding: 10px 15px;
}

.top-nav .nav-item.login .bibliocommons_embed_block .dropdown-menu .info .btn, .top-nav .nav-item.logout .bibliocommons_embed_block .dropdown-menu .info .btn {
  margin-right: 0;
}

.top-nav .nav-item.login .bibliocommons_embed_block .dropdown-menu .divider, .top-nav .nav-item.logout .bibliocommons_embed_block .dropdown-menu .divider {
  display: none;
}

.top-nav .nav-item.login:hover, .top-nav .nav-item.logout:hover {
  background-color: #f4f4f4;
}

.top-nav .nav-item.locations .nav-menu__icon,
.top-nav .nav-item.locations .nav-menu__link {
  display: inline-block;
}

.top-nav .nav-item.locations .nav-menu__icon {
  float: left;
  background-color: #d03039;
}

.top-nav .support {
  background-color: #f58220;
  margin: 0;
}

.top-nav .login:hover,
.top-nav .logout:hover,
.top-nav .support:hover {
  background-color: currentColor;
}

.top-nav .login a,
.top-nav .logout a,
.top-nav .support a {
  color: #1f1f1f;
}

.top-nav .login:hover {
  background: #bfee7f;
}

.top-nav .mega-menu-wrapper {
  width: 100vw;
  position: absolute;
  left: -100vw;
  top: 61px;
  z-index: 9999;
  transition: left .33s;
  overflow: hidden;
}

@media (min-width: 769px) {
  .top-nav .mega-menu-wrapper {
    width: initial;
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
  }
}

.top-nav .mega-menu-wrapper.is-active {
  left: 0;
}

.navbar::before,
.navigation::before {
  content: '';
  display: table;
}

.navbar::after,
.navigation::after {
  content: '';
  display: table;
  clear: both;
}

[dir="rtl"] .navbar, [dir="rtl"]
.navigation {
  text-align: right;
}

.navbar.menu--mega-menu,
.navigation.menu--mega-menu {
  height: 120vh;
  width: 100vw;
  background-color: #d03039;
  padding: 0;
}

@media (min-width: 769px) {
  .navbar.menu--mega-menu,
  .navigation.menu--mega-menu {
    height: 58px;
    width: auto;
    padding: 0 20px;
  }
}

.navbar.menu--mega-menu .mobile-home-link-wrapper,
.navigation.menu--mega-menu .mobile-home-link-wrapper {
  display: block;
  width: 100vw;
  height: 48px;
  padding: 1.5rem 0 0 1rem;
}

@media (min-width: 769px) {
  .navbar.menu--mega-menu .mobile-home-link-wrapper,
  .navigation.menu--mega-menu .mobile-home-link-wrapper {
    display: none;
  }
}

.navbar.menu--mega-menu .mobile-home-link-wrapper .icon,
.navigation.menu--mega-menu .mobile-home-link-wrapper .icon {
  background-color: #fff;
  display: inline-block;
  margin-right: 1rem;
}

.navbar.menu--mega-menu .mobile-home-link-wrapper .home-link,
.navigation.menu--mega-menu .mobile-home-link-wrapper .home-link {
  display: inline-block;
  color: #fff;
}

.navbar.menu--mega-menu .mobile-home-link-wrapper .home-link::before,
.navigation.menu--mega-menu .mobile-home-link-wrapper .home-link::before {
  content: '\f015';
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 24px;
  margin-right: 0.5rem;
}

.navbar.menu--mega-menu .mobile-login-link-wrapper,
.navigation.menu--mega-menu .mobile-login-link-wrapper {
  display: block;
  width: 100vw;
  height: 48px;
  background-color: #2e2e2e;
  padding: 10px 0 0 1rem;
}

@media (min-width: 769px) {
  .navbar.menu--mega-menu .mobile-login-link-wrapper,
  .navigation.menu--mega-menu .mobile-login-link-wrapper {
    display: none;
  }
}

.navbar.menu--mega-menu .mobile-login-link-wrapper .login-link,
.navigation.menu--mega-menu .mobile-login-link-wrapper .login-link {
  display: inline-block;
  color: #fff;
}

.navbar.menu--mega-menu li,
.navigation.menu--mega-menu li {
  float: none;
  position: relative;
}

@media (min-width: 769px) {
  .navbar.menu--mega-menu li,
  .navigation.menu--mega-menu li {
    float: left;
    font-size: 1rem;
    padding: 20px 20px 20px 0;
  }
}

@media (min-width: 960px) {
  .navbar.menu--mega-menu li,
  .navigation.menu--mega-menu li {
    font-size: 20px;
  }
}

@media (min-width: 1071px) {
  .navbar.menu--mega-menu li,
  .navigation.menu--mega-menu li {
    padding: 20px;
  }
}

.navbar.menu--mega-menu li .link-arrow,
.navigation.menu--mega-menu li .link-arrow {
  display: block;
  position: absolute;
  right: 0;
  top: 15px;
  background: #fff;
}

@media (min-width: 769px) {
  .navbar.menu--mega-menu li .link-arrow,
  .navigation.menu--mega-menu li .link-arrow {
    display: none;
  }
}

.navbar.menu--mega-menu .support-locations-mobile,
.navigation.menu--mega-menu .support-locations-mobile {
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #2e2e2e;
}

@media (min-width: 769px) {
  .navbar.menu--mega-menu .support-locations-mobile,
  .navigation.menu--mega-menu .support-locations-mobile {
    display: none;
  }
}

.navbar.menu--main li,
.navigation.menu--main li {
  padding: 15px;
}

.navbar.menu--main .main-nav-container li:first-of-type,
.navigation.menu--main .main-nav-container li:first-of-type {
  display: none;
  margin-right: 0;
}

@media (min-width: 1025px) {
  .navbar.menu--main .main-nav-container li:first-of-type,
  .navigation.menu--main .main-nav-container li:first-of-type {
    display: inline-block;
  }
}

.navbar.menu--main .main-nav-container li:first-of-type .nav-menu__link,
.navigation.menu--main .main-nav-container li:first-of-type .nav-menu__link {
  color: #f4f4f4;
  font-size: 0;
}

.navbar.menu--main .main-nav-container li:first-of-type .nav-menu__link:before,
.navigation.menu--main .main-nav-container li:first-of-type .nav-menu__link:before {
  content: '\f015';
  font-family: 'FontAwesome';
  font-size: 24px;
}

.navbar.menu--footer,
.navigation.menu--footer {
  height: auto;
  font-size: 1rem;
  line-height: 34px;
  letter-spacing: 0;
  float: left;
  width: 85%;
}

@media (min-width: 769px) {
  .navbar.menu--footer,
  .navigation.menu--footer {
    float: none;
    width: auto;
  }
}

.navbar.menu--footer li,
.navigation.menu--footer li {
  float: none;
  height: auto;
  padding: 0;
  margin: 0;
}

.navbar .nav-menu__link,
.navbar .nav-menu__link.is-active,
.navigation .nav-menu__link,
.navigation .nav-menu__link.is-active {
  color: #fff;
  display: block;
}

.navbar__item,
.navbar li,
.navigation__item,
.navigation li {
  float: left;
  padding: 0;
  margin: 0 1rem 0 0;
  list-style-type: none;
  list-style-image: none;
  height: 54px;
  padding: 20px;
}

.navbar__item.active,
.navbar li.active,
.navigation__item.active,
.navigation li.active {
  background-color: #3c3c42;
}

[dir="rtl"] .navbar__item, [dir="rtl"]
.navbar li, [dir="rtl"]
.navigation__item, [dir="rtl"]
.navigation li {
  float: right;
  padding: 0 0 0 10px;
}

.support-locations {
  position: absolute;
  right: 0;
  top: 0;
}

.support-locations .locations i {
  color: #f02643;
  margin-right: 8px;
  font-size: 24px;
  line-height: 21px;
}

.support-locations .getacard {
  display: none;
}

.support-locations .google-translate {
  margin: 0;
}

.support-locations .goog-te-gadget-simple {
  background-color: transparent !important;
  border: 0 !important;
}

.support-locations .goog-te-gadget-simple .goog-te-menu-value {
  font-family: "Roboto", Arial, "Nimbus Sans L", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 1.2em;
  position: relative;
}

.support-locations .goog-te-gadget-simple .goog-te-menu-value::before {
  content: url("/themes/custom/if_zen/images/google-translate-g.png");
  position: absolute;
  left: -2em;
}

.support-locations .goog-te-gadget-simple .goog-te-menu-value::after {
  content: '>';
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
  position: absolute;
  right: -1em;
}

.support-locations .goog-te-gadget-simple span:nth-child(3),
.support-locations .goog-te-gadget-simple span:nth-child(5),
.support-locations .goog-te-gadget-simple img {
  display: none;
}

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