/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*****************************************************************************************************************************************/
/* src/scss/base/_variables.scss */
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #434343;
  --color-red-primary: #A70E21;
  --color-background: #F3F1EB;
}

/**
 * Grid Breakpoints
 */
body:has(.mobile-menu.is-open) {
  position: relative;
  overflow: hidden;
}
body:has(.mobile-menu.is-open)::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}
body:has(.mobile-menu.is-open) header,
body:has(.mobile-menu.is-open) header * {
  opacity: 1;
}
@media (min-width: 992px) {
  body:has(.mobile-menu.is-open) {
    position: static;
    overflow: visible;
  }
  body:has(.mobile-menu.is-open)::before {
    display: none;
    content: none;
  }
}

.mobile-menu {
  position: sticky;
  top: 11px;
  z-index: 100;
  height: 0;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .mobile-menu {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    max-width: 1440px;
  }
}
.mobile-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 18px;
  background-color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(3px);
}
.mobile-menu__desktop-nav {
  display: none;
}
.mobile-menu__desktop-list {
  display: none;
}
.mobile-menu__logo {
  display: inline-flex;
  align-items: center;
  max-width: 95px;
}
.mobile-menu__logo img {
  display: block;
  width: 65px;
  height: 23px;
  object-fit: contain;
}
.mobile-menu__toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 35px;
  height: 30px;
  padding: 0;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .mobile-menu__toggle {
    display: none;
  }
}
.mobile-menu__toggle::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 35px;
  height: 30px;
  content: "";
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
}
.mobile-menu__toggle span {
  position: relative;
  z-index: 1;
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu__nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: none;
  padding: 16px;
  text-align: center;
  border-radius: 16px;
}
@media (min-width: 992px) {
  .mobile-menu__nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .mobile-menu__list {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.mobile-menu__list li {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .mobile-menu__list li {
    display: flex;
    align-items: center;
  }
  .mobile-menu__list li + li::before {
    display: inline-block;
    width: 2px;
    height: 14px;
    margin: 0 8px;
    content: "";
    background-color: var(--color-black);
  }
}
.mobile-menu__list a {
  display: inline-block;
  color: var(--color-black);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.mobile-menu__list a:hover {
  color: var(--color-red-primary);
}
.mobile-menu.is-open .mobile-menu__nav {
  display: block;
}
@media (min-width: 992px) {
  .mobile-menu.is-open .mobile-menu__nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
}
@media (min-width: 992px) {
  .mobile-menu.is-open .mobile-menu__list {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.mobile-menu.is-open .mobile-menu__list a {
  color: var(--color-white);
}
@media (min-width: 992px) {
  .mobile-menu.is-open .mobile-menu__list a {
    color: var(--color-black);
  }
}
.mobile-menu.is-open .mobile-menu__toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-menu.is-open .mobile-menu__toggle span:nth-child(2) {
  opacity: 0;
}
.mobile-menu.is-open .mobile-menu__toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

html {
  margin: 0;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--color-black);
}

button,
.button,
.wp-block-button__link {
  background-color: var(--color-red-primary);
  color: var(--color-white);
}

.section--accent {
  background-color: var(--color-background);
}

a {
  text-decoration: none;
}

.font-size-24 {
  font-size: 24px;
}

div#wpadminbar {
  position: fixed;
  top: auto;
  bottom: 0;
}

.ab-sub-wrapper {
  bottom: 2.875rem;
}
@media screen and (min-width: 783px) {
  .ab-sub-wrapper {
    bottom: 2rem;
  }
}

.admin-bar {
  margin-bottom: 2.875rem !important;
}
@media screen and (min-width: 783px) {
  .admin-bar {
    margin-bottom: 2rem !important;
  }
}

html[lang] {
  margin-top: 0 !important;
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-slider__swiper {
  width: 100%;
  height: 844px;
  min-height: 720px;
}
@media (min-width: 576px) {
  .hero-slider__swiper {
    height: 844px;
    min-height: 844px;
  }
}
@media (min-width: 992px) {
  .hero-slider__swiper {
    height: 100%;
    min-height: 796px;
  }
}
@media (min-width: 1100px) {
  .hero-slider__swiper {
    min-height: 200px;
  }
}
.hero-slider__slide {
  position: relative;
  display: flex;
  min-height: 844px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 576px) {
  .hero-slider__slide {
    min-height: 844px;
  }
}
@media (min-width: 992px) {
  .hero-slider__slide {
    min-height: 800px;
  }
}
@media (min-width: 1100px) {
  .hero-slider__slide {
    min-height: 200px;
  }
}
@media (min-width: 1320px) {
  .hero-slider__slide {
    background-position: top;
  }
}
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.35);
}
.hero-slider__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 59px;
  width: 100%;
  min-height: inherit;
  margin: 0 auto;
  padding: 0 30px;
  color: var(--color-white);
  max-width: 100%;
}
@media (min-width: 576px) {
  .hero-slider__content {
    max-width: 768px;
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .hero-slider__content {
    max-width: 1440px;
    padding: 20px 40px 40px;
    gap: 59px;
  }
}
@media (min-width: 1100px) {
  .hero-slider__content {
    padding: 82px 40px 40px;
  }
}
.hero-slider__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 80px;
  position: relative;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 19px;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  background: color-mix(in srgb, var(--color-red-primary) 50%, transparent);
  backdrop-filter: blur(2px) saturate(1.6);
  -webkit-backdrop-filter: blur(12px) saturate(1.6);
  border: 1px solid color-mix(in srgb, var(--color-red-primary) 45%, transparent);
  border-radius: 28px;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--color-red-primary) 35%, transparent);
}
@media (min-width: 576px) {
  .hero-slider__eyebrow {
    max-width: 350px;
  }
}
@media (min-width: 992px) {
  .hero-slider__eyebrow {
    width: 464px;
    max-width: unset;
  }
}
@media (min-width: 1100px) {
  .hero-slider__eyebrow {
    margin-top: 0;
  }
}
.hero-slider__bottom {
  text-align: center;
}
@media (min-width: 576px) {
  .hero-slider__bottom {
    text-align: left;
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .hero-slider__bottom {
    margin-left: 200px;
    margin-top: 0;
  }
}
.hero-slider__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 35px;
  color: var(--color-white);
  padding-top: 80px;
  margin: 0;
}
@media (min-width: 576px) {
  .hero-slider__title {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (min-width: 992px) {
  .hero-slider__title {
    width: 50%;
    font-size: 60px;
  }
}
.hero-slider__description {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 35px;
  color: var(--color-white);
  margin: 0;
  padding-top: 60px;
}
@media (min-width: 576px) {
  .hero-slider__description {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (min-width: 992px) {
  .hero-slider__description {
    font-size: 60px;
  }
}
.hero-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: fit-content;
  min-height: 54px;
  width: 246px;
  padding: 14px 28px;
  border-radius: 25px;
  background-color: var(--color-red-primary);
  color: var(--color-white);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s ease;
  margin-top: 40px;
  margin-bottom: 8px;
}
.hero-slider__button:hover {
  background-color: var(--color-white);
  color: var(--color-red-primary);
}
@media (min-width: 576px) {
  .hero-slider__button {
    margin-top: 0;
  }
}
.hero-slider__text-under-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
}
@media (min-width: 576px) {
  .hero-slider__text-under-button {
    justify-content: left;
    margin-left: 10px;
  }
}
.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color-white);
  opacity: 0.5;
}
.hero-slider .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  opacity: 1;
}
.hero-slider__scroll-down {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-white);
  text-decoration: none;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: hero-scroll-down 1.6s ease-in-out infinite;
}
.hero-slider__scroll-down:hover, .hero-slider__scroll-down:focus-visible {
  opacity: 0.75;
  transform: translateX(-50%) translateY(4px);
  outline: none;
}
@media (min-width: 576px) {
  .hero-slider__scroll-down {
    display: none;
  }
}
.hero-slider__scroll-down-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next,
.hero-slider .swiper-pagination {
  display: none;
}

