@charset "UTF-8";
@font-face {
  font-family: gnoulane;
  src: url(/webfonts/gnuolane-free.gnuolanerg-regular-webfont.eot);
  src: url(/webfonts/gnuolane-free.gnuolanerg-regular-webfont.eot?#iefix) format("embedded-opentype"), url(/webfonts/gnuolane-free.gnuolanerg-regular-webfont.woff) format("woff"), url(/webfonts/gnuolane-free.gnuolanerg-regular-webfont.ttf) format("truetype"), url(/webfonts/gnuolane-free.gnuolanerg-regular-webfont.svg#gnuolane_rgregular) format("svg");
  font-weight: 400;
  font-style: normal;
}

.download-map-template {
  width: 1920px;
  position: relative;
}

.download-map-btn {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 30px !important;
}

.download-map-btn svg {
  display: block;
  width: 20px;
  height: auto;
  color: #fff;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .download-map-btn:hover svg {
    color: #fff;
  }
}

.download-map-waiting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.94);
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.event-more-btn {
  padding: 4px 13px 4px 7px;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  z-index: 5;
  -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  background-color: #00b272;
  -webkit-box-shadow: 0px 1px 0px #007a4e;
          box-shadow: 0px 1px 0px #007a4e;
  color: #fff;
  text-shadow: 1px 1px 5px #007a4e;
}

@media (hover: hover) and (pointer: fine) {
  .event-more-btn:hover {
    color: #fff;
    background-color: #d7182c;
  }
}

@media (hover: none) {
  .event-more-btn:hover {
    color: #000;
  }
}

.event-more-btn.hover {
  color: #fff;
}

a.dropdown-item {
  padding: .25rem 1rem !important;
  display: block !important;
}

a.dropdown-item:hover {
  background-color: #ff5b01;
  color: #fff;
}

@media (max-width: 575px) {
  .event-more-btn {
    padding: 1.3913vw 2.08696vw 1.3913vw 1.21739vw;
  }
}

.item:not([data-role="decor"]) {
  -webkit-transition: -webkit-filter 0.25s ease-in-out, -webkit-transform 0.3s;
  transition: -webkit-filter 0.25s ease-in-out, -webkit-transform 0.3s;
  transition: filter 0.25s ease-in-out, transform 0.3s;
  transition: filter 0.25s ease-in-out, transform 0.3s, -webkit-filter 0.25s ease-in-out, -webkit-transform 0.3s;
  cursor: pointer !important;
}

.item:not([data-role="decor"]) image {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.item:not([data-role="decor"]):hover {
  -webkit-filter: grayscale(70%) drop-shadow(0 0 7px #00FFFF) drop-shadow(0 0 14px #00FFFF);
          filter: grayscale(70%) drop-shadow(0 0 7px #00FFFF) drop-shadow(0 0 14px #00FFFF);
}

.item:not([data-role="decor"]):hover image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.item.active, .item.filter {
  -webkit-filter: grayscale(70%) drop-shadow(0 0 7px #FFFF00) drop-shadow(0 0 14px #FFFF00);
          filter: grayscale(70%) drop-shadow(0 0 7px #FFFF00) drop-shadow(0 0 14px #FFFF00);
}

.tooltip {
  z-index: 100;
}

.touch-action-off {
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.transition-opacity-on {
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.opacity-on {
  opacity: 0;
}

.opacity-off {
  opacity: 1 !important;
}

.map-container {
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  height: 100vh;
}

.map-container .map-move-info {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.map-container .map-move-info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 50%;
}

.map-container .map-move-info > div img {
  width: 100%;
  height: 40%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: 20px 0 0 0;
}

.map-container .map-move-info > div p {
  color: #fff;
  text-align: center;
  width: 80%;
  margin: 0;
  padding: 20px 0;
  text-shadow: 0 0 4px #000;
}

@media (max-width: 991px) {
  .map-container {
    height: calc(100vh - 11vw);
  }
}

@media (max-width: 575px) {
  .map-container {
    height: calc(100vh - 15vw);
  }
}

#map-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

#map-wrapper .map-tooltip-container .map-tool-btn-group {
  position: absolute;
  z-index: 1;
  bottom: 90px;
  right: 20px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

#map-wrapper .map-tooltip-container .map-center-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 6px;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
}

#map-wrapper .map-tooltip-container .map-tool-btn {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  cursor: pointer;
}

#map-wrapper .map-tooltip-container .map-tool-btn img {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  #map-wrapper .map-tooltip-container .map-tool-btn:hover img {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

#map-wrapper .map-tooltip-container.right-top .map-center-btn {
  top: 20px;
  bottom: unset;
}

#map-wrapper .map-tooltip-container.right-top .map-tool-btn-group {
  top: 20px;
  bottom: unset;
}

#map-wrapper .map-tooltip-container.left-top .map-center-btn {
  top: 20px;
  bottom: unset;
  left: 20px;
  right: unset;
}

#map-wrapper .map-tooltip-container.left-top .map-tool-btn-group {
  top: 20px;
  bottom: unset;
  left: 20px;
  right: unset;
}

/**
 * Animacja z instrukcją jak korzystać z mapki.
 */
#map-instruction .modal-dialog {
  width: 300px;
}

