/* 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;
  }
}
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
  -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
  -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

:root {
  --white: #fff;
  --black: #000;
  --text: #1E1E1E;
  --arrows: #3D3D3D;
  --grey: #6E6E6E;
  --line: #e7e7e7;
  --background: #f4f4f5;
  --primary: #0025AC;
  --green: #006B15;
  --disabled: #FFE4BA;
  --orange: #FFB700;
  --purple: #92278F;
  --line-grey: #bfbfc0;
  --default-border-radius: 40px;
  --tile-radius: 24px ;
}

.kpot-dark {
  --white: #1a1a1a;
  --black: #fff;
  --text: #fff;
  --grey: #a0a0a0;
  --line: #444444;
  --background: #252525;
  --primary: #fff;
  --green: #00a82d;
  --disabled: #66512c;
  --line-grey: #fff;
}

body {
  background-image: url("../images/kpot-background.png");
  background-position: top right;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: var(--background);
  overflow-x: hidden;
  font-family: "Outfit";
}
body.menu-opened {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

* {
  margin-block-start: 0;
  margin-block-end: 0;
}

.href-wrapper {
  display: contents;
}

.dark-mode {
  display: none;
}

/* elementor bug */
.elementor-widget-image a img[src$=".svg"] {
  width: auto !important;
}

.elementor-widget-shortcode,
.elementor-shortcode {
  width: 100%;
  display: flex;
}

.elementor-widget-text-editor p {
  margin-bottom: 16px;
}

.elementor-button {
  padding: 0;
  margin: 0;
}

.kpot-container {
  display: flex;
  width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .kpot-container {
    width: 100%;
  }
}

search {
  overflow: hidden;
}

#kpot-alert a {
  text-decoration: underline;
}

footer {
  overflow: hidden;
  position: relative;
  background: url("/wp-content/themes/kpot/images/kpot-background-footer.jpg") top right no-repeat;
  background-size: cover;
}
@media (max-width: 1279px) {
  footer > .elementor-element {
    padding: 32px 20px;
  }
}
footer::after {
  content: "";
  display: block;
  background: url("/wp-content/themes/kpot/images/kpot-nodes-background-footer.svg") top right no-repeat;
  background-size: cover;
  width: 633px;
  height: 376px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
}

.single-atrakcje .elementor-element-1ced2623 {
  display: none;
}

#footer-menu, #submenu-container,
li.template {
  display: flex;
  gap: 24px;
}
#footer-menu h2, #submenu-container h2,
li.template h2 {
  font-size: 20px;
}
#footer-menu h2 svg, #submenu-container h2 svg,
li.template h2 svg {
  vertical-align: bottom;
  margin-right: 4px;
}
#footer-menu ul, #submenu-container ul,
li.template ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#footer-menu li, #submenu-container li,
li.template li {
  padding: 8px 0;
}
#footer-menu li:last-child, #submenu-container li:last-child,
li.template li:last-child {
  padding-top: 16px;
  padding-bottom: 0;
}
#footer-menu li:last-child a, #submenu-container li:last-child a,
li.template li:last-child a {
  font-size: 20px;
}
#footer-menu a, #submenu-container a,
li.template a {
  font-size: 18px;
}
#footer-menu a .fa, #submenu-container a .fa,
li.template a .fa {
  font-size: 12px;
  font-weight: 100;
  position: relative;
  top: -2px;
}

#kpot-menu .label {
  cursor: pointer;
}
#kpot-menu .template {
  display: none;
}

.kpot-header-navigation {
  font-size: 20px;
}
.kpot-header-navigation nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.kpot-header-navigation nav ul > li svg, .kpot-header-navigation nav ul > li .back {
  display: none;
}
.kpot-header-navigation nav ul li {
  padding: 6px 14px;
}
.kpot-header-navigation nav ul li.menu-active {
  border-bottom: 1px solid var(--primary);
}
.kpot-header-navigation nav ul li, .kpot-header-navigation nav ul li a {
  color: var(--primary);
}
@media (max-width: 1024px) {
  .kpot-header-navigation {
    display: none;
  }
}

.kpot-header-hamburger #mobile-menu-close {
  display: none;
}

#submenu-container,
li.template {
  width: 100%;
  background-color: var(--white);
  border-radius: var(--default-border-radius);
  margin-top: 16px;
  padding: 32px 132px;
}
#submenu-container .kpot-column,
li.template .kpot-column {
  width: 320px;
}
#submenu-container .kpot-column_full,
li.template .kpot-column_full {
  width: 100%;
}
#submenu-container .kpot-column_full ul,
li.template .kpot-column_full ul {
  columns: 3;
}
#submenu-container h2,
li.template h2 {
  color: var(--text);
}
#submenu-container a,
li.template a {
  color: var(--primary);
}
@media (max-width: 1328px) {
  #submenu-container,
  li.template {
    width: calc(100% - 32px);
  }
}
@media (max-width: 1024px) {
  #submenu-container,
  li.template {
    display: none;
  }
}

#footer-menu {
  width: 100%;
  margin-left: 116px;
}
#footer-menu .kpot-column {
  width: 193px;
}
#footer-menu h2 {
  color: var(--white);
  font-size: 18px;
}
#footer-menu ul {
  padding-left: 4px;
}
#footer-menu ul li:last-child {
  display: none;
}
#footer-menu a {
  color: var(--white);
}
@media (max-width: 1326px) {
  #footer-menu {
    flex-wrap: wrap;
    margin-left: 24px;
  }
  #footer-menu .kpot-column {
    width: calc(50% - 48px);
  }
}
@media (max-width: 1023px) {
  #footer-menu {
    margin-left: 0;
  }
  #footer-menu .kpot-column {
    width: 100%;
  }
}