@keyframes hero-scroll-down {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.initiative-widget {
  background-color: #ebe9e4;
  padding: 35px 0 36px;
}
.initiative-widget__inner {
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 32px;
  text-align: center;
}
.initiative-widget__image {
  margin-bottom: 28px;
}
.initiative-widget__image img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.initiative-widget__text {
  margin: 0 auto;
  color: var(--color-black);
  font-family: "Montserrat", Arial, sans-serif;
}
.initiative-widget__text p {
  margin: 0;
}
.initiative-widget__text--first {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
}
.initiative-widget__text--second {
  margin-bottom: 36px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
}
.initiative-widget__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background-color: var(--color-primary);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.initiative-widget__button:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .initiative-widget {
    padding: 40px 24px 24px;
  }
  .initiative-widget__inner {
    max-width: 520px;
    padding: 35px 0 38px;
    border-radius: 36px;
  }
  .initiative-widget__image {
    margin-bottom: 34px;
  }
  .initiative-widget__image img {
    max-width: 220px;
  }
  .initiative-widget__text--first {
    max-width: 380px;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.35;
  }
  .initiative-widget__text--second {
    max-width: 420px;
    margin-bottom: 42px;
    font-size: 22px;
    line-height: 1.35;
  }
  .initiative-widget__button {
    min-height: 42px;
    padding: 0 20px;
    font-size: 13px;
  }
}

.reports-map-widget {
  position: relative;
  width: 100%;
}
.reports-map-widget__year-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 100%;
  margin: 0 auto 36px;
}
@media (min-width: 576px) {
  .reports-map-widget__year-filter {
    max-width: 768px;
    gap: 16px;
    margin: 0 auto 16px;
  }
}
@media (min-width: 992px) {
  .reports-map-widget__year-filter {
    max-width: 943px;
  }
}
.reports-map-widget__year-filter button.reports-map-widget__year-btn {
  padding: 6px 16px;
  color: var(--color-white);
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  background-color: transparent;
  border: 1px solid var(--color-white);
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.reports-map-widget__year-filter button.reports-map-widget__year-btn:hover, .reports-map-widget__year-filter button.reports-map-widget__year-btn:focus-visible {
  color: #707070;
  background-color: var(--color-white);
  border-color: var(--color-white);
  outline: none;
}
.reports-map-widget__year-filter button.reports-map-widget__year-btn.is-active {
  color: #707070;
  background-color: var(--color-white);
  border-color: var(--color-white);
}
.reports-map-widget__year-filter button.reports-map-widget__year-btn--all {
  order: -1;
}

.reports-map-section {
  width: 100%;
}

.reports-map {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 440px;
  min-height: 520px;
  overflow: hidden;
  background-color: #f5f1ed;
  border-radius: 16px;
}
.reports-map .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-color: #f5f1ed;
  font-family: Arial, sans-serif;
}
.reports-map .leaflet-tile-pane {
  opacity: 1;
  filter: saturate(0.85) contrast(0.96) brightness(1.03);
}
.reports-map .leaflet-control-attribution {
  display: none;
}
.reports-map .leaflet-control-zoom {
  margin-right: 12px;
  margin-bottom: 12px;
  border: 0;
  box-shadow: none;
}
.reports-map .leaflet-control-zoom a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  background-color: var(--color-red-primary);
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.reports-map .leaflet-control-zoom a:hover, .reports-map .leaflet-control-zoom a:focus {
  color: #fff;
  background-color: #8f0b1b;
  transform: scale(1.04);
}
.reports-map .leaflet-control-zoom-in {
  border-radius: 50%;
}
.reports-map .leaflet-control-zoom-out {
  display: none;
}
.reports-map .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.reports-map .leaflet-popup-content {
  margin: 14px 16px;
  color: #434343;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.reports-map .leaflet-popup-tip {
  box-shadow: none;
}
.reports-map .reports-map__tile {
  filter: none;
}