#map-instruction .modal-dialog .modal-content {
  border-radius: 30px;
  overflow: hidden;
  background: transparent;
}

#map-instruction .modal-dialog .modal-content button.modal-close {
  width: 48px;
  height: 48px;
  top: 8px;
  right: 8px;
}

#map-instruction .modal-dialog .modal-content .modal-body {
  position: relative;
  height: 0;
  padding: 0 0 320px 0;
}

#map-instruction .modal-dialog .modal-content .proportion-1-1 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  DISPLAY: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#map-instruction .modal-dialog .modal-content .proportion-1-1 > img {
  width: 60%;
  height: auto;
  position: relative;
  left: 6%;
}

@media (max-width: 575px) {
  #map-instruction .modal-dialog {
    margin-left: auto;
    margin-right: auto;
  }
}

#modal-house-details a.shop-url {
  color: #9d1458;
}

#modal-house-details .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#modal-house-details button.nav-link {
  padding: 2px 8px;
  color: #fff;
  background: #00b272;
  margin: 0 5px;
}

#modal-house-details button.nav-link.active {
  background: #007a4e;
  color: #fff;
}

@media (min-width: 992px) {
  #modal-house-details .modal-lg {
    max-width: 700px;
  }
}

#modal-house-details .modal-body {
  cursor: move;
}

#modal-house-details .description {
  cursor: text;
  text-align: left;
}

#modal-house-details .description a {
  color: #9d1458;
  text-decoration: underline;
}

#modal-house-details .ql-align-center {
  text-align: center;
}

#modal-house-details .ql-align-right {
  text-align: right;
}

#modal-house-details ol, #modal-house-details ul {
  list-style-position: inside;
}

#modal-house-details blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}

#modal-house-details .txt-left {
  text-align: left;
}

#modal-house-details .txt-center {
  text-align: center;
}

#modal-house-details .txt-right {
  text-align: right;
}

#modal-house-details .house-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -64px;
  padding: 0 40px;
}

#modal-house-details h2.house {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #d7182c;
  color: #fff;
  text-shadow: 1px 1px 5px #000;
  padding: 1rem 2rem;
  margin: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 50px #d7182c6e;
          box-shadow: 0 0 50px #d7182c6e;
}

#modal-house-details .house_name p {
  font-size: 28px;
  margin-bottom: 0;
}

#modal-house-details .house_name p::before {
  content: '\201E';
}

#modal-house-details .house_name p::after {
  content: '\201D';
}

#modal-house-details .blog-qr .blog {
  width: 50%;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#modal-house-details .blog-qr .blog a.login-btn {
  background-color: #fff;
  border-color: transparent !important;
  color: #9d1458;
  font-size: 16px;
}

@media (hover: hover) and (pointer: fine) {
  #modal-house-details .blog-qr .blog a.login-btn:hover {
    color: #fff;
    background-color: #9d1458;
  }
}

#modal-house-details .blog-qr .qr {
  width: 50%;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#modal-house-details .blog-qr .qr a {
  text-align: center;
  color: inherit;
}

#modal-house-details .blog-qr .qr span {
  text-align: center;
  color: inherit;
}

#modal-house-details .blog-qr .qr span img {
  vertical-align: -7px;
}

#modal-house-details .event-wrapper .organizer {
  width: 50%;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#modal-house-details .event-wrapper .organizer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#modal-house-details .event-wrapper .organizer ul a {
  color: #000;
  font-size: 16px;
  margin-bottom: 10px;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  #modal-house-details .event-wrapper .organizer ul a:hover {
    color: #9d1458;
  }
}

