@charset "UTF-8";
/*
	Abstracts are helpers, variables and functions
	for scss compliation.
*/
/*
	@TODO: Add to theme: new division fix for updated sass package.
*/
/**==================================================================================================================================
BREAKPOINT
@TODO: remove? What is use case?? either use simple global points or write custom line. why does first breakpoint have to be 0?
 ==================================================================================================================================*/
/**==================================================================================================================================
BREAKPOINT ENDS
==================================================================================================================================*/
span.edit-link {
  display: inline-block;
  background-color: yellow;
  font-weight: 700;
  position: fixed;
  left: 0;
  bottom: 3.125rem;
  transform: translateX(-45px);
  transition: all 0.2s;
}

span.edit-link a {
  display: block;
  padding: 0.9375rem;
}

span.edit-link:hover {
  transform: translateX(0);
}

/*
	Variables for compliation
	NB! Colors should be added to base/config file as css root variable.
*/
/**
 * Block section background colors.
 * Include the background options ACF fields group to use these.
 */
/*
 * makes ul/ol as a dropdown select (normaly in mobile)
 * Structure: div > title > list > li > a
*/
/*
	Variables for legacy dc plugins
*/
.block-section.map-block {
  /* === new stuff for slider under map === */
}

.block-section.map-block .block-section-wrapper {
  background-color: var(--color__grey);
  border-radius: 0.4375rem;
  overflow: hidden;
}

.block-section.map-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.block-section.map-block .subheader {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.block-section.map-block .two-columns {
  display: flex;
  min-height: 60vh;
  max-height: 90vh;
}

@media screen and (max-width: 849px) {
  .block-section.map-block .two-columns {
    max-height: none;
    flex-direction: column;
  }
}
.block-section.map-block .two-columns > .text-content,
.block-section.map-block .two-columns > .image-content {
  overflow: hidden;
}

.block-section.map-block .two-columns > .text-content.fullsize,
.block-section.map-block .two-columns > .image-content.fullsize {
  min-width: 100%;
}

.block-section.map-block .two-columns > .text-content img,
.block-section.map-block .two-columns > .image-content img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 850px) {
  .block-section.map-block .two-columns > .text-content {
    width: 30%;
  }
  .block-section.map-block .two-columns > .image-content {
    width: 70%;
  }
}
.block-section.map-block .text-content {
  padding: 5rem 3.75rem 3.125rem 3.75rem;
}

