/* #region IMPORTING FONTS */

/* @import url("https://use.typekit.net/bpo3avy.css"); */

/* #endregion IMPORTING FONTS */

/* @import url("https://use.typekit.net/qtc5rwo.css"); */

body.masterplan {
  @include breakpoint(large) {
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#masterplan-bg {
  @extend .fade-in;
  @-moz-document url-prefix() {
    animation: none;
    opacity: 1;
  }
}

.logo-container {
  position: absolute;

  width: 100%;
  left: 0;
  top: 0;
  text-align: center;
  background: linear-gradient(to top, rgba(#0a0a0a, 0) 0%, rgba(#0a0a0a, 0.5) 100%);
  z-index: 2;
}

.logo-container img {
    filter: drop-shadow(0 3px 10px #0a0a0a);
    max-height: 80px;
    padding: 15px;
  }

.logo-container {

  @include breakpoint(xlarge) {
    position: fixed;
    left: 0;
    top: 0;
    img {
      left: 0;

      max-height: 100px;
      padding: 15px 20px;
    }
  }
}

.logo-container {
  @include breakpoint(medium down) {
    img {
      max-height: 60px;
      padding: 15px 10px 10px;
    }
  }
}

.logo-container {
  @include breakpoint(small down) {
    img {
      max-height: 50px;
      padding: 7px;
    }
  }
}

#contact-info {
  text-align: center;
  padding: 40px 60px;
}

#contact-info p {
    margin: 15px 20px 15px 0px;
    position: relative;
    padding-left: 40px;
    width: auto;
    display: inline-block;
  }

#contact-info img {
    max-width: 230px;
    margin-bottom: 30px;
  }

#contact-info i {
    position: absolute;
    left: 0;
    top: 0;
    color: #000f9f;
    font-size: 1.5rem;
  }

#contact-info a {
    color: #0a0a0a;
  }

.homepage-container {
  @include breakpoint(large) {
    height: calc(var(--vh, 1vh) * 100);
    background-color: #1a2517;
  }
  @include breakpoint(medium down) {
    position: relative;
  }
}

.homepage-container .page-nav {
    position: absolute;
    width: 100%;

    z-index: 10;
  }

.homepage-container a.back {
    position: absolute;

    color: #fefefe;
    z-index: 10;
    display: flex;
    align-items: center;
  }

.homepage-container a.back i {
      font-size: 23px;
      margin-top: 5px;
      line-height: 1;
      margin-right: 10px;
      display: inline-block;
    }

.homepage-container {

  overflow: hidden;
}

.homepage-container .compass-container {
    position: absolute;
    left: 90px;
    z-index: 10;
    bottom: 60px;
    transform: translateX(50%);
    display: inline-block;
  }

.homepage-container .compass-container svg {
      filter: drop-shadow(0 0 4px black);
      transform: rotate(180deg);
      transition: all 0.5s 0.5s;
    }

.homepage-container .compass-container svg.side-view {
        transform: rotate(250deg);
      }

.homepage-container .compass-container svg {
      width: 55px;
}

.homepage-container .compass-container .dot {
      fill: white;
    }

.homepage-container .compass-container .north {
      fill: #fefefe;
    }

.homepage-container .compass-container {
    @include breakpoint(medium down) {
      top: unset;
      bottom: 55px;
      left: 50%;
      transform: translateX(-50%);
      width: 37px;

      svg {
        width: 37px;
        filter: none;
        left: 0;
      }
      .dot {
        fill: black;
      }
      .north {
        fill: #0a0a0a;
      }
    }
}

.homepage-container .compass-container {
    @include breakpoint(small down) {
      display: none;
    }
}

.homepage-container .imperio-logo {
    @include breakpoint(medium only) {
      left: 50%;
      transform: translateX(-50%);
      bottom: 65px;
      width: 110px;
      &.light {
        display: none;
      }
      &.dark {
        display: inline-block;
      }
    }
    @include breakpoint(small down) {
      display: none;
    }
  }

.homepage-container .imperio-logo, .landing-page__header-container .imperio-logo {
    position: absolute;
    left: 40px;
    width: 200px;
    bottom: 35px;
    z-index: 10;

    @include breakpoint(large down) {
      bottom: 25px;
      left: 25px;
      width: 180px;
    }
  }

.homepage-container .imperio-logo.dark, .landing-page__header-container .imperio-logo.dark {
      display: none;
    }

.landing-page__header-container .imperio-logo {
    @include breakpoint(medium down) {
      display: none;
      left: 50%;
      transform: translateX(-50%);
      filter: drop-shadow(0 0 5px black);
    }
    @include breakpoint(small down) {
      display: none;
    }
  }

body:not(.information-visible) span.hide-text {
    display: none;
  }

body:not(.information-visible) span.view-text {
    display: inline;
  }

body.information-visible span.view-text {
    display: none;
  }

body.information-visible span.hide-text {
    display: inline;
  }

body.information-visible .masterplan-container .svg-side svg .b-dot,
      body.information-visible .masterplan-container .svg-side svg .b-text,
      body.information-visible .masterplan-container .svg-front svg .b-dot,
      body.information-visible .masterplan-container .svg-front svg .b-text {
        transform: translateY(0px);
        opacity: 1;
      }

.b-text.from-right {
    transform: translateX(-50px);
  }

.b-text.from-right.visible {
      transform: translateX(0px);
    }

.svg-container {
  position: relative;
}

.svg-side,
.svg-front {
  left: 0;
  right: 0;

  transition: 1s all;
  opacity: 1;
}

.svg-side.hidden, .svg-front.hidden {
    opacity: 0;
    display: none;
    height: 0;
    @include breakpoint(small down) {
    }
  }

@mixin masterplan-img-sizing {
  width: 100%;

  @include breakpoint(small down) {
    width: 200%;
    left: -30%;
    max-width: unset;
  }
}

.hover-area {
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}

.facility-text {
  opacity: 0;
  transition:
    opacity 0.3s ease-out,
    transform 0.5s ease-out,
    bottom 0.3s ease-out;
  position: relative;
}

.facility-text.from-top {
    top: -10px;
  }

.facility-text.from-top.visible {
      top: 0;
    }

.facility-text.from-bottom {
    transform: translateY(50px);
  }

.facility-text.from-bottom.visible {
      transform: translateY(0px);
    }

.facility-text.visible {
    opacity: 1;
  }

#west-text,
#east-text,
#west-alt-text,
#east-alt-text {
  opacity: 0.8;
}

#west-text.hovered, #east-text.hovered, #west-alt-text.hovered, #east-alt-text.hovered {
    opacity: 1;
  }

#west-text,
#east-text,
#west-alt-text,
#east-alt-text {
  transition: all 0.3s;
  transform: translateX(0);
}

#west-text .bg, #east-text .bg, #west-alt-text .bg, #east-alt-text .bg {
    transition: all 0.3s;
    opacity: 0.7;
  }

#west-text.hovered {
  transform: translateX(25px);
}

#east-text.hovered {
  transform: translateX(-25px);
}

#east-alt-text.hovered {
  transform: translate(-25px, -25px);
}

#west-alt-text.hovered {
  transform: translate(700px, 700px);
}

.phase-path{
  fill:none;
  cursor:pointer;
}

.masterplan-container {
  position: relative;
  width: 100%;

  @include breakpoint(large) {
    height: 100%;
    overflow: hidden;
  }
}