#modal-house-details .event-wrapper .organizer a.login-btn {
  border-color: #9d1458 !important;
  color: #9d1458;
}

@media (hover: hover) and (pointer: fine) {
  #modal-house-details .event-wrapper .organizer a.login-btn:hover {
    color: #fff;
    background-color: #9d1458;
  }
}

#modal-house-details .event-wrapper .event-logo {
  width: 50%;
  padding-left: 10px;
}

#modal-house-details .event-wrapper .event-logo img {
  display: block;
  width: 200px;
  max-width: 100%;
  padding: 20px;
}

@media (max-width: 991px) {
  #modal-house-details .event-wrapper .organizer {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding-right: 0px;
    margin-top: 24px;
  }
  #modal-house-details .event-wrapper .organizer h6 {
    text-align: center;
  }
  #modal-house-details .event-wrapper .organizer ul li {
    text-align: center;
  }
  #modal-house-details .event-wrapper .event-logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding-left: 0px;
  }
}

#modal-house-details .category-list .part-1 {
  width: calc(50% - 10px);
  padding-right: 10px;
}

#modal-house-details .category-list .part-1 li {
  text-align: right;
}

#modal-house-details .category-list .part-2 {
  width: calc(50% - 10px);
  padding-left: 10px;
}

#modal-house-details .divider {
  position: relative;
  height: 1px;
}

#modal-house-details .divider-vertical {
  position: relative;
  width: 1px;
  margin: 0 9px 0 10px;
}

#modal-house-details .div-transparent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#00b272), to(transparent));
  background-image: linear-gradient(to right, transparent, #00b272, transparent);
}

#modal-house-details .divider-vertical:before {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  width: 1px;
  height: 90%;
  bottom: 5%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#00b272), to(transparent));
  background-image: linear-gradient(to bottom, transparent, #00b272, transparent);
}

#modal-house-details .div-arrow-down:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: white;
  border-bottom: 1px solid #00b272;
  border-right: 1px solid #00b272;
}

@media (max-width: 991px) {
  #modal-house-details .category-list .part-1 {
    width: 100%;
    padding-right: 0px;
  }
  #modal-house-details .category-list .part-1 ol {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  #modal-house-details .category-list .part-1 ol li {
    text-align: center;
  }
  #modal-house-details .category-list .part-2 {
    width: 100%;
    padding-left: 0px;
  }
  #modal-house-details .category-list .part-2 ol {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  #modal-house-details .category-list .part-2 ol li {
    text-align: center;
  }
  #modal-house-details .divider-vertical {
    display: none;
  }
}

#modal-house-details .seller a, #modal-house-details .pojawi-btn a {
  color: #9d1458;
  font-weight: 900;
  font-size: 1.2rem;
  border: solid 1px #9d1458;
  padding: .5rem 1rem;
  max-width: 100%;
  -webkit-transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

#modal-house-details .pojawi-btn a > span {
  font-size: 80%;
  font-weight: normal;
  word-break: break-all;
  line-height: normal;
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) {
  #modal-house-details .seller a:hover, #modal-house-details .pojawi-btn a:hover {
    background-color: #9d1458;
    color: #fff;
  }
}

#modal-house-details .breadcrumb a {
  color: #000;
  font-weight: 900;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  #modal-house-details .breadcrumb a:hover {
    color: #9d1458;
  }
}

#modal-house-details .modalPrevObject, #modal-house-details .modalNextObject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  background: #d7182c;
  position: fixed;
  top: calc(50% - 25px);
  cursor: pointer;
  left: calc(50% - 364px);
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 50px #d7182c6e;
          box-shadow: 0 0 50px #d7182c6e;
}

#modal-house-details .modalPrevObject img, #modal-house-details .modalNextObject img {
  display: block;
  width: 20px;
  height: auto;
}

#modal-house-details .modalNextObject {
  left: unset;
  right: calc(50% - 364px);
}

@media (hover: hover) and (pointer: fine) {
  #modal-house-details .modal-btn:hover {
    background-color: #9b1320;
  }
}

@media (max-width: 991px) {
  #modal-house-details .modalPrevObject, #modal-house-details .modalNextObject {
    left: calc(50% - 264px);
  }
  #modal-house-details .modalNextObject {
    left: unset;
    right: calc(50% - 264px);
  }
}