@media screen and (max-width: 1439px) {
  .block-section.map-block .text-content {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 900px) {
  .block-section.map-block .text-content {
    padding: 0 1.5625rem 1.875rem 1.5625rem;
  }
}
@media screen and (max-width: 849px) {
  .block-section.map-block .image-content {
    order: 1;
    height: 21.875rem;
  }
  .block-section.map-block .text-content {
    order: 2;
  }
}
.block-section.map-block .image-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.block-section.map-block .image-content .mobile-zoom {
  display: none;
}

@media (max-width: 640px) {
  .block-section.map-block .image-content .mobile-zoom {
    display: block;
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transform: rotate(45deg);
  }
  .block-section.map-block .image-content .mobile-zoom:before {
    font-family: "icon";
    content: "Ж";
    font-size: 20px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.block-section.map-block .image-content .map-media {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.block-section.map-block .image-content .image-slider-shell.map-gallery {
  position: relative;
  isolation: isolate;
  padding-bottom: 96px;
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .swiper {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .slide-card {
  position: relative;
  z-index: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f4f6f8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .slide-card .slide-index-under {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .slide-img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .plus-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #fff;
  color: #12374F;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .plus-btn svg {
  width: 16px;
  height: 16px;
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .swiper-scrollbar {
  position: absolute;
  left: 0;
  bottom: 48px;
  width: 420px;
  height: 6px;
  border-radius: 9999px;
  background: #E6E8EA;
  z-index: 1;
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .swiper-scrollbar .swiper-scrollbar-drag {
  background: #22293A;
  border-radius: inherit;
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .nav-cluster {
  position: absolute;
  right: 36px;
  bottom: 18px;
  display: flex;
  gap: 14px;
  z-index: 10;
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  border: 1.296px solid #12374F;
  background: #fff;
  color: #12374F;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .nav-btn svg {
  width: 18px;
  height: 18px;
}

.block-section.map-block .image-content .image-slider-shell.map-gallery .nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .block-section.map-block .image-content .image-slider-shell.map-gallery {
    padding-bottom: 88px;
  }
  .block-section.map-block .image-content .image-slider-shell.map-gallery .swiper-scrollbar {
    left: 48px;
    width: 260px;
    bottom: 44px;
  }
  .block-section.map-block .image-content .image-slider-shell.map-gallery .nav-cluster {
    right: 28px;
    bottom: 16px;
  }
}
@media (max-width: 640px) {
  .block-section.map-block .image-content .image-slider-shell.map-gallery {
    padding-bottom: 80px;
  }
  .block-section.map-block .image-content .image-slider-shell.map-gallery .swiper-scrollbar {
    left: 24px;
    width: 200px;
    bottom: 38px;
  }
  .block-section.map-block .image-content .image-slider-shell.map-gallery .nav-cluster {
    right: 20px;
    bottom: 14px;
  }
  .block-section.map-block .image-content .image-slider-shell.map-gallery .nav-btn {
    width: 48px;
    height: 48px;
  }
}
/* === shared lightbox styling === */
.img-lightbox[aria-hidden=true] {
  display: none;
}

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.img-lightbox .img-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.img-lightbox .img-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin: 6vh auto;
  display: grid;
  gap: 20px;
  grid-template-rows: auto auto auto auto;
}

.img-lightbox .img-lightbox__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  z-index: 99999;
}

.img-lightbox .img-lightbox__main {
  position: relative;
  height: clamp(360px, 68vh, 820px);
  border-radius: 12px;
  overflow: hidden;
  background: #0b0b0b;
}

.img-lightbox .img-lightbox__main .lb-index-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 12px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.img-lightbox .img-lightbox__main > img.lb-hero {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  border-radius: 12px;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
}

.img-lightbox .img-lightbox__caption {
  text-align: center;
  color: #fff;
}

.img-lightbox .img-lightbox__caption .img-lightbox__credit {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.img-lightbox .img-lightbox__caption .img-lightbox__desc {
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.9;
  max-width: 40ch;
  margin: 0 auto;
}

.img-lightbox .img-lightbox__thumbs-bar {
  display: grid;
  grid-template-columns: 56px minmax(0, clamp(480px, 72vw, 900px)) 56px;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 8px;
}

.img-lightbox .img-lightbox__thumbs-bar .img-lightbox__thumbs {
  width: 100%;
  overflow: hidden;
}

.img-lightbox .img-lightbox__thumbs-bar .swiper-slide {
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  opacity: 0.6;
}

.img-lightbox .img-lightbox__thumbs-bar .swiper-slide-thumb-active,
.img-lightbox .img-lightbox__thumbs-bar .swiper-slide.is-active {
  opacity: 1;
  outline: 2px solid #fff;
}

.img-lightbox .img-lightbox__thumbs-bar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.img-lightbox .img-lightbox__thumbs-bar .thumb-nav {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.img-lightbox .img-lightbox__thumbs-bar .thumb-nav svg {
  width: 18px;
  height: 21px;
  display: block;
}

@media (max-width: 640px) {
  .img-lightbox .img-lightbox__dialog {
    width: 100vw;
    max-width: 720px;
    margin: calc(env(safe-area-inset-top) + 12px) auto calc(env(safe-area-inset-bottom) + 12px);
    padding: 0 16px;
    gap: 18px;
  }
  .img-lightbox .img-lightbox__close {
    top: -6px;
    right: 6px;
    width: 44px;
    height: 44px;
  }
  .img-lightbox .img-lightbox__main {
    height: 56vh;
    border-radius: 14px;
    background: #000;
  }
  .img-lightbox .img-lightbox__main .lb-index-badge {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 36px;
    height: 24px;
    padding: 0 10px;
    font-size: 11px;
  }
  .img-lightbox .img-lightbox__main > img.lb-hero {
    border-radius: 14px;
  }
  .img-lightbox .img-lightbox__caption {
    padding: 8px 0 4px;
  }
  .img-lightbox .img-lightbox__caption .img-lightbox__credit {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .img-lightbox .img-lightbox__caption .img-lightbox__desc {
    font-size: 16px;
    line-height: 1.6;
    max-width: 34ch;
    margin: 0 auto;
  }
  .img-lightbox .img-lightbox__thumbs-bar {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    -moz-column-gap: 12px;
         column-gap: 12px;
    align-items: center;
    margin-top: 10px;
  }
  .img-lightbox .img-lightbox__thumbs-bar .img-lightbox__thumbs {
    padding: 0 4px;
  }
  .img-lightbox .img-lightbox__thumbs-bar .swiper-slide {
    height: 64px;
    border-radius: 12px;
  }
  .img-lightbox .img-lightbox__thumbs-bar .swiper-slide-thumb-active {
    outline-width: 2px;
  }
  .img-lightbox .img-lightbox__thumbs-bar .thumb-nav {
    width: 56px;
    height: 56px;
  }
}
.block-section.map-block .map-block__under {
  padding: 0 3.75rem 3.75rem 3.75rem;
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  .block-section.map-block .map-block__under {
    padding: 0 1.5625rem 1.5625rem 1.5625rem;
  }
}
.block-section.map-block .map-block__under .image-slider-with-modal {
  position: relative;
  padding: 4.375rem 0 1.875rem 0;
}

@media screen and (max-width: 900px) {
  .block-section.map-block .map-block__under .image-slider-with-modal {
    padding: 0 0 1.25rem 0;
  }
}
.block-section.map-block .map-block__under .block-title {
  margin-bottom: 2.5rem;
}

.block-section.map-block .map-block__under .swiper-slide img {
  display: block;
  margin: 0 auto;
  border-radius: 0.25rem;
  width: 100%;
  height: auto;
}

.block-section.map-block .map-block__under .slide-index-under {
  display: block;
  text-align: center;
  padding-top: 0.75rem;
}

.block-section.map-block .map-block__under .slide-index-under span {
  display: inline-block;
  height: 3.125rem;
  width: 3.125rem;
  background-color: var(--color__blue-dark);
  color: var(--color__blue-light);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 3.0625rem;
}