.masterplan-container:not(.facilities-masterplan):before {
    content: "";
    position: fixed;
    z-index: 1;
    top: 0px;
    width: 100%;
    height: 200px;
    left: 0;
    background: linear-gradient(to top, rgba(#0a0a0a, 0) 0%, rgba(#0a0a0a, 0.6) 100%);
    @include breakpoint(medium down) {
      position: absolute;
    }
  }

.masterplan-container .logo-container img {
      width: 100%;
      left: 0;
    }

.masterplan-container img {
    position: absolute;
    z-index: 0;
    top: 0;

    @include breakpoint(medium down) {
      &.building-highlight {
        display: none;
      }
    }
  }

.masterplan-container #masterplan-bg,
  .masterplan-container .building-highlight {
    @include masterplan-img-sizing;
  }

.masterplan-container svg:not(.logo) {
    z-index: 2;
    position: relative;

    width: 100%;
    @include masterplan-img-sizing;
    @include breakpoint(medium down) {
      opacity: 0;
      z-index: -1;
    }
  }

.masterplan-container svg:not(.logo) path.svg-path,
    .masterplan-container svg:not(.logo) g.svg-pa,
    .masterplan-container svg:not(.logo) path.phase-path {
      opacity: 0;
      cursor: pointer;
      fill: #0bff00;
    }

.masterplan-container svg:not(.logo) .b-dot {
      transition:
        opacity 0.2s ease-out,
        transform 0.2s ease-out,
        bottom 0.2s ease-out;
    }

.masterplan-container svg:not(.logo) .b-dot.from-top {
        transform: translateY(0px);
      }

.masterplan-container svg:not(.logo) .b-dot.from-top.visible {
          transform: translateY(100px);
        }

.masterplan-container svg:not(.logo) .b-dot.from-bottom {
        transform: translateY(0px);
      }

.masterplan-container svg:not(.logo) .b-dot.from-bottom.visible {
          transform: translateY(-50px);
        }

.masterplan-container svg:not(.logo) .b-dot.from-left {
        transform: translateX(100px);
      }

.masterplan-container svg:not(.logo) .b-dot.from-left.visible {
          transform: translateX(0px);
        }

.masterplan-container svg:not(.logo) .b-dot.from-right {
        transform: translateX(-100px);
      }

.masterplan-container svg:not(.logo) .b-dot.from-right.visible {
          transform: translateX(0px);
        }

.masterplan-container svg:not(.logo) .b-dot.visible {
        opacity: 1;
      }

.masterplan-container svg:not(.logo) .b-header-text {
      font-family: "Gotham", sans-serif;
      font-weight: 700;
      font-size: 46px;
      fill: #976a4c;
      transform: translateX(4px);
    }

.masterplan-container svg:not(.logo) .b-info text {
        font-family: "Gotham", sans-serif;
        font-weight: 500;
        font-size: 38px;
        fill: #0a0a0a;
      }

.masterplan-container svg:not(.logo) .b-info text.unavailable {
          fill: #bdbdbd;
          text-decoration: line-through;
        }

.masterplan-container .building-highlight {
    transition: opacity 0.5s 0.1s ease-out;
    opacity: 0;
  }

.masterplan-container .building-highlight.visible {
      opacity: 0.5;
    }

.masterplan-container .svg-side:not(.phase-b) svg .b-header-text {
      font-size: 798.613px;
      transform: translateX(350px);
    }

.masterplan-container .svg-side:not(.phase-b) svg .b-info text {
      font-size: 660px;
    }

.masterplan-container .svg-side:not(.phase-b) svg .b-dot.from-top {
        transform: translateY(0px);
      }

.masterplan-container .svg-side:not(.phase-b) svg .b-dot.from-top.visible {
          transform: translateY(0px);
        }

.masterplan-container .svg-side:not(.phase-b) svg .b-dot.from-bottom {
        transform: translateY(0px);
      }

.masterplan-container .svg-side:not(.phase-b) svg .b-dot.from-bottom.visible {
          transform: translateY(0px);
        }

.facilities-masterplan {
  z-index: 20;
  overflow-x: hidden;

  overflow-y: hidden;
  @include breakpoint(medium down) {
    overflow-x: auto;
    img {
      position: absolute;
      transform: scale(1.1);
    }
    svg {
      display: initial;
      transform: scale(1.1);
      @include breakpoint(small down) {
        opacity: 1;
        z-index: 1;
      }
    }
  }
}

.facilities-masterplan__scroll img {
      height: 55px;
      margin-top: -5px;
    }

.facilities-masterplan__scroll {
    display: block;
    position: sticky;
    padding: 10px;
    background: white;
    top: -5px;
    z-index: 10;
    margin-top: -95px;
    text-align: center;
}

.masterplan-container.facilities-masterplan svg {
  @include breakpoint(medium down) {
    z-index: 1;
    opacity: 1;
  }
}

.control-buttons {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 5px;
  display: flex;
  justify-content: space-between;
  @include breakpoint(xlarge) {
    bottom: 30px;
  }
}

.control-buttons a {
    height: 55px;
    padding: 10px;
    overflow: hidden;

    display: flex;
    align-items: center;

    transition: background-color 0.2s ease-in-out;
  }

.control-buttons a:hover {
      background-color: rgba(#976a4c, 0.1);
    }

.control-buttons a:hover svg,
      .control-buttons a:hover path {
        fill: #976a4c;
      }

.control-buttons svg path {
      fill: #fefefe;
    }

.control-buttons svg,
  .control-buttons img {
    max-width: 50px;
    width: 50px;
  }

.control-buttons {
  @include breakpoint(large down) {
    right: 20px;
    .info-button {
      display: none;
    }
  }
}

.control-buttons {
  @include breakpoint(medium down) {
    position: absolute;
    bottom: 50px;
    transform: scale(0.8);
    right: -10px;
      .rotate-button svg path {
        fill: #976a4c;
      }
      .toggle-daytime,
      .toggle-daytime.is-night {
        color: #976a4c;
      }
          .toggle-daytime .day path, .toggle-daytime .night path, .toggle-daytime.is-night .day path, .toggle-daytime.is-night .night path {
            fill: #976a4c !important;
          }
  }
}

.control-buttons {
  @include breakpoint(small down) {
    display: none;
  }
}

.info-button.button.hollow {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  margin-bottom: 5px;
  z-index: 5;
}

.info-button.button.hollow:hover {
    border-color: #976a4c;
  }

.toggle-daytime {
  color: #fefefe;
  font-size: 40px;
  width: 60px;
  margin-right: 10px;
  height: 60px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  top: 5px;
}

.toggle-daytime .night {
    top: 5px;
    left: 5px;
  }

.toggle-daytime .night path {
      fill: #fefefe;
    }

.toggle-daytime .day {
    top: 100%;
    left: 10px;
    max-width: 40px;
  }

.toggle-daytime.is-night .night {
      top: -100%;
    }

.toggle-daytime.is-night .day {
      top: 0px;
    }

.toggle-daytime .day,
  .toggle-daytime .night {
    position: absolute;
    transition: all 0.5s 0.1s;
  }

.toggle-daytime:hover path {
      fill: #caa16d;
    }

.rotate-button {
  position: relative;
  top: 4px;
  left: -5px;
  transform: scaleX(1);
}

.rotate-button.side-view {
    transform: scaleX(-1);
  }

.info-button img {
    max-width: 40px;
  }

.homepage-small {
  margin-top: 40px;
  margin-bottom: 40px;
}

.homepage-small img {
    width: 100%;
    @include breakpoint(large) {
      display: none;
    }
  }

@supports ((-o-object-fit: cover) or (object-fit: cover)) {

.homepage-small img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover
  }
    }

.homepage-small__block {
    margin-top: 40px;
    @include breakpoint(medium) {
      text-align: center;
    }
    @include breakpoint(small down) {
      margin-bottom: 20px;
    }
  }

.homepage-small h2 + .homepage-small__block {
    margin-top: 20px;
  }

.homepage-small .cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

.homepage-small h3 {
    @extend .h4;
    font-weight: 500;
    color: #976a4c;
  }

.homepage-small .button {
    margin-bottom: 0;
    margin-top: 7px;
  }

.homepage-small p {
    margin-bottom: 5px;
  }

.homepage-small p.unavailable {
      color: #bdbdbd;
      text-decoration: line-through;
    }

.callout.interactivity-indication {
  position: fixed;
  left: 50%;

  bottom: 25%;

  @include breakpoint(large down) {
    bottom: 80px;
    transform: scale(0.8) translateX(-63%);
  }
  transform: translateX(-50%);
  color: #a8a26c;
  padding: 25px 40px 25px 25px;
  background: rgba(#1a2517, 0.9);

  z-index: 10;
}

.callout.interactivity-indication .far {
    margin-right: 10px;
  }

.callout.interactivity-indication .fa-2x {
    margin-bottom: 10px;
    font-size: 25px;
  }

.callout.interactivity-indication .close-button {
    color: #a8a26c;
    opacity: 0.8;
    top: 30%;
    right: 20px;
  }

.callout.interactivity-indication p {
    margin-bottom: 0;
  }

.callout.interactivity-indication {
  width: 100%;
  max-width: 800px;
}

.show-east,
.show-west {
  position: absolute;

  transform: translateY(calc(-100% - 10px));
  @extend .button;

  background-color: rgba(#976a4c, 0.8);
  z-index: 10;
  color: #fefefe !important;
  @include breakpoint(large) {
    display: none !important;
  }
}

.show-east {
  left: 10px;
}

.show-west {
  right: 0px;
  @include breakpoint(small down) {
    right: 5px;
  }
}

.phases-button-container {
  display: flex;
}

.phases-button-container .button {
    flex-grow: 1;
    margin: 5px;
  }

body.block {
  background: #fefefe;
}

body.block .menu-icon,
  body.block .page-content {
    display: none;
  }

body.block {
  @include breakpoint(large) {
    height: calc(var(--vh, 1vh) * 100);
  }
}

body.block {
  @include breakpoint(medium down) {
    min-height: calc(var(--vh, 1vh) * 100);
  }
}

body.block .full {
    @extend .block-reveal;
    height: 100%;
  }

body.block .page-nav nav {
    padding-right: 20px;
  }

.s #ajax-content {
  transition: opacity 0.2s;
}

.floorplate {
  flex-direction: column;
}

.block .menu-icon-container, .block-reveal .menu-icon-container {
    z-index: -10;
  }

.block .custom-close-button-container, .block-reveal .custom-close-button-container {
  }

.block .page-nav, .block-reveal .page-nav {
    padding-right: 40px;
  }

.reveal.block-reveal {
  z-index: 1004;
}

body.block .full,
.block-reveal {
  padding-top: 0;
  padding-bottom: 0;
  top: 0 !important;
}

body.block .full .page-nav, .block-reveal .page-nav {
    @include breakpoint(small down) {
      height: auto;
      font-size: 0.85rem;
      padding: 8px 40px;
      letter-spacing: 0;
    }
  }

body.block .full .grid p.block-select-indicator, body.block .full .floorplate p.block-select-indicator, body.block .full .block-sidebar p.block-select-indicator, .block-reveal .grid p.block-select-indicator, .block-reveal .floorplate p.block-select-indicator, .block-reveal .block-sidebar p.block-select-indicator {
      color: #976a4c;
      font-weight: 600;
      font-variant: small-caps;
      text-transform: lowercase;
      letter-spacing: 0.5px;
    }

body.block .full .grid,
  body.block .full .floorplate,
  body.block .full .block-sidebar,
  .block-reveal .grid,
  .block-reveal .floorplate,
  .block-reveal .block-sidebar {

    @include breakpoint(xlarge) {
      overflow: auto;
      align-items: center;
    }
}

body.block .full .grid,
  body.block .full .floorplate,
  body.block .full .block-sidebar,
  .block-reveal .grid,
  .block-reveal .floorplate,
  .block-reveal .block-sidebar {

    @include breakpoint(large down) {
      &,
      .floorplate {
        display: flex;
        position: relative;
        align-items: flex-start;
        justify-content: flex-start;
      }
      .floorplate {
        align-items: center;
      }
      padding-bottom: 20px;
      overflow: auto;
    }
}

body.block .full .grid,
  body.block .full .floorplate,
  body.block .full .block-sidebar,
  .block-reveal .grid,
  .block-reveal .floorplate,
  .block-reveal .block-sidebar {

    @include breakpoint(medium only) {
      padding-bottom: 10px;
    }
}

body.block .full .grid > div, body.block .full .floorplate > div, body.block .full .block-sidebar > div, .block-reveal .grid > div, .block-reveal .floorplate > div, .block-reveal .block-sidebar > div {
      flex-grow: 0;
    }

body.block .full .block-sidebar p.block-select-indicator, .block-reveal .block-sidebar p.block-select-indicator {
      margin-bottom: 15px;
      margin-top: -5px;
    }

body.block .full .block-sidebar, .block-reveal .block-sidebar {
    @include breakpoint(portrait) {
      height: auto;
      text-align: center;
      img {
        width: auto;
      }
    }
}

body.block .full .cell, .block-reveal .cell {
    @include breakpoint(xlarge) {
      max-height: calc(850px);
    }
    @include breakpoint(xlarge only) {
      margin-top: auto;
      margin-bottom: auto;
    }
  }

.block-sidebar {
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(189, 189, 189, 0) 0,
    rgba(189, 189, 189, 0.2) 25% 75%,
    rgba(189, 189, 189, 0) 100%
  );
  height: 100%;
  @include breakpoint(large) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.block-sidebar .building-position {
    padding: 5px;
    mix-blend-mode: darken;
    width: 100%;
  }

.block-sidebar {
  @include breakpoint(medium down) {
    > div {
      width: 100%;
    }
    svg,
    img {
      max-height: 130px;
      -o-object-position: center;
         object-position: center;
      max-width: 50%;
    }
      @supports ((-o-object-fit: contain) or (object-fit: contain)) {
    svg,
    img {
        flex-grow: 1;
        -o-object-fit: contain;
           object-fit: contain
    }
      }

    &_medium-graphics {
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  }
}

.block-sidebar {
  @include breakpoint(small down) {
    &_medium-graphics {
      justify-content: center;
    }
  }

  background: linear-gradient(
    to bottom,
    rgba(#bdbdbd, 0) 0%,
    rgba(#bdbdbd, 0.2) 25% 75%,
    rgba(#bdbdbd, 0) 100%
  );
}

.block-reveal .grid-x {
  @include breakpoint(small down) {
    box-sizing: border-box;
  }
}

.floorplate {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floorplate svg {
    max-height: calc(700px - 110px);
    height: 95%;
    position: relative;
    top: -10px;
  }

.floorplate {
  @include breakpoint(portrait) {
    height: auto;
    svg {
      height: auto;
      width: 100%;
    }
  }
}

.block__back.hide-for-large {
    bottom: 0;
    padding: 20px;
    margin: 10px auto 0;
    width: 100%;
    @include breakpoint(small down) {
      background: rgba(#0a0a0a, 0.1);
    }
  }

.block__back.hide-for-large nav ul {
        display: flex;
        justify-content: center;
        @include breakpoint(medium) {
          margin-bottom: 15px;
        }
      }

.block__back.hide-for-large {
    text-align: center;
}

.block-sidebar,
.floorplate {
  @include breakpoint(medium down) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  @include breakpoint(small down) {
    margin-top: 20px;
  }
}

.floor-path:not(.unavailable) {
    cursor: pointer;
  }

.floor-path {
  opacity: 0;
}

.floor-bg rect {
    fill: #caa16d;
    opacity: 0;
    @include breakpoint(large down) {
      opacity: 0.1;
    }
    transition: all 0.3s;
  }

.floor-bg.unavailable rect {
      fill: #bdbdbd;
    }

.floor-bg.unavailable.highlight-hover rect, .floor-bg.unavailable rect {
        opacity: 0.4;
      }

.floor-bg.highlight rect, .floor-bg.highlight-hover rect {
      opacity: 0.8;
    }

.floor-picker .button {
    padding-top: 5px;
    padding-bottom: 5px;
  }

@media only screen and (max-width: 748px) {

.floor-picker .button {
      margin: 5px 2px;
      width: calc(50% - 15px)
  }
    }

.floor-picker .button.active {
      background: #caa16d;
      color: #fefefe;
    }

.apartment-list {
  list-style: none;
  margin-left: 0;
}

.apartment-list li {
    font-size: 0.95rem;
  }

.apartment-list li.unavailable {
      color: #bdbdbd;
      text-decoration: line-through;
    }

.apartment-list h3 {
    display: inline-block;

    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid rgba(#976a4c, 0.7);
    opacity: 0.6;
  }

.compass-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 5px auto 80px;

  }

.compass {
  width: 50px;
  height: auto;
  position: absolute;
  top: 0;
}

tspan.fa {
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  position: absolute;
  top: -30px;
  margin-top: -50px;
}

.hover-text-bg {
  fill: #333;
  stroke: transparent;
}

.hover-text {
  position: relative;
  top: -10px;
  font-size: 66px;
}

.hover-text.apt-no {
    text-shadow: 0 1px 3px #2b2e47;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 75px;
    letter-spacing: 0.5px;
    margin-left: 50px;
  }

.hover-text-bg,
.hover-text {
  

  transition: all 0.3s;
}

.highlight .hover-text-bg,
  .highlight-hover .hover-text-bg,
  .highlight .hover-text,
  .highlight-hover .hover-text {
    opacity: 1;
  }

.apt-lines path {
  transition: all 0s;
}

.hover-text-bg {
  filter: drop-shadow(0 3px 3px rgba(black, 0.3));
}

.apt-hover-path {
  opacity: 0.2;
  fill: #caa16d;
  transition: all 0.3s;
}

.highlight .apt-hover-path {
    fill: #000f9f;
    opacity: 0.4;
  }

.unavailable + .apt-path,
  .unavailable.floor-path {
    cursor: default;
  }

.unavailable .apt-hover-path, .unavailable.highlight .apt-hover-path {
      opacity: 0.4;
      fill: #bdbdbd;
    }

.unavailable .hover-text {
    position: relative;
    left: -50px;
    opacity: 1;
  }

.unavailable .hover-text:not(.apt-no){
      transform:translateX(-30px);
    }

.unavailable .hover-text.apt-no {
      font-weight: 700;
      text-shadow: 0 0 10px white;
      fill: #0a0a0a;
    }

.unavailable .hover-text tspan {
      font-family: "Font Awesome 6 Pro";
      font-size:60px;
    }

.unavailable .hover-text-bg {
    fill: darken(#e6e6e6, 7%);
    opacity: 1;
    stroke: #7a7979;
  }

.hover-text {
  fill: #fefefe;
}

.apt-path {
  cursor: pointer;
  fill: transparent;
}

.apartment__floorplan {
    text-align: center;
    @include breakpoint(large) {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    @include breakpoint(small down) {
      margin-bottom: 10px;
    }
  }

.apartment__floorplan > img {
      max-height: calc(100% - 105px);
      width: auto;
      margin: 0 auto;
    }

.apartment__floorplan .button-group {
      margin-bottom: 0;
      flex-wrap: wrap;
      justify-content: space-between;
    }

.apartment__floorplan .button-group .button {
        margin-top: 15px;
        width: calc(50% - 5px);
      }

.apartment__floorplan .button-group .button:nth-of-type(3) {
          width: 100%;
          margin-top: 5px;
        }

.apartment__details {
    font-size: 0.95rem;
    padding-top: 10px;
    @include breakpoint(large) {
      overflow: auto;
      height: 100%;
    }
    @include breakpoint(medium down) {
      margin-bottom: auto;
    }
  }

.apartment__details h6 {
      color: #976a4c;
      margin-top: 30px;
      margin-bottom: 5px;
    }

.apartment__details p {
      margin-bottom: 0;
    }

.apartment__details__number {
      margin-bottom: 15px;
    }

.apartment__details__room-list .room {
        margin-bottom: 5px;
        font-size: 0.95rem;
      }

.apartment__details__room-list .room .room-type {
          content: "";
          width: 30px;
          height: 30px;
          padding: 3px;

          display: inline-flex;
          align-items: center;
          justify-content: center;
          background: #5a5e74;
        }

.apartment__details__room-list .room .room-type svg {
            width: 17px;
          }

.search-results .apartment__details__room-list .room .room-type {
            background: primary-color;
          }

.apartment__details__room-list .room .room-type {
          border-radius: 50%;

          color: #fefefe;
          font-size: 16px;
          text-align: center;
}

.apartment__details__file {
      font-size: 0.9rem;
      color: darken(red, 20%);
      font-weight: 600;
      display: inline-block;
    }

.apartment__details__file:hover {
        color: darken(red, 14%);
      }

.apartment__details__file i {
        font-size: 1.23rem;
        margin-right: 5px;
      }

.apartment__buttons .button-group {
      flex-wrap: wrap;
      margin-top: 20px;
    }

.apartment__buttons .button-group .button {
        width: 100%;
        margin-top: 7px;
        font-size: 0.9rem;
      }

.apartment__view__price {
      margin-top: 20px;
      font-weight: 700;
      color: #7c7c7c;
      font-size: 18px;
    }

.apartment__view__delivery-date {
      font-size: 15px;
    }

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

.inquiry-reveal.not-full {
    padding: 40px 60px;
    @include breakpoint(small down) {
      padding: 40px 20px;
    }
  }

.inquiry-reveal h4 {
    line-height: 1.2;
    margin-bottom: 30px;
    @include breakpoint(small down) {
      font-size: 20px;
    }
  }

.inquiry-reveal p {
    position: relative;
    min-height: 40px;
  }

.inquiry-reveal #div_id_privacy_notice {
    position: relative;
    text-align: left;
  }

.inquiry-reveal #div_id_privacy_notice label {
      color: #0a0a0a;
      magin-left: 0;
      text-transform: none;
      font-weight: normal;
    }

.inquiry-reveal #div_id_bedrooms {
    border-bottom: 2px solid #976a4c;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

.inquiry-reveal #div_id_bedrooms label {
      color: #0a0a0a;
      text-transform: none;
    }

.inquiry-reveal {

  @include breakpoint(small down) {
    input {
      border-width: 1.5px;
      margin-bottom: 7px;
    }
  }
}

ul.ks-cboxtags li input[type="checkbox"] {
  display: absolute;
}

ul.ks-cboxtags li input[type="checkbox"] {
}

ul.ks-cboxtags li input[type="checkbox"]:focus + label {
  border: 2px solid #e9a1ff;
}

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

.facility-page img {
    margin: 0 auto;
  }

.facility-page__text {
    background: #f2f3ef;
    max-width: 600px;
    position: relative;
    z-index: 1;
    padding: 20px 40px 20px;
    margin: -90px auto 0 auto;
  }

.hovered-apartment {
  opacity: 0;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
  font-weight: 700;
}

g[id$="hover-text"] {
  transform: translateY(15px);
  transform-origin: center;
}

.breadcrumbs li {
  text-transform: lowercase;
  font-variant: small-caps;
  font-size: 17px;
  font-weight: 700;

  letter-spacing: 0.5px;
}

.breadcrumbs li:not(:last-of-type) {
    color: #5f5f5f;
    font-weight: 300;
  }

.breadcrumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1.25;
}

.breadcrumbs li:not(:last-child):after {
  font-weight: 700;
  font-size: 15px;
  margin-right: 5px;
  margin-left: 0;

  position: relative;
  margin: 0 0.2rem;
  opacity: 1;
  content: "/";
  color: #7a7979;
}

a.back {
  @apply flex  gap-2;
}

.rtl{
  direction:rtl;

}

.rtl svg{
  direction: ltr
}

.rtl .button-secondary svg, .rtl .back svg{
  transform:rotate(180deg);
  margin-right:5px;
}

/* New Search Funcationality */

.landing-page__form-container.search-container {
    transform: translate(0, -70%);

    z-index: 10;
    color: #fefefe;
    padding: 24px 30px;
    max-width: 600px;
    margin: 0 auto -100px;
  }

@media only screen and (max-width: 748px) {

.landing-page__form-container.search-container {
      max-width: 400px;
      top: unset;
      transform: translate(0, -30%);

      margin: 0 auto
  }
    }

.landing-page__form-container.search-container {
    @include breakpoint(small down) {
      max-width: 340px;
      top: unset;

      padding: 16px 20px;
    }
}

.landing-page__form-container.search-container .search-container--title {
      font-size: 16.5px;
      font-weight: 700;
      line-height: 14px;
      text-transform: uppercase;
    }

.landing-page__form-container.search-container .search-container--title i {
        margin-right: 8px;
        font-size: 16px;
      }

.landing-page__form-container.search-container .global-search-form {
      background-color: transparent;
      padding: 0;
    }

.landing-page__form-container.search-container .global-search-form .divs {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 100px;
      }

@media only screen and (max-width: 900px) {

.landing-page__form-container.search-container .global-search-form .divs {
       
          gap: 40px
      }
        }

.landing-page__form-container.search-container .global-search-form .divs.m-t-h.m-b-h {
          margin-top: 0;
          margin-bottom: 0;
        }

.landing-page__form-container.search-container .global-search-form #div_id_search_bedrooms,
      .landing-page__form-container.search-container .global-search-form #div_id_price_range_slider {
        padding: 0;
        color: #fefefe;
      }

.landing-page__form-container.search-container .global-search-form #div_id_search_bedrooms .checkbox-container label, .landing-page__form-container.search-container .global-search-form #div_id_price_range_slider .checkbox-container label {
            color: #fefefe;
          }

.landing-page__form-container.search-container .global-search-form #div_id_type {
        display: flex;
        flex-direction: column;
        justify-content: start;
      }

.landing-page__form-container.search-container .global-search-form #div_id_type label {
          font-size: 13px;
          font-weight: 400;
          margin-bottom: 3px;
        }

.landing-page__form-container.search-container .global-search-form #div_id_type select {
          background: transparent;
          border-color: #fefefe;
          padding: 8px 30px 8px 8px;
          border-radius: 2px;
          position: relative;
          background-image: url('data:image/svg+xml;charset=utf-8,<svg width="10" height="6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1l4 4 4-4" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
          background-repeat: no-repeat;
          background-position: right 10px center;
          -webkit-appearance: none;
             -moz-appearance: none;
                  appearance: none;
        }

.landing-page__form-container.search-container .global-search-form #div_id_type select option {
            background-color: #202748;
          }

.landing-page__form-container.search-container .global-search-form #div_id_search_bedrooms,
      .landing-page__form-container.search-container .global-search-form #div_id_type {
        position: relative;
      }

.landing-page__form-container.search-container .global-search-form #div_id_search_bedrooms::after, .landing-page__form-container.search-container .global-search-form #div_id_type::after {
          position: absolute;
          right: -35px;
          content: "";
          width: 1px;
          height: 100%;
          background-color: #fefefe;
          top: 0;
        }