.reports-map-popup strong {
  display: block;
  margin-bottom: 3px;
  color: var(--color-red-primary);
  font-size: 15px;
}
.reports-map-popup span {
  display: block;
  margin-bottom: 3px;
}
.reports-map-popup ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.reports-map-popup li {
  margin-bottom: 3px;
}

.reports-map-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 520px;
  margin: 24px auto 0;
}

.reports-map-top {
  min-height: 150px;
  padding: 24px 28px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.reports-map-top__title {
  margin: 0 0 14px;
  color: #a70e21;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.reports-map-top__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: #111111;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #dddddd;
}
.reports-map-top__row span:last-child {
  color: #a70e21;
}

@media (max-width: 576px) {
  .reports-map {
    height: 290px;
    background-color: #f8eef1;
    border-radius: 16px;
  }
  .reports-map .leaflet-container {
    background-color: #f8eef1;
  }
  .reports-map .leaflet-tile-pane {
    opacity: 1;
    filter: saturate(1.05) contrast(0.98) brightness(1.02) sepia(0.04) hue-rotate(330deg);
  }
  .reports-map .reports-map__tile {
    filter: none;
  }
  .reports-map-bottom {
    grid-template-columns: 1fr;
    max-width: none;
    margin-top: 28px;
  }
  .reports-map-top {
    min-height: 160px;
    padding: 24px;
    border-radius: 18px;
  }
}
.rules-widget {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 630px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .rules-widget {
    min-height: 640px;
  }
}
.rules-widget__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.65) 100%);
}
.rules-widget__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 23px 20px 35px;
  color: var(--color-white);
  border-radius: 30px;
}
.rules-widget__heading {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 333px;
  color: var(--color-white);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  background: color-mix(in srgb, var(--color-red-primary) 50%, transparent);
  backdrop-filter: blur(2px) saturate(1.6);
  -webkit-backdrop-filter: blur(12px) saturate(1.6);
  border: 1px solid color-mix(in srgb, var(--color-red-primary) 45%, transparent);
  border-radius: 28px;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--color-red-primary) 35%, transparent);
}
@media (min-width: 768px) {
  .rules-widget__heading {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: auto;
  }
}
.rules-widget__title {
  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 35px;
  text-align: left;
  margin: 0 0 12px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .rules-widget__title {
    text-align: left;
    font-size: 40px;
    padding-top: 0;
  }
}
.rules-widget__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 140px;
  min-height: 22px;
  color: var(--color-red-primary);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  background-color: var(--color-white);
  border-radius: 25px;
  transition: all 0.5s ease;
  font-size: 12px;
}
.rules-widget__button:hover {
  color: var(--color-white);
  background-color: var(--color-red-primary);
}
@media (min-width: 768px) {
  .rules-widget__button {
    align-self: flex-end;
  }
}