@media (max-width: 575px) {
  #modal-house-details .modalPrevObject, #modal-house-details .modalNextObject {
    width: 6.95652vw;
    height: 6.95652vw;
    top: calc(50% - 3.4783vw);
    left: calc(50% - 50vw);
  }
  #modal-house-details .modalPrevObject img, #modal-house-details .modalNextObject img {
    width: 2.43478vw;
  }
  #modal-house-details .modalNextObject {
    left: unset;
    right: calc(50% - 50vw);
  }
}

.to-right .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "»");
}

.to-left .breadcrumb-item::after {
  float: right;
  padding-left: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "«");
}

@media (max-width: 991px) {
  .to-left .breadcrumb-item::after {
    display: none;
  }
  .to-left .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "»");
  }
}

/**
    Style związane z indywidualnym szablonem
*/
#map-legend-modal .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#map-legend-modal .accordion-button:not(.collapsed) {
  background-color: #eee;
  border-color: #ddd;
  color: #000;
  font-weight: bold;
}

#map-legend-modal .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239b1e61'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#map-legend-modal .accordion-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#map-legend-modal .accordion-body .number-btn {
  border: none;
  border-bottom: solid 1px;
  background-color: #00b272;
  border-color: #008a57;
  color: #fff;
  font-weight: bold;
  -webkit-transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

#map-legend-modal .accordion-body .number-btn:hover {
  background-color: #008a57;
  border-color: #006e46;
}

.brown-bg {
  background-color: #550000;
}

.event-header-container::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 500px;
  /*background: url(/images/map-display-top-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;*/
  background: #fff;
  z-index: -1;
}

.event-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 40px;
}

.day-counter-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 5;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.header-box {
  width: 20%;
  position: relative;
  z-index: 5;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  color: #000;
}

.header-box > * {
  position: relative;
  z-index: 2;
}

.day-counter .counter-label {
  color: #000;
}

.day-counter .number-wrapper {
  gap: 4px;
}

.day-counter .number-wrapper > div {
  overflow: hidden;
  background-color: #fff;
  font-size: 12px;
  line-height: 30px;
}

.day-counter .days, .day-counter .hours, .day-counter .minutes, .day-counter .seconds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  font-size: 34px;
  font-weight: normal;
  color: #fff;
  font-family: 'gnoulane', cursive;
  background: linear-gradient(45deg, #d7182c 0%, #410032 100%);
}

.day-counter {
  position: relative;
  z-index: 1;
  margin-top: 0px !important;
}

.day-counter > * {
  position: relative;
  z-index: 1;
}

.day-counter .days, .day-counter .hours, .day-counter .minutes, .day-counter .seconds {
  height: 30px !important;
  font-size: 19px !important;
}