.landing-page__form-container.search-container .global-search-form #div_id_search_bedrooms.holder > label, .landing-page__form-container.search-container .global-search-form #div_id_price_range_slider.holder > label, .landing-page__form-container.search-container .global-search-form #div_id_search_price_value.holder > label, .landing-page__form-container.search-container .global-search-form #div_id_type.holder > label {
            opacity: 1 !important;
            color: #fefefe !important;
            font-weight: 400;
          }

.landing-page__form-container.search-container .global-search-form #div_id_search_price_value select {
          border-color: #fefefe !important;
        }

.landing-page__form-container.search-container .global-search-form #div_id_search_floors.holder > label {
            opacity: 1;
            color: #fefefe;
            font-weight: 400;
          }

.landing-page__form-container.search-container .global-search-form #div_id_search_floors .checkbox-container label {
            color: #fefefe;
          }

.landing-page__form-container.search-container .global-search-form .label_amenities {
        opacity: 1;
        color: #fefefe;
        font-weight: 400;
        margin-bottom: 8px;
      }

.landing-page__form-container.search-container .global-search-form #div_id_roof_garden.holder > label, .landing-page__form-container.search-container .global-search-form #div_id_private_garden.holder > label, .landing-page__form-container.search-container .global-search-form #div_id_golf_view.holder > label {
            color: #fefefe;
          }

.landing-page__form-container.search-container .global-search-form #div_id_roof_garden .checkbox-container label, .landing-page__form-container.search-container .global-search-form #div_id_private_garden .checkbox-container label, .landing-page__form-container.search-container .global-search-form #div_id_golf_view .checkbox-container label {
            color: #fefefe;
          }

.landing-page__form-container.search-container .global-search-form #div_id_price_range_slider .range-value input {
            color: #fefefe;
            font-size: 13px;
        
          }

.landing-page__form-container.search-container .global-search-form #div_id_price_range_slider .range-bar {
          background: rgba(#fefefe, 0.3);
        }

.landing-page__form-container.search-container .global-search-form #div_id_price_range_slider .range-bar .ui-slider-range {
            background: #fefefe;
          }

.landing-page__form-container.search-container .global-search-form #div_id_price_range_slider .range-bar .ui-slider-handle {
            border: 2px solid #fefefe;
            background: #fefefe;
          }

.landing-page__form-container.search-container .global-search-form #div_id_price_range_slider .range-bar .ui-slider-handle + span {
            background: #fefefe;
          }

.landing-page__form-container.search-container .global-search-form .advanced-search-link:not(:hover) {
          color: #fefefe;
        }

.landing-page__form-container.search-container .global-search-form .advanced-search-link:not(:hover)::after {
            background-color: #fefefe;
          }

.landing-page__form-container.search-container .search-button-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