.report-form {
  width: 100%;
  max-width: 355px;
  margin: 0 auto;
  overflow: hidden;
  color: #2f2f2f;
  font-family: Arial, sans-serif;
  background: #f3f1eb;
  border-radius: 14px;
}
@media (min-width: 768px) {
  .report-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    border-radius: 18px;
  }
}
.report-form * {
  box-sizing: border-box;
}
.report-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.report-form select {
  width: 100%;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
  background-repeat: no-repeat;
  background-position: right 45px center;
  background-size: 20px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.report-form input[type=date] {
  position: relative;
  padding-right: 44px;
  cursor: pointer;
}
.report-form input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.report-form input[type=date]::-webkit-inner-spin-button {
  display: none;
}
.report-form__label {
  position: relative;
  display: block;
  margin-bottom: 12px;
}
.report-form__label > span:first-child {
  display: block;
  margin-bottom: 4px;
  color: #777777;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}
.report-form__label:last-child {
  margin-bottom: 0;
}
.report-form__label--date .report-form__label-icon {
  pointer-events: none;
}
.report-form__label-icon {
  position: absolute;
  right: 16px;
  bottom: 11px;
  z-index: 3;
  width: 16px;
  height: 16px;
  object-fit: contain;
  pointer-events: none;
}
.report-form__label-icon--circle {
  width: 13px;
  height: 13px;
}
.report-form__section {
  padding: 24px 24px 28px;
}
.report-form__section:not(:last-child) {
  border-bottom: 1px solid rgba(167, 14, 33, 0.45);
}
@media (min-width: 768px) {
  .report-form__section {
    min-height: 300px;
    padding: 28px 42px 32px;
  }
  .report-form__section:not(:last-child) {
    border-bottom: 1px solid rgba(167, 14, 33, 0.45);
  }
}
.report-form__section--type {
  padding-top: 22px;
}
.report-form__section--reason {
  padding-bottom: 24px;
  border-bottom: unset !important;
}
@media (min-width: 768px) {
  .report-form__section--reason {
    grid-column: 2;
    grid-row: 2;
    border-bottom: 1px solid rgba(167, 14, 33, 0.45) !important;
  }
}
.report-form__section--product .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.report-form__section--product .wpcf7-list-item {
  display: block;
  margin: 0;
}
.report-form__section--product .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #434343;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  cursor: pointer;
}
.report-form__section--product input[type=radio],
.report-form__section--product input[type=checkbox] {
  position: relative;
  width: 29px;
  min-width: 29px;
  height: 29px;
  margin: 0;
  appearance: none;
  background-color: transparent;
  border: 1px solid #434343;
  border-radius: 50%;
  cursor: pointer;
}
.report-form__section--product input[type=radio]:checked::before,
.report-form__section--product input[type=checkbox]:checked::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  content: "";
  background-color: var(--color-red-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.report-form__section-heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
}
.report-form__section-heading--centered {
  align-items: center;
}
.report-form__number {
  display: inline-flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: -1px;
  color: var(--color-red-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: 2px solid var(--color-red-primary);
  border-radius: 50%;
}
.report-form__title {
  margin: 0;
  color: var(--color-red-primary);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.1px;
}
.report-form__field, .report-form__textarea {
  width: 100%;
  color: #4a4a4a;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  background-color: #ffffff;
  border: 1px solid #434343;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.report-form__field::placeholder, .report-form__textarea::placeholder {
  color: #8c8c8c;
  opacity: 1;
}
.report-form__field:focus, .report-form__textarea:focus {
  border-color: var(--color-red-primary);
  box-shadow: 0 0 0 1px rgba(167, 14, 33, 0.2);
}
.report-form__field {
  height: 38px;
  padding: 0 12px;
}
.report-form__field--select {
  padding-right: 78px;
  color: #4a4a4a;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  appearance: none;
  background-image: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.report-form__textarea {
  display: block;
  min-height: 230px;
  padding: 12px;
  resize: none;
}
.report-form__checkbox {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 34px;
}
.report-form__checkbox .wpcf7-list-item {
  display: block;
  margin: 0;
}
.report-form__checkbox .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0;
  cursor: pointer;
}
.report-form__checkbox input[type=checkbox] {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin: 0;
  appearance: none;
  background-color: #ffffff;
  border: 1px solid #555555;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
}
.report-form__checkbox input[type=checkbox]:checked {
  background-color: var(--color-red-primary);
  border-color: var(--color-red-primary);
}
.report-form__checkbox input[type=checkbox]:checked::after {
  position: absolute;
  top: 4px;
  left: 9px;
  width: 7px;
  height: 14px;
  content: "";
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.report-form__checkbox .wpcf7-list-item-label {
  display: block;
  max-width: 250px;
  color: #434343;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.report-form__radio .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.report-form__radio .wpcf7-list-item {
  display: block;
  margin: 0 0 14px;
}
.report-form__radio .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding-top: 1px;
  color: #4a4a4a;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  cursor: pointer;
}
.report-form input[type=checkbox] {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  appearance: none;
  background-color: #ffffff;
  border: 1px solid #8e8e8e;
  border-radius: 0;
  cursor: pointer;
}
.report-form input[type=checkbox]:checked {
  background-color: var(--color-red-primary);
  border-color: var(--color-red-primary);
}
.report-form input[type=checkbox]:checked::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  content: "";
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.report-form__submit {
  padding: 20px 0px 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .report-form__submit {
    grid-column: 1/-1;
    border-top: 0;
  }
}
.report-form__button,
.report-form input[type=submit].report-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 288px;
  min-height: 56px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--color-red-primary);
  border: 2px solid var(--color-red-primary);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.report-form__button:hover, .report-form__button:focus,
.report-form input[type=submit].report-form__button:hover,
.report-form input[type=submit].report-form__button:focus {
  color: var(--color-red-primary);
  background-color: #ffffff;
}
.report-form .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}
.report-form .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -24px;
  margin-top: 0;
  color: var(--color-red-primary);
  font-size: 10px;
  line-height: 1.2;
}
.report-form .wpcf7-response-output {
  margin: 12px 24px 20px;
  padding: 10px 12px;
  color: var(--color-red-primary);
  font-size: 11px;
  line-height: 1.35;
  border-color: var(--color-red-primary);
  border-radius: 6px;
}
.report-form__mail-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #707070;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .report-form__mail-info {
    font-size: 14px;
  }
}
.report-form__mail-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.report-form__mail-link {
  color: var(--color-red-primary);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
}
@media (min-width: 576px) {
  .report-form__mail-link {
    font-size: 14px;
  }
}
.report-form__mail-link:hover {
  text-decoration: underline;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.site-footer {
  box-sizing: border-box;
  width: 100%;
  padding: 40px 20px 44px;
  color: var(--color-white);
  background-color: var(--color-black);
}
.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 48px 40px 52px;
  }
}
@media (min-width: 1100px) {
  .site-footer {
    padding-top: 44px;
    padding-bottom: 54px;
  }
}
.site-footer__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .site-footer__inner {
    padding-right: 0;
    padding-left: 0;
  }
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid #b0b0b0;
}
@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1.3fr) minmax(200px, 0.5fr) minmax(150px, 0.35fr);
    gap: 32px;
    align-items: start;
  }
}
@media (min-width: 992px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.5fr) minmax(180px, 0.35fr);
    gap: 60px;
  }
}
@media (min-width: 1100px) {
  .site-footer__top {
    grid-template-columns: 1.45fr 0.55fr 0.35fr;
    gap: 72px;
  }
}
.site-footer__brand {
  width: 100%;
  max-width: 390px;
}
.site-footer__logo {
  display: inline-flex;
  width: 105px;
  margin-bottom: 22px;
  text-decoration: none;
}
.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__description {
  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
}
.site-footer__description p {
  margin: 0 0 14px;
  font-size: 15px;
}
.site-footer__description p:last-child {
  margin-bottom: 0;
}
.site-footer__description-title {
  font-weight: 700;
}
.site-footer__line {
  width: 100%;
  padding: 0 0 24px;
  border-bottom: 1px solid #b0b0b0;
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .site-footer__line {
    display: none;
  }
}
.site-footer__nav-wrapper {
  width: 100%;
  min-width: 0;
}
.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__menu a {
  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.site-footer__menu a:hover, .site-footer__menu a:focus {
  color: var(--color-red-primary);
}
.site-footer__contact {
  min-width: 0;
  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
}
.site-footer__contact-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}
.site-footer__contact-link {
  color: var(--color-white);
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
  word-break: break-word;
}
.site-footer__contact-link:hover, .site-footer__contact-link:focus {
  color: var(--color-red-primary);
}
.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 18px;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    grid-template-columns: minmax(0, 1.3fr) minmax(200px, 0.5fr) minmax(150px, 0.35fr);
    gap: 32px;
    align-items: start;
  }
}
@media (min-width: 992px) {
  .site-footer__bottom {
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.5fr) minmax(180px, 0.35fr);
    gap: 60px;
  }
}
@media (min-width: 1100px) {
  .site-footer__bottom {
    grid-template-columns: 1.45fr 0.55fr 0.35fr;
    gap: 72px;
  }
}
.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 0;
  padding: 0 0 24px;
  order: -1;
  border-bottom: 1px solid #b0b0b0;
}
@media (min-width: 768px) {
  .site-footer__bottom-links {
    grid-column: 2/3;
    padding-bottom: 0;
    order: unset;
    border-bottom: 0;
  }
}
.site-footer__bottom-link {
  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.site-footer__bottom-link:hover, .site-footer__bottom-link:focus {
  color: var(--color-red-primary);
}
.site-footer__copyright {
  margin: 0;
  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .site-footer__copyright {
    font-size: 15px;
  }
}

.reports-top-regions-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 390px;
  min-height: 294px;
  margin: 0 auto;
  padding: 28px 20px;
  background-color: var(--color-white);
  border-radius: 32px;
}
@media (min-width: 576px) {
  .reports-top-regions-text {
    max-width: none;
    min-height: auto;
    padding: 0;
    border-radius: 40px;
  }
}
.reports-top-regions-text__years {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.reports-top-regions-text__year-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  color: var(--color-text);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  background-color: var(--color-white);
  border: 1px solid rgba(67, 67, 67, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.reports-top-regions-text__year-button:hover, .reports-top-regions-text__year-button:focus, .reports-top-regions-text__year-button.is-active {
  color: var(--color-white);
  background-color: var(--color-red-primary);
  border-color: var(--color-red-primary);
}
.reports-top-regions-text__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 100%;
  height: 100%;
}
@media (min-width: 576px) {
  .reports-top-regions-text__box {
    gap: 42px;
  }
}
.reports-top-regions-text__legend {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: fit-content;
  margin-top: 21px;
}
@media (min-width: 576px) {
  .reports-top-regions-text__legend {
    gap: 24px;
  }
}
.reports-top-regions-text__legend-item {
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  column-gap: 12px;
  width: 100%;
}
@media (min-width: 576px) {
  .reports-top-regions-text__legend-item {
    grid-template-columns: 31px auto;
    column-gap: 14px;
  }
}
.reports-top-regions-text__legend-dot {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
@media (min-width: 576px) {
  .reports-top-regions-text__legend-dot {
    width: 31px;
    height: 31px;
  }
}
.reports-top-regions-text__legend-dot--small {
  background-color: #d9d4cb;
}
.reports-top-regions-text__legend-dot--medium {
  background-color: #ff8998;
}
.reports-top-regions-text__legend-dot--large {
  background-color: #ef5263;
}
.reports-top-regions-text__legend-label {
  color: #434343;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.reports-top-regions-text__content {
  max-width: 300px;
  margin: 0 48px 25px;
  color: #111111;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}
@media (min-width: 576px) {
  .reports-top-regions-text__content {
    max-width: none;
    font-size: 17px;
  }
}
.reports-top-regions-text__content strong,
.reports-top-regions-text__content b,
.reports-top-regions-text__content span {
  color: var(--color-red-primary);
  font-weight: 700;
}

.elementor-widget-stop18_top_regions_card {
  width: 100%;
  height: 100%;
}
@media (min-width: 576px) {
  .elementor-widget-stop18_top_regions_card {
    width: stretch;
    height: stretch;
  }
}

.top-regions-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 390px;
  min-height: 294px;
  margin: 0 auto;
  padding: 24px 20px;
  background-color: var(--color-white);
  border-radius: 32px;
}
@media (min-width: 576px) {
  .top-regions-card {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    max-width: unset;
  }
}
.top-regions-card__years {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.top-regions-card__year-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  color: var(--color-text);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  background-color: var(--color-white);
  border: 1px solid rgba(67, 67, 67, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.top-regions-card__year-button:hover, .top-regions-card__year-button:focus, .top-regions-card__year-button.is-active {
  color: var(--color-white);
  background-color: var(--color-red-primary);
  border-color: var(--color-red-primary);
}
.top-regions-card__box {
  height: 100%;
}
.top-regions-card__title {
  margin: 0 0 30px;
  color: var(--color-red-primary);
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}
@media (min-width: 576px) {
  .top-regions-card__title {
    font-size: 25px;
    line-height: 24px;
  }
}
.top-regions-card__list {
  display: flex;
  flex-direction: column;
}
.top-regions-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}
@media (min-width: 576px) {
  .top-regions-card__item {
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(67, 67, 67, 0.22);
  }
}
.top-regions-card__region {
  color: var(--color-black);
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: capitalize;
}
.top-regions-card__count {
  flex-shrink: 0;
  color: var(--color-red-primary);
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}
.top-regions-card__empty {
  margin: 0;
  color: var(--color-text);
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .top-regions-card__empty {
    font-size: 16px;
  }
}

.reports-counter {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  color: var(--color-white);
  background: transparent;
  border-radius: 18px;
}
@media (min-width: 768px) {
  .reports-counter {
    min-height: 405px;
  }
}
.reports-counter__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 630px;
  padding: 27px 9px;
}
@media (min-width: 576px) {
  .reports-counter__inner {
    padding: 27px 55px;
  }
}
@media (min-width: 768px) {
  .reports-counter__inner {
    padding: 34px 44px 0;
  }
}
@media (min-width: 992px) {
  .reports-counter__inner {
    padding-right: 72px;
    padding-left: 44px;
  }
}
.reports-counter__years {
  display: none;
}
.reports-counter__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 19px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(167, 14, 33, 0.85);
}
@media (min-width: 768px) {
  .reports-counter__row {
    grid-template-columns: minmax(220px, 36%) minmax(0, 1fr);
    align-items: center;
    gap: clamp(20px, 4vw, 70px);
  }
}
@media (min-width: 1100px) {
  .reports-counter__row {
    grid-template-columns: minmax(300px, 40%) minmax(0, 1fr);
    gap: clamp(70px, 6vw, 110px);
  }
}
.reports-counter__row:nth-of-type(4) {
  border-bottom: none;
  padding-bottom: 30px;
}
.reports-counter__value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--color-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 79px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
}
@media (min-width: 1100px) {
  .reports-counter__value {
    font-size: 150px;
  }
}
.reports-counter__label {
  width: 100%;
  max-width: clamp(260px, 42vw, 520px);
  margin: 0 auto;
  color: var(--color-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(18px, 5.3vw, 24px);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .reports-counter__label {
    max-width: clamp(300px, 34vw, 520px);
    font-size: clamp(22px, 3.2vw, 30px);
  }
}
@media (min-width: 992px) {
  .reports-counter__label {
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(28px, 3vw, 38px);
    text-align: left;
  }
}
@media (min-width: 1100px) {
  .reports-counter__label {
    max-width: 620px;
    font-size: clamp(36px, 2.35vw, 43px);
    line-height: 1.08;
  }
}
.reports-counter__button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .reports-counter__button-wrap {
    margin-bottom: 40px;
  }
}
.reports-counter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 8px;
  color: var(--color-white);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--color-red-primary);
  border: 2px solid var(--color-red-primary);
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.reports-counter__button:hover, .reports-counter__button:focus-visible {
  color: var(--color-red-primary);
  background-color: var(--color-white);
  border-color: var(--color-white);
  outline: none;
}