header.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  height: 100%;
  min-height: 100vh;
  background-color: var(--white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
header.mobile-menu > div {
  align-self: start;
  display: grid;
  grid-template-areas: "logos hamburger" "navigation navigation" "controls controls";
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 1fr;
}
header.mobile-menu .kpot-header-logos {
  grid-area: logos;
}
header.mobile-menu .kpot-header-hamburger {
  grid-area: hamburger;
  justify-content: end;
}
header.mobile-menu .kpot-header-hamburger #mobile-menu,
header.mobile-menu .kpot-header-hamburger .kpot-mobile-search {
  display: none;
}
header.mobile-menu .kpot-header-hamburger #mobile-menu-close {
  display: block;
}
header.mobile-menu .kpot-header-navigation {
  grid-area: navigation;
  width: 100%;
  display: flex;
}
header.mobile-menu .kpot-header-navigation .elementor-shortcode {
  display: block;
}
header.mobile-menu .kpot-header-navigation #kpot-menu {
  padding: 32px 0;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul {
  flex-direction: column;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul > li svg {
  display: inline-block;
  margin-left: 8px;
  vertical-align: baseline;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul > li.opened > svg {
  display: none;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul > li.opened .back {
  display: inline-block;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul > li.opened .back svg {
  margin-left: 0;
  margin-right: 8px;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li {
  padding: 0 4px;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.label {
  margin-bottom: 32px;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.label:not(:has(~ li.label)) {
  margin-bottom: 0;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.template {
  width: 100%;
  flex-direction: column;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.template .kpot-column {
  padding: 32px 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.template .kpot-column:first-child {
  padding-top: 0;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.template .kpot-column:last-child {
  border-bottom: none;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.template svg {
  vertical-align: bottom;
  margin-left: 0;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.template li {
  margin-bottom: 16px;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.template ul,
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.template .kpot-view-all {
  margin-top: 24px;
  margin-bottom: 0;
}
header.mobile-menu .kpot-header-navigation #kpot-menu ul li.template .kpot-view-all svg {
  vertical-align: middle;
}
header.mobile-menu .kpot-header-controls {
  grid-area: controls;
  display: flex;
  margin-left: 0;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
header.mobile-menu .kpot-header-controls > div {
  margin-bottom: 32px;
}
header.mobile-menu .kpot-header-controls > div:last-child {
  display: none;
}

.home #kpot-breadcrumbs {
  display: none;
}

.kpot-tile {
  width: 397px;
  max-width: 410px;
  border-radius: 24px;
  overflow: hidden;
}
.kpot-tile h3 {
  font-size: 32px;
  line-height: 120%;
  font-weight: 600;
  text-align: left;
  color: var(--text);
}
.kpot-tile_top {
  height: 397px;
  border: 2px solid var(--line);
  border-bottom: none;
  position: relative;
  border-top-left-radius: var(--tile-radius);
  border-top-right-radius: var(--tile-radius);
  overflow: hidden;
}
.kpot-tile_bottom {
  background-color: var(--white);
  margin-top: 0;
  padding: 8px;
  border: 2px solid var(--line);
  border-top: none;
  border-bottom-left-radius: var(--tile-radius);
  border-bottom-right-radius: var(--tile-radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kpot-tile_category {
  display: flex;
  gap: 10px;
  flex-shrink: unset;
  height: 52px;
  position: absolute;
  z-index: 1;
  left: 8px;
  top: 8px;
  height: 40px;
}
.kpot-tile_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
  line-height: 150%;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}
.kpot-tile_price {
  margin-left: auto;
}
.kpot-tile_address {
  color: var(--green);
  display: block;
  font-size: 14px;
  font-weight: 300;
  height: 16px;
  line-height: 16px;
  text-align: right;
  width: 100%;
}
.kpot-tile_address img {
  height: 16px;
  vertical-align: top;
}
.kpot-tile_header {
  height: 56px;
}
.kpot-tile_header h3 {
  font-size: 24px;
}
.kpot-tile_link {
  margin-top: 14px;
  line-height: 40px;
  display: block;
  border: 1px solid var(--primary);
  color: var(--white);
  font-size: 18px;
  border-radius: var(--tile-radius);
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  text-align: center;
  transition: background-color 0.5s ease-in-out;
}
:root .kpot-tile__promo .kpot-tile_link span, .kpot-tile_link.active span, .kpot-tile_link:hover span {
  position: relative;
  z-index: 100;
}
:root .kpot-tile__promo .kpot-tile_link span svg, .kpot-tile_link.active span svg, .kpot-tile_link:hover span svg {
  fill: var(--white);
}
:root .kpot-tile__promo .kpot-tile_link span {
  color: var(--white);
}
.kpot-tile_link svg {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  fill: var(--primary);
  margin-right: 10px;
}
.kpot-tile_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.kpot-tile_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kpot-tile__promo {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .kpot-tile__wide {
    display: flex;
    width: 100%;
    max-width: none;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }
  .kpot-tile__wide > div {
    width: 100%;
  }
  .kpot-tile__wide .kpot-tile_top {
    border-top-right-radius: 0;
    overflow: visible;
  }
  .kpot-tile__wide .kpot-tile_bottom {
    padding: 32px;
    border-bottom-left-radius: 0;
    border-left: 0;
    border-top: 2px solid var(--line);
    justify-content: center;
    gap: 16px;
  }
  .kpot-tile__wide .kpot-tile_category {
    position: absolute;
    left: calc(100% + 32px);
    top: 32px;
    width: calc(100% - 64px);
    z-index: 1;
  }
  .kpot-tile__wide .kpot-tile_header {
    height: unset;
    order: 2;
  }
  .kpot-tile__wide .kpot-tile_header h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
  }
  .kpot-tile__wide .kpot-tile_address {
    order: 3;
    text-align: left;
  }
  .kpot-tile__wide .kpot-tile_info {
    order: 1;
    margin-bottom: auto;
    position: relative;
  }
  .kpot-tile__wide .kpot-tile_info .kpot-tile_date {
    position: relative;
    bottom: -60px;
  }
  .kpot-tile__wide .kpot-tile_info .kpot-tile_date p {
    font-size: 20px;
    line-height: 150%;
  }
  .kpot-tile__wide .kpot-tile_info .kpot-tile_price {
    position: relative;
    top: 2px;
  }
  .kpot-tile__wide .kpot-tile_link {
    display: inline-block;
    order: 4;
    width: 269px;
    margin-left: auto;
    margin-top: auto;
  }
}
.kpot-tile__full, .kpot-tile__full-wide {
  display: flex;
  height: 594px;
  position: relative;
  overflow: hidden;
  border-radius: var(--tile-radius);
  max-width: none;
}
.kpot-tile__full h3, .kpot-tile__full-wide h3 {
  color: var(--white);
}
.kpot-tile__full .kpot-tile_category, .kpot-tile__full-wide .kpot-tile_category {
  position: relative;
  z-index: 2;
}
.kpot-tile__full .kpot-tile_description, .kpot-tile__full-wide .kpot-tile_description {
  padding: 24px 16px;
}
.kpot-tile__full .kpot-tile_description, .kpot-tile__full .kpot-tile_apla, .kpot-tile__full-wide .kpot-tile_description, .kpot-tile__full-wide .kpot-tile_apla {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.kpot-tile__full .kpot-tile_apla, .kpot-tile__full-wide .kpot-tile_apla {
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.8%, rgba(0, 37, 172, 0.15) 49.45%, var(--primary) 88.8%);
}
.kpot-tile__full .kpot-tile_apla a, .kpot-tile__full-wide .kpot-tile_apla a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .kpot-tile__full, .kpot-tile__full-wide {
    border-radius: 0;
    height: 126px;
    display: grid;
    grid-template-areas: "img tags" "img title";
    grid-template-columns: 126px 1fr;
    grid-template-rows: 24px 100%;
  }
  .kpot-tile__full .kpot-tile, .kpot-tile__full-wide .kpot-tile {
    flex-shrink: 0;
  }
  .kpot-tile__full .kpot-tile_apla, .kpot-tile__full-wide .kpot-tile_apla {
    background: none;
    z-index: 100;
  }
  .kpot-tile__full .kpot-tile_category, .kpot-tile__full-wide .kpot-tile_category {
    grid-area: tags;
  }
  .kpot-tile__full .kpot-tile_category .kpot-button__small-tag, .kpot-tile__full-wide .kpot-tile_category .kpot-button__small-tag {
    height: 21px;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    padding: 0px 8px;
  }
  .kpot-tile__full .kpot-tile_description, .kpot-tile__full-wide .kpot-tile_description {
    position: relative;
    grid-area: title;
  }
  .kpot-tile__full .kpot-tile_description h3, .kpot-tile__full-wide .kpot-tile_description h3 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 500;
  }
  .kpot-tile__full .kpot-tile_image, .kpot-tile__full-wide .kpot-tile_image {
    position: relative;
    width: 126px;
    min-width: 126px;
    height: 126px;
    border-radius: var(--tile-radius);
    overflow: hidden;
    grid-area: img;
  }
}
.kpot-tile__full-wide {
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}
.kpot-tile__full-wide .kpot-tile_category {
  margin-top: auto;
}
.kpot-tile__full-wide .kpot-tile_description {
  position: relative;
}
.kpot-tile__full-wide .kpot-tile_description h3 {
  font-size: 48px;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .kpot-tile__extended:not(.kpot-tile__promo):not(.kpot-tile_recommended) {
    background-color: var(--white);
    width: 100%;
    min-width: 100%;
    padding: 8px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    height: 126px;
  }
  .kpot-tile__extended:not(.kpot-tile__promo):not(.kpot-tile_recommended) .kpot-tile_top {
    border: none;
    width: 64px;
    flex-shrink: 0;
    overflow: visible;
  }
  .kpot-tile__extended:not(.kpot-tile__promo):not(.kpot-tile_recommended) .kpot-tile_header {
    margin-top: auto;
    height: 49px;
  }
  .kpot-tile__extended:not(.kpot-tile__promo):not(.kpot-tile_recommended) .kpot-tile_header h3 {
    font-size: 16px;
  }
  .kpot-tile__extended:not(.kpot-tile__promo):not(.kpot-tile_recommended) .kpot-tile_category {
    left: 72px;
    top: 4px;
  }
  .kpot-tile__extended:not(.kpot-tile__promo):not(.kpot-tile_recommended) .kpot-tile_category .kpot-button__tag {
    height: 21px;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    padding: 0px 8px;
  }
  .kpot-tile__extended:not(.kpot-tile__promo):not(.kpot-tile_recommended) .kpot-tile_bottom {
    border: none;
    width: 100%;
  }
  .kpot-tile__extended:not(.kpot-tile__promo):not(.kpot-tile_recommended) .kpot-tile_image {
    border-radius: var(--tile-radius);
    overflow: hidden;
    width: 64px;
    height: 107px;
    padding-bottom: 0;
  }
  .kpot-tile__extended:not(.kpot-tile__promo):not(.kpot-tile_recommended) .kpot-tile_link {
    display: none;
  }
}
.kpot-tile__konstelacje {
  width: 300px;
  height: 400px;
}
.kpot-tile__category {
  width: calc(33% - 12px);
  height: auto;
  position: relative;
}
.kpot-tile__category::after {
  display: block;
  content: "";
  padding-top: 100%;
}
.kpot-tile__category .kpot-tile_apla {
  backdrop-filter: unset;
}
.kpot-tile__promo-events {
  height: 100%;
}
.kpot-tile__promo-events .kpot-tile_category {
  position: relative;
  left: unset;
  top: unset;
  height: 24px;
}
.kpot-tile__promo-events .kpot-tile_category .kpot-button__smallest-tag {
  border-color: var(--line);
}
.kpot-tile__promo-events .kpot-tile_description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 3;
  padding: 0 64px;
  height: 100%;
}
.kpot-tile__promo-events .kpot-tile_description h3 {
  font-size: 32px;
  font-weight: 600;
  padding: 0;
  max-width: 60%;
  color: var(--white);
}
.kpot-tile__promo-events .kpot-tile_apla {
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.8%, rgba(0, 37, 172, 0.15) 49.45%, var(--primary) 88.8%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.kpot-tile__promo-events .kpot-tile_info {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}
.kpot-tile__promo-events .kpot-tile_info span {
  margin-right: 16px;
}
.kpot-tile__promo-events .kpot-tile_info span::first-letter {
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .kpot-tile__promo-events .kpot-tile_apla {
    isolation: isolate;
    background: linear-gradient(264.57deg, rgba(0, 37, 172, 0) 1.64%, var(--primary) 78.53%);
  }
  .kpot-tile__promo-events .kpot-tile_description {
    padding: 66px 16px;
  }
  .kpot-tile__promo-events .kpot-tile_description h3 {
    max-width: 100%;
  }
}
.kpot-tile__map {
  border-radius: 24px;
  padding: 8px;
  background-color: var(--white);
  cursor: pointer;
}
.kpot-tile__map .kpot-tile_top {
  height: auto;
  border: none;
}
.kpot-tile__map .kpot-tile_image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}
.kpot-tile__map .kpot-tile_image img {
  position: absolute;
  left: 0;
  top: 0;
}
.kpot-tile__map .kpot-tile_header h3 {
  font-size: 16px;
  font-weight: 400;
}
.kpot-tile__map .kpot-tile_bottom {
  margin-top: 8px;
  border: none;
  padding: 0;
}
.kpot-tile__map .kpot-tile_link {
  display: none;
}

.kpot-button__tag, .kpot-button__small-tag, .kpot-button__smallest-tag {
  display: inline-flex;
  align-items: center;
  font-weight: 300;
  line-height: 150%;
  cursor: pointer;
  background-color: var(--background);
  white-space: nowrap;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: 64px;
  text-decoration: none;
}
.kpot-button__tag svg path, .kpot-button__small-tag svg path, .kpot-button__smallest-tag svg path {
  stroke: var(--text);
}
.kpot-button__tag:hover, .kpot-button__tag.active, .kpot-button__small-tag:hover, .kpot-button__small-tag.active, .kpot-button__smallest-tag:hover, .kpot-button__smallest-tag.active {
  color: var(--white);
  background-color: var(--text);
}
.kpot-button__tag:hover svg path, .kpot-button__tag.active svg path, .kpot-button__small-tag:hover svg path, .kpot-button__small-tag.active svg path, .kpot-button__smallest-tag:hover svg path, .kpot-button__smallest-tag.active svg path {
  stroke: var(--white);
}
.kpot-button__tag.active:hover, .kpot-button__small-tag.active:hover, .kpot-button__smallest-tag.active:hover {
  background-color: var(--grey);
}
.kpot-button__tag {
  padding: 8px 16px;
  gap: 8px;
  font-size: 18px;
}
.kpot-button__small-tag {
  font-size: 14px;
  padding: 6px 16px;
  gap: 6px;
}
.kpot-button__smallest-tag {
  font-size: 14px;
  padding: 3px 8px;
  gap: 4px;
}
.kpot-button__smallest-tag svg {
  width: 16px;
}
.kpot-button_purple {
  display: flex;
  border: none;
  height: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 16px;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  border-radius: 32px;
  flex-grow: 0;
  white-space: nowrap;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  cursor: pointer;
}
.kpot-button__toggle {
  display: inline-flex;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--primary);
  background: none;
  width: 100%;
  height: 78px;
  text-align: center;
  border: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.kpot-button__toggle::after {
  display: inline-block;
  width: 14px;
  height: 8px;
  content: "";
  background: url(/wp-content/uploads/2025/09/chevron.svg) center no-repeat;
  margin-left: 10px;
}
:root .expanded + .kpot-button__toggle::after {
  transform: rotate(180deg);
}
.kpot-button_search {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
  background-color: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.kpot-button_search svg path {
  stroke: var(--white);
}
.kpot-button_disabled {
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 24px;
}
.kpot-button_disabled .text span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background-color: var(--disabled);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.kpot-button_disabled .text span svg {
  width: 15px;
  height: 18px;
}
.kpot-button__mobile-handle {
  height: 22px;
  width: 100%;
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.kpot-button__mobile-handle::after {
  width: 64px;
  height: 6px;
  background-color: var(--line);
  border-radius: 6px;
  content: "";
  display: inline-block;
}
@media (max-width: 768px) {
  .kpot-button__mobile-handle {
    display: flex;
  }
}

.kpot-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  background: none;
  border: 1px solid var(--text);
  border-radius: 12px;
  vertical-align: top;
  margin-right: 10px;
}
.kpot-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.kpot-switch .button {
  display: block;
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2px;
  top: 1px;
  background-color: black;
  transition: 0.4s;
  border-radius: 50%;
  cursor: pointer;
}
.kpot-switch input:checked + .button {
  left: 25px;
}

#dark-mode {
  cursor: pointer;
}

[class*=kpot-input] {
  width: 100%;
  padding: 10px 12px;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid var(--arrows);
  border-radius: 16px;
  background-color: var(--white);
}

.kpot-input_search {
  padding-left: 38px;
  background: url("/wp-content/uploads/2025/10/search-input.svg") no-repeat 15px center/15px;
}

.kpot-article {
  line-height: 150%;
}
.kpot-article .kpot-container {
  max-width: 1240px;
  padding: 20px;
}
@media screen and (max-width: 1280px) {
  .kpot-article .kpot-container {
    width: calc(100% - 72px);
  }
}
@media screen and (max-width: 1024px) {
  .kpot-article .kpot-container {
    width: calc(100% - 40px);
  }
}
@media (max-width: 768px) {
  .kpot-article .kpot-container {
    padding: 16px;
    width: calc(100% - 32px);
  }
}
.kpot-article .kpot-container-grid {
  display: grid;
  grid-template-areas: "article aside";
  grid-template-columns: 1fr 410px;
  grid-column-gap: 48px;
}
.kpot-article .kpot-container-grid article {
  grid-area: article;
}
.kpot-article .kpot-container-grid aside .kpot-article__block {
  padding: 16px;
  box-sizing: border-box;
}
.kpot-article .kpot-container-grid aside .kpot-article__block.sticky {
  width: 320px;
  transform: translateX(0);
  position: fixed;
  top: 20px;
}
.kpot-article .kpot-container-grid aside > h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.kpot-article .kpot-container-grid aside ul,
.kpot-article .kpot-container-grid aside li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.kpot-article .kpot-container-grid aside ul {
  margin-top: 26px;
}
.kpot-article .kpot-container-grid aside li:not(:last-child) {
  margin-bottom: 24px;
}
.kpot-article .kpot-container-grid aside a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: var(--primary);
}
@media screen and (max-width: 1280px) {
  .kpot-article .kpot-container-grid {
    grid-template-columns: 1fr 320px;
  }
}
@media screen and (max-width: 1024px) {
  .kpot-article .kpot-container-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "aside" "article";
  }
}
.kpot-article .mixed-gallery {
  overflow: hidden;
  border-radius: 32px;
  min-width: 0;
  flex: 1;
  width: 320px;
  position: relative;
}
.kpot-article .mixed-gallery .swiper-pagination {
  display: flex !important;
  justify-items: center;
  position: relative;
  justify-content: center;
  align-items: center;
  right: unset !important;
}
.kpot-article .mixed-gallery .kpot-article_main-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .kpot-article .mixed-gallery .kpot-article_main-image {
    padding-bottom: 100%;
  }
}
@media (max-width: 768px) {
  .kpot-article .mixed-gallery {
    width: 100%;
  }
}
.kpot-article-column-row {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 24px;
  width: 50%;
}
.kpot-article__header {
  width: 100%;
  display: flex;
  gap: 24px;
  height: 410px;
}
.kpot-article__header p {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
}
.kpot-article__header > div > a {
  text-decoration: none;
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
}
.kpot-article__header > div > a svg {
  width: 14px;
  height: 14px;
}
.kpot-article__header > div > a svg path {
  stroke: var(--arrows);
}
.kpot-article__header h1 {
  font-size: 48px;
  line-height: 120%;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .kpot-article__header {
    flex-direction: column;
  }
  .kpot-article__header > div {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .kpot-article__header {
    height: auto;
  }
  .kpot-article__header h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    flex-grow: 0;
  }
}
.kpot-article__ticket-container {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.kpot-article__ticket-container h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
}
.kpot-article__tiles-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.kpot-article__tiles-group h4 {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--arrows);
}
.kpot-article__tiles-group h4::before, .kpot-article__tiles-group h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: currentColor;
}
.kpot-article__tiles-group h4::before {
  margin-right: 8px;
}
.kpot-article__tiles-group h4::after {
  margin-left: 8px;
}
.kpot-article__ticket {
  display: inherit;
  flex-direction: row;
  align-items: center;
  gap: inherit;
  padding: 16px;
  background-color: var(--background);
  border-radius: var(--tile-radius);
  justify-content: space-between;
}
.kpot-article__ticket_image {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  flex: none;
  flex-grow: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.kpot-article__ticket_description {
  margin-right: auto;
  font-style: normal;
}
.kpot-article__ticket_description h4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
}
.kpot-article__ticket_description p {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
}
.kpot-article__ticket_description p strong {
  font-weight: 500;
  font-size: 18px;
}
.kpot-article__ticket_popup {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(231, 231, 231, 0.75);
  backdrop-filter: blur(8px);
  flex-grow: 0;
  z-index: 90000;
  justify-content: center;
  align-items: center;
}
.kpot-article__ticket_popup .error {
  color: var(--purple);
  display: none;
}
.kpot-article__ticket_popup.error-no-selected .error {
  display: block;
}
.kpot-article__ticket_popup_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 32px;
  position: absolute;
  width: 754px;
  background: #fbfbfb;
  box-shadow: 0px 2px 32px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}
.kpot-article__ticket_popup_content h4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
}
.kpot-article__ticket_popup_content .js-popup-close {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
.kpot-article__ticket_popup_content ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
  list-style-type: none;
  padding: 0;
}
.kpot-article__ticket_popup_content .kpot-ticket_provider {
  background: var(--white);
  border: 1px solid var(--line-grey);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 144px;
  height: 72px;
  position: relative;
  cursor: pointer;
}
.kpot-article__ticket_popup_content .kpot-ticket_provider_selector {
  top: 5px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  flex-grow: 0;
  position: absolute;
  border: 1px solid var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
}
.kpot-article__ticket_popup_content .kpot-ticket_provider:hover .kpot-ticket_provider_selector::after, .kpot-article__ticket_popup_content .kpot-ticket_provider.selected .kpot-ticket_provider_selector::after {
  content: "";
  display: block;
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: inherit;
  background-color: var(--text);
}
.kpot-article__ticket_popup_content .js-ticket-provider {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 16px;
  width: 260px;
  height: 40px;
  color: var(--white);
  background: var(--primary);
  border-radius: 32px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}
.kpot-article__ticket_popup_content .js-ticket-provider.disabled {
  background-color: var(--grey);
}
@media (max-width: 768px) {
  .kpot-article__ticket {
    flex-wrap: wrap;
    gap: 16px;
  }
  .kpot-article__ticket_description {
    width: min-content;
  }
  .kpot-article__ticket_description h4 {
    width: 170px;
    font-size: 24px;
    vertical-align: top;
  }
  .kpot-article__ticket_description h4 span {
    display: inline-block;
    width: 140px;
    white-space: nowrap;
    overflow: hidden;
  }
  .kpot-article__ticket_description h4::after {
    content: "...";
    display: inline-block;
    vertical-align: top;
  }
  .kpot-article__ticket_cta {
    width: 100%;
  }
  .kpot-article__ticket_cta button {
    width: 100%;
    display: block;
  }
}
.kpot-article__map {
  display: flex;
  justify-content: end;
  margin: 9px 0 33px;
}
.kpot-article__map a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  line-height: 24px;
  color: var(--primary);
  display: inline-flex;
  gap: 8px;
}
.kpot-article__block {
  background-color: var(--white);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 64px;
}
.kpot-article__block h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 24px 0;
  padding: 0;
}
.kpot-article__block .kpot-header > * {
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.kpot-article__block .kpot-subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  margin-bottom: 24px;
}
.kpot-article__block .kpot-description {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 24px;
}
.kpot-article__block .kpot-description p {
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
}
.kpot-article__block .kpot-description + figure {
  margin-bottom: 24px;
}
.kpot-article__block .kpot-description + figure img {
  width: 100%;
}
.kpot-article__block .kpot-flex {
  display: flex;
  gap: 32px;
}
.kpot-article__block .kpot-flex > div {
  width: 50%;
}
.kpot-article__block .kpot-map_small {
  padding: 16px 0;
}
.kpot-article__block .kpot-map_small #map-small {
  width: 100%;
  height: 238px;
  overflow: hidden;
  border-radius: var(--tile-radius);
}
.kpot-article__block .kpot-url, .kpot-article__block .kpot-address, .kpot-article__block .kpot-date, .kpot-article__block .kpot-price, .kpot-article__block .kpot-additional {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.kpot-article__block .kpot-url h3, .kpot-article__block .kpot-address h3, .kpot-article__block .kpot-date h3, .kpot-article__block .kpot-price h3, .kpot-article__block .kpot-additional h3 {
  font-size: 16px;
  font-weight: 300;
  vertical-align: middle;
  color: var(--text);
}
.kpot-article__block .kpot-url h3 a, .kpot-article__block .kpot-address h3 a, .kpot-article__block .kpot-date h3 a, .kpot-article__block .kpot-price h3 a, .kpot-article__block .kpot-additional h3 a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}
.kpot-article__block .kpot-url h3 a img,
.kpot-article__block .kpot-url h3 a svg, .kpot-article__block .kpot-address h3 a img,
.kpot-article__block .kpot-address h3 a svg, .kpot-article__block .kpot-date h3 a img,
.kpot-article__block .kpot-date h3 a svg, .kpot-article__block .kpot-price h3 a img,
.kpot-article__block .kpot-price h3 a svg, .kpot-article__block .kpot-additional h3 a img,
.kpot-article__block .kpot-additional h3 a svg {
  vertical-align: top;
  margin-left: 12px;
  margin-right: 8px;
}
.kpot-article__block .kpot-url p, .kpot-article__block .kpot-address p, .kpot-article__block .kpot-date p, .kpot-article__block .kpot-price p, .kpot-article__block .kpot-additional p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
}
.kpot-article__block .kpot-url p img,
.kpot-article__block .kpot-url p svg, .kpot-article__block .kpot-address p img,
.kpot-article__block .kpot-address p svg, .kpot-article__block .kpot-date p img,
.kpot-article__block .kpot-date p svg, .kpot-article__block .kpot-price p img,
.kpot-article__block .kpot-price p svg, .kpot-article__block .kpot-additional p img,
.kpot-article__block .kpot-additional p svg {
  vertical-align: top;
  margin-right: 4px;
}
.kpot-article__block .kpot-url p span, .kpot-article__block .kpot-address p span, .kpot-article__block .kpot-date p span, .kpot-article__block .kpot-price p span, .kpot-article__block .kpot-additional p span {
  font-weight: 300;
}
.kpot-article__block .kpot-address p {
  color: var(--green);
}
.kpot-article__block .kpot-address p span {
  font-weight: 500;
}
.kpot-article__block .kpot-url p {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
.kpot-article__block .kpot-url p a {
  color: var(--primary);
}
.kpot-article__block .kpot-share {
  right: 24px;
  top: 24px;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .kpot-article__block {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .kpot-article__block .kpot-subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
  }
}
.kpot-article__attraction-info {
  position: relative;
}
.kpot-article__attraction-info h3 {
  border-bottom: none !important;
}
.kpot-article-pagination {
  width: 100%;
  display: flex;
  font-size: 18px;
  justify-content: center;
  gap: 20px;
}
.kpot-article-pagination .page-numbers {
  color: var(--primary);
}
.kpot-article-pagination .page-numbers.current {
  text-decoration: underline;
}
.kpot-article-pagination .next {
  transform: rotate(-90deg);
}
.kpot-article-pagination .prev {
  transform: rotate(90deg);
}

#kpot-hero,
#kpot-breadcrumbs,
#kpot-alert {
  display: none;
}