.landing-page__form-container.search-container .search-button-container #form-button {
        display: block !important;
      }

@media only screen and (max-width: 748px) {

.landing-page__form-container.search-container .search-button-container {
        flex-direction: column-reverse
    }
        .landing-page__form-container.search-container .search-button-container .advanced-search-link {
          margin-top: 0 !important;
          margin-bottom: 20px;
        }
      }

.landing-page__form-container.search-container .advanced-search-container .holder > label {
          color: #fefefe;
        }

.landing-page__form-container.search-container #form-button .button.hollow {
        color: #fefefe;
        border-color: transparent;
        border: none;
        margin: 0;
        font-size: 14px;
        padding: 20px 36px;
        font-weight: 700;
        background-color: rgba(#fefefe, 0.1) !important;
        @include breakpoint(small down) {
          padding: 16px 26px;
        }
      }

.landing-page__form-container.search-container #form-button .button.hollow i {
          font-size: 22px;
        }

.landing-page__form-container.search-container #form-button .button.hollow:hover {
          background-color: rgba(#fefefe, 1) !important;
          color: #976a4c !important;
        }

.global-search-form {
  background-color: rgba(#976a4c, 0.1);
  padding: 22px 25px;
}

.global-search-form #div_id_search_bedrooms label {
      display: none;
    }

.global-search-form #div_id_search_bedrooms option:disabled {
      opacity: 0.5;
    }

.global-search-form #div_id_search_bedrooms select:not(.has-selection) {
      text-transform: uppercase;
      font-weight: 700;
      font-size: 13px;
    }

.global-search-form #div_id_price_range_slider label,
    .global-search-form #div_id_price_range_slider .range-value input {
      color: #fefefe !important;
      opacity: 1 !important;
    }

.global-search-form .advanced-search-link {
    color: #976a4c;
    font-size: 11px;
    position: relative;
  }

@media only screen and (max-width: 748px) {

.global-search-form .advanced-search-link {
      display: none
  }
    }

.global-search-form .advanced-search-link:hover {
      color: #caa16d;
    }

.global-search-form .advanced-search-link:after {
      display: block;
      content: "";
      position: absolute;
      left: 0;
      bottom: -1px;
      height: 1px;
      width: 100%;
      background-color: #976a4c;
      transition: all 0.3s ease-in-out;
    }

.global-search-form .advanced-search-link:hover:after {
        background-color: #caa16d;
      }

.global-search-form .search-button-container #form-button,
    .global-search-form .search-button-container button {
      width: 100%;
    }

.global-search-form .search-button-container button.hide-for-large {
      width: 100%;
    }

@media only screen and (max-width: 748px) {

.global-search-form .search-button-container button.hide-for-large {
        display: flex;
    }
      }

.global-search-form .search-button-container button.hide-for-large {
      justify-content: center;
}

.global-search-form .advanced-search-container {
    display: none;
  }

.global-search-form .advanced-search-container.show {
      display: block;
      margin-top: 20px;
    }

.global-search-form .advanced-search-container .holder > label {
        width: 100%;
        margin-bottom: 12px;
        font-size: 13px;
        opacity: 0.7;
        text-align: left;
        color: #976a4c;
      }

.global-search-form .divs {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px;
  }

.global-search-form .divs.m-t-h.m-b-h {
      margin-top: 0;
      margin-bottom: 0;
    }

.global-search-form #div_id_search_bedrooms {
    flex-direction: column;
    align-items: flex-start;
  }

.global-search-form #div_id_search_bedrooms .checkbox-container:first-of-type label {
          margin-left: 0;
        }

.global-search-form #div_id_search_bedrooms {
    @include breakpoint(small down) {
      flex: auto;
    }
}

.global-search-form #div_id_search_bedrooms,
  .global-search-form #div_id_price_range_slider {
    padding: 0;
    display: block;
  }

.global-search-form #div_id_search_bedrooms.holder, .global-search-form #div_id_price_range_slider.holder {
      margin-bottom: 0;
    }

.global-search-form #div_id_search_bedrooms .checkbox-container, .global-search-form #div_id_price_range_slider .checkbox-container {
      float: left;
      display: inline-flex;
    }

.global-search-form #div_id_search_bedrooms.holder > label, .global-search-form #div_id_price_range_slider.holder > label {
        width: 100%;
        margin-bottom: 8px;
        font-size: 13px;
        opacity: 0.7;
        text-align: left;
      }

.global-search-form #div_id_search_floors {
    float: left;
    width: 100%;
  }

.global-search-form #div_id_search_floors.holder > label {
        opacity: 0.7;
      }

.global-search-form #div_id_search_floors .checkbox-container {
      float: left;
    }

.global-search-form #div_id_search_floors .checkbox-container label {
        color: #0a0a0a;
      }

.global-search-form #div_id_roof_garden.holder > label, .global-search-form #div_id_private_garden.holder > label, .global-search-form #div_id_golf_view.holder > label {
        color: #0a0a0a;
        margin-bottom: 0;
        opacity: 1;
      }

.global-search-form #div_id_roof_garden .checkbox-container label, .global-search-form #div_id_private_garden .checkbox-container label, .global-search-form #div_id_golf_view .checkbox-container label {
        color: #0a0a0a;
      }

.global-search-form .label_amenities {
    opacity: 0.7;
    color: #976a4c;
  }

.global-search-form #div_id_price_range_slider .range-value input {
        color: #0a0a0a;
      }

.global-search-form #div_id_price_range_slider .range-bar {
      background: rgba(#976a4c, 0.3);
    }

.global-search-form #div_id_price_range_slider .range-bar .ui-slider-range {
        background: #976a4c;
      }

.global-search-form #div_id_price_range_slider .range-bar .ui-slider-handle {
        border: 2px solid #fefefe;
        background: #976a4c;
      }

.global-search-form #div_id_price_range_slider .range-bar .ui-slider-handle + span {
        background: #976a4c;
        border: 2px solid #fefefe;
      }

.global-search-form #form-button .button.hollow {
      color: #fefefe;
      background-color: #976a4c;
      border-color: #fefefe;
    }

.global-search-form #form-button .button.hollow:hover {
        border-color: #fefefe;
        background-color: darken(#976a4c, 10%);
      }

#search-apartment-form #div_id_search_floors, .global-search-form #div_id_search_floors {
    display: block;
  }

#search-apartment-form #div_id_search_floors.holder > label, .global-search-form #div_id_search_floors.holder > label {
        margin-bottom: 8px;
        @include breakpoint(small down) {
          text-align: left;
        }
      }

#search-apartment-form #div_id_search_floors.holder, .global-search-form #div_id_search_floors.holder {
      margin-bottom: 20px;
}

#search-apartment-form #div_id_search_floors .checkbox-container, .global-search-form #div_id_search_floors .checkbox-container {
      display: inline-flex;
    }

#search-apartment-form #div_id_search_floors .checkbox-container:first-of-type label, .global-search-form #div_id_search_floors .checkbox-container:first-of-type label {
          margin-left: 0;
        }

#search-apartment-form #div_id_search_floors .checkbox-container label, .global-search-form #div_id_search_floors .checkbox-container label {
        opacity: 1;
      }

#search-apartment-form #div_id_roof_garden,
  #search-apartment-form #div_id_private_garden,
  #search-apartment-form #div_id_golf_view,
  .global-search-form #div_id_roof_garden,
  .global-search-form #div_id_private_garden,
  .global-search-form #div_id_golf_view {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

#search-apartment-form #div_id_roof_garden.holder > label, #search-apartment-form #div_id_private_garden.holder > label, #search-apartment-form #div_id_golf_view.holder > label, .global-search-form #div_id_roof_garden.holder > label, .global-search-form #div_id_private_garden.holder > label, .global-search-form #div_id_golf_view.holder > label {
        font-size: 15px;
      }

#search-apartment-form #div_id_roof_garden .checkbox-container, #search-apartment-form #div_id_private_garden .checkbox-container, #search-apartment-form #div_id_golf_view .checkbox-container, .global-search-form #div_id_roof_garden .checkbox-container, .global-search-form #div_id_private_garden .checkbox-container, .global-search-form #div_id_golf_view .checkbox-container {
      margin-right: 5px;
    }

#search-apartment-form #div_id_roof_garden .checkbox-container label, #search-apartment-form #div_id_private_garden .checkbox-container label, #search-apartment-form #div_id_golf_view .checkbox-container label, .global-search-form #div_id_roof_garden .checkbox-container label, .global-search-form #div_id_private_garden .checkbox-container label, .global-search-form #div_id_golf_view .checkbox-container label {
        margin-left: 0;
      }

#search-apartment-form #div_id_roof_garden,
  #search-apartment-form #div_id_private_garden,
  #search-apartment-form #div_id_golf_view,
  .global-search-form #div_id_roof_garden,
  .global-search-form #div_id_private_garden,
  .global-search-form #div_id_golf_view {
    @include breakpoint(small down) {
      align-items: center;
        &.holder > label {
          margin-top: 0;
          text-align: left;
          flex: 1;
          margin-bottom: 0;
        }
    }
}

#search-apartment-form.search-page label, .global-search-form.search-page label {
      text-transform: uppercase;
    }

#search-apartment-form.search-page #div_id_search_floors, .global-search-form.search-page #div_id_search_floors {
      display: flex;
      flex-direction: column;
    }

#search-apartment-form.search-page #div_id_search_floors > label, .global-search-form.search-page #div_id_search_floors > label {
        color: #976a4c;
        font-size: 15px;
      }

#search-apartment-form.search-page .advanced-search-container, .global-search-form.search-page .advanced-search-container {
      display: block !important;
    }

#search-apartment-form.search-page .checkbox-container input[type="checkbox"] + label:before, .global-search-form.search-page .checkbox-container input[type="checkbox"] + label:before {
      margin-left: 2px !important;
    }

#search-apartment-form.search-page #div_id_roof_garden,
    #search-apartment-form.search-page #div_id_private_garden,
    .global-search-form.search-page #div_id_roof_garden,
    .global-search-form.search-page #div_id_private_garden {
      display: flex;
    }

#div_id_price_range_slider .range-value {
    margin-bottom: 16px;
  }

#div_id_price_range_slider .range-value input {
      width: 100%;
      font-size: 15.4px;
      background: none;
      color: #fefefe;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 32.4px;
      height: 100%;
      box-shadow: none;
      border: none;
      margin: 0;
      padding: 0;
    }

#div_id_price_range_slider .range-bar {
    border: none;
    background: rgba(#fefefe, 0.3);
    border-radius: 2px;
    height: 5px;
    width: 100%;
    margin-bottom: 20px;
  }

#div_id_price_range_slider .range-bar .ui-slider-range {
      background: #fefefe;
    }

#div_id_price_range_slider .range-bar .ui-slider-handle {
      border: none;
      border-radius: 2px;
      border: 2px solid #fefefe;
      background: #fefefe;
      height: 18px;
      width: 18px;
      cursor: pointer;
      top: 50%;
      transform: translateY(-50%);
    }

#div_id_price_range_slider .range-bar .ui-slider-handle + span {
      background: #fefefe;
    }

.search-results-page {
  background: #fefefe;
}

.search-results-page .page-content {
    padding-bottom: 0;
  }

.search-results-page .page-content .page-nav {
      box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.11);
    }

@media only screen and (max-width: 748px) {

.search-results-page .page-content .page-nav {
        height: 55px
    }
      }

.search-results-page .page-content .page-nav {
      @include breakpoint(small down) {
        height: 45px;
      }
}

.search-results-page .search-results__content {
    display: flex;
    gap: 20px;
  }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content {
      flex-direction: column
  }
    }

.search-results-page .search-results__content .search-results {
      padding-bottom: 140px;
      width: 100%;
      margin-top: 44px;
    }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .search-results {
        margin-top: 0
    }
      }