.problem-scale-card {
  width: 100%;
  overflow: hidden;
  color: var(--color-black);
  border-radius: 30px;
}
.problem-scale-card__inner {
  padding: 38px 24px 28px;
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .problem-scale-card__inner {
    padding: 40px 56px 32px;
  }
}
@media (min-width: 992px) {
  .problem-scale-card__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 60px;
    min-height: 458px;
    padding: 58px 78px 48px;
  }
}
@media (min-width: 1100px) {
  .problem-scale-card__inner {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 0.9fr);
    gap: 74px;
    padding: 64px 92px 52px;
  }
}
@media (min-width: 576px) {
  .problem-scale-card__content {
    margin-left: 0;
  }
}
@media (min-width: 1320px) {
  .problem-scale-card__content {
    max-width: 500px;
    margin-left: 190px;
  }
}
@media (min-width: 576px) {
  .problem-scale-card__visual {
    margin-right: 0;
  }
}
@media (min-width: 1320px) {
  .problem-scale-card__visual {
    width: 100%;
    max-width: 500px;
    margin-right: 100px;
    margin-left: auto;
  }
}
.problem-scale-card__title {
  max-width: 440px;
  margin: 0 0 32px;
  color: var(--color-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .problem-scale-card__title {
    font-size: 30px;
    line-height: normal;
  }
}
@media (min-width: 992px) {
  .problem-scale-card__title {
    max-width: 520px;
    margin-bottom: 28px;
    font-size: 30px;
    line-height: 1.08;
  }
}
@media (min-width: 1100px) {
  .problem-scale-card__title {
    font-size: 34px;
  }
}
.problem-scale-card__dynamic-text {
  max-width: 460px;
  margin-bottom: 24px;
  color: var(--color-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 20px;
}
@media (min-width: 768px) {
  .problem-scale-card__dynamic-text {
    line-height: normal;
  }
}
@media (min-width: 992px) {
  .problem-scale-card__dynamic-text {
    max-width: 460px;
    margin-bottom: 22px;
    font-size: 19px;
    line-height: 1.18;
  }
}
.problem-scale-card__description {
  max-width: 440px;
  margin: 0 0 38px;
  color: var(--color-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 20px;
}
@media (min-width: 992px) {
  .problem-scale-card__description {
    max-width: 460px;
    margin-bottom: 0;
    line-height: 1.2;
  }
}
.problem-scale-card__chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 52px;
  height: 360px;
  padding-top: 20px;
  border-bottom: 1px solid rgba(67, 67, 67, 0.15);
}
@media (min-width: 768px) {
  .problem-scale-card__chart {
    gap: 56px;
    height: 390px;
  }
}
@media (min-width: 992px) {
  .problem-scale-card__chart {
    gap: 30px;
    height: 236px;
    padding-top: 0;
  }
}
@media (min-width: 1100px) {
  .problem-scale-card__chart {
    gap: 36px;
    height: 250px;
  }
}
.problem-scale-card__bar {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  width: 130px;
  height: 100%;
}
@media (min-width: 768px) {
  .problem-scale-card__bar {
    width: 150px;
  }
}
@media (min-width: 992px) {
  .problem-scale-card__bar {
    width: 82px;
  }
}
@media (min-width: 1100px) {
  .problem-scale-card__bar {
    width: 92px;
  }
}
.problem-scale-card__bar--previous {
  color: #8c8c8c;
}
.problem-scale-card__bar--previous .problem-scale-card__bar-fill {
  background-color: #9b9c9c;
}
.problem-scale-card__bar--current {
  color: #b30922;
}
.problem-scale-card__bar--current .problem-scale-card__bar-fill {
  background-color: #b30922;
}
.problem-scale-card__bar-value {
  display: block;
  margin-bottom: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 768px) {
  .problem-scale-card__bar-value {
    font-size: 64px;
  }
}
@media (min-width: 992px) {
  .problem-scale-card__bar-value {
    margin-bottom: 10px;
    font-size: 46px;
  }
}
@media (min-width: 1100px) {
  .problem-scale-card__bar-value {
    font-size: 50px;
  }
}
.problem-scale-card__bar-fill {
  width: 100%;
  height: 0;
  min-height: 0;
  border-radius: 12px 12px 0 0;
  transition: height 0.9s ease;
}
@media (min-width: 992px) {
  .problem-scale-card__bar-fill {
    border-radius: 8px 8px 0 0;
  }
}
.problem-scale-card__chart-label {
  margin: 26px 0 46px;
  color: var(--color-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .problem-scale-card__chart-label {
    max-width: 424px;
    margin: 19px 0 28px 136px;
    font-size: 25px;
    line-height: 0.9;
    text-align: left;
  }
}
.problem-scale-card__badge {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  padding: 12px 24px 12px 16px;
  color: var(--color-white);
  background-color: #d7132f;
  border-radius: 999px;
}
@media (min-width: 992px) {
  .problem-scale-card__badge {
    gap: 10px;
    max-width: 300px;
    min-height: 42px;
    margin: 0 auto;
    padding: 8px 18px 8px 10px;
  }
}
.problem-scale-card__badge-icon {
  position: relative;
  display: block;
  flex: 0 0 35px;
  width: 34px;
  height: 34px;
  background-color: var(--color-white);
  border-radius: 50%;
}
@media (min-width: 992px) {
  .problem-scale-card__badge-icon {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
  }
}
.problem-scale-card__badge-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  content: "";
  background-color: #d7132f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .problem-scale-card__badge-icon::before {
    width: 12px;
    height: 12px;
  }
}
.problem-scale-card__badge-content {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .problem-scale-card__badge-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-weight: 700;
    line-height: 1.1;
  }
}
.problem-scale-card__badge-percent {
  white-space: nowrap;
}
.problem-scale-card__badge-text {
  white-space: normal;
}
.problem-scale-card.is-visible .problem-scale-card__bar-fill {
  height: var(--bar-height, 0%);
}