#map {
  height: 80vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.kpot-map .kpot-container {
  display: grid;
  position: relative;
  grid-template-areas: "search map" "filters map";
  grid-template-columns: 460px 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
}
@media (max-width: 1280px) {
  .kpot-map .kpot-container {
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% - 40px);
  }
}
@media (max-width: 768px) {
  .kpot-map .kpot-container {
    height: calc(100vh - 132px);
    grid-template-columns: 100%;
    grid-template-areas: "search" "map" "drawer";
    grid-template-rows: auto 1fr 0px;
    gap: 0;
    padding: 0;
    width: 100%;
    margin-top: -16px;
  }
}
.kpot-map_line {
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--line);
}
.kpot-map__details, .kpot-map__back {
  display: none;
}
.kpot-map__back {
  grid-area: search;
}
.kpot-map__back a {
  text-decoration: inherit;
  color: inherit;
}
.kpot-map__details {
  grid-area: filters;
}
.kpot-map__search {
  grid-area: search;
  display: flex;
  padding: 16px 12px;
  gap: 8px;
  background-color: var(--white);
  border-radius: var(--tile-radius);
}
@media (max-width: 768px) {
  .kpot-map__search {
    border-radius: 0;
  }
  .kpot-map__search input {
    height: 18px;
  }
}
.kpot-map__map-container {
  grid-area: map;
  flex-grow: 1;
  min-width: 0;
}
.kpot-map__filters {
  transition: all 0.5s;
  grid-area: filters;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kpot-map__filters > div:not(:last-child) {
  background-color: var(--white);
  border-radius: var(--tile-radius);
}
@media (max-width: 768px) {
  .kpot-map__filters {
    background-color: var(--background);
    border-radius: var(--tile-radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    grid-area: drawer;
    overflow-y: hidden;
    height: 40px;
    position: fixed;
    bottom: -5px;
    left: 0;
    z-index: 1000;
  }
  .kpot-map__filters .kpot-map_group {
    background-color: var(--background);
  }
  .kpot-map__filters.opened {
    height: 60%;
    background-color: var(--background);
    gap: 0;
    overflow-y: scroll;
    touch-action: pan-y;
    overscroll-behavior-y: contain;
  }
}
.kpot-map_group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 8px;
}
.kpot-map_type {
  display: flex;
  gap: 16px;
}
.kpot-map_type button {
  width: 100%;
  justify-content: center;
}
.kpot-map_category {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.kpot-map_category .kpot-button_disabled {
  font-size: 14px;
  font-weight: 300;
}
.kpot-map__tiles {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .kpot-map__tiles {
    max-height: auto;
    overflow: initial;
  }
}
.kpot-map__tiles > p {
  text-align: center;
  width: 100%;
}
.kpot-map__tiles > div {
  width: calc(50% - 24px);
  flex-grow: 0;
  flex-shrink: 0;
}
.kpot-map__tiles .kpot-tile_bottom {
  position: relative;
}
.kpot-map__tiles .kpot-tile_bottom .kpot-tile_category {
  left: 0;
  top: 0;
}
.kpot-map__tiles .kpot-tile_bottom .kpot-tile_category .kpot-button__small-tag {
  height: 12px;
  padding: 2px;
}
:root .map-details-opened .kpot-map__search, :root .map-details-opened .kpot-map__filters {
  display: none;
}
:root .map-details-opened .kpot-map__back {
  display: block;
  cursor: pointer;
}
:root .map-details-opened .kpot-map__details {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media (max-width: 768px) {
  :root .map-details-opened .kpot-map__search {
    display: flex;
  }
  :root .map-details-opened .kpot-map__back {
    display: none;
  }
  :root .map-details-opened .kpot-map__details {
    transition: all 0.5s;
    padding: 0;
  }
  :root .map-details-opened .kpot-map__details .kpot-article__attraction-info {
    display: flex;
    flex-direction: column;
    padding: 16px 8px;
    gap: 24px;
  }
  :root .map-details-opened .kpot-map__details .kpot-article__attraction-info .kpot-share {
    right: 10px;
    top: 56px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  :root .map-details-opened .kpot-map__details {
    width: 100%;
    background-color: var(--background);
    border-radius: var(--tile-radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    grid-area: drawer;
    overflow-y: hidden;
    height: 50px;
    position: fixed;
    bottom: -5px;
    left: 0;
    z-index: 1000;
    margin-bottom: 0;
  }
  :root .map-details-opened .kpot-map__details.opened {
    overflow-y: scroll;
    touch-action: pan-y;
    overscroll-behavior-y: contain;
    height: 60%;
    background-color: var(--background);
    gap: 16px;
    padding: 16px;
    width: calc(100% - 32px);
  }
}

.kpot-cluster-icon {
  position: relative;
  z-index: 1;
}
.kpot-cluster-icon .cluster-count {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 9px;
  color: var(--text);
  background-color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 2px;
  line-height: 1;
}

.kpot-dark {
  background-image: none;
}
.kpot-dark header .kpot-container {
  background-color: var(--white) !important;
}
.kpot-dark header .kpot-header-logos > .elementor-widget {
  display: none;
}
.kpot-dark header .kpot-header-logos .elementor-widget.dark-mode {
  display: flex;
}
.kpot-dark h1,
.kpot-dark h2,
.kpot-dark h3,
.kpot-dark h4,
.kpot-dark h5,
.kpot-dark p,
.kpot-dark li,
.kpot-dark a,
.kpot-dark .kpot-hero__title, :root .kpot-dark .kpot-tile__promo .kpot-tile_link span {
  color: var(--black) !important;
}
.kpot-dark #kpot-alert div {
  background-color: var(--arrows);
}
.kpot-dark .elementor-button {
  background-color: var(--black) !important;
  color: var(--white) !important;
}
.kpot-dark .elementor-heading-title {
  color: var(--black) !important;
}
.kpot-dark .lang-switcher .elementor-button {
  background-color: var(--white) !important;
  color: var(--black) !important;
}
.kpot-dark .lang-switcher .elementor-button svg path {
  fill: var(--black) !important;
}
.kpot-dark .kpot-tile_link {
  background-color: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--black) !important;
}
.kpot-dark svg path {
  stroke: var(--black) !important;
  fill: var(--white) !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../../node_modules/leaflet/dist/leaflet.css%22,%22../../../node_modules/leaflet.markercluster/dist/MarkerCluster.css%22,%22../../../src/scss/common/_root.scss%22,%22../../../src/scss/common/_theme.scss%22,%22../../../src/scss/common/_menu.scss%22,%22../../../src/scss/common/_breadcrubs.scss%22,%22../../../src/scss/common/_tiles.scss%22,%22../../../src/scss/common/_buttons.scss%22,%22../../../src/scss/common/_inputs.scss%22,%22../../../src/scss/pages/_article.scss%22,%22../../../src/scss/pages/_map.scss%22,%22../../../src/scss/common/_dark-mode.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAUC;EACA;EACA;;;AAED;EACC;;;AAED;AAAA;AAAA;EAGC;EACG;EACK;EACN;;;AAEH;AACA;EACC;;;AAED;AACA;EACC;;;AAED;AACA;EACC;EACA;EACA;;;AAED;AAAA;EAEC;;;AAED;AACA;AACA;EACC;EACA;;;AAED;AAAA;AAAA;AAAA;AAAA;EAKC;EACA;EACA;EACA;;;AAGD;AACC;EACA;;;AAGD;EACC;EACA;;;AAED;EACC;AACA;EACA;EACA;;;AAED;EACC;EACA;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;EACA;;;AAED;EACC;;;AAED;EACC;EACA;EACA;EACK;EACL;;;AAED;AACA;EACC;;;AAGD;EAAwB;;;AAExB;EAAwB;;;AACxB;EAAwB;;;AACxB;EAAwB;;;AACxB;EAAwB;;;AACxB;EAA0B;;;AAC1B;EAAwB;;;AAExB;EAA2B;;;AAC3B;EAA2B;;;AAE3B;EACC;EACA;;;AAED;EACC;EACA;EACA;;;AAID;AAEA;EACC;EACA;EACA;EACA;;;AAED;AAAA;EAEC;EACA;EACA;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;EACA;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;;;AAID;AAEA;EACC;EACA;EACG;EACK;;;AAET;EACC;;;AAED;EACC;EACI;EACI;;;AAET;EACC;;;AAGD;EACC;EACG;EACK;;;AAET;AAAA;EAEC;EACG;EACK;;;AAGT;EACC;;;AAID;AAEA;EACC;;;AAED;EACC;EACA;EACA;;;AAED;AAAA;EAEC;;;AAED;AAAA;EAEC;;;AAED;AAAA;AAAA;EAGC;EACA;EACA;EACA;;;AAGD;AACA;AAAA;AAAA;AAAA;AAAA;EAKC;;;AAGD;AAAA;AAAA;AAAA;EAIC;EACA;;;AAGD;AAEA;EACC;EACA;;;AAED;EACC;;;AAED;EACC;EACA;;;AAID;AACA;EACC;EACA;EACA;EACA;;;AAID;AAEA;EACC;EACA;;;AAED;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAED;AAAA;EAEC;EACA;EACA;;;AAED;AAAA;EAEC;;;AAED;EACC;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;;;AAGD;EACC;EACA;EACA;;;AAED;EACC;EACA;;;AAED;EACC;EACA;;;AAGD;AAEA;AAAA;EAEC;EACA;;;AAGD;EACC;;;AAID;AAEA;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;EACA;;;AAED;EACC;EACA;;;AAED;AAAA;EAEC;;;AAED;EACC;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;;;AAGD;AACA;EACC;;;AAID;AAEA;EACC;EACA;EACA;;;AAED;AAAA;EAEC;EACA;EACA;;;AAED;EACC;;;AAED;AAAA;EAEC;;;AAED;EACC;EACA;EACA;EACA;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;EACA;EACA;EACA;EACA;EACA;EACK;EACL;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;;;AAGD;AAAA;AAAA;EAGC;;;AAED;AAAA;EAEC;EACA;;;AAID;AAEA;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;EACA;EACA;;;AAED;EACC;EACA;;;AAED;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAED;EACC;EACA;EACA;EAEA;EACA;EAEA;EACG;EACC;EACI;;;AAET;AAAA;EAEC;EACA;EACA;;;AAED;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAED;AAAA;EAEC;;;AAED;EACC;;;AAGD;EACC;;;AAED;EACC;EACA;EAEA;EACA;;;AAGD;AAAA;AAAA;AAAA;EAIC;;;AAID;AAEA;EACC;EACA;;;AAID;AACA;AACA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAED;EACC;EACA;;;AAED;AAAA;AAAA;AAAA;EAIC;EACA;EACA;EACA;EACA;;;AAGD;AAEA;EACC;;;AAED;EACC;;;AAED;AAAA;EAEC;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;EACA;;;AAED;EACC;;;AAED;EACC;;;AAED;AAAA;EAEC;EACA;;;AAED;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;;;AAGD;AAEA;AACC;EACA;IACC;IACA;;;AClpBF;EACC;EACA;EACA;EACA;;;AAGD;AACC;EACA;EACA;EACA;EACA;;;ACZD;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AC5BF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AACA;EACE;;;AAGF;AAAA;EAEE;EACA;;;AAIA;EACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;;AACA;EAJF;IAKI;;;;AAIJ;EACE;;;AAIA;EACE;;;AAUJ;EACE;EACA;EACA;EAEA;;AACA;EACE;IACE;;;AAGJ;EACE;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;;;ACvGF;AAAA;EACE;EACA;;AAEA;AAAA;EACE;;AACA;AAAA;EACE;EACA;;AAGJ;AAAA;EACE;EACA;EACA;;AAEF;AAAA;EACE;;AAEA;AAAA;EACE;EACA;;AACA;AAAA;EACE;;AAIN;AAAA;EACE;;AACA;AAAA;EACE;EACA;EACA;EACA;;;AAMJ;EACE;;AAEF;EACE;;;AAIJ;EACE;;AAGE;EACE;EACA;EACA;EACA;;AACA;EAEE;;AAEF;EACE;;AAEA;EACE;;AAGF;EAEE;;AAKR;EA3BF;IA4BI;;;;AAKF;EACE;;;AAIJ;AAAA;EAGE;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACE;;AACA;AAAA;EACE;;AAEA;AAAA;EACE;;AAIN;AAAA;EACE;;AAEF;AAAA;EACE;;AAGF;EA1BF;AAAA;IA2BI;;;AAEF;EA7BF;AAAA;IA8BI;;;;AAIJ;EAEE;EACA;;AACA;EACE;;AAEF;EACE;EACA;;AAEF;EACE;;AAEA;EACE;;AAGJ;EACE;;AAGF;EAtBF;IAuBI;IACA;;EACA;IACE;;;AAGJ;EA7BF;IA8BI;;EACA;IACE;;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAEA;AAAA;EAEE;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAEA;EACE;;AAGE;EACE;EACA;EACA;;AAIA;EACE;;AAGF;EACE;;AACA;EACE;EACA;;AAMR;EACE;;AACA;EACE;;AAEA;EACE;;AAGJ;EACE;EACA;;AACA;EACE;EACA;EAIA;;AAHA;EACE;;AAGF;EACE;;AAGJ;EACE;EACA;;AAGF;EACE;;AAGF;AAAA;EAEE;EACA;;AAEF;EACE;;AAQZ;EACE;EACA;EACA;EACA;EAEA;EACA;;AAEA;EACE;;AAEA;EACE;;;ACnSR;EACE;;;ACCF;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;AAGJ;EACE;;AACA;EACE;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAGE;EACA;;AACA;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;;AAMJ;EACE;EACA;;AAKF;EACE;IACE;IACA;IACA;IACA;IACA;IACA;;EACA;IACE;;EAGA;IACE;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;;EAEF;IACE;IAMA;;EALA;IACE;IACA;IACA;;EAIJ;IACE;IACA;;EAEF;IACE;IACA;IACA;;EACA;IACE;IACA;;EAGF;IACE;IACA;;EAEF;IACE;IACA;;EAGJ;IACE;IACA;IACA;IACA;IACA;;;AAOR;EAEE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIA;EACE;EACA;;AAEF;EACE;;AAEF;EAEE;EACA;EACA;EACA;EACA;;AAKF;EACE;EACA;;AAOA;EACE;EACA;EACA;EACA;EACA;EACA;;AAIN;EAnDF;IAoDI;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;EACA;IACE;IACA;;EAEF;IACE;;EACA;IACE;IACA;IACA;IACA;IACA;;EAGJ;IACE;IACA;;EACA;IACE;IACA;IACA;;EAGJ;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;;AAMR;EACE;EACA;EACA;EACA;;AAEE;EACE;;AAEF;EACE;;AAEA;EACE;EACA;;AAON;EADF;IAEI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEE;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;;EACA;IACE;;EAGJ;IACE;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGJ;IACE;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;;EAEF;IACE;;;AAMR;EACE;EACA;;AAGF;EACE;EACA;EACA;;AACA;EACE;EACA;EACA;;AAIA;EACE;;AAON;EACE;;AAGE;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EAMA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AACA;EACE;;AAEA;EACE;;AAKN;EACE;IACE;IAEA;;EAMF;IACE;;EACA;IACE;;;AASV;EACE;EACA;EACA;EACA;;AAGE;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAKF;EACE;EACA;;AAIJ;EACE;EACA;EACA;;AAEF;EACE;;;AChhBN;EAIE;EACA;EAGA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGE;EACE;;AAGJ;EAEE;EACA;;AAGE;EACE;;AAIN;EACE;;AAGJ;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;;AAGE;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEE;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;AAMR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEF;EAhBF;IAiBI;;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;;AAIJ;EACE;;;ACxNF;EACE;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;;;AAIA;EACE;EACA;;;AClBJ;EACE;;AAEA;EACE;EACA;;AACA;EAHF;IAII;;;AAEF;EANF;IAOI;;;AAGF;EAVF;IAWI;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EACE;;AAGA;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGJ;EACE;EACA;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;EACA;EACA;EACA;;AAIJ;EAhDF;IAiDI;;;AAEF;EAnDF;IAoDI;IACA;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EALF;IAMI;;;AAIJ;EA1BF;IA2BI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;;AACA;EACE;;AAKN;EACE;EACA;EACA;;AAEF;EA/BF;IAgCI;;EACA;IACE;;;AAIJ;EAtCF;IAuCI;;EAEA;IACE;IACA;IACA;IACA;;;AAKN;EACE;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;;AACA;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAMR;EAlKF;IAmKI;IACA;;EAEA;IACE;;EACA;IACE;IACA;IACA;;EACA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;;EAKN;IACE;;EACA;IACE;IACA;;;AASR;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAKE;EACE;EACA;EACA;EACA;EACA;;AAGJ;EACE;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;;AAGF;EACE;;AACA;EACE;;AAIN;EACE;EACA;;AACA;EACE;;AAIJ;EACE;;AACA;EACE;EACA;EACA;EACA;;AAKJ;EAKE;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;EAEE;EACA;EACA;;AAIN;EACE;EACA;EACA;;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;EAEE;EACA;;AAEF;EACE;;AAMJ;EACE;;AACA;EACE;;AAKJ;EACE;EACA;EACA;;AACA;EACE;;AAIN;EACE;EACA;EACA;;AAGJ;EAnIF;IAoII;;;AAEF;EAEI;IACE;IACA;IACA;;;AAMR;EACE;;AACA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;;AACA;EACE;;AAGJ;EACE;;AAEF;EACE;;;AC1kBN;AAAA;AAAA;EAGE;;;AAGF;EACE;EACA;EACA;EACA;;;AAWA;EACE;EACA;EACA,qBACE;EAEF;EACA;EACA;;AAEA;EAVF;IAWI;IACA;IACA;;;AAGF;EAhBF;IAiBI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AAMJ;EACE;EACA;EACA;EACA;;AAEF;EAEE;;AAEF;EACE;;AACA;EACE;EACA;;AAIJ;EACE;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA,eAnFK;;AAqFL;EARF;IASI;;EACA;IACE;;;AAON;EACE;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA,eAhHG;;AAmHL;EAZF;IAaI;IACA,eArHG;IAsHH;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;;AAKN;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATF;IAUI;IACA;;;AAGF;EACE;EACA;;AAEF;EACE;EACA;EACA;;AAGF;EACE;;AACA;EACE;EACA;;AAEA;EACE;EACA;;AASN;EAEE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;EACA;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;;;AAIJ;EAfF;IAgBI;IACA;IACA,eA/PD;IAgQC;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;;AASV;EACE;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AC5SN;EACE;;AAGE;EACE;;AAIA;EACE;;AAEF;EACE;;AAKN;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAUE;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AACA;EACE;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA%22,%22file%22:%22map.css%22%7D */