.search-results-page .search-results__content .modify-search {
      padding: 44px 20px;
      margin-top: 0;
      max-width: 360px;
      width: 100%;
      position: relative;

      min-height: calc(100vh - env(safe-area-inset-bottom));

      background: rgba(#999999, 0.1);
      @include breakpoint(large up) {
        &::before {
          position: absolute;
          content: "";
          top: 0;
          right: 100%;
          width: 100vh;
          height: 100%;
          background: rgba(#999999, 0.1);
          z-index: 0;
        }
      }
    }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search {
        max-width: 100%;
        position: relative;
        height: 100%;
        min-height: 100%
    }
      }

.search-results-page .search-results__content .modify-search #search-apartment-form {
        border: none;
        justify-content: center;
        flex-direction: column;
      }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form {
          position: relative
      }
        }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs {
          flex-direction: column;
          align-items: flex-start;
        }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs.m-t-h.m-b-h {
            margin-top: 0;
          }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs .holder {
            flex-direction: column;
            margin-bottom: 40px;
            margin-right: 0;
            width: 100%;
          }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs .holder > label {
              color: #976a4c;
              width: 100%;
              display: block;
              opacity: 1;
              font-size: 13px;
              font-weight: 700;
              margin-bottom: 10px;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs .holder .checkbox-container label::before {
                  margin-left: 0;
                }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs .holder .checkbox-container input[type="checkbox"]:not(:checked):not(:hover) + label {
                opacity: 1;
              }

.search-results-page .search-results__content .modify-search #search-apartment-form .price_range_wrapper {
          width: 100%;
        }

.search-results-page .search-results__content .modify-search #search-apartment-form .price_range_wrapper .price_range_dropdown {
            width: 100%;
            @include breakpoint(large up) {
              display: none;
            }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form .price_range_wrapper .price_range_dropdown select {
              margin-bottom: 0;
              border-color: #0a0a0a;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form .search-button-container {
          display: none;
        }

.search-results-page .search-results__content .modify-search #search-apartment-form .advanced-search-container {
          display: none;
        }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form .advanced-search-container {
            display: block
        }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form .label_amenities {
          color: #976a4c;
          width: 100%;
          display: block;
          opacity: 1;
          font-size: 13px;
          font-weight: 700;
          margin-bottom: 10px;
        }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors {
          display: flex;
        }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors.holder {
            margin-bottom: 40px;
          }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors.holder > label {
                width: 100%;
                display: block;
                opacity: 1;
                font-size: 13px;
                font-weight: 700;
                margin-bottom: 10px;
                color: #976a4c
            }
              }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors.holder .checkbox-container label {
                margin-left: 0;
              }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors {
            display: block
        }
            .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors .checkbox-container {
              margin-right: 20px;
            }
          }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_bedrooms {
            display: block
        }
            .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_bedrooms .checkbox-container {
              display: inline-flex;
              margin-right: 20px;
            }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden,
        .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden,
        .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view {
          flex-direction: row-reverse;
        }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden,
        .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden,
        .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view {
            display: flex
        }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden.holder, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden.holder, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view.holder {
            margin-bottom: 0;
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden.holder > label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden.holder > label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view.holder > label {
              font-weight: 600;
              font-size: 15px;
              margin-right: 0;
              color: #0a0a0a;
              margin-bottom: 0;
              opacity: 1;
            }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden.holder > label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden.holder > label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view.holder > label {
                margin-top: 0
            }
              }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden .checkbox-container label::before, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden .checkbox-container label::before, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view .checkbox-container label::before {
                margin-right: 3px;
              }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden .checkbox-container input[type="checkbox"]:not(:checked):not(:hover) + label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden .checkbox-container input[type="checkbox"]:not(:checked):not(:hover) + label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view .checkbox-container input[type="checkbox"]:not(:checked):not(:hover) + label {
              opacity: 1;
            }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider {
            display: none
        }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider > label {
            color: #976a4c;
            width: 100%;
            display: block;
            opacity: 1;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 12px;
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-value input {
              color: #0a0a0a;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-bar {
            background: rgba(#976a4c, 0.3);
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-bar .ui-slider-range {
              background: #976a4c;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-bar .ui-slider-handle {
              border: 2px solid #fefefe;
              background: #976a4c;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-bar .ui-slider-handle + span {
              background: #976a4c;
              border: 2px solid #fefefe;
            }

.global-search-form .label_amenities {
    margin-bottom: 12px;
    font-size: 13px;
  }

.global-search-form #div_id_search_floors {
    margin-bottom: 20px;
  }

.global-search-form .holder,
.holder.multiple-inputs {
  display: flex;
  margin-bottom: 5px;
  justify-content: center;
}

.global-search-form .holder > label, .holder.multiple-inputs > label {
    width: 48%;
    text-align: left;
  }

.global-search-form .holder .checkbox-container, .holder.multiple-inputs .checkbox-container {
    margin-right: auto;
  }

.global-search-form .holder label, .holder.multiple-inputs label {
    font-weight: 600;
  }

.global-search-form .holder:before,
  .global-search-form .holder i,
  .global-search-form .holder img,
  .holder.multiple-inputs:before,
  .holder.multiple-inputs i,
  .holder.multiple-inputs img {
    font-family: "Font Awesome 5 Pro";
    margin-right: 7px;
    max-width: 18px;
    font-size: 18px;
  }

.global-search-form .holder,
.holder.multiple-inputs {
  @include breakpoint(small down) {
    flex-wrap: wrap;
    position: relative;
    .checkbox-container {
      transform: scale(1.1);
      margin-right: 10px;
      margin-top: 5px;
    }
    &:before,
    i,
    img {
      display: none;
    }

    > label {
      width: 100%;
      text-align: center;
      margin-bottom: 2px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
  }
}

.accordion-title[aria-expanded="true"] .fa-angle-down {
    transform: rotate(180deg);
  }

.checkbox-container {
  position: relative;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    top: 5px;
    left: 5px;
    width: 20px;
    z-index: 1;
  }

.checkbox-container input[type="checkbox"]:checked + label:after {
        opacity: 1 !important;
      }

.checkbox-container input[type="checkbox"] + label:before {
        content: "";

        border: 1px solid currentColor;

        margin-right: 3px;
        margin-left: 5px;
        display: inline-block;
        font-weight: 500;
        width: 18px;
        height: 18px;
        border-radius: 2px;
        line-height: 0.9;
        font-size: 20px;
        position: relative;
        top: 3px;
        left: 0;
      }

.checkbox-container input[type="checkbox"] + label:after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        top: 6px;
        left: 6px;
        width: 18px;
        height: 18px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="none"/><path d="M4 10l3 3 7-7" stroke="white" stroke-width="2" fill="none"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0;
      }

.search-results-page {
  background: #fefefe;
}

.search-results-page .checkbox-container input[type="checkbox"] + label:after {
    left: 2px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="none"/><path d="M4 10l3 3 7-7" stroke="black" stroke-width="2" fill="none"/></svg>');
  }

.search-results-page .page-content {
    padding-bottom: 0;
  }

.search-results-page .page-content .page-nav {
      box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.11);
    }

@media only screen and (max-width: 748px) {

.search-results-page .page-content .page-nav {
        height: 55px
    }
      }

.search-results-page .page-content .page-nav {
      @include breakpoint(small down) {
        height: 45px;
      }
}

.search-results-page .search-results__content {
    display: flex;
    gap: 20px;
  }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content {
      flex-direction: column
  }
    }

.search-results-page .search-results__content .search-results {
      padding-bottom: 140px;
      width: 100%;
      margin-top: 44px;
    }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .search-results {
        margin-top: 0
    }
      }

.search-results-page .search-results__content .modify-search {
      padding: 44px 20px;
      margin-top: 0;
      max-width: 360px;
      width: 100%;
      position: relative;

      min-height: calc(100vh - env(safe-area-inset-bottom));

      background: rgba(#999999, 0.1);
      @include breakpoint(large up) {
        &::before {
          position: absolute;
          content: "";
          top: 0;
          right: 100%;
          width: 100vh;
          height: 100%;
          background: rgba(#999999, 0.1);
          z-index: 0;
        }
      }
    }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search {
        max-width: 100%;
        position: relative;
        height: 100%;
        min-height: 100%
    }
      }

.search-results-page .search-results__content .modify-search #search-apartment-form {
        border: none;
        justify-content: center;
        flex-direction: column;
      }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form {
          position: relative
      }
        }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs {
          flex-direction: column;
          align-items: flex-start;
        }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs.m-t-h.m-b-h {
            margin-top: 0;
          }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs .holder {
            flex-direction: column;
            margin-bottom: 40px;
            margin-right: 0;
            width: 100%;
          }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs .holder > label {
              color: #976a4c;
              width: 100%;
              display: block;
              opacity: 1;
              font-size: 13px;
              font-weight: 700;
              margin-bottom: 10px;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs .holder .checkbox-container label::before {
                  margin-left: 0;
                }

.search-results-page .search-results__content .modify-search #search-apartment-form .divs .holder .checkbox-container input[type="checkbox"]:not(:checked):not(:hover) + label {
                opacity: 1;
              }

.search-results-page .search-results__content .modify-search #search-apartment-form .price_range_wrapper {
          width: 100%;
        }

.search-results-page .search-results__content .modify-search #search-apartment-form .price_range_wrapper .price_range_dropdown {
            width: 100%;
            @include breakpoint(large up) {
              display: none;
            }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form .price_range_wrapper .price_range_dropdown select {
              margin-bottom: 0;
              border-color: #0a0a0a;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form .search-button-container {
        }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form .advanced-search-container {
            display: block
        }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form .label_amenities {
          color: #976a4c;
          width: 100%;
          display: block;
          opacity: 1;
          font-size: 13px;
          font-weight: 700;
          margin-bottom: 10px;
        }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors {
          display: flex;
        }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors.holder {
            margin-bottom: 40px;
          }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors.holder > label {
                width: 100%;
                display: block;
                opacity: 1;
                font-size: 13px;
                font-weight: 700;
                margin-bottom: 10px;
                color: #976a4c
            }
              }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors.holder .checkbox-container label {
                margin-left: 0;
              }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors {
            display: block
        }
            .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_floors .checkbox-container {
              margin-right: 20px;
            }
          }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_bedrooms {
            display: block
        }
            .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_search_bedrooms .checkbox-container {
              display: inline-flex;
              margin-right: 20px;
            }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden,
        .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden,
        .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view {
          flex-direction: row-reverse;
        }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden,
        .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden,
        .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view {
            display: flex
        }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden.holder, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden.holder, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view.holder {
            margin-bottom: 0;
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden.holder > label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden.holder > label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view.holder > label {
              font-weight: 600;
              font-size: 15px;
              margin-right: 0;
              color: #0a0a0a;
              margin-bottom: 0;
              opacity: 1;
            }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden.holder > label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden.holder > label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view.holder > label {
                margin-top: 0
            }
              }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden .checkbox-container label::before, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden .checkbox-container label::before, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view .checkbox-container label::before {
                margin-right: 3px;
              }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_roof_garden .checkbox-container input[type="checkbox"]:not(:checked):not(:hover) + label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_private_garden .checkbox-container input[type="checkbox"]:not(:checked):not(:hover) + label, .search-results-page .search-results__content .modify-search #search-apartment-form #div_id_golf_view .checkbox-container input[type="checkbox"]:not(:checked):not(:hover) + label {
              opacity: 1;
            }