.reports-voivodeship-card {
  width: 100%;
  height: 100%;
  color: var(--color-white);
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reports-voivodeship-card__title {
  width: 100%;
  margin-top: 37px;
  margin-bottom: 36px;
  padding: 0 16px;
  color: var(--color-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 768px) {
  .reports-voivodeship-card__title {
    max-width: 520px;
    margin-bottom: 25px;
    padding: 0;
    font-size: 17px;
    line-height: 1.35;
  }
}
@media (min-width: 992px) {
  .reports-voivodeship-card__title {
    max-width: 540px;
  }
}
.reports-voivodeship-card__counter {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  width: calc(100% - 36px);
  margin: 0 auto 18px;
  padding: 28px 28px 28px 14px;
  background-color: var(--color-white);
  border-radius: 30px;
}
@media (min-width: 768px) {
  .reports-voivodeship-card__counter {
    grid-template-columns: 106px 1fr;
    margin-bottom: 11px;
  }
}
.reports-voivodeship-card__total-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  background-color: #3f3f3f;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .reports-voivodeship-card__total-badge {
    width: 92px;
    height: 92px;
    margin-bottom: 30px;
  }
}
.reports-voivodeship-card__total-value {
  color: var(--color-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 27px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .reports-voivodeship-card__total-value {
    font-size: 36px;
  }
}
.reports-voivodeship-card__region-value {
  color: var(--color-red-primary);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 41px;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
}
@media (min-width: 375px) {
  .reports-voivodeship-card__region-value {
    font-size: 88px;
  }
}
@media (min-width: 768px) {
  .reports-voivodeship-card__region-value {
    font-size: 144px;
  }
}
.reports-voivodeship-card__total-label {
  position: absolute;
  left: 31px;
  bottom: 34px;
  color: #3f3f3f;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .reports-voivodeship-card__total-label {
    left: 33px;
    bottom: 39px;
    font-size: 20px;
  }
}
.reports-voivodeship-card__field {
  width: calc(100% - 32px);
  max-width: 620px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reports-voivodeship-card__field {
    width: calc(100% - 64px);
    max-width: 620px;
  }
}
.reports-voivodeship-card__label {
  display: block;
  margin: 0 0 8px 16px;
  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .reports-voivodeship-card__label {
    margin-bottom: 9px;
    font-size: 14px;
  }
}
.reports-voivodeship-card__select {
  width: 100%;
  min-height: 50px;
  padding: 7px 25px 8px 46px;
  color: var(--color-red-primary);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  background-color: var(--color-white);
  background-image: url(../../images/Arrow-Small-Down.jpg);
  background-position: 24px 50%;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  border-radius: 999px;
  outline: none;
  appearance: none;
  cursor: pointer;
  border: 1px solid #B0B0B0;
}
.reports-voivodeship-card__select option {
  padding: 8px 14px;
  font-size: 14px;
  white-space: normal;
}
.reports-voivodeship-card__select::-ms-expand {
  display: none;
}
@media (min-width: 768px) {
  .reports-voivodeship-card__select {
    padding: 4px 10px 4px 40px;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.05;
    background-position: 17px 50%;
    background-size: 16px auto;
    margin-bottom: 48px;
    white-space: nowrap;
  }
}
.reports-voivodeship-card__source {
  margin: 48px auto 15px;
  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .reports-voivodeship-card__source {
    margin-top: 0;
    padding: 0;
    font-size: 14px;
  }
}

