/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl-s: 1600px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 370px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
/* stylelint-disable */
/* Usage Examples
    .my-level-1-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 48px;
        margin: 0 0 0 16px;
    }

    .my-level-2-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 32px; // Don't need to change any settings, will work with any font size automatically
        margin: 0 0 0 16px;
    }

    .my-body-copy-class {
        @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin
        font-size: 16px;
    }

    // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output. 
    // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings 

    .slight-adjustment-needed {
        @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px);
        font-size: 17px;
    }

    .dont-do-this {
        @include text-crop;
        font-size: 16px;
        line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly
    }
*/
.wp-block .section-map,
.section-map {
  padding-bottom: var(--padding-mobile);
}
@media (min-width: 1280px) {
  .wp-block .section-map,
  .section-map {
    padding-bottom: var(--padding-desktop);
  }
}
.wp-block .section-map .sk-container,
.section-map .sk-container {
  overflow: hidden;
}
.wp-block .section-map__title,
.section-map__title {
  text-align: center;
  margin-bottom: var(--sk-spacing-40);
}
@media (max-width: 768px) {
  .wp-block .section-map__title,
  .section-map__title {
    margin-bottom: var(--sk-spacing-25);
  }
}
.wp-block .section-map__map,
.section-map__map {
  position: relative;
}
.wp-block .section-map__map > svg,
.section-map__map > svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (max-width: 512px) {
  .wp-block .section-map__map,
  .section-map__map {
    width: 730px;
    margin-left: -155px;
  }
}
@media screen and (max-width: 350px) {
  .wp-block .section-map__map,
  .section-map__map {
    width: 650px;
  }
}
.wp-block .section-map__location,
.section-map__location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sk-spacing-10);
  border-radius: var(--sk-spacing-10);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: var(--sk-spacing-5) var(--sk-spacing-10);
  position: absolute;
}
@media (max-width: 768px) {
  .wp-block .section-map__location,
  .section-map__location {
    gap: var(--sk-spacing-5);
    border-radius: var(--sk-spacing-5);
    padding: var(--sk-spacing-5);
  }
}
@media (max-width: 512px) {
  .wp-block .section-map__location,
  .section-map__location {
    max-width: 130px;
  }
  .wp-block .section-map__location.right.bottom,
  .section-map__location.right.bottom {
    flex-direction: row;
    transform: translateX(100%) !important;
  }
  .wp-block .section-map__location.left.top:first-of-type,
  .section-map__location.left.top:first-of-type {
    transform: translateY(-10px) !important;
  }
}
.wp-block .section-map__location.right,
.section-map__location.right {
  flex-direction: row-reverse;
}
.wp-block .section-map__location-title,
.section-map__location-title {
  font-size: 24px;
  line-height: 1.4;
  transition: opacity 0.3s ease-in-out;
  max-width: calc(100% - 35px);
}
@media (max-width: 1280px) {
  .wp-block .section-map__location-title,
  .section-map__location-title {
    font-size: 16px;
    max-width: calc(100% - 26px);
  }
}
@media (max-width: 768px) {
  .wp-block .section-map__location-title,
  .section-map__location-title {
    font-size: 12px;
  }
}
@media (max-width: 512px) {
  .wp-block .section-map__location-title,
  .section-map__location-title {
    max-width: calc(100% - 20px);
  }
  .left .wp-block .section-map__location-title,
  .left .section-map__location-title {
    left: 20px;
  }
  .right .wp-block .section-map__location-title,
  .right .section-map__location-title {
    right: 20px;
  }
}
.wp-block .section-map__location-wrap,
.section-map__location-wrap {
  width: 25px;
  height: auto;
}
@media (max-width: 1280px) {
  .wp-block .section-map__location-wrap,
  .section-map__location-wrap {
    width: 16px;
  }
}
@media (max-width: 512px) {
  .wp-block .section-map__location-wrap,
  .section-map__location-wrap {
    width: 10px;
  }
}
.wp-block .section-map__location-icon,
.section-map__location-icon {
  width: 100%;
  height: auto;
}