@media only screen and (max-width: 748px) {

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider {
            display: none
        }
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider > label {
            color: #976a4c;
            width: 100%;
            display: block;
            opacity: 1;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 12px;
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-value input {
              color: #0a0a0a;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-bar {
            background: rgba(#976a4c, 0.3);
          }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-bar .ui-slider-range {
              background: #976a4c;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-bar .ui-slider-handle {
              border: 2px solid #fefefe;
              background: #976a4c;
            }

.search-results-page .search-results__content .modify-search #search-apartment-form #div_id_price_range_slider .range-bar .ui-slider-handle + span {
              background: #976a4c;
              border: 2px solid #fefefe;
            }

.search-results-page .search-results__content .modify-search {
  padding: 44px 40px;
  margin-top: 0;
  max-width: 360px;
  width: 100%;
  position: relative;
  background: linear-gradient(rgba(153, 153, 153, 0.1), rgba(153, 153, 153, 0));
}

.search-results-page .search-results__content .modify-search:before {
    position: absolute;
    content: "";
    top: 0;
    right: 100%;
    width: 100vh;
    height: 100%;
    background: linear-gradient(rgba(153, 153, 153, 0.1), rgba(153, 153, 153, 0));
    z-index: 0;
  }

select {
  border-radius: 5px !important;
}

@media only screen and (max-width: 900px) {

.search-results-form .search-container {
    transition:all 0.2s;
    padding: 20px;
    background: #fefefe;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 10;
    transform:translateX(-100%)
}
    .search-results-form .search-container.is-active{
      transform:translateX(0);
    }
  }

.search-results-form .divs .holder > label {
    color: #4966A8;
    font-size: 15px;
  }

.search-results-form .checkbox-container {
    display: flex;
    gap: 12px;
    z-index: 100;
  }

.search-results-form .checkbox-container label {
      text-transform: none !important;
      font-weight: 700;
      font-size: 16px !important;
    }

.search-results-form .checkbox-container label:before {
        margin-right: 6px;
      }

.search-results-form #div_id_price_range_slider > .relative {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 0.5rem;
    padding-right: 2rem;
  }

.search-results-form .range-slider-details > div {
    }

.search-results-form .range-slider-details .absolute.left-0.z-10 {
      background-color: #999999;
    }

.search-results-form .range-slider-details .bg-white {
      background-color: #0a0a0a !important;
    }

.search-results-form .range-slider-details .-left-2 {
      left: 0;
    }

.search-results-form .range-slider-details .-left-2 input {
        color: #0a0a0a !important;
      }

.search-results-form button {
    color: #fefefe;
    background-color: #999999;
    padding: 15px;
    min-height: 0;
    height: auto;
  }

.search-results-form button:hover {
      background-color: #000f9f;
    }

.search-results-form button:after {
      content: "Update";
      font-size: 17px;
      font-weight: 700;
      margin-left: 10px;
      display: inline-block;
    }

.range-slider-details input{
        left:0; right:0;
  }

.sort-form select{
    border:1px solid #002551;
    text-transform:uppercase;
    color:#002551;
    font-size:14px;
    padding-top: 7px;
    padding-bottom: 7px;
}

@media only screen and (max-width: 748px) {

.related-properties .flex.gap-7{
      flex-direction:column;
      gap:10px 
  }
    }

/* ! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: Open Sans, Noto Sans, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
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;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-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 in Chrome and Safari on macOS.
*/

::-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 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple],[size]:where(select:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {
  [type='checkbox']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {
  [type='radio']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (forced-colors: active)  {
  [type='checkbox']:indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

body {
  font-size: 16px;
  line-height: 30px;
}

.text-h1-oversize {
  text-wrap: pretty;
  font-size: 38px;
  line-height: 53px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .text-h1-oversize {
    font-size: 43px;
    line-height: 60px;
  }
}

@media (min-width: 1024px) {
  .text-h1-oversize {
    font-size: 48px;
    line-height: 67px;
  }
}

.text-h1 {
  text-wrap: pretty;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .text-h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (min-width: 1024px) {
  .text-h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

.text-h2 {
  text-wrap: pretty;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .text-h2 {
    font-size: 26px;
    line-height: 36px;
  }
}

@media (min-width: 1024px) {
  .text-h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.text-h3 {
  text-wrap: pretty;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .text-h3 {
    font-size: 23px;
    line-height: 30px;
  }
}

@media (min-width: 1024px) {
  .text-h3 {
    font-size: 23px;
    line-height: 30px;
  }
}

.text-h4 {
  text-wrap: pretty;
  font-size: 21px;
  line-height: 27px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .text-h4 {
    font-size: 20px;
    line-height: 27px;
  }
}

@media (min-width: 1024px) {
  .text-h4 {
    font-size: 20px;
    line-height: 25px;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }
}

@media (min-width: 900px) {
  .container {
    max-width: 900px;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media (min-width: 1425px) {
  .container {
    max-width: 1425px;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.prose {
  color: var(--tw-prose-body);
  max-width: inherit;
}

.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}

.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}

.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}

.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}

.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}

.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}

.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}

.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}

.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}

.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}

.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}

.debug-screens::before {
  position: fixed;
  z-index: 2147483647;
  bottom: 0;
  left: 0;
  padding: .3333333em .5em;
  font-size: 12px;
  line-height: 1;
  font-family: sans-serif;
  background-color: #000;
  color: #fff;
  box-shadow: 0 0 0 1px #fff;
  content: 'screen: _';
}

@media (min-width: 640px) {
  .debug-screens::before {
    content: 'screen: sm';
  }
}

@media (min-width: 900px) {
  .debug-screens::before {
    content: 'screen: md';
  }
}

@media (min-width: 1024px) {
  .debug-screens::before {
    content: 'screen: lg';
  }
}

@media (min-width: 1200px) {
  .debug-screens::before {
    content: 'screen: xl';
  }
}