.reports-voivodeship-text {
  width: 100%;
  font-size: 14px;
  color: #4a4a4a;
  font-family: Arial, sans-serif;
  font-size: var(--color-text);
  font-weight: 500;
}
@media (min-width: 768px) {
  .reports-voivodeship-text {
    font-size: 17px;
  }
}
.reports-voivodeship-text__highlight {
  color: var(--color-red-primary);
  font-weight: 900;
}

.purchases-pie-card {
  width: 100%;
  color: var(--color-black);
}
.purchases-pie-card__inner {
  width: 100%;
  padding: 21px 20px;
  overflow: hidden;
  background-color: #F3F1EB;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .purchases-pie-card__inner {
    padding: 48px 42px 56px;
  }
}
@media (min-width: 992px) {
  .purchases-pie-card__inner {
    padding: 48px 38px 72px;
  }
}
.purchases-pie-card__title {
  margin: 0 0 38px;
  color: var(--color-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .purchases-pie-card__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .purchases-pie-card__title {
    font-size: 40 px;
  }
}
.purchases-pie-card__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
@media (min-width: 768px) {
  .purchases-pie-card__content {
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.85fr);
    gap: 46px;
  }
}
@media (min-width: 992px) {
  .purchases-pie-card__content {
    grid-template-columns: minmax(340px, 1fr) minmax(290px, 0.75fr);
    gap: 56px;
  }
}
.purchases-pie-card__chart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.purchases-pie-card__svg {
  display: block;
  width: min(100%, 350px);
  height: auto;
  overflow: visible;
  transform: rotate(-90deg);
}
@media (min-width: 768px) {
  .purchases-pie-card__svg {
    width: min(100%, 420px);
  }
}
.purchases-pie-card__segment {
  transition: stroke-dasharray 850ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.purchases-pie-card__legend {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .purchases-pie-card__legend {
    max-width: none;
    margin: 0;
  }
}
.purchases-pie-card__legend-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.purchases-pie-card__legend-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.purchases-pie-card__legend-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.purchases-pie-card__legend-dot {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.purchases-pie-card__legend-text {
  color: #6B6B6B;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.purchases-pie-card__source {
  margin: 56px 0 0;
  color: #6B6B6B;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}
@media (min-width: 768px) {
  .purchases-pie-card__source {
    margin-top: 66px;
    text-align: left;
  }
}

.elementor-post__read-more {
  padding: 8px 18px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--color-red-primary);
  border: 2px solid var(--color-red-primary);
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.elementor-post__read-more:hover, .elementor-post__read-more:focus-visible {
  color: var(--color-red-primary) !important;
  background-color: var(--color-white);
  border-color: var(--color-red-primary);
}

.elementor-element-0c10714 .elementor-post__thumbnail {
  box-shadow: 0 14px 12px -9px rgba(0, 0, 0, 0.2);
}
/*!*****************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/swiper.css ***!
  \*****************************************************************************************************************************************************/
/**
 * Swiper 12.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 29, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
/*!*****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/modules/navigation.css ***!
  \*****************************************************************************************************************************************************************/
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
/*!*****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/modules/pagination.css ***!
  \*****************************************************************************************************************************************************************/
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}
/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/modules/effect-fade.css ***!
  \******************************************************************************************************************************************************************/
.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/*!************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./node_modules/leaflet/dist/leaflet.css ***!
  \************************************************************************************************************************************************************/
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}

.leaflet-container img.leaflet-tile {
  /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
  mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}

.leaflet-container a {
  color: #0078A8;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
  background-image: url(images/marker-icon.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}

.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff;
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}

.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font: 16px/24px Tahoma, Verdana, sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}

.leaflet-popup-scrolled {
  overflow: auto;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/* Printing */
@media print {
  /* Prevent printers from removing background-images of controls. */
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

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