.logo-box {
  margin-top: 0px !important;
  width: 33%;
  position: relative;
  z-index: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.logo-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.logo-box a img {
  width: 292px;
  height: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 1649px) {
  .header-box {
    width: 25%;
  }
  .day-counter-box {
    width: 25%;
  }
  .logo-box {
    width: 33%;
  }
}

@media (max-width: 1399px) {
  .event-header-container {
    gap: 30px;
  }
  .header-box {
    width: 33%;
  }
  .day-counter-box {
    width: 33%;
  }
  .logo-box {
    width: 33%;
  }
  .logo-box a img {
    width: 292px;
    padding: 0 30px;
  }
}

@media (max-width: 1199px) {
  .event-header-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .header-box {
    width: 80%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .day-counter-box {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .logo-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .logo-box::after, .day-counter::after {
    display: none;
  }
  .logo-box.no-timer {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 767px) {
  .header-box {
    width: 80%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .day-counter-box {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    padding-right: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .logo-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding-left: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
  .logo-box a img {
    width: 200px;
    padding: 0;
  }
}

.nav-street .container > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  padding: 10px;
}

.nav-street .container > .wrapper a {
  background-color: #d7182c;
  -webkit-box-shadow: 0px 1px 0px #9b1320;
          box-shadow: 0px 1px 0px #9b1320;
  color: #fff;
  border-radius: 5px;
  border: none;
  padding: 8px 30px;
  -webkit-transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  text-shadow: 1px 1px 5px #9b1320;
  font-weight: bold;
  text-wrap: nowrap;
  text-align: center;
}

.nav-street .container > .wrapper a.active {
  background: #00453b;
}

@media (hover: hover) and (pointer: fine) {
  .nav-street .container > .wrapper a:hover {
    background: #00453b;
  }
}

@media (max-width: 991px) {
  .nav-street .container > .wrapper a {
    width: 100%;
  }
  .nav-street .container > .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav-street .container > .wrapper.map-bottom-menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: normal;
  }
}

@media (max-width: 767px) {
  .nav-street .container > .wrapper a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .nav-street .container {
    padding: 0 3.13043vw;
  }
  .nav-street .container > .wrapper {
    gap: 10px;
  }
  .nav-street .container > .wrapper a {
    padding: 1.3913vw 5.21739vw;
  }
}

.category-filter-result {
  background-color: #fff;
  margin: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 50px #00000022;
          box-shadow: 0 0 50px #00000022;
}

.category-filter-result .grid-menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.category-filter-result .grid-menu-content h2, .category-filter-result .grid-menu-content p {
  color: #000;
}

.category-filter-result .grid-menu-content ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.category-filter-result .grid-menu-content ul li {
  text-align: center;
}

.category-filter-result .grid-menu-content ul li a {
  display: block;
  position: relative;
  padding: 0 8px 2px 8px;
  background: #00b272;
  color: #000;
  border-radius: 4px;
  padding: 4px 15px 2px 15px;
  margin-bottom: 3px;
  -webkit-transition: 0.25s opacity ease-in-out, border-colo 0.25s ease-in-out;
  transition: 0.25s opacity ease-in-out, border-colo 0.25s ease-in-out;
  border-bottom: solid 2px transparent;
  opacity: 1;
}

.category-filter-result .grid-menu-content ul li a span {
  color: #d7182c;
  letter-spacing: 1px;
  font-weight: bold;
}

@media (hover: hover) and (pointer: fine) {
  .category-filter-result .grid-menu-content ul li a:hover {
    opacity: 0.6;
  }
}

@media (max-width: 575px) {
  .category-filter-result .grid-menu-content {
    padding: 0 3.13043vw !important;
  }
}

.category-filter-info .offer-title {
  max-width: 960px;
}

.category-filter-info .offer-title h2 {
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
}

.category-filter-info .offer-title > div {
  color: #000;
}

@media (max-width: 1199px) {
  .category-filter-info .offer-title {
    max-width: 720px;
  }
}

@media (max-width: 575px) {
  .category-filter-info .offer-title {
    padding: 0 3.13043vw;
  }
}

.category-filter .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.category-filter .wrapper .cat-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc((100% / 4) - (60px / 4));
  padding: 20px;
  background-color: #fff;
  border-bottom: solid 4px #eee;
  border-radius: 10px;
}

.category-filter .wrapper .cat-card .toggle-btn {
  -webkit-transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  font-weight: normal;
  border-radius: 4px;
  background: #eee;
}

@media (hover: hover) and (pointer: fine) {
  .category-filter .wrapper .cat-card .toggle-btn:hover {
    background-color: #ddd;
    color: #000;
  }
}

.category-filter .wrapper .cat-card .separator-title {
  top: unset;
  margin-top: -25px;
  margin-bottom: 20px;
  background-color: #00b272;
  border-color: #007a4e;
  color: #fff;
  border-radius: 4px;
}

.category-filter .wrapper .cat-card .separator-title a {
  color: inherit;
  font-weight: 900;
}

.category-filter .wrapper .cat-card ul {
  list-style: none;
  padding: 0;
}

.category-filter .wrapper .cat-card ul li {
  display: list-item;
  border-bottom: none;
}

.category-filter .wrapper .cat-card ul li a {
  position: relative;
  color: #000;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
  border-bottom: solid 2px;
  padding: 0 8px 2px 8px;
  border-color: transparent;
  -webkit-transition: border-color 0.25 ease-in-out;
  transition: border-color 0.25 ease-in-out;
}

.category-filter .wrapper .cat-card ul li a span {
  font-size: 24px;
}

.category-filter .wrapper .cat-card ul li a.active {
  color: #d7182c;
}

@media (hover: hover) and (pointer: fine) {
  .category-filter .wrapper .cat-card ul li a:hover {
    color: #d7182c;
  }
}

@media (max-width: 1199px) {
  .category-filter .wrapper .cat-card {
    width: calc((100% / 3) - (40px / 3));
  }
}

@media (max-width: 991px) {
  .category-filter .wrapper .cat-card {
    width: calc((100% / 2) - (20px / 2));
  }
}

@media (max-width: 767px) {
  .category-filter .wrapper .cat-card {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .category-filter .wrapper {
    padding: 0 3.13043vw;
    gap: 3.47826vw;
  }
  .category-filter .wrapper .cat-card {
    padding: 3.47826vw;
  }
  .category-filter .wrapper .cat-card .separator-title {
    margin-top: -4.34783vw;
    margin-bottom: 3.47826vw;
  }
  .category-filter .wrapper .cat-card ul li a span {
    font-size: 4.17391vw;
  }
}

a.d-inline-flex {
  line-height: 24px;
}

.sharethis-inline-share-buttons .st-btn, .sharethis-inline-share-buttons .share-url {
  margin: 4px;
}

.sharethis-inline-share-buttons .st-btn[data-network="skype"] {
  display: none !important;
}

.sharethis-container {
  padding: 15px;
  background: #fff !important;
}

@media (max-width: 539px) {
  .sharethis-container {
    padding: 1vw;
  }
  .sharethis-inline-share-buttons {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    gap: 1.5vw;
  }
  .sharethis-inline-share-buttons .st-btn:not([data-network="skype"]), .sharethis-inline-share-buttons .share-url {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 10vw;
    height: 10vw !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 5.6vw !important;
  }
  .sharethis-inline-share-buttons .st-btn:not([data-network="skype"]) > img, .sharethis-inline-share-buttons .share-url > img {
    width: 4.5vw !important;
    height: auto !important;
    top: 0 !important;
  }
}

#event-modal .modal-body, #map-navigation-modal .modal-body, #map-legend-modal .modal-body, #find-house-modal .modal-body, #map-share-modal .modal-body {
  padding: 30px;
}

@media (max-width: 575px) {
  #event-modal .modal-body, #map-navigation-modal .modal-body, #map-legend-modal .modal-body, #find-house-modal .modal-body, #map-share-modal .modal-body {
    padding: 16px;
  }
  .sharethis-inline-share-buttons {
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .st-btn, .share-url {
    width: 8.6vw;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 8.6vw !important;
    line-height: normal !important;
    padding: 0 !important;
    text-align: unset !important;
    vertical-align: unset !important;
    margin: 0 !important;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    top: unset !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .st-btn img, .share-url img {
    top: unset !important;
  }
}

/* --- Animowany gradient --- */
.animated-gradient {
  /* Usunięto statyczny biały gradient, fale na górze tworzą przejście */
  background-image: linear-gradient(0, #ffffff00, #ffffff), linear-gradient(45deg, #d7182b25, #00453b25, #00b2712c, #facacc2a);
  background-size: 400% 400%;
  background-repeat: no-repeat;
  -webkit-animation: gradientAnimation 15s ease infinite;
          animation: gradientAnimation 15s ease infinite;
  background-color: #fff;
}

/* --- Style dla fal --- */
.wave-container {
  position: absolute;
  top: 0;
  /* Zmieniono z bottom na top */
  left: 0;
  width: 100%;
  z-index: 5;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  /* Dodano odbicie lustrzane */
}

.waves {
  position: relative;
  width: 100%;
  height: 100px;
  margin-bottom: -7px;
  /* Poprawka dla Safari */
}

.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

/* Różne opóźnienia i czasy trwania dla poszczególnych warstw fali, aby stworzyć efekt paralaksy */
.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

/* --- Style dla płatków śniegu --- */
.snowflakes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.snowflake {
  color: #fff;
  position: absolute;
  top: -10%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* Zapobiega zaznaczaniu płatków */
  -webkit-animation: fall linear infinite;
          animation: fall linear infinite;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff;
  /* Delikatny blask */
}

/* --- Randomizacja właściwości płatków śniegu --- */
.snowflake:nth-of-type(1) {
  left: 10%;
  font-size: 24px;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.snowflake:nth-of-type(2) {
  left: 20%;
  font-size: 18px;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}

.snowflake:nth-of-type(3) {
  left: 30%;
  font-size: 22px;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}

.snowflake:nth-of-type(4) {
  left: 40%;
  font-size: 16px;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-delay: -9s;
          animation-delay: -9s;
}

.snowflake:nth-of-type(5) {
  left: 50%;
  font-size: 25px;
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

.snowflake:nth-of-type(6) {
  left: 60%;
  font-size: 19px;
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
  -webkit-animation-delay: -7s;
          animation-delay: -7s;
}

.snowflake:nth-of-type(7) {
  left: 70%;
  font-size: 23px;
  -webkit-animation-duration: 7.5s;
          animation-duration: 7.5s;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}

.snowflake:nth-of-type(8) {
  left: 80%;
  font-size: 17px;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}

.snowflake:nth-of-type(9) {
  left: 90%;
  font-size: 21px;
  -webkit-animation-duration: 9.5s;
          animation-duration: 9.5s;
  -webkit-animation-delay: -8s;
          animation-delay: -8s;
}

.snowflake:nth-of-type(10) {
  left: 5%;
  font-size: 20px;
  -webkit-animation-duration: 11.5s;
          animation-duration: 11.5s;
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}

.snowflake:nth-of-type(11) {
  left: 15%;
  font-size: 24px;
  -webkit-animation-duration: 8.5s;
          animation-duration: 8.5s;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}

.snowflake:nth-of-type(12) {
  left: 25%;
  font-size: 18px;
  -webkit-animation-duration: 10.5s;
          animation-duration: 10.5s;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

.snowflake:nth-of-type(13) {
  left: 35%;
  font-size: 22px;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}

.snowflake:nth-of-type(14) {
  left: 45%;
  font-size: 16px;
  -webkit-animation-duration: 12.5s;
          animation-duration: 12.5s;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.snowflake:nth-of-type(15) {
  left: 55%;
  font-size: 25px;
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}

.snowflake:nth-of-type(16) {
  left: 12%;
  font-size: 17px;
  -webkit-animation-duration: 9.5s;
          animation-duration: 9.5s;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}

.snowflake:nth-of-type(17) {
  left: 22%;
  font-size: 23px;
  -webkit-animation-duration: 7.5s;
          animation-duration: 7.5s;
  -webkit-animation-delay: -8s;
          animation-delay: -8s;
}

.snowflake:nth-of-type(18) {
  left: 32%;
  font-size: 19px;
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}

.snowflake:nth-of-type(19) {
  left: 42%;
  font-size: 25px;
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.snowflake:nth-of-type(20) {
  left: 52%;
  font-size: 16px;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-delay: -7s;
          animation-delay: -7s;
}

.snowflake:nth-of-type(21) {
  left: 62%;
  font-size: 24px;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-delay: -9s;
          animation-delay: -9s;
}

.snowflake:nth-of-type(22) {
  left: 72%;
  font-size: 18px;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}

.snowflake:nth-of-type(23) {
  left: 82%;
  font-size: 22px;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}

.snowflake:nth-of-type(24) {
  left: 92%;
  font-size: 17px;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

.snowflake:nth-of-type(25) {
  left: 8%;
  font-size: 21px;
  -webkit-animation-duration: 9.5s;
          animation-duration: 9.5s;
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}

.snowflake:nth-of-type(26) {
  left: 18%;
  font-size: 20px;
  -webkit-animation-duration: 11.5s;
          animation-duration: 11.5s;
  -webkit-animation-delay: -1.5s;
          animation-delay: -1.5s;
}

.snowflake:nth-of-type(27) {
  left: 28%;
  font-size: 24px;
  -webkit-animation-duration: 8.5s;
          animation-duration: 8.5s;
  -webkit-animation-delay: -3.5s;
          animation-delay: -3.5s;
}

.snowflake:nth-of-type(28) {
  left: 38%;
  font-size: 18px;
  -webkit-animation-duration: 10.5s;
          animation-duration: 10.5s;
  -webkit-animation-delay: -5.5s;
          animation-delay: -5.5s;
}

.snowflake:nth-of-type(29) {
  left: 48%;
  font-size: 22px;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-delay: -7.5s;
          animation-delay: -7.5s;
}

.snowflake:nth-of-type(30) {
  left: 58%;
  font-size: 16px;
  -webkit-animation-duration: 12.5s;
          animation-duration: 12.5s;
  -webkit-animation-delay: -9.5s;
          animation-delay: -9.5s;
}

/* --- Definicje klatek kluczowych animacji --- */
@-webkit-keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@-webkit-keyframes fall {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50vh) rotate(360deg);
            transform: translateY(50vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fall {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50vh) rotate(360deg);
            transform: translateY(50vh) rotate(360deg);
    opacity: 0;
  }
}

#desktoptop .badge.badge-profile {
  color: #fff !important;
}

#map-wrapper .map-tooltip-container.left-top .map-tool-btn-group {
  bottom: 20px;
  top: unset;
}
/*# sourceMappingURL=style.css.map */