@media (min-width: 1425px) {
  .debug-screens::before {
    content: 'screen: 2xl';
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.\!absolute {
  position: absolute !important;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.\!left-\[-10px\] {
  left: -10px !important;
}

.\!left-\[12px\] {
  left: 12px !important;
}

.-left-2 {
  left: -0.5rem;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-2 {
  bottom: 0.5rem;
}

.left-0 {
  left: 0px;
}

.right-0 {
  right: 0px;
}

.right-3 {
  right: 0.75rem;
}

.top-0 {
  top: 0px;
}

.-z-\[1\] {
  z-index: -1;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-\[100\] {
  z-index: 100;
}

.col-span-10 {
  grid-column: span 10 / span 10;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-8 {
  grid-column: span 8 / span 8;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-mb-9 {
  margin-bottom: -2.25rem;
}

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

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

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

.-mt-1\.5 {
  margin-top: -0.375rem;
}

.-mt-2 {
  margin-top: -0.5rem;
}

.-mt-5 {
  margin-top: -1.25rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

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

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

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

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

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

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

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

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

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

.mt-1\.5 {
  margin-top: 0.375rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

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

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

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

.flex {
  display: flex;
}

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

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-1 {
  height: 0.25rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-\[18px\] {
  height: 18px;
}

.h-\[400px\] {
  height: 400px;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.max-h-24 {
  max-height: 6rem;
}

.max-h-32 {
  max-height: 8rem;
}

.max-h-\[80px\] {
  max-height: 80px;
}

.max-h-screen {
  max-height: 100vh;
}

.min-h-\[100px\] {
  min-height: 100px;
}

.min-h-\[140px\] {
  min-height: 140px;
}

.min-h-\[450px\] {
  min-height: 450px;
}

.min-h-screen {
  min-height: 100vh;
}

.\!w-auto {
  width: auto !important;
}

.w-10 {
  width: 2.5rem;
}

.w-16 {
  width: 4rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-\[18px\] {
  width: 18px;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.max-w-20 {
  max-width: 5rem;
}

.max-w-24 {
  max-width: 6rem;
}

.max-w-32 {
  max-width: 8rem;
}

.max-w-\[600px\] {
  max-width: 600px;
}

.max-w-\[770px\] {
  max-width: 770px;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-grow {
  flex-grow: 1;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.cursor-pointer {
  cursor: pointer;
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

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

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-7 {
  gap: 1.75rem;
}

.\!gap-x-8 {
  -moz-column-gap: 2rem !important;
       column-gap: 2rem !important;
}

.\!gap-y-12 {
  row-gap: 3rem !important;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.rounded-tl-none {
  border-top-left-radius: 0px;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-imperio-blue {
  --tw-border-opacity: 1;
  border-color: rgb(40 74 154 / var(--tw-border-opacity));
}

.bg-\[\#f4f4f4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 244 / var(--tw-bg-opacity));
}

.bg-black\/30 {
  background-color: rgb(45 45 45 / 0.3);
}

.bg-dark-blue\/30 {
  background-color: rgb(0 37 81 / 0.3);
}

.bg-dark-blue\/40 {
  background-color: rgb(0 37 81 / 0.4);
}

.bg-gray-200\/50 {
  background-color: rgb(229 231 235 / 0.5);
}

.bg-grey-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(90 94 116 / var(--tw-bg-opacity));
}

.bg-grey-blue-800\/30 {
  background-color: rgb(73 102 168 / 0.3);
}

.bg-imperio-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(40 74 154 / var(--tw-bg-opacity));
}

.bg-imperio-blue\/50 {
  background-color: rgb(40 74 154 / 0.5);
}

.bg-light-grey {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 244 / var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-top {
  background-position: top;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-\[160px\] {
  padding-top: 160px;
  padding-bottom: 160px;
}

.pt-2 {
  padding-top: 0.5rem;
}

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

.font-alternative {
  font-family: Lovelo, Noto Sans, sans-serif;
}

.text-\[36px\] {
  font-size: 36px;
}

.text-h1-oversize-sm {
  font-size: 38px;
  line-height: 53px;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

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

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

.normal-case {
  text-transform: none;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(45 45 45 / var(--tw-text-opacity));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.text-gray-900\/10 {
  color: rgb(17 24 39 / 0.1);
}

.text-grey {
  --tw-text-opacity: 1;
  color: rgb(102 103 108 / var(--tw-text-opacity));
}

.text-grey-blue {
  --tw-text-opacity: 1;
  color: rgb(90 94 116 / var(--tw-text-opacity));
}

.text-grey-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(73 102 168 / var(--tw-text-opacity));
}

.text-grey\/50 {
  color: rgb(102 103 108 / 0.5);
}

.text-imperio-blue {
  --tw-text-opacity: 1;
  color: rgb(40 74 154 / var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.opacity-0 {
  opacity: 0;
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

/* @import 'masterplan.scss'; */

@font-face {
  font-family: Gotham;

  src: url("../../fonts/gotham-light.otf") format("opentype");

  font-weight: 300;

  font-style: normal;
}

@font-face {
  font-family: Gotham;

  src: url("../../fonts/gotham-book.otf") format("opentype");

  font-weight: 400;

  font-style: normal;
}

@font-face {
  font-family: Gotham;

  src: url("../../fonts/gotham-bold.otf") format("opentype");

  font-weight: 700;

  font-style: normal;
}

/* #endregion CUSTOM FONTS */

/* #region TYPOGRAPHY */

/* -- Set Base Styles -- */

.font-alternative {
  font-weight: 900;
}

/* -- Styling for Richtext Elements -- */

.prose h1 {
  text-wrap: pretty;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .prose h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (min-width: 1024px) {
  .prose h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

.prose h1 {
  margin-bottom: 0.75rem;
  text-wrap: pretty;
  font-weight: 600;
}

.prose h2 {
  text-wrap: pretty;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .prose h2 {
    font-size: 26px;
    line-height: 36px;
  }
}

@media (min-width: 1024px) {
  .prose h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.prose h2 {
  margin-bottom: 0.75rem;
  text-wrap: pretty;
  font-weight: 600;
}

.prose h3 {
  text-wrap: pretty;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .prose h3 {
    font-size: 23px;
    line-height: 30px;
  }
}

@media (min-width: 1024px) {
  .prose h3 {
    font-size: 23px;
    line-height: 30px;
  }
}

.prose h3 {
  margin-bottom: 0.75rem;
  text-wrap: pretty;
  font-weight: 600;
}

.prose h4 {
  text-wrap: pretty;
  font-size: 21px;
  line-height: 27px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .prose h4 {
    font-size: 20px;
    line-height: 27px;
  }
}

@media (min-width: 1024px) {
  .prose h4 {
    font-size: 20px;
    line-height: 25px;
  }
}

.prose h4 {
  margin-bottom: 0.5rem;
  text-wrap: pretty;
  font-weight: 600;
}

 .prose h4 {
      margin-top: -0.5rem;
    }

 .prose h4 {
      margin-bottom: 0.5rem;
    }

 .prose h4 {
      margin-top: -0.5rem;
    }

 .prose h4 {
      margin-bottom: 0.5rem;
    }

 .prose h4 {
      margin-top: -0.5rem;
    }

 .prose h4 {
      margin-bottom: 0.5rem;
    }

.prose h5 {
  text-wrap: pretty;
  font-size: 19px;
  line-height: 27px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .prose h5 {
    font-size: 22px;
    line-height: 31px;
  }
}

@media (min-width: 1024px) {
  .prose h5 {
    font-size: 17px;
    line-height: 22px;
  }
}

.prose h5 {
  margin-bottom: 0.25rem;
  text-wrap: pretty;
  font-weight: 600;
}

.prose h6 {
  text-wrap: pretty;
  font-size: 16px;
  line-height: 23px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  .prose h6 {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (min-width: 1024px) {
  .prose h6 {
    font-size: 16px;
    line-height: 22px;
  }
}

.prose h6 {
  margin-bottom: 0.25rem;
  text-wrap: pretty;
  font-weight: 600;
}

.prose a,
.prose p a {
  --tw-text-opacity: 1;
  color: rgb(102 103 108 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.prose a:hover,
.prose p a:hover {
  --tw-text-opacity: 1;
  color: rgb(204 161 101 / var(--tw-text-opacity));
}

.prose b,
.prose strong {
  font-weight: 600;
}

.prose p,
.prose ol,
.prose ul {
  font-size: 16px;
  line-height: 30px;
}

.prose ol li,
.prose ul li {
  margin-bottom: 1rem;
}

/* #endregion TYPOGRAPHY */

/* #region SECTIONS */

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

section.small-padding-top {
    padding-top: 3rem !important;
  }

section.small-padding-bottom {
    padding-bottom: 3rem !important;
  }

section.pt-0 {
    padding-top: 0px !important;
  }

section.pb-0 {
    padding-bottom: 0px !important;
  }

@media not all and (min-width: 900px) {
    section.divider-block:not(.pt-0) {
      padding-top: 2.5rem;
    }
  }

@media not all and (min-width: 900px) {
    section.divider-block:not(.pb-0) {
      padding-bottom: 2.5rem;
    }
  }

/* #endregion SECTIONS */

@media not all and (min-width: 900px) {
  .container {
    max-width: 100vw;
  }
}

.h-screen {
  height: calc(100vh - env(safe-area-inset-bottom));
}

.min-h-screen {
  min-height: calc(100vh - env(safe-area-inset-bottom));
}

/* #region GRIDS */

.grid-cols-2--custom {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  row-gap: 5rem;
}

@media (min-width: 900px) {
  .grid-cols-2--custom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-cols-3--custom {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .grid-cols-3--custom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.grid-cols-4--custom {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .grid-cols-4--custom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-cols-4--custom {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.grid-cols-5--custom {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .grid-cols-5--custom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-cols-5--custom {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.grid-cols-6--custom {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .grid-cols-6--custom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-cols-6--custom {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.grid-cols-12--custom {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .grid-cols-12--custom {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

/* #endregion GRIDS */

/* #region BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(204 161 101 / var(--tw-bg-opacity));
  padding: 1rem;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(26 37 91 / var(--tw-bg-opacity));
}

.button.text-lg {
    text-wrap: pretty;
  }

.button.text-lg {
    font-size: 21px;
    line-height: 27px;
  }

.button.text-lg {
    font-weight: 600;
  }

.button.text-lg {
    text-transform: uppercase;
  }

.button.text-lg {
    --tw-text-opacity: 1;
    color: rgb(26 37 91 / var(--tw-text-opacity));
  }

@media (min-width: 900px) {
    .button.text-lg {
      font-size: 20px;
      line-height: 27px;
    }
  }

@media (min-width: 1024px) {
    .button.text-lg {
      font-size: 20px;
      line-height: 25px;
    }
  }

.button.text-lg {
    font-weight: 900 !important;
  }

.button.text-lg {
    letter-spacing: 0;
  }

.text-lg {
        margin-top: -0.5rem;
      }

.text-lg {
        margin-bottom: 0.5rem;
      }

.text-lg {
        margin-top: -0.5rem;
      }

.text-lg {
        margin-bottom: 0.5rem;
      }

 {

 {
    }
  }

.text-lg {
        margin-top: -0.5rem;
      }

.text-lg {
        margin-bottom: 0.5rem;
      }

.button.hollow {
    border-width: 1px;
  }

.button.hollow {
    --tw-border-opacity: 1;
    border-color: rgb(204 161 101 / var(--tw-border-opacity));
  }

.button.hollow {
    background-color: transparent;
  }

.button.hollow {
    --tw-text-opacity: 1;
    color: rgb(204 161 101 / var(--tw-text-opacity));
  }

.button-secondary {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
}

.button-secondary.text-lg {
    text-wrap: pretty;
  }

.button-secondary.text-lg {
    font-size: 21px;
    line-height: 27px;
  }

.button-secondary.text-lg {
    font-weight: 600;
  }

.button-secondary.text-lg {
    text-transform: uppercase;
  }

.button-secondary.text-lg {
    --tw-text-opacity: 1;
    color: rgb(26 37 91 / var(--tw-text-opacity));
  }

@media (min-width: 900px) {
    .button-secondary.text-lg {
      font-size: 20px;
      line-height: 27px;
    }
  }

@media (min-width: 1024px) {
    .button-secondary.text-lg {
      font-size: 20px;
      line-height: 25px;
    }
  }

.button-secondary.text-lg {
    font-weight: 900 !important;
  }

.button-secondary.text-lg {
    letter-spacing: 0;
  }

.text-lg {
        margin-top: -0.5rem;
      }

.text-lg {
        margin-bottom: 0.5rem;
      }

.text-lg {
        margin-top: -0.5rem;
      }

.text-lg {
        margin-bottom: 0.5rem;
      }

 {

 {
    }
  }

.text-lg {
        margin-top: -0.5rem;
      }

.text-lg {
        margin-bottom: 0.5rem;
      }

/* #endregion BUTTONS */

/* #region FORMS */

form label {
  font-weight: 600;
}

.form-block div:not(.checkbox-container) label {
  position: absolute;
  top: 10px;
  left: 0.5rem;
  margin-left: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(134 111 80 / var(--tw-text-opacity));
}

.checkbox-container label {
  position: relative !important;
  top: 0px !important;
  left: 0px !important;
}

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    margin-top: 0.25rem;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    margin-bottom: 2.5rem;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    display: block;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    width: 100%;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    border-radius: 0.5rem;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    border-width: 1px;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    --tw-border-opacity: 1;
    border-color: rgb(134 111 80 / var(--tw-border-opacity));
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    padding: 0.75rem;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    font-weight: 400;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    font-weight: 900;
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    --tw-text-opacity: 1;
    color: rgb(45 45 45 / var(--tw-text-opacity));
  }

.form-block [type="text"],
    .form-block [type="email"],
    .form-block [type="url"],
    .form-block [type="password"],
    .form-block [type="number"],
    .form-block [type="date"],
    .form-block [type="datetime-local"],
    .form-block [type="month"],
    .form-block [type="search"],
    .form-block [type="tel"],
    .form-block [type="time"],
    .form-block [type="week"],
    .form-block [multiple],
    .form-block textarea,
    .form-block select {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
  }

.form-block [type="text"]::-moz-placeholder, .form-block [type="email"]::-moz-placeholder, .form-block [type="url"]::-moz-placeholder, .form-block [type="password"]::-moz-placeholder, .form-block [type="number"]::-moz-placeholder, .form-block [type="date"]::-moz-placeholder, .form-block [type="datetime-local"]::-moz-placeholder, .form-block [type="month"]::-moz-placeholder, .form-block [type="search"]::-moz-placeholder, .form-block [type="tel"]::-moz-placeholder, .form-block [type="time"]::-moz-placeholder, .form-block [type="week"]::-moz-placeholder, .form-block [multiple]::-moz-placeholder, .form-block textarea::-moz-placeholder, .form-block select::-moz-placeholder {
    font-weight: 400;
  }

.form-block [type="text"]::placeholder,
    .form-block [type="email"]::placeholder,
    .form-block [type="url"]::placeholder,
    .form-block [type="password"]::placeholder,
    .form-block [type="number"]::placeholder,
    .form-block [type="date"]::placeholder,
    .form-block [type="datetime-local"]::placeholder,
    .form-block [type="month"]::placeholder,
    .form-block [type="search"]::placeholder,
    .form-block [type="tel"]::placeholder,
    .form-block [type="time"]::placeholder,
    .form-block [type="week"]::placeholder,
    .form-block [multiple]::placeholder,
    .form-block textarea::placeholder,
    .form-block select::placeholder {
    font-weight: 400;
  }

.form-block [type="text"]::-moz-placeholder, .form-block [type="email"]::-moz-placeholder, .form-block [type="url"]::-moz-placeholder, .form-block [type="password"]::-moz-placeholder, .form-block [type="number"]::-moz-placeholder, .form-block [type="date"]::-moz-placeholder, .form-block [type="datetime-local"]::-moz-placeholder, .form-block [type="month"]::-moz-placeholder, .form-block [type="search"]::-moz-placeholder, .form-block [type="tel"]::-moz-placeholder, .form-block [type="time"]::-moz-placeholder, .form-block [type="week"]::-moz-placeholder, .form-block [multiple]::-moz-placeholder, .form-block textarea::-moz-placeholder, .form-block select::-moz-placeholder {
    color: rgb(204 161 101 / 0.7);
  }

.form-block [type="text"]::placeholder,
    .form-block [type="email"]::placeholder,
    .form-block [type="url"]::placeholder,
    .form-block [type="password"]::placeholder,
    .form-block [type="number"]::placeholder,
    .form-block [type="date"]::placeholder,
    .form-block [type="datetime-local"]::placeholder,
    .form-block [type="month"]::placeholder,
    .form-block [type="search"]::placeholder,
    .form-block [type="tel"]::placeholder,
    .form-block [type="time"]::placeholder,
    .form-block [type="week"]::placeholder,
    .form-block [multiple]::placeholder,
    .form-block textarea::placeholder,
    .form-block select::placeholder {
    color: rgb(204 161 101 / 0.7);
  }

.form-block [type="text"]::-moz-placeholder, .form-block [type="email"]::-moz-placeholder, .form-block [type="url"]::-moz-placeholder, .form-block [type="password"]::-moz-placeholder, .form-block [type="number"]::-moz-placeholder, .form-block [type="date"]::-moz-placeholder, .form-block [type="datetime-local"]::-moz-placeholder, .form-block [type="month"]::-moz-placeholder, .form-block [type="search"]::-moz-placeholder, .form-block [type="tel"]::-moz-placeholder, .form-block [type="time"]::-moz-placeholder, .form-block [type="week"]::-moz-placeholder, .form-block [multiple]::-moz-placeholder, .form-block textarea::-moz-placeholder, .form-block select::-moz-placeholder {
    opacity: 0;
  }

.form-block [type="text"]::placeholder,
    .form-block [type="email"]::placeholder,
    .form-block [type="url"]::placeholder,
    .form-block [type="password"]::placeholder,
    .form-block [type="number"]::placeholder,
    .form-block [type="date"]::placeholder,
    .form-block [type="datetime-local"]::placeholder,
    .form-block [type="month"]::placeholder,
    .form-block [type="search"]::placeholder,
    .form-block [type="tel"]::placeholder,
    .form-block [type="time"]::placeholder,
    .form-block [type="week"]::placeholder,
    .form-block [multiple]::placeholder,
    .form-block textarea::placeholder,
    .form-block select::placeholder {
    opacity: 0;
  }

.form-block [type="text"]:focus,
    .form-block [type="email"]:focus,
    .form-block [type="url"]:focus,
    .form-block [type="password"]:focus,
    .form-block [type="number"]:focus,
    .form-block [type="date"]:focus,
    .form-block [type="datetime-local"]:focus,
    .form-block [type="month"]:focus,
    .form-block [type="search"]:focus,
    .form-block [type="tel"]:focus,
    .form-block [type="time"]:focus,
    .form-block [type="week"]:focus,
    .form-block [multiple]:focus,
    .form-block textarea:focus,
    .form-block select:focus {
    --tw-border-opacity: 1;
    border-color: rgb(45 45 45 / var(--tw-border-opacity));
  }

/* #endregion FORMS */

/* #region NAVIGATION */

/* -- Main Navigation -- */

.navbar {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 30;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-top: 15px;
  padding-bottom: 15px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.navbar.is-scrolled {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.navbar .navbar-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  line-height: 30px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.navbar .navbar-link::after {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  height: 1px;
  width: 0px;
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
  --tw-content: '';
  content: var(--tw-content);
}

.navbar .navbar-link:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.navbar .navbar-link:hover::after {
  content: var(--tw-content);
  width: 100%;
}

@media (min-width: 1024px) {
  .navbar .navbar-link {
    --tw-text-opacity: 1;
    color: rgb(45 45 45 / var(--tw-text-opacity));
  }

  .navbar .navbar-link::after {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(45 45 45 / var(--tw-bg-opacity));
  }

  .navbar .navbar-link:hover {
    --tw-text-opacity: 1;
    color: rgb(45 45 45 / var(--tw-text-opacity));
  }
}

.navbar .navbar-link.is-active::after {
  content: var(--tw-content);
  width: 100%;
}

.navbar .burger-menu span {
  height: 2px;
  width: 1.75rem;
  transform-origin: left;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-bg-opacity: 1;
  background-color: rgb(45 45 45 / var(--tw-bg-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.navbar .burger-menu.is-open span {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.navbar .search-button {
  background-color: rgb(204 161 101 / 0.1);
}

.navbar .search-button svg {
  --tw-text-opacity: 1;
  color: rgb(204 161 101 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.navbar .language-picker {
  border-width: 1px;
  border-color: rgb(204 161 101 / 0.6);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.navbar .language-picker .navbar-link:not(.child-link) {
  gap: 0.25rem;
  --tw-text-opacity: 1;
  color: rgb(204 161 101 / var(--tw-text-opacity));
}

.language-picker .navbar-link.child-link {
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

/* -- Home Navigation -- */

.home-navbar:not(.is-scrolled) {
  background-color: transparent;
}

@media (min-width: 1024px) {
  .home-navbar:not(.is-scrolled) .navbar-link {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }

  .home-navbar:not(.is-scrolled) .navbar-link::after {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }

  .home-navbar:not(.is-scrolled) .navbar-link.child-link {
    --tw-text-opacity: 1;
    color: rgb(45 45 45 / var(--tw-text-opacity));
  }

  .home-navbar:not(.is-scrolled) .navbar-link.child-link::after {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(45 45 45 / var(--tw-bg-opacity));
  }
}

.home-navbar:not(.is-scrolled) .burger-menu:not(.is-open) span {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.home-navbar:not(.is-scrolled) .search-button {
  background-color: rgb(255 255 255 / 0.1);
}

.home-navbar:not(.is-scrolled) .search-button svg {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

/* #endregion NAVIGATION */

/* #region EMBEDED YOUTUBE VIDEO */

.embeded-video-container {
  position: relative;
  height: 0px;
  padding-bottom: 56.3%;
}

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

/* #endregion EMBEDED YOUTUBE VIDEO */

/* #region TABLE */

th,
td {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}

tr,
td,
thead {
  border-width: 1px;
  border-color: rgb(45 45 45 / 0.3);
}

table .table-header {
  text-wrap: pretty;
  font-size: 16px;
  line-height: 23px;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(26 37 91 / var(--tw-text-opacity));
}

@media (min-width: 900px) {
  table .table-header {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (min-width: 1024px) {
  table .table-header {
    font-size: 16px;
    line-height: 22px;
  }
}

table .table-header {
  border-right-width: 1px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(204 161 101 / var(--tw-bg-opacity));
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

/* #endregion TABLE */

/* #region SOLVES ALPINEJS FLICKERING ISSUES */

[x-cloak] {
  display: none !important;
}

/* #endregion SOLVES ALPINEJS FLICKERING ISSUES */

/* #region SOLVES ALPINEJS FOCUS PLUGIN ISSUES */

html {
  padding: 0px !important;
}

/* #endregion SOLVES ALPINEJS FOCUS PLUGIN ISSUES */

.masterplan .navbar {
  background: transparent;
}

.masterplan .navbar:before {
    content: "";
  }

.masterplan .navbar:before {
    position: absolute;
  }

.masterplan .navbar:before {
    top: 0px;
  }

.masterplan .navbar:before {
    left: 0px;
  }

.masterplan .navbar:before {
    height: 7rem;
  }

.masterplan .navbar:before {
    width: 100%;
  }

.masterplan .navbar:before {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  }

.masterplan .navbar:before {
    --tw-gradient-from: rgb(26 37 91 / 0.9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(26 37 91 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  }

.masterplan .navbar:before {
    --tw-gradient-to: rgb(26 37 91 / 0.1) var(--tw-gradient-to-position);
  }

@media not all and (min-width: 1024px) {
    .masterplan .navbar.is-scrolled {
      --tw-bg-opacity: 1;
      background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    }
  }

@media not all and (min-width: 1024px) {
    .masterplan .navbar.is-scrolled::before {
      content: var(--tw-content);
      display: none;
    }
  }

@media (min-width: 1024px) {
  .hide-for-large {
    display: none;
  }
}

@media not all and (min-width: 1024px) {
  .show-for-large {
    display: none;
  }
}

@media not all and (min-width: 640px) {
  .show-for-medium {
    display: none;
  }
}

@media (min-width: 900px) {
  .show-for-small-only {
    display: none;
  }
}

@media not all and (min-width: 900px) {
  .show-for-medium-only {
    display: none;
  }
}

@media (min-width: 1024px) {
  .show-for-medium-only {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hide-for-xlarge {
    display: none;
  }
}

@media not all and (min-width: 900px) {
  .masterplan-container {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .masterplan-container {
    min-height: 100vh;
    --tw-bg-opacity: 1;
    background-color: rgb(45 45 45 / var(--tw-bg-opacity));
  }
}

@media not all and (min-width: 900px) {
  .masterplan-container img#masterplan-bg {
    position: relative;
    width: 125%;
    max-width: none;
  }

  .svg-container {
    height: 100%;
  }
}

.svg-front {
  position: relative;
}

@media not all and (min-width: 900px) {
  .svg-front {
    z-index: -10;
  }
}

.overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.overlay.show-for-large {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
  }

.overlay.show-for-large {
    --tw-gradient-from: #2d2d2d var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(45 45 45 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  }

.overlay.show-for-large {
    --tw-gradient-to: rgb(45 45 45 / 0) var(--tw-gradient-to-position);
  }

.overlay.show-for-large {
    top: unset;
    bottom: -1px;
    height: 150px;
  }

.overlay.light {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
  }

.overlay.light {
    --tw-gradient-from: #ffffff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  }

.overlay.light {
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  }

.overlay.light {
    top: unset;
    bottom: -1px;
    height: 100px;
  }

.landing-page__form-container {
  border-radius: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(26 37 91 / var(--tw-bg-opacity));
}

.swiper-pagination-bullet {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(204 161 101 / var(--tw-bg-opacity)) !important;
}

html {
  scroll-padding-top: 150px;
  /* Adjust the offset here */
}

.richtext .prose:not(lg:max-w-[50%]):not(lg:max-w-[75%]) {
  max-width: none;
}

.richtext .text-center img {
  margin-left: auto;
  margin-right: auto;
}

#global-search-form-fields label {
    display: block;
  }

#global-search-form-fields label {
    text-transform: uppercase;
  }

.checkbox-container {
  margin-right: 0.75rem !important;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .hover-text-bg,
.hover-text {
    opacity: 0;
  }
}

.pswp__img--placeholder {
  visibility: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.pswp__img {
  animation: fadeIn 0.5s ease-in-out;
}

.global-search-form .divs {
    flex-direction: row;
  }

@media not all and (min-width: 900px) {
    .global-search-form .divs {
      gap: 1.25rem;
    }
  }

.search-results__apt {
    display: block;
  }

.search-results__apt {
    border-radius: 0.5rem;
  }

.search-results__apt {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 244 / var(--tw-bg-opacity));
  }

.search-results__apt {
    padding: 1rem;
  }

.search-results__apt {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
  }

.search-results__apt{
    box-shadow: 0 5px 10px rgba(0, 00, 0, 7%);
    background:white;
  }

.search-results__apt:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(250 246 240 / var(--tw-bg-opacity));
  }

.search-results__apt-details {
      display: flex;
    }

.search-results__apt-details {
      gap: 1.25rem;
    }

@media not all and (min-width: 900px) {
      .search-results__apt-details {
        flex-direction: column;
      }
    }

.search-results__apt__floor {
      max-width: 100px;
    }

.search-results .apartment__details {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

.search-results .apartment__details {
    min-width: 250px;
  }

.search-results .apartment__details .text-h4 {
      margin-top: -0.5rem;
    }

.search-results .apartment__details .text-h4 {
      margin-bottom: 0.5rem;
    }

.apartment__details-container {
  z-index: 50;
  max-height: 100vh;
  overflow: auto;
  padding-bottom: 4rem;
}

.block-reveal {
  min-width: 100vw;
}

@media not all and (min-width: 1024px) {
    body.masterplan .compass-container,
    body.masterplan .imperio-logo {
      display: none !important;
    }
  }

@media (min-width: 1024px) {
    body.masterplan footer,
    body.masterplan .footer-svg {
      display: none;
    }
  }

.svg-front {
  position: relative;
}

@media not all and (min-width: 1024px) {
  .svg-front {
    z-index: -10;
  }
}

.b-text {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.overall-masterplan #phase-a-text,
    .overall-masterplan #phase-b-text {
    opacity: 0;
  }

.overall-masterplan #phase-a-text.visible,
    .overall-masterplan #phase-b-text.visible {
    opacity: 1;
  }

#info-container {
  transition: opacity 0.4s 0.2s ease-in-out;
  opacity: 0;
}

#info-container.visible {
    opacity: 1;
  }

.checkbox-container.light-bg input[type="checkbox"]:checked + label:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="none"/><path d="M4 10l3 3 7-7" stroke="black" stroke-width="2" fill="none"/></svg>') !important;
  opacity: 1 !important;
  z-index: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  height: 1.75rem !important;
  width: 1.75rem !important;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  background-color: rgb(45 45 45 / 0.1);
  --tw-text-opacity: 1;
  color: rgb(204 161 101 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 12px !important;
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgb(0 37 81 / 0.6);
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    display: none;
  }

.search-widget-header {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  height: 100vh;
  max-height: 800px;
  min-height: 600px;
  align-items: center;
  justify-content: center;
  text-align: center;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
  height: calc(100vh - env(safe-area-inset-bottom));
}

.richtext .search-widget-header img {
  margin-left: auto;
  margin-right: auto;
}

.search-widget-header label {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
  }

.search-widget-header select {
    border-width: 1px;
  }

.search-widget-header select {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
  }

.search-widget-header select {
    background-color: transparent;
  }

.search-widget-header select {
    --tw-bg-opacity: 1;
    background-color: rgb(40 74 154 / var(--tw-bg-opacity));
  }

@media only screen and (max-width: 900px) {

.search-widget-header .search-container .global-search-form .divs {
        flex-direction: column !important;

        justify-content: start;

        align-items: start
    }

        .search-widget-header .search-container .global-search-form .divs .search-button-container {
          width: 100%;
        }
          .search-widget-header .search-container .global-search-form .divs .search-button-container button {
            padding: 20px;
            height:auto;
            min-height:10px;
          }
      }

.swiper-slide-active {
  z-index: 10;
}

.search-results-form #global-search-form-fields {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }

.search-results-form .divs {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

.container {
  padding: 0px !important;
}

.bg-light-grey{
  box-shadow: 0 5px 10px rgba(0, 00, 0, 7%);
  background:white !important;
}

.container{
  max-width:1300px !important;
}

.loader {
  top: 0px;
  left: 0px;
  z-index: 1000;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgb(248 248 248 / 0.9);
  opacity: 1;
  --tw-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
}

.hover\:bg-blue:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(26 37 91 / var(--tw-bg-opacity));
}

.hover\:bg-dark-blue:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 37 81 / var(--tw-bg-opacity));
}

.hover\:bg-dark-blue\/70:hover {
  background-color: rgb(0 37 81 / 0.7);
}

.hover\:bg-imperio-blue:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(40 74 154 / var(--tw-bg-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.group:hover .group-hover\:-left-1 {
  left: -0.25rem;
}

.group:hover .group-hover\:ml-4 {
  margin-left: 1rem;
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(45 45 45 / var(--tw-bg-opacity));
}

.group:hover .group-hover\:text-black {
  --tw-text-opacity: 1;
  color: rgb(45 45 45 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-imperio-blue {
  --tw-text-opacity: 1;
  color: rgb(40 74 154 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media not all and (min-width: 900px) {
  .max-md\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .max-md\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .max-md\:flex {
    display: flex;
  }

  .max-md\:items-center {
    align-items: center;
  }
}

@media not all and (min-width: 640px) {
  .max-sm\:w-0 {
    width: 0px;
  }

  .max-sm\:flex-col {
    flex-direction: column;
  }

  .max-sm\:gap-2 {
    gap: 0.5rem;
  }
}

@media (min-width: 900px) {
  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:max-h-\[140px\] {
    max-height: 140px;
  }

  .md\:min-h-\[600px\] {
    min-height: 600px;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:text-\[56px\] {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  .lg\:overflow-visible {
    overflow: visible;
  }
}