@charset "UTF-8";
/**import all scss files*/
/**basic colors*/
/**#ee7d00*/
/*heihts*/
/**hamburger*/
:root {
  --color-hamburger: var(--color-secondary);
  --color-hamburger-active: var(--color-primary);
  --color-bg-preloader: var(--color-secondary);
  --color-bg-animated-element: var(--color-secondary);
  --color-bg-sliderblend-mask: rgba(0, 0, 0, 0.1);
  --nav-link-color-bg-hover: var(--color-secondary);
  --color-secondary-transparent: rgba(0, 0, 0, 0);
}

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
.container-width-sm {
  max-width: 540px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.container-width-md {
  max-width: 720px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.container-width-lg {
  max-width: 960px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.container-width-xl {
  max-width: 1140px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.container-width-xxl {
  max-width: 1320px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

/**
admin
*/
@-webkit-keyframes updown {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-moz-keyframes updown {
  0% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -moz-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }
  100% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-o-keyframes updown {
  0% {
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -o-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }
  100% {
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes updown {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.delay-02s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-08s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-12s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0px 0px 2px rgba(var(--color-primary), 0.75);
  }
  50% {
    box-shadow: 0 0px 0px 5px rgba(var(--color-primary), 0.35);
  }
  100% {
    box-shadow: 0 0px 0px 2px rgba(var(--color-primary), 0.75);
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(3px, 0, 0);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes pulsation {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@-webkit-keyframes pulsation {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes antispin {
  from {
    -webkit-transform: rotate;
    transform: rotate;
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes antispin {
  from {
    -webkit-transform: rotate;
    transform: rotate;
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes fadeinout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeinout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes leftright {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-moz-keyframes leftright {
  0% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -moz-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
  100% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-o-keyframes leftright {
  0% {
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -o-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
  100% {
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes leftright {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(100px);
  }
}
section.section .button, section.section .light a.button-outline-grey, section.section .light a.button-outline-grey2, section.section .light ul.buttons li a, ul.buttons li section.section .light a, .button, section.section .main-category-list-tree-horizontal ul li a:hover, section.section .light a.button-outline, section.section .light .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light a, .button-reverse, .big-button {
  min-height: 44px;
  margin: 0;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--button-color-border-roundness);
  -webkit-border-radius: var(--button-color-border-roundness);
  -moz-border-radius: var(--button-color-border-roundness);
  align-items: center;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: var(--button-font-size);
  letter-spacing: var(--button-font-letter-spacing);
  font-family: var(--font-text), sans-serif;
  position: relative;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  color: var(--button-color);
  background-color: var(--button-color-bg);
  border: var(--button-border-width) px solid var(--button-color-border);
  padding: 0.5rem 2.5rem;
  text-align: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 767.98px) {
  section.section .button, section.section .light a.button-outline-grey, section.section .light a.button-outline-grey2, section.section .light ul.buttons li a, ul.buttons li section.section .light a, .button, section.section .main-category-list-tree-horizontal ul li a:hover, section.section .light a.button-outline, section.section .light .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light a, .button-reverse, .big-button {
    margin: 0.5rem 0;
    padding: 0.4rem 1.5rem;
    font-size: 1rem;
  }
}
section.section .button svg, section.section .main-category-list-tree-horizontal ul li a:hover svg, section.section .light a.button-outline svg, section.section .light .main-category-list-tree-horizontal ul li a svg, section.section .main-category-list-tree-horizontal ul li .light a svg, section.section .light a.button-outline-grey svg, section.section .light ul.buttons li a svg, ul.buttons li section.section .light a svg, section.section .light a.button-outline-grey2 svg, .button svg, .button-reverse svg, .big-button svg {
  width: 1rem;
  height: auto;
}
section.section .button svg path, section.section .main-category-list-tree-horizontal ul li a:hover svg path, section.section .light a.button-outline svg path, section.section .light .main-category-list-tree-horizontal ul li a svg path, section.section .main-category-list-tree-horizontal ul li .light a svg path, section.section .light a.button-outline-grey svg path, section.section .light ul.buttons li a svg path, ul.buttons li section.section .light a svg path, section.section .light a.button-outline-grey2 svg path, .button svg path, .button-reverse svg path, .big-button svg path {
  fill: var(--button-svg-fill-path);
}
section.section .button:hover, section.section .main-category-list-tree-horizontal ul li a:hover, section.section .light a.button-outline:hover, section.section .light a.button-outline-grey:hover, section.section .light ul.buttons li a:hover, ul.buttons li section.section .light a:hover, section.section .light a.button-outline-grey2:hover, .button:hover, .button-reverse:hover, .big-button:hover {
  background-color: var(--button-color-bg-hover);
  border-color: var(--button-color-border-hover);
  color: var(--button-color-hover) !important;
}
section.section .button:hover svg path, section.section .main-category-list-tree-horizontal ul li a:hover svg path, section.section .light a.button-outline:hover svg path, section.section .light a.button-outline-grey:hover svg path, section.section .light ul.buttons li a:hover svg path, ul.buttons li section.section .light a:hover svg path, section.section .light a.button-outline-grey2:hover svg path, .button:hover svg path, .button-reverse:hover svg path, .big-button:hover svg path {
  fill: var(--button-svg-fill-path-hover);
}
section.section .button.button-block, section.section .main-category-list-tree-horizontal ul li a.button-block:hover, section.section .light a.button-block.button-outline, section.section .light .main-category-list-tree-horizontal ul li a.button-block, section.section .main-category-list-tree-horizontal ul li .light a.button-block, section.section .light a.button-block.button-outline-grey, section.section .light ul.buttons li a.button-block, ul.buttons li section.section .light a.button-block, section.section .light a.button-block.button-outline-grey2, .button.button-block, .button-block.button-reverse, .button-block.big-button {
  display: block;
  width: 100%;
}
section.section .button.button-dark, section.section .main-category-list-tree-horizontal ul li a.button-dark:hover, section.section .light a.button-dark.button-outline, section.section .light .main-category-list-tree-horizontal ul li a.button-dark, section.section .main-category-list-tree-horizontal ul li .light a.button-dark, section.section .light a.button-dark.button-outline-grey, section.section .light ul.buttons li a.button-dark, ul.buttons li section.section .light a.button-dark, section.section .light a.button-dark.button-outline-grey2, .button.button-dark, .button-dark.button-reverse, .button-dark.big-button {
  color: white !important;
  background-color: #313131 !important;
  border: 1px solid #313131 !important;
}
section.section .button.button-dark:hover, section.section .main-category-list-tree-horizontal ul li a.button-dark:hover, section.section .light a.button-dark.button-outline:hover, section.section .light a.button-dark.button-outline-grey:hover, section.section .light ul.buttons li a.button-dark:hover, ul.buttons li section.section .light a.button-dark:hover, section.section .light a.button-dark.button-outline-grey2:hover, .button.button-dark:hover, .button-dark.button-reverse:hover, .button-dark.big-button:hover {
  background-color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
}
section.section .button.small, section.section .main-category-list-tree-horizontal ul li a.small:hover, section.section .light a.small.button-outline, section.section .light .main-category-list-tree-horizontal ul li a.small, section.section .main-category-list-tree-horizontal ul li .light a.small, section.section .light a.small.button-outline-grey, section.section .light ul.buttons li a.small, ul.buttons li section.section .light a.small, section.section .light a.small.button-outline-grey2, .button.small, .small.button-reverse, .small.big-button {
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
}
section.section .button.active, section.section .main-category-list-tree-horizontal ul li a.active:hover, section.section .light a.active.button-outline, section.section .light .main-category-list-tree-horizontal ul li a.active, section.section .main-category-list-tree-horizontal ul li .light a.active, section.section .light a.active.button-outline-grey, section.section .light ul.buttons li a.active, ul.buttons li section.section .light a.active, section.section .light a.active.button-outline-grey2, .button.active, .active.button-reverse, .active.big-button {
  background: var(--color-secondary);
}
section.section .button.active:hover, section.section .main-category-list-tree-horizontal ul li a.active:hover, section.section .light a.active.button-outline:hover, section.section .light a.active.button-outline-grey:hover, section.section .light ul.buttons li a.active:hover, ul.buttons li section.section .light a.active:hover, section.section .light a.active.button-outline-grey2:hover, .button.active:hover, .active.button-reverse:hover, .active.big-button:hover {
  background: var(--button-color-secondary);
}
section.section .button.button-outline, section.section .main-category-list-tree-horizontal ul li a.button, section.section .main-category-list-tree-horizontal ul li a:hover, section.section .light .button.button-outline-grey, section.section .light a.button-outline, section.section .light .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light a, section.section .light a.button-outline-grey, section.section .light ul.buttons li a, ul.buttons li section.section .light a, .button.button-outline, .button.button-outline-grey2, section.section .light a.button-outline-grey2, .button.button-outline-grey, ul.buttons li a.button, .button-outline.button-reverse, section.section .main-category-list-tree-horizontal ul li a.button-reverse, section.section .light .button-reverse.button-outline-grey, .button-reverse.button-outline-grey2, .button-reverse.button-outline-grey, ul.buttons li a.button-reverse, .button-outline.big-button, section.section .main-category-list-tree-horizontal ul li a.big-button, section.section .light .big-button.button-outline-grey, .big-button.button-outline-grey2, .big-button.button-outline-grey, ul.buttons li a.big-button {
  border: 1px solid var(--button-color-bg) !important;
  background-color: transparent !important;
  color: var(--button-color-bg) !important;
}
section.section .button.button-outline:hover, section.section .main-category-list-tree-horizontal ul li a:hover, section.section .light .button.button-outline-grey:hover, section.section .light a.button-outline:hover, section.section .light a.button-outline-grey:hover, section.section .light ul.buttons li a:hover, ul.buttons li section.section .light a:hover, .button.button-outline:hover, .button.button-outline-grey2:hover, section.section .light a.button-outline-grey2:hover, .button.button-outline-grey:hover, ul.buttons li a.button:hover, .button-outline.button-reverse:hover, section.section .light .button-reverse.button-outline-grey:hover, .button-reverse.button-outline-grey2:hover, .button-reverse.button-outline-grey:hover, ul.buttons li a.button-reverse:hover, .button-outline.big-button:hover, section.section .light .big-button.button-outline-grey:hover, .big-button.button-outline-grey2:hover, .big-button.button-outline-grey:hover, ul.buttons li a.big-button:hover {
  background-color: var(--button-color-bg-hover) !important;
  color: var(--button-color-hover) !important;
  border: 1px solid var(--button-color-border-hover) !important;
}
section.section .button.button-outline.small, section.section .main-category-list-tree-horizontal ul li a.button.small, section.section .main-category-list-tree-horizontal ul li a.small:hover, section.section .light .button.small.button-outline-grey, section.section .light a.button-outline.small, section.section .light .main-category-list-tree-horizontal ul li a.small, section.section .main-category-list-tree-horizontal ul li .light a.small, section.section .light a.small.button-outline-grey, section.section .light ul.buttons li a.small, ul.buttons li section.section .light a.small, .button.button-outline.small, .button.small.button-outline-grey2, section.section .light a.small.button-outline-grey2, .button.small.button-outline-grey, ul.buttons li a.button.small, .button-outline.small.button-reverse, section.section .main-category-list-tree-horizontal ul li a.small.button-reverse, section.section .light .small.button-reverse.button-outline-grey, .small.button-reverse.button-outline-grey2, .small.button-reverse.button-outline-grey, ul.buttons li a.small.button-reverse, .button-outline.small.big-button, section.section .main-category-list-tree-horizontal ul li a.small.big-button, section.section .light .small.big-button.button-outline-grey, .small.big-button.button-outline-grey2, .small.big-button.button-outline-grey, ul.buttons li a.small.big-button {
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
}
section.section .button.button-outline svg, section.section .main-category-list-tree-horizontal ul li a.button svg, section.section .main-category-list-tree-horizontal ul li a:hover svg, section.section .light .button.button-outline-grey svg, section.section .light a.button-outline svg, section.section .light .main-category-list-tree-horizontal ul li a svg, section.section .main-category-list-tree-horizontal ul li .light a svg, section.section .light a.button-outline-grey svg, section.section .light ul.buttons li a svg, ul.buttons li section.section .light a svg, .button.button-outline svg, .button.button-outline-grey2 svg, section.section .light a.button-outline-grey2 svg, .button.button-outline-grey svg, ul.buttons li a.button svg, .button-outline.button-reverse svg, section.section .main-category-list-tree-horizontal ul li a.button-reverse svg, section.section .light .button-reverse.button-outline-grey svg, .button-reverse.button-outline-grey2 svg, .button-reverse.button-outline-grey svg, ul.buttons li a.button-reverse svg, .button-outline.big-button svg, section.section .main-category-list-tree-horizontal ul li a.big-button svg, section.section .light .big-button.button-outline-grey svg, .big-button.button-outline-grey2 svg, .big-button.button-outline-grey svg, ul.buttons li a.big-button svg {
  margin: 0 1rem;
  width: 1rem;
  height: auto;
}
section.section .button.button-outline svg path, section.section .main-category-list-tree-horizontal ul li a.button svg path, section.section .main-category-list-tree-horizontal ul li a:hover svg path, section.section .light .button.button-outline-grey svg path, section.section .light a.button-outline svg path, section.section .light .main-category-list-tree-horizontal ul li a svg path, section.section .main-category-list-tree-horizontal ul li .light a svg path, section.section .light a.button-outline-grey svg path, section.section .light ul.buttons li a svg path, ul.buttons li section.section .light a svg path, .button.button-outline svg path, .button.button-outline-grey2 svg path, section.section .light a.button-outline-grey2 svg path, .button.button-outline-grey svg path, ul.buttons li a.button svg path, .button-outline.button-reverse svg path, section.section .main-category-list-tree-horizontal ul li a.button-reverse svg path, section.section .light .button-reverse.button-outline-grey svg path, .button-reverse.button-outline-grey2 svg path, .button-reverse.button-outline-grey svg path, ul.buttons li a.button-reverse svg path, .button-outline.big-button svg path, section.section .main-category-list-tree-horizontal ul li a.big-button svg path, section.section .light .big-button.button-outline-grey svg path, .big-button.button-outline-grey2 svg path, .big-button.button-outline-grey svg path, ul.buttons li a.big-button svg path {
  fill: var(--color-primary);
}

.big-button {
  font-size: 1.75rem;
  padding: 0.6rem 1.75rem;
}

.button-reverse {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-primary-lightest);
}
.button-reverse:hover {
  background-color: var(--color-primary-lighten);
  border: 1px solid var(--color-primary-lighten);
  color: var(--color-secondary);
}

.button-link {
  color: var(--color-primary) !important;
  display: inline-flex;
  font-family: var(--font-text);
  position: relative;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.button-link:after {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background-color: black;
  left: 0;
  bottom: 0;
}
.button-link:hover:after {
  width: 100%;
}

.button-outline-grey, ul.buttons li.active a, ul.buttons li a {
  background-color: white;
  border-color: rgba(209, 209, 209, 0.5);
  font-weight: 600;
  color: black !important;
}

.button-outline-grey2 {
  background-color: white;
  border-color: rgba(209, 209, 209, 0.5);
  font-weight: 600;
  color: black !important;
}
.button-outline-grey2:hover {
  background-color: white;
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
}

@media only screen and (max-width: 1199.98px) {
  .reservation-button {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
  }
}

.btt-chck-av {
  display: none !important;
}
@media only screen and (max-width: 1199.98px) {
  .btt-chck-av {
    display: flex !important;
    justify-content: center !important;
  }
}

.button-outline, section.section .main-category-list-tree-horizontal ul li a, section.section .light .button-outline-grey, section.section .light ul.buttons li a, ul.buttons li section.section .light a, .button-outline-grey, ul.buttons li.active a, ul.buttons li a, .button-outline-grey2, .button-outline2 {
  margin-top: 26px;
  color: var(--color-secondary) !important;
  text-align: center;
  font-size: var(--button-font-size);
  letter-spacing: var(--button-font-letter-spacing);
  font-family: var(--font-text);
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
  display: inline-flex;
  height: 44px;
  padding: 10px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid rgba(163, 0, 12, 0.5);
}
.button-outline:hover, section.section .main-category-list-tree-horizontal ul li a:hover, section.section .light .button-outline-grey:hover, section.section .light ul.buttons li a:hover, ul.buttons li section.section .light a:hover, .button-outline-grey:hover, ul.buttons li a:hover, .button-outline-grey2:hover, .button-outline2:hover {
  border-color: var(--color-secondary);
  color: var(--color-primary);
}

.button-outline2 {
  border: 1px solid #A07E59;
  color: #A07E59 !important;
  margin-bottom: 20px;
}
.button-outline2:hover {
  border-color: var(--color-secondary);
  color: var(--color-primary);
}

html, body, :root {
  font-size: 16px;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  animation-fill-mode: forwards;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
* {
  scrollbar-color: var(--color-primary-lighten) rgba(0, 0, 0, 0.1882352941);
  scrollbar-width: thin;
}

html, body, button, a, div, span {
  transition-timing-function: ease !important;
}

.animated {
  animation-duration: 0.7s !important;
}

body {
  height: 100%;
  font-family: var(--font-text), sans-serif;
  overflow-x: hidden;
  font-size: var(--font-size);
  line-height: 1.8rem;
  font-weight: normal;
  color: var(--color-font);
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: var(--color-bg);
  background-image: var(--img-bg);
  letter-spacing: 1px;
  background-size: 100%;
  background-attachment: fixed;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1199.98px) {
  body {
    padding: 0;
  }
}

.copy-link svg {
  width: 1rem;
  margin-right: 0.3rem;
  height: auto;
}

figure {
  margin: 0;
}

body.scrolled {
  padding-top: 0;
}

.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
}

svg {
  height: 1rem;
  width: auto;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1rem);
  padding-left: var(--bs-gutter-x, 1rem);
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: 1800px;
}

ul.list-inline, #slider-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

h1.main-header {
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-header);
  color: var(--color-primary);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  font-size: 2.5rem;
}
@media only screen and (max-width: 1199.98px) {
  h1.main-header {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767.98px) {
  h1.main-header {
    font-size: 1.6rem;
  }
}

.form-control:focus,
input:focus {
  box-shadow: none;
  outline: none;
}

.button-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  background-color: var(--color-secondary);
  padding: 1rem 2rem;
  -webkit-border-radius: 2rem;
  -khtml-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  border-radius: 2rem;
  color: white !important;
}
.button-cta svg {
  margin-right: 1rem;
}
@media only screen and (max-width: 1199.98px) {
  .button-cta span.tel {
    display: none;
  }
}

.button-cta-slider {
  color: white;
  margin: 2rem auto 0 auto !important;
}
.button-cta-slider:hover {
  color: var(--color-primary);
}

.theme1-background-dark {
  background-color: var(--color-secondary);
}

ul.listinline .container-width-sm {
  max-width: 600px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-secondary);
}

ul.list-unstyled {
  margin: 0;
}

.background-img {
  background-size: cover;
  background-position: center;
}

.list-inline-center {
  justify-content: center;
  align-items: center;
}

::selection {
  background: var(--color-primary);
  color: #fff;
}

figure {
  position: relative;
}

address, .list-inline, #slider-nav ul {
  margin: 0;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-secondary);
}

.modal {
  z-index: 99999;
}
.show {
  display: flex;
}

.hide {
  display: none !important;
}

@media only screen and (max-width: 1199.98px) {
  .mobile-centered {
    text-align: center !important;
    margin: 15px 0;
  }
  .mobile-centered * {
    text-align: center !important;
  }
}
.gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.3) 100%);
}

.top-row-margin {
  margin-top: 50px;
  gap: 25px;
}
.top-row-margin > div {
  flex: 1 0 31.3333%;
  width: auto;
}
@media only screen and (max-width: 1199.98px) {
  .top-row-margin > div {
    flex: 1 0 100%;
  }
}

.bottom-row-margin {
  margin-bottom: 2rem;
}

.preloader-container {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  filter: blur(2px);
}
.preloader-container .preloader {
  position: relative;
  top: 50%;
  color: #fff;
  font-size: 36px;
  margin-top: -18px;
}

.date-picker-wrapper {
  z-index: 99999 !important;
}

.copy-link {
  padding: 3px 5px;
}

a:hover, a:focus {
  text-decoration: none;
}

map {
  color: #313131;
}
map h3 {
  color: #313131 !important;
}

a.back {
  color: var(--color-primary);
}
a.back:hover {
  color: var(--color-secondary);
}

img {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.transition {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}

.transition-slow {
  -webkit-transition: all 1000ms ease 0ms;
  -moz-transition: all 1000ms ease 0ms;
  -ms-transition: all 1000ms ease 0ms;
  -o-transition: all 1000ms ease 0ms;
  transition: all 1000ms ease 0ms;
}

.rotate180 {
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}

.pageWrapper {
  z-index: 2;
  position: relative;
}

p:empty {
  margin: 0;
  padding: 0;
  height: 0;
  border: none;
  outline: none;
}

.alert-danger {
  position: absolute;
  bottom: 0;
}

form .alert-danger {
  position: relative;
  bottom: auto;
}

@-webkit-keyframes breath {
  0% {
    background-size: 110% auto;
  }
  50% {
    background-size: 140% auto;
  }
  100% {
    background-size: 110% auto;
  }
}
.banner-slider.is-background {
  position: fixed;
  width: 100%;
}

.blueimp-gallery {
  display: none;
}

.container-wide {
  padding-right: 0;
  padding-left: 0;
}
.container-wide .row {
  margin: 0 !important;
}
.container-wide .row .column {
  padding: 0 !important;
}

.page-with-banner #main {
  padding-top: 0;
}

button, button:focus {
  outline: none;
}

.page-baner + #main,
.slider + #main {
  margin-top: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-secondary);
}

#main {
  z-index: 100;
  width: 100%;
  position: relative;
}

.is-item #main {
  padding-top: 0;
}

img.lazy {
  background: url(../images/common/preloader.svg) center no-repeat;
}

.flash-messages {
  position: fixed;
  z-index: 999999;
  width: 100%;
  top: 0;
}

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.jarallax {
  height: inherit;
  min-height: inherit;
  background-size: cover;
  background: no-repeat 50% 50%;
}

.cms-img-responsive {
  width: 100%;
  height: auto;
}

.img-responsive {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

.html5-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.html5-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.back-area {
  background-color: var(--color-primary);
  padding: 15px 0;
}
.back-area a {
  color: #fff;
  font-size: 20px;
}

/**trimtext*/
.hiddenText {
  display: none;
}

.readMoreTextContainer {
  display: block;
  text-align: center;
  margin-top: 30px;
}
.readMoreTextContainer .readMoreText {
  text-transform: lowercase;
  display: inline-block;
  padding: 5px 17px;
  border: 3px solid #313131;
  color: #313131;
  font-weight: bold;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.readMoreTextContainer .readMoreText:hover {
  border: 3px solid var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

/***/
br[data-mce-bogus] {
  display: none;
}

/*------------------------
         LIGHTBOX
------------------------*/
.pop-up-overlay {
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}

.pop-up {
  display: none;
  position: absolute;
  z-index: 10000;
}

.pop-up__close {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10001;
  cursor: pointer;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}

.pop-up__close:after {
  content: "\f00d";
}

.text-injected {
  padding: 30px;
  background-color: #fff;
  color: #313131;
}
.text-injected h3 {
  margin-top: 0;
  color: var(--color-primary);
}

a .grayscale {
  filter: gray; /* IE6-9 */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
  -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
}

/* Disable grayscale on hover */
a:hover .grayscale {
  filter: none;
  -webkit-filter: grayscale(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

/**animation*/
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.mce-object-iframe {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  display: block;
}
.mce-object-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hotres-callendar iframe {
  height: 500px !important;
}

.pagination-border {
  text-align: center;
}

/**placeholder*/
.lds-facebook {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: var(--color-secondary);
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0s;
}

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}
.margin-0 {
  margin: 0 !important;
}

.padding-0 {
  padding: 0 !important;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

main ul.contact-data li:after {
  content: none;
}

.wow {
  visibility: hidden;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                   supported by Chrome, Edge, Opera and Firefox */
}

.dragged {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}

a:hover {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}

.post-details ul {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

figure {
  position: relative;
}
figure:hover img {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
figure img {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: relative;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #DAD3D3 !important;
}

figure.oval {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
ul li::marker {
  color: var(--color-primary);
}

@media only screen and (max-width: 1199.98px) {
  header#header .container {
    max-width: 100%;
    padding: 0;
  }
}
.notiBubble {
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  transition: all 200ms ease-in-out 0ms;
  color: white;
  padding: 20px;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  background: var(--color-secondary);
}

.notiBubble:after {
  content: "";
  position: absolute;
  bottom: -20px; /* Odległość trójkąta od dołu boxa */
  left: 30px;
  transform: translateX(0);
  border-width: 10px;
  border-style: solid;
  border-color: var(--color-secondary) transparent transparent transparent;
}

.popup-btn-close {
  margin: -12px;
}

#notification {
  --header-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--header-backdrop-blur);
  backdrop-filter: var(--header-backdrop-blur);
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  visibility: hidden;
  border: 1px solid white;
  -webkit-transition: all 800ms ease 0ms;
  -moz-transition: all 800ms ease 0ms;
  -ms-transition: all 800ms ease 0ms;
  -o-transition: all 800ms ease 0ms;
  transition: all 800ms ease 0ms;
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 20px;
  background-color: var(--header-color-bg);
  color: white;
  font-size: 1.2rem;
  padding: 18px;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 1199.98px) {
  #notification {
    bottom: 60px;
  }
}

#notification.active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
}

* p:last-child {
  margin-bottom: 0;
}

header#header .top-content a.buttonFavorite {
  text-transform: none;
  padding: 2px 1.2rem;
  min-width: auto;
  min-height: auto;
  margin: 5px 0;
  margin-right: 10px;
  font-size: 1rem;
}
header#header .top-content a.buttonFavorite img {
  width: 16px;
}

.floating-favorite-button {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  z-index: 99999;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  line-height: normal;
}
@media only screen and (max-width: 1199.98px) {
  .floating-favorite-button {
    bottom: 100px;
  }
}
.floating-favorite-button img {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: block;
}
.floating-favorite-button span.fav-label {
  display: none;
}
.floating-favorite-button span.fav-amount {
  font-size: 12px;
  position: absolute;
  background-color: red;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: white;
  width: 20px;
  height: 20px;
  padding: 4px;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inView .floating-favorite-button {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.add-to-favorite {
  display: none !important;
}

/* =====================================================
   GTranslate Float (float.js) - ROOT: .gtranslate_wrapper
   - bez JS
   - bez flag
   - tylko shortkody (data-gt-lang / .gt-lang-code)
   ===================================================== */
.gtranslate_wrapper {
  /* 👉 TU kontrolujesz pozycję całego switchera */
  position: relative !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 999999 !important;
}
@media (max-width: 768px) {
  .gtranslate_wrapper {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
  }
}
.gtranslate_wrapper {
  /* chowamy elementy google translate (combo + branding) */
}
.gtranslate_wrapper #google_translate_element2,
.gtranslate_wrapper .skiptranslate.goog-te-gadget,
.gtranslate_wrapper .goog-te-gadget,
.gtranslate_wrapper .goog-te-combo,
.gtranslate_wrapper .VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}
.gtranslate_wrapper {
  /* float.js generuje wrapper fixed – neutralizujemy, bo rootem jest .gtranslate_wrapper */
}
.gtranslate_wrapper #gt_float_wrapper {
  position: static !important;
  inset: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  z-index: auto !important;
}
.gtranslate_wrapper {
  /* =====================================================
     SWITCHER (bez białego tła)
     ===================================================== */
}
.gtranslate_wrapper .gt_float_switcher {
  /* usuwamy defaultowe tła/ramki */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  /* usuwamy flagi wszędzie */
}
.gtranslate_wrapper .gt_float_switcher img {
  width: 16px !important;
}
.gtranslate_wrapper .gt_float_switcher {
  /* ===============================
     AKTYWNY JĘZYK = przycisk
     =============================== */
}
.gtranslate_wrapper .gt_float_switcher .gt-selected {
  display: block !important;
}
.gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  height: 44px !important;
  padding: 0 26px !important;
  background: transparent !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgb(255, 255, 255) !important;
  cursor: pointer !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
.gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang .gt-lang-code {
  display: inline-block !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}
.gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang .gt_float_switcher-arrow {
  width: 0 !important;
  height: 0 !important;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 6px solid rgba(255, 255, 255, 0.75) !important;
  opacity: 0.9 !important;
}
@media (max-width: 768px) {
  .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang {
    width: 100% !important;
    padding: 12px 14px !important;
  }
  .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang .gt-lang-code {
    font-size: 14px !important;
    color: black !important;
  }
}
.gtranslate_wrapper .gt_float_switcher {
  /* ===============================
     DROPDOWN = lista języków
     - pokazujemy tylko shortkody z data-gt-lang
     =============================== */
}
.gtranslate_wrapper .gt_float_switcher .gt_options {
  display: none !important;
  /* dropdown pozycjonowany względem .gtranslate_wrapper */
  position: absolute !important;
  left: 0 !important;
  bottom: calc(100% + 10px) !important;
  z-index: 10 !important;
  min-width: 180px !important;
  padding: 8px !important;
  border-radius: 16px !important;
  background: rgba(15, 15, 15, 0.92) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35) !important;
  max-height: 60vh !important;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch !important;
}
@media (max-width: 768px) {
  .gtranslate_wrapper .gt_float_switcher .gt_options {
    left: 0 !important;
    right: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    border-radius: 18px !important;
  }
}
.gtranslate_wrapper .gt_float_switcher .gt_options a.nturl {
  display: flex !important;
  align-items: center !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  /* ukrywamy oryginalne nazwy (Polski / Deutsch...) */
  font-size: 0 !important;
  line-height: 0 !important;
  color: #fff !important;
  /* shortcode z data-gt-lang */
}
.gtranslate_wrapper .gt_float_switcher .gt_options a.nturl::after {
  content: attr(data-gt-lang) !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}
.gtranslate_wrapper .gt_float_switcher .gt_options a.nturl:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}
.gtranslate_wrapper .gt_float_switcher .gt_options a.nturl.gt-current {
  background: rgba(255, 255, 255, 0.14) !important;
}
.gtranslate_wrapper .gt_float_switcher {
  /* CSS-only otwieranie: desktop hover + mobile focus */
}
.gtranslate_wrapper .gt_float_switcher:hover .gt_options, .gtranslate_wrapper .gt_float_switcher:focus-within .gt_options {
  display: block !important;
}

/* =====================================================
   Wariant: dropdown ma się otwierać w DÓŁ (gdy wrapper jest na górze)
   Dodaj klasę: .gtranslate_wrapper.is-top
   ===================================================== */
.gtranslate_wrapper.is-top {
  top: 0 !important;
  bottom: auto !important;
  height: 44px;
}
.gtranslate_wrapper.is-top .gt_float_switcher .gt_options {
  top: 100% !important;
  bottom: auto !important;
}
@media (max-width: 768px) {
  .gtranslate_wrapper.is-top {
    top: 0 !important;
    left: 0 !important;
  }
}

.gt_float_switcher .gt-selected {
  background-color: transparent !important;
}

.no-slider .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang {
  border-color: var(--color-secondary) !important;
  color: var(--color-secondary) !important;
}
.no-slider .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang .gt-lang-code {
  color: var(--color-secondary) !important;
}
.no-slider header#header .top-content ul.list-inline li a, #slider-nav .no-slider header#header .top-content ul li a, .no-slider header#header .top-content #slider-nav ul li a, .no-slider #slider-nav header#header .top-content ul li a {
  color: var(--color-secondary) !important;
}
.no-slider header#header .top-content ul.list-inline li a svg path, #slider-nav .no-slider header#header .top-content ul li a svg path, .no-slider header#header .top-content #slider-nav ul li a svg path, .no-slider #slider-nav header#header .top-content ul li a svg path {
  fill: var(--color-secondary) !important;
}
.no-slider .top-content .social-media ul.list-inline li a, #slider-nav .no-slider .top-content .social-media ul li a, .no-slider .top-content .social-media #slider-nav ul li a, .no-slider #slider-nav .top-content .social-media ul li a {
  border-color: var(--color-secondary) !important;
}
.no-slider .reservation-button {
  background-color: var(--color-secondary) !important;
  color: white;
}
.no-slider header#header .navbar ul.navigation > li > a {
  color: var(--color-secondary) !important;
}
.no-slider header#header .navbar ul.navigation > li:hover > a {
  color: var(--color-primary) !important;
}
.no-slider header#header .logo-container.white-logo svg path path, .no-slider header#header .logo-container.white-logo svg path polygon, .no-slider header#header .logo-container.white-logo path, .no-slider header#header .logo-container.white-logo polygon,
.no-slider header#header .logo-container svg path,
.no-slider header#header .logo-container svg polygon, .no-slider header#header .logo-container img path, .no-slider header#header .logo-container img polygon {
  fill: currentColor !important;
}

/* Go-Top Button */
#go-top {
  align-items: center;
  justify-content: center;
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  margin-bottom: 10px;
  z-index: 150;
  cursor: pointer;
  background-size: contain;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
#go-top.fadeIn {
  display: none !important;
}
#go-top a {
  display: none !important;
}
@media only screen and (max-width: 991.98px) {
  #go-top a {
    display: inline-flex !important;
  }
  #go-top.fadeIn {
    display: flex;
  }
}

#top {
  max-width: 1800px;
  margin: 0 auto;
  font-family: var(--font-family), serif;
  font-weight: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 16px;
  position: relative;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  background-color: var(--top-color-bg);
}
@media only screen and (max-width: 1199.98px) {
  #top {
    padding: 0;
  }
}

header#header .top-content {
  padding: 0;
  font-size: 1rem;
  display: flex;
  justify-content: flex-end;
  background-color: transparent;
  align-items: center;
  font-family: var(--font-text), sans-serif;
}
@media only screen and (max-width: 1199.98px) {
  header#header .top-content {
    display: none;
  }
}
header#header .top-content ul {
  margin: 0;
  padding: 0;
}
header#header .top-content .top-section {
  display: flex;
  align-items: center;
}
header#header .top-content svg {
  width: auto;
  height: 1rem;
}
@media only screen and (max-width: 1199.98px) {
  header#header .top-content svg {
    margin: 0;
    height: 0.935rem;
  }
}
header#header .top-content svg path, header#header .top-content svg g, header#header .top-content svg polygon, header#header .top-content svg circle {
  fill: var(--top-color-link);
}
header#header .top-content a {
  font-weight: 100;
  font-family: var(--font-header), sans-serif;
  font-size: 1rem;
  min-width: 3rem;
  justify-content: center;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem 0.6rem;
}
header#header .top-content ul.list-inline li a, header#header .top-content #slider-nav ul li a, #slider-nav header#header .top-content ul li a {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  color: var(--top-color-link);
  font-size: 1rem;
}
header#header .top-content ul.list-inline li a svg, header#header .top-content #slider-nav ul li a svg, #slider-nav header#header .top-content ul li a svg {
  margin-right: 10px;
}
header#header .top-content ul.list-inline li a svg path, header#header .top-content #slider-nav ul li a svg path, #slider-nav header#header .top-content ul li a svg path {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
header#header .top-content ul.list-inline li a:hover, header#header .top-content #slider-nav ul li a:hover, #slider-nav header#header .top-content ul li a:hover {
  color: var(--top-color-link-hover);
}
header#header .top-content ul.list-inline li a:hover svg path, header#header .top-content #slider-nav ul li a:hover svg path, #slider-nav header#header .top-content ul li a:hover svg path {
  fill: var(--top-color-link-hover);
}

.lang {
  margin: 0;
  padding: 0;
}
.lang span {
  display: none;
}
.lang ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lang ul li {
  position: relative;
  margin-inline: 0.3rem;
}
.lang ul li a {
  font-size: 1rem;
  display: flex;
  text-transform: uppercase;
  color: var(--top-color-link);
}
.lang ul li.arrow {
  display: none;
}
.lang ul li.active a, .lang ul li:hover a {
  color: var(--top-color-link-hover);
}
@media only screen and (max-width: 1199.98px) {
  .lang ul li.active a, .lang ul li:hover a {
    color: var(--color-primary);
  }
}

.is-sticky {
  position: relative;
  z-index: 9999;
  left: 0;
  top: 0;
}

.reservation-button {
  border-radius: 0;
  font-weight: normal;
  align-items: center;
  backdrop-filter: blur(8px) !important;
  display: flex;
  letter-spacing: var(--nav-font-letter-spacing);
  background-color: transparent;
  color: white;
  border: 1px solid #fff;
  order: 0;
  margin: 0;
  font-family: var(--font-text, sans-serif);
  font-size: var(--nav-font-size);
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  height: 38px;
}
@media only screen and (max-width: 1199.98px) {
  .reservation-button {
    display: none;
    line-height: 3rem;
    justify-content: flex-start;
  }
}
.reservation-button svg {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  width: auto;
  height: 1rem;
  margin-left: 0 !important;
  margin-right: 0.5rem !important;
}
.reservation-button svg path {
  fill: var(--button-color);
}
.reservation-button:hover {
  background-color: var(--button-color-bg-hover);
  color: var(--button-color-hover) !important;
}
.reservation-button:hover svg path {
  fill: white;
}

header#header {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  -webkit-transition: all 800ms ease 0ms;
  -moz-transition: all 800ms ease 0ms;
  -ms-transition: all 800ms ease 0ms;
  -o-transition: all 800ms ease 0ms;
  transition: all 800ms ease 0ms;
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
header#header.blurred {
  --header-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--header-backdrop-blur);
  backdrop-filter: var(--header-backdrop-blur);
}
header#header.header-parallax {
  background: none;
}
header#header.gradient-header {
  top: 0;
}
header#header.gradient-header:after {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -ms-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  top: 0;
  display: block;
  pointer-events: none;
  background: transparent;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.5) 100%);
  height: 180px;
}
@media only screen and (max-width: 1199.98px) {
  header#header.gradient-header:after {
    display: none;
  }
}
header#header.gradient-dark:after {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 100%);
}
header#header.gradient-light:after {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 100%);
}
header#header .header-nav-container {
  gap: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  header#header .header-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 1199.98px) {
  header#header .container {
    padding: 0;
    max-width: 100%;
  }
}
header#header .header-wrapper {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  align-items: stretch;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199.98px) {
  header#header .header-wrapper {
    padding: 0;
    display: flex;
  }
}
header#header .header-wrapper .navbar-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header#header .header-wrapper .logo-mini-container svg {
  width: 4rem;
  height: 4rem;
}
@media only screen and (max-width: 1199.98px) {
  header#header .header-wrapper .mobile-top .logo-container {
    display: flex;
  }
}
header#header .mobile-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  header#header .mobile-nav {
    background-color: var(--color-primary);
    display: flex;
    z-index: 100;
    position: relative;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: row-reverse;
  }
  header#header .mobile-nav .logo-container {
    left: 16px;
    display: flex;
    padding: 0;
    position: relative;
  }
  header#header .mobile-nav .logo-container svg {
    height: auto;
    width: var(--header-logo-width-sm);
  }
}
@media only screen and (max-width: 1199.98px) {
  header#header .mobile-nav .phone-wrapper, header#header .mobile-nav .reservation-button-wrapper {
    display: none;
  }
}
.is-sticky #header {
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
}
.is-sticky #header .navbar ul.navigation.nav-left {
  padding-left: 0;
}
.is-sticky #header .header-wrapper {
  display: flex;
}
.is-sticky #header .header-wrapper .logo-mini-container {
  display: flex;
  position: relative;
}
@media only screen and (max-width: 1199.98px) {
  .is-sticky #header .header-wrapper .logo-mini-container {
    display: none;
  }
}

@media only screen and (max-width: 1199.98px) {
  .mobile-phone {
    margin-right: 3rem;
  }
  .mobile-top .logo-container svg {
    margin: 0;
  }
  .mobile-top-tel-lang {
    margin: 1rem 0;
    padding: 0 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-top-tel-lang .lang .list-inline li.active a, .mobile-top-tel-lang .lang #slider-nav ul li.active a, #slider-nav .mobile-top-tel-lang .lang ul li.active a {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 4rem;
    -webkit-border-radius: 30rem;
    -khtml-border-radius: 30rem;
    -moz-border-radius: 30rem;
    -ms-border-radius: 30rem;
    -o-border-radius: 30rem;
    border-radius: 30rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mobile-top-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .mobile-top-nav hr {
    margin: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .mobile-top-nav .navigation-top, .mobile-top-nav .navigation-top li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-top-nav .navigation-top li a {
    text-align: center;
    display: block;
    padding: 0.5rem;
  }
  .mobile-top .phone-link {
    background-color: var(--color-primary);
    -webkit-border-radius: 12rem;
    -khtml-border-radius: 12rem;
    -moz-border-radius: 12rem;
    -ms-border-radius: 12rem;
    -o-border-radius: 12rem;
    border-radius: 12rem;
    height: 3rem;
    min-width: 4rem;
    padding: 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile-top .phone-link svg {
    margin-right: 0.5rem;
  }
  .mobile-top .phone-link svg path {
    fill: white;
  }
  header#header nav.navbar {
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -ms-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
  }
  header#header .mobile-top-bar {
    position: relative;
  }
  header#header .mobile-top-bar .logo-container {
    position: relative;
  }
}
.mobile-panel {
  display: none;
}
@media only screen and (max-width: 1199.98px) {
  .mobile-panel {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
}

/*logo center*/
@media only screen and (max-width: 1199.98px) {
  header#header.logo-center .navbar ul.navigation {
    width: 100%;
  }
}
header#header.logo-center .logo-container {
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%, -38px);
  -webkit-transform: translate(-50%, -38px);
  -o-transform: translate(-50%, -38px);
  -ms-transform: translate(-50%, -38px);
  transform: translate(-50%, -38px);
}
@media only screen and (max-width: 1199.98px) {
  header#header.logo-center .logo-container {
    padding: 6px;
    background-color: var(--logo-color-bg);
    left: 0;
    position: absolute;
    top: 0;
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
header#header.logo-center .header-nav-container {
  display: flex;
  justify-content: center;
}
header#header.logo-center .header-nav-container .nav-left {
  flex: 1;
  margin-right: 8rem;
}
@media only screen and (max-width: 1199.98px) {
  header#header.logo-center .header-nav-container .nav-left {
    margin-right: 0;
  }
}
header#header.logo-center .header-nav-container .nav-right {
  flex: 1;
  margin-left: 8rem;
}
@media only screen and (max-width: 1199.98px) {
  header#header.logo-center .header-nav-container .nav-right {
    margin-left: 0;
  }
}

.is-sticky header#header.logo-center .header-nav-container .nav-left {
  margin-right: 5rem;
}
@media only screen and (max-width: 1199.98px) {
  .is-sticky header#header.logo-center .header-nav-container .nav-left {
    margin-right: 0;
  }
}
.is-sticky header#header.logo-center .header-nav-container .nav-right {
  margin-left: 5rem;
}
@media only screen and (max-width: 1199.98px) {
  .is-sticky header#header.logo-center .header-nav-container .nav-right {
    margin-left: 0;
  }
}
.is-sticky header#header.logo-center .logo-container {
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.is-sticky header#header.logo-center .logo-container svg {
  width: 6rem;
}
@media only screen and (max-width: 1199.98px) {
  .is-sticky header#header.logo-center .logo-container {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .is-sticky header#header.logo-center .logo-container svg {
    width: var(--header-logo-width-sm);
  }
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}
@media only screen and (max-width: 1199.98px) {
  .header-icons {
    margin: 0;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 1199.98px) {
  .mobile-panel {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 1199.98px) {
  .social-media {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.no-slider header#header {
  background-color: var(--header-color-bg) !important;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  top: 0;
  position: absolute;
  -webkit-transition: all 800ms ease 0ms;
  -moz-transition: all 800ms ease 0ms;
  -ms-transition: all 800ms ease 0ms;
  -o-transition: all 800ms ease 0ms;
  transition: all 800ms ease 0ms;
}
@media only screen and (max-width: 1199.98px) {
  .no-slider header#header {
    position: relative;
  }
}
.no-slider main {
  top: 170px;
}
.no-slider #top {
  background-color: var(--top-color-bg) !important;
}
@media only screen and (max-width: 1199.98px) {
  .no-slider .hamburger-nav > .text {
    color: var(--color-secondary);
  }
  .no-slider main {
    top: 32px;
  }
  .no-slider .hamburger-nav .hamburger-nav-wrapper span {
    background-color: var(--color-secondary);
  }
}

@media only screen and (max-width: 1199.98px) {
  body.navigation-opened #header,
  body.navigation-opened.inView #header {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    position: fixed;
  }
}

body.inView header#header.logo-center .logo-container {
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
body.inView header#header {
  background-color: var(--header-color-bg);
  --header-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--header-backdrop-blur);
  backdrop-filter: var(--header-backdrop-blur);
}
@media only screen and (max-width: 1199.98px) {
  body.inView header#header {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
body.inView header#header.blurred {
  --header-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--header-backdrop-blur);
  backdrop-filter: var(--header-backdrop-blur);
}
body.inView header#header .navbar {
  justify-content: flex-end;
}
@media only screen and (max-width: 1199.98px) {
  body.inView header#header .navbar {
    justify-content: flex-start;
  }
}
body.inView header#header .navbar ul.navigation {
  top: 0;
  flex: 1;
}
body.inView header#header ul.navigation.left-nav {
  margin-right: 0;
  justify-content: flex-end;
}
body.inView header#header ul.navigation.right-nav {
  margin-left: 0;
  margin-right: 160px;
  justify-content: flex-end;
}

.header-wrapper-container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 9999;
  padding: 1rem;
}
@media only screen and (max-width: 1199.98px) {
  .header-wrapper-container {
    padding: 0;
  }
}

.header-strip {
  position: relative;
  z-index: 999;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-strip > div {
  display: flex;
  align-items: center;
}

header#header .logo-container {
  padding: 10px 0;
  background-color: var(--logo-color-bg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -ms-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
  z-index: 999;
  position: absolute;
  left: 0;
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
header#header .logo-container.white-logo svg #tekst path, header#header .logo-container.white-logo svg #tekst polygon {
  fill: white !important;
}
@media only screen and (max-width: 1199.98px) {
  header#header .logo-container {
    position: absolute;
    padding: 10px;
    margin-top: 62px;
  }
}
header#header .logo-container ul, header#header .logo-container ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
header#header .logo-container ul {
  text-align: center;
  width: 100%;
  margin-top: 0.5rem;
}
header#header .logo-container ul a {
  display: block;
  font-size: 15px;
  opacity: 0.5;
  position: relative;
}
header#header .logo-container ul a:after, header#header .logo-container ul a:before {
  top: 50%;
  content: "";
  width: 1rem;
  height: 1px;
  position: absolute;
  background-color: white;
}
header#header .logo-container ul a:before {
  right: 0;
}
header#header .logo-container ul a:after {
  left: 0;
}
header#header .logo-container ul a:hover {
  color: white;
  opacity: 1;
}
header#header .logo-container svg, header#header .logo-container img {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -ms-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
  height: auto;
  position: relative;
  width: var(--header-logo-width-xxl);
}
@media only screen and (max-width: 1199.98px) {
  header#header .logo-container svg, header#header .logo-container img {
    width: var(--header-logo-width-lg);
  }
}
@media only screen and (max-width: 767.98px) {
  header#header .logo-container svg, header#header .logo-container img {
    width: var(--header-logo-width-sm);
  }
}
@media only screen and (max-width: 1199.98px) {
  header#header .logo-container {
    justify-content: flex-start;
  }
}
header#header .logo-container a {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  header#header .logo-container img, header#header .logo-container svg {
    height: auto;
  }
}

nav#nav {
  -moz-transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  overflow: auto;
  --outer-margin: 20px;
  z-index: 99;
  display: flex;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  -o-transition: all 500ms ease 0ms;
  transition: all 500ms ease 0ms;
  position: fixed;
  width: calc(100vw - var(--outer-margin) * 2);
  height: calc(100vh - var(--outer-margin) * 2);
  background: rgba(0, 0, 0, 0.25);
  --header-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--header-backdrop-blur);
  backdrop-filter: var(--header-backdrop-blur);
  padding: 6rem 2rem;
  top: var(--outer-margin);
  bottom: var(--outer-margin);
  left: var(--outer-margin);
  right: var(--outer-margin);
}
@media only screen and (max-width: 1199.98px) {
  nav#nav {
    --outer-margin: 0;
    padding: 6rem 1rem 1rem 1rem;
    height: 100dvh;
  }
}
nav#nav ul {
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1199.98px) {
  nav#nav ul {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767.98px) {
  nav#nav ul {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 33%);
  }
}
nav#nav ul li {
  overflow: hidden;
  position: relative;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  display: flex;
  margin: 0;
}
nav#nav ul li img {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  z-index: 0;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
nav#nav ul li a {
  line-height: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--nav-color);
  font-family: var(--font-header), sans-serif;
  text-transform: none;
  padding: 10px 16px;
  font-size: var(--nav-font-size);
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
nav#nav ul li a span {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
nav#nav ul li:hover img {
  transform: scale(1.1);
}
nav#nav ul li:hover a {
  background-color: rgba(0, 0, 0, 0.25);
}

.navigation-opened header#header.gradient-header:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.navigation-opened nav#nav {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.no-slider header#header.header-parallax {
  background-color: var(--header-color-bg);
}
.no-slider header#header.gradient-header:after {
  display: none;
}

.inView header#header .top-content ul.list-inline li a, #slider-nav .inView header#header .top-content ul li a, .inView header#header .top-content #slider-nav ul li a, .inView #slider-nav header#header .top-content ul li a,
.inView header#header .navbar ul.navigation > li > a, .scrolled header#header .top-content ul.list-inline li a, #slider-nav .scrolled header#header .top-content ul li a, .scrolled header#header .top-content #slider-nav ul li a, .scrolled #slider-nav header#header .top-content ul li a,
.scrolled header#header .navbar ul.navigation > li > a {
  color: var(--color-secondary);
}
.inView header#header .logo-container svg, .inView header#header .logo-container img, .scrolled header#header .logo-container svg, .scrolled header#header .logo-container img {
  width: 9rem;
}
.inView header#header .logo-container svg #tekst, .scrolled header#header .logo-container svg #tekst {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  display: none;
  visibility: hidden;
}
.scrolled header#header {
  background-color: white;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -ms-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
  -moz-transform: translateY(-200px);
  -webkit-transform: translateY(-200px);
  -o-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-200px);
}

.inView .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang .gt-lang-code {
  color: black !important;
}
.inView .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang {
  background-color: white !important;
  border-color: black !important;
  color: black;
}
@media only screen and (max-width: 1199.98px) {
  .inView .gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang {
    background-color: transparent !important;
    border-color: black !important;
    color: black !important;
  }
}
.inView .reservation-button {
  background-color: var(--color-primary);
}
.inView .reservation-button:hover {
  background-color: var(--color-secondary);
}
.inView header#header {
  background-color: white;
  -webkit-transition: all 800ms ease 0ms;
  -moz-transition: all 800ms ease 0ms;
  -ms-transition: all 800ms ease 0ms;
  -o-transition: all 800ms ease 0ms;
  transition: all 800ms ease 0ms;
  position: fixed;
  top: 0;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-transform: translateY(-66px);
  -webkit-transform: translateY(-66px);
  -o-transform: translateY(-66px);
  -ms-transform: translateY(-66px);
  transform: translateY(-66px);
}
.inView header#header .logo-container {
  -moz-transform: translateY(36px);
  -webkit-transform: translateY(36px);
  -o-transform: translateY(36px);
  -ms-transform: translateY(36px);
  transform: translateY(36px);
}
.inView .hamburger-nav .hamburger-nav-wrapper span {
  background-color: var(--color-primary);
}
.inView .hamburger-nav span {
  color: var(--color-primary);
}
@media only screen and (max-width: 1199.98px) {
  .inView header#header .logo-container {
    margin: 0;
  }
}

section.section ul.submenu, ul.submenu {
  background-color: white;
  margin: 0;
  padding: 0.5rem;
  border: 1px solid #DEDEDE;
  list-style: none;
}
section.section ul.submenu li, ul.submenu li {
  list-style: none;
  margin: 0;
}
section.section ul.submenu li:before, ul.submenu li:before {
  content: none;
}
section.section ul.submenu li a, ul.submenu li a {
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  display: block;
}
section.section ul.submenu li.active a, section.section ul.submenu li:hover a, ul.submenu li.active a, ul.submenu li:hover a {
  background-color: var(--color-primary);
  color: white;
}

header#header .navbar {
  width: 100%;
  border: none;
  min-height: auto;
  vertical-align: middle;
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  padding: 0;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar {
    display: flex;
    top: 0;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    z-index: 1;
    left: 0;
    -webkit-transition: all 200ms ease 0ms;
    -moz-transition: all 200ms ease 0ms;
    -ms-transition: all 200ms ease 0ms;
    -o-transition: all 200ms ease 0ms;
    transition: all 200ms ease 0ms;
    text-align: left;
    position: relative;
    flex-direction: column;
  }
  header#header .navbar .navigation {
    background-color: var(--nav-mobile-bg);
    position: fixed;
    width: 100%;
    height: 100dvh;
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
header#header .navbar svg.close-svg-btn {
  width: 1.1rem;
  height: 1.1rem;
}
header#header .navbar svg.close-svg-btn path {
  fill: white;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar svg.close-svg-btn {
    z-index: 100;
    position: relative;
    right: 0;
    top: 0;
    margin: 1.5rem 1rem 0 0;
  }
}
header#header .navbar ul.navigation {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  gap: 20px;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation {
    margin: 0 auto;
    flex: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
  }
}
header#header .navbar ul.navigation a {
  cursor: pointer;
  text-decoration: none;
}
header#header .navbar ul.navigation {
  /**pierwszy poziom*/
}
header#header .navbar ul.navigation > li {
  height: 100%;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: relative;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0.5rem;
    margin: 0.3rem 0;
    height: auto;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
header#header .navbar ul.navigation > li:before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  top: 0;
  position: absolute;
  content: "";
  height: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
header#header .navbar ul.navigation > li {
  /**li highlight*/
}
header#header .navbar ul.navigation > li.active:before, header#header .navbar ul.navigation > li:hover:before, header#header .navbar ul.navigation > li:hover:not(.highlight):before, header#header .navbar ul.navigation > li.active:not(.highlight):before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  height: 100%;
}
header#header .navbar ul.navigation > li.active > a, header#header .navbar ul.navigation > li:hover > a, header#header .navbar ul.navigation > li:hover:not(.highlight) > a, header#header .navbar ul.navigation > li.active:not(.highlight) > a {
  color: var(--color-primary-lighten);
}
header#header .navbar ul.navigation > li.active > a span:after, header#header .navbar ul.navigation > li:hover > a span:after, header#header .navbar ul.navigation > li:hover:not(.highlight) > a span:after, header#header .navbar ul.navigation > li.active:not(.highlight) > a span:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  width: 100%;
}
header#header .navbar ul.navigation > li.active > a svg path, header#header .navbar ul.navigation > li:hover > a svg path, header#header .navbar ul.navigation > li:hover:not(.highlight) > a svg path, header#header .navbar ul.navigation > li.active:not(.highlight) > a svg path {
  fill: var(--nav-svg-fill-path-hover);
}
header#header .navbar ul.navigation > li.highlight {
  color: var(--color-secondary);
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li.highlight {
    flex-direction: row;
    background: none;
  }
}
header#header .navbar ul.navigation > li.highlight > a {
  background-color: var(--color-secondary);
  color: #fff;
  position: relative;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li.highlight > a {
    color: white;
    display: flex;
  }
}
header#header .navbar ul.navigation > li {
  /** pierwszy poziom a*/
}
header#header .navbar ul.navigation > li > a {
  font-weight: 100;
  gap: 0.5rem;
  line-height: 20px;
  font-family: var(--font-text), sans-serif;
  text-transform: uppercase;
  height: 100%;
  padding: 0;
  font-size: var(--nav-font-size);
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  background-position: center;
  color: white;
}
@media only screen and (max-width: 1399.98px) {
  header#header .navbar ul.navigation > li > a {
    padding: 10px 12px;
    font-size: 0.812rem;
  }
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li > a {
    height: auto;
    font-size: var(--nav-mobile-font-size);
    color: var(--nav-mobile-color);
    display: block;
    text-align: left;
    width: auto;
    font-weight: normal;
  }
}
header#header .navbar ul.navigation > li > a svg {
  height: 0.8rem;
}
header#header .navbar ul.navigation > li > a span {
  position: relative;
  z-index: 10;
  letter-spacing: var(--nav-font-letter-spacing);
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
header#header .navbar ul.navigation > li > a span:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 600ms ease 0ms;
  -moz-transition: all 600ms ease 0ms;
  -ms-transition: all 600ms ease 0ms;
  -o-transition: all 600ms ease 0ms;
  transition: all 600ms ease 0ms;
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: white;
}
header#header .navbar ul.navigation > li.parent {
  flex-direction: column;
  position: relative;
  align-items: center;
  background-repeat: no-repeat;
  background-position: right center;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li.parent {
    margin-right: 0;
    background: none;
    align-items: flex-start;
  }
}
header#header .navbar ul.navigation > li.parent > a:before {
  -moz-transform: translate(0, 17px);
  -webkit-transform: translate(0, 17px);
  -o-transform: translate(0, 17px);
  -ms-transform: translate(0, 17px);
  transform: translate(0, 17px);
  content: "";
  position: absolute;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 17 10" fill="none"><path d="M2.4552 0.0599976L8.5752 6.16666L14.6952 0.0599976L16.5752 1.94L8.5752 9.94L0.575195 1.94L2.4552 0.0599976Z" fill="white"/></svg>');
  width: 10px;
  height: 10px;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li.parent > a:before {
    -moz-transform: translate(-15px, 17px);
    -webkit-transform: translate(-15px, 17px);
    -o-transform: translate(-15px, 17px);
    -ms-transform: translate(-15px, 17px);
    transform: translate(-15px, 17px);
    left: 0;
    top: 0;
  }
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li.parent.opened svg {
    -webkit-transform: rotate(90deg);
    -khtml-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
    zoom: 1;
  }
}
header#header .navbar ul.navigation > li.parent svg {
  -moz-transform: translate(-20px, 2px);
  -webkit-transform: translate(-20px, 2px);
  -o-transform: translate(-20px, 2px);
  -ms-transform: translate(-20px, 2px);
  transform: translate(-20px, 2px);
  display: none;
  height: auto;
  width: 16px;
  right: 0;
}
header#header .navbar ul.navigation > li.parent svg path, header#header .navbar ul.navigation > li.parent svg polygon {
  fill: white;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li.parent svg {
    height: auto;
    display: flex;
    z-index: 10;
    top: 1.7rem;
    right: 1rem;
    bottom: auto;
    -webkit-transform: rotate(0deg);
    -khtml-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
    zoom: 1;
  }
}
header#header .navbar ul.navigation > li.parent.opened > ul {
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li.parent.opened > ul {
    display: flex;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li {
    padding: 0;
  }
}
header#header .navbar ul.navigation > li:hover > ul {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li:hover > ul {
    display: none;
  }
}
header#header .navbar ul.navigation > li {
  /**submenu*/
}
header#header .navbar ul.navigation > li ul {
  display: flex;
  flex-direction: column;
  height: auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  visibility: hidden;
  background-color: var(--header-color-bg);
  top: 110%;
  margin: 0;
  padding: 19px 0;
  list-style: none;
  position: absolute;
  z-index: 999;
  min-width: 14rem;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li ul {
    display: none;
    border: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    top: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: auto;
    box-shadow: none;
  }
}
header#header .navbar ul.navigation > li ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li ul li {
    width: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 20px;
  }
}
header#header .navbar ul.navigation > li ul li a {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  color: var(--color-primary);
  padding: 0.6rem 1.5rem;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li ul li a {
    color: var(--color-primary-lightest);
    position: relative;
    justify-content: flex-start;
    padding: 0.6rem;
    white-space: normal;
    font-size: 1rem;
  }
}
header#header .navbar ul.navigation > li ul li:hover > a {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: var(--nav-color-hover);
  color: var(--color-primary);
  text-align: center;
  width: 100%;
  display: block;
}
header#header .navbar ul.navigation > li ul li li a {
  text-transform: none;
}
header#header .navbar ul.navigation > li:not(:last-child):not(.highlight):after {
  content: "";
  position: absolute;
  right: -1px;
  width: 1px;
  height: 1rem;
  top: 50%;
  margin-top: -0.5rem;
  background: var(--nav-color);
  display: none;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li:not(:last-child):not(.highlight):after {
    display: none;
  }
}
header#header .navbar ul.navigation.nav-left, header#header .navbar ul.navigation.nav-right {
  flex: 1;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation.nav-left, header#header .navbar ul.navigation.nav-right {
    flex: auto;
  }
}
header#header .navbar ul.navigation.nav-left {
  padding-right: 0;
  justify-content: flex-end;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation.nav-left {
    justify-content: flex-start;
    padding-right: 0;
    margin: 0;
  }
}
header#header .navbar ul.navigation.nav-right {
  padding-left: 0;
  justify-content: flex-start;
  margin-left: 100px;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation.nav-right {
    justify-content: flex-start;
    padding-left: 0;
    margin: 0;
  }
}

header#header .navbar ul.navigation li:hover > ul {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
  top: 100%;
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation li:hover > ul {
    top: auto;
  }
}

header#header .navbar ul.navigation > li.parent > svg {
  display: block;
}

header#header .navbar ul.navigation > li ul svg {
  top: 50%;
  left: 6px;
  transform: translateY(-50%) rotate(-90deg);
}

@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li:hover > ul,
  header#header .navbar ul.navigation > li ul {
    left: 0;
    -moz-transform: translate(0, 0px);
    -webkit-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li ul li.parent svg {
    left: auto;
    right: 1rem;
    top: 1.2rem;
  }
}

@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li.parent li ul {
    display: none;
  }
}

@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation > li.parent li.opened > ul {
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
  }
}

header#header .navbar ul.navigation li li > ul {
  top: -6px;
  left: 150%;
  -moz-transform: translate(-50%, -10px);
  -webkit-transform: translate(-50%, -10px);
  -o-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}
@media only screen and (max-width: 1199.98px) {
  header#header .navbar ul.navigation li li > ul {
    top: 0;
    left: 0;
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

header#header .navbar ul.navigation > li li ul::before {
  left: -9px;
  top: 34px;
  -webkit-transform: rotate(-90deg);
  -khtml-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}

.nav-float-left-wrapper {
  z-index: 98;
  position: fixed;
  bottom: 1rem;
  left: 2rem;
}
.nav-float-left-wrapper svg.close {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding: 0.2rem;
  background-color: white;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  display: none;
  width: 1rem;
  height: auto;
  position: absolute;
  top: 2rem;
  right: 0;
}
.nav-float-left-wrapper svg.close path {
  fill: black;
}
.nav-float-left-wrapper > a {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  background-color: white;
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
}
.nav-float-left-wrapper > a svg {
  width: 2rem;
  height: auto;
}
.nav-float-left-wrapper > a svg path {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  fill: var(--color-primary);
}
.nav-float-left-wrapper > a:hover {
  border: 2px solid var(--color-primary);
}
.nav-float-left-wrapper > a:hover svg#Capa_1 {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.nav-float-left-wrapper > a.active {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  background-color: var(--color-primary);
}
.nav-float-left-wrapper > a.active svg.icon path {
  fill: white;
}
.nav-float-left-wrapper > a.active svg.close {
  top: 0rem;
  display: block;
}
.nav-float-left-wrapper > a.active svg.close path {
  fill: black;
}
.nav-float-left-wrapper .nav-float-left {
  visibility: hidden;
  -webkit-transition: all 1s ease 0ms;
  -moz-transition: all 1s ease 0ms;
  -ms-transition: all 1s ease 0ms;
  -o-transition: all 1s ease 0ms;
  transition: all 1s ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  bottom: 2rem;
  left: 5rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1199.98px) {
  .nav-float-left-wrapper .nav-float-left {
    left: 0;
  }
}
.nav-float-left-wrapper .nav-float-left li {
  margin: 0.3rem 0;
}
.nav-float-left-wrapper .nav-float-left li a {
  display: block;
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}
.nav-float-left-wrapper .nav-float-left li a img {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}
.nav-float-left-wrapper .nav-float-left li a span {
  display: none;
}
.nav-float-left-wrapper .nav-float-left.active {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  bottom: 4rem;
}

.nav-float-right {
  z-index: 98;
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
}
.nav-float-right li:nth-child(1) a {
  animation-duration: 3s;
}
.nav-float-right li:nth-child(2) a {
  animation-duration: 4s;
}
.nav-float-right li:nth-child(3) a {
  animation-duration: 5s;
}
.nav-float-right li {
  list-style: none;
  padding: 0;
  margin: 1rem 0.5rem;
}
.nav-float-right li a {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background-color: black;
  box-shadow: 0 0px 0px 2px rgba(var(--color-primary), 0.65);
  animation: pulseBorder 6s infinite;
}
.nav-float-right li a svg {
  width: 1rem;
  height: auto;
}
.nav-float-right li a svg path {
  fill: white;
}
.nav-float-right li a svg + span {
  display: none;
}
.nav-float-right li a:hover {
  background-color: var(--color-secondary);
}
.nav-float-right li a:hover svg {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/*hamburger*/
.hamburger-nav {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: none;
  padding: 1rem;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
@media only screen and (max-width: 1199.98px) {
  .hamburger-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
  }
}
.hamburger-nav {
  /**napis menu przy hamburgerze*/
}
.hamburger-nav > .text {
  color: white;
  font-size: 0.813rem;
  line-height: 0.813rem;
  margin-top: 0.5rem;
}
.hamburger-nav svg {
  width: 1.5rem;
  height: auto;
}
.hamburger-nav svg path {
  fill: var(--color-hamburger);
}
.hamburger-nav .hamburger-nav-wrapper {
  position: relative;
  height: 2.4rem;
  width: 2.4rem;
}
.hamburger-nav .hamburger-nav-wrapper span {
  background: white;
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 100ms ease 0ms;
  -moz-transition: all 100ms ease 0ms;
  -ms-transition: all 100ms ease 0ms;
  -o-transition: all 100ms ease 0ms;
  transition: all 100ms ease 0ms;
  cursor: pointer;
}
.hamburger-nav .hamburger-nav-wrapper span:nth-of-type(2) {
  top: 33%;
}
.hamburger-nav .hamburger-nav-wrapper span:nth-of-type(3) {
  top: 66%;
  width: 80%;
}

.navbar-cover {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}

header#header .button-cta {
  display: none;
}
@media only screen and (max-width: 1199.98px) {
  header#header .button-cta {
    display: flex;
    width: calc(100% - 2rem);
    margin: 1rem;
  }
}

@media only screen and (max-width: 1199.98px) {
  .header-wrapper-container .container-fluid {
    margin: 0;
    padding: 0;
  }
}

.navigation-opened {
  overflow: hidden;
}
@media only screen and (max-width: 1199.98px) {
  .navigation-opened header#header .navbar ul.navigation {
    background: var(--nav-mobile-bg);
    top: -16px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .navigation-opened header#header .navbar ul.navigation li {
    text-align: center;
  }
  .navigation-opened header#header .navbar ul.navigation li a {
    width: 100%;
    display: block;
    text-align: center;
  }
  .navigation-opened header#header .navbar ul.navigation li a span {
    text-align: center;
  }
  .navigation-opened header#header .navbar ul.navigation > li.parent svg {
    width: 0.65rem;
    height: auto;
  }
  .navigation-opened header#header .navbar ul.navigation > li.parent svg path, .navigation-opened header#header .navbar ul.navigation > li.parent svg g {
    fill: var(--nav-mobile-color);
  }
  .navigation-opened header#header .navbar ul.navigation > li.opened .ico-plus {
    display: none;
  }
  .navigation-opened header#header .navbar ul.navigation > li.opened > ul li.hover a,
  .navigation-opened header#header .navbar ul.navigation > li.opened > ul li.active a {
    color: white;
  }
  .navigation-opened header#header .hamburger-nav .text {
    color: var(--color-hamburger-active);
  }
  .navigation-opened header#header .hamburger-nav .hamburger-nav-wrapper .top {
    top: 33%;
    transform: translateY(0) translateX(0) rotate(45deg);
    background: var(--color-hamburger-active);
  }
  .navigation-opened header#header .hamburger-nav .hamburger-nav-wrapper .middle {
    opacity: 0;
    background: var(--color-secondary);
  }
  .navigation-opened header#header .hamburger-nav .hamburger-nav-wrapper .bottom {
    top: 33%;
    transform: translateY(0) translateX(0) rotate(-45deg);
    background: var(--color-hamburger-active);
    width: 100%;
  }
  .navigation-opened header#header .navbar {
    top: 0;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1199.98px) {
  .navigation-opened .header-wrapper-container {
    height: 100dvh;
    background-color: var(--header-bg);
  }
}
.navigation-opened .mobile-nav-footer {
  display: none;
}
@media only screen and (max-width: 1199.98px) {
  .navigation-opened .mobile-nav-footer {
    padding: 10px;
    background-color: var(--color-primary);
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .navigation-opened .mobile-nav-footer .social-media {
    margin: 0;
  }
  .navigation-opened .mobile-nav-footer .social-media .list-inline, .navigation-opened .mobile-nav-footer .social-media #slider-nav ul, #slider-nav .navigation-opened .mobile-nav-footer .social-media ul {
    gap: 10px;
  }
  .navigation-opened .mobile-nav-footer .social-media svg {
    width: 1.5rem;
    height: auto;
  }
  .navigation-opened .mobile-nav-footer .social-media svg path {
    fill: white;
  }
}

ul.buttons {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  ul.buttons {
    flex-direction: column;
  }
}
ul.buttons li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.buttons li:after, ul.buttons li:before {
  content: none !important;
}
ul.buttons li a {
  margin: 0.2rem 0.5rem;
}
ul.buttons li.active a {
  margin: 0.2rem 0.5rem;
}

header#header .navbar ul.navigation > li.highlight svg path, header#header .navbar ul.navigation > li.highlight svg polygon {
  fill: var(--color-primary);
}
header#header .navbar ul.navigation > li.highlight:hover a span {
  color: white;
}
header#header .navbar ul.navigation > li.highlight:hover svg path, header#header .navbar ul.navigation > li.highlight:hover svg polygon {
  fill: white;
}

.mobile-nav-footer {
  display: none;
}

#slider-nav {
  margin-top: 3rem;
  display: none;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  #slider-nav {
    display: flex;
  }
}
#slider-nav ul {
  flex-direction: column;
}
#slider-nav ul li a {
  justify-content: center;
  font-size: 0.875rem;
  color: white;
  display: flex;
  margin: 0.5rem;
  align-items: center;
}
#slider-nav ul li a svg {
  margin-right: 0.5rem;
}
#slider-nav ul li.highlight a {
  background-color: var(--color-primary);
  -moz-border-radius: 2rem;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  padding: 0.1rem 1rem;
}
#slider-nav ul li.highlight a:hover {
  background-color: var(--color-secondary);
}

.slider {
  position: relative;
  width: 100%;
}
.slider .blend {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}
.slider #scratch {
  margin-top: -16px;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.slider #scratch path {
  fill: var(--color-bg);
}
.slider #home-scroll-down {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
  font-family: var(--font-text);
  color: #fff;
  text-align: center;
  cursor: pointer;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 999;
}
.slider #home-scroll-down:hover a {
  color: white;
}
.slider #home-scroll-down a {
  display: block;
  color: #fff;
}
.slider #home-scroll-down svg {
  height: 2rem;
}
.slider #home-scroll-down svg #wheel {
  fill: white;
  -webkit-animation: scroll 1s infinite;
  -moz-animation: scroll 1s infinite;
  -o-animation: scroll 1s infinite;
  animation: scroll 1s infinite;
}
.slider .mesh {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/common/grid-mesh.png") repeat;
}
.slider {
  /**custom slider navigation*/
}
.slider .slider-nav-container {
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: 999;
}
.slider .slider-nav-container .owl-next, .slider .slider-nav-container .owl-prev {
  -webkit-border-radius: 2rem;
  -khtml-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  border-radius: 2rem;
  position: absolute;
  padding: 10px;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  border: 1px solid white;
}
.slider .slider-nav-container .owl-next svg path, .slider .slider-nav-container .owl-prev svg path {
  fill: white;
}
.slider .slider-nav-container .owl-prev {
  left: 0;
}
.slider .slider-nav-container .owl-next {
  right: 0;
}
.slider {
  /**widget*/
}
.slider .nav-container {
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 50%;
}
.slider .nav-container .owl-nav {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.slider .nav-container .owl-nav .owl-prev {
  margin-left: -50px;
  background: none;
}
.slider .nav-container .owl-nav .owl-next {
  background: none;
  margin-right: -50px;
}
.slider .owl-nav {
  -moz-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -o-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 120;
  position: absolute;
  width: 100%;
  text-align: center;
  top: calc(50% - 54px);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
@media only screen and (max-width: 991.98px) {
  .slider .owl-nav {
    display: none;
  }
}
.slider .owl-nav .owl-prev, .slider .owl-nav .owl-next {
  position: absolute;
  padding: 7px;
  cursor: pointer;
  background-color: var(--color-primary);
  color: #fff;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.slider .owl-nav .owl-prev {
  text-align: right;
  left: 0;
  padding-left: 20px;
}
.slider .owl-nav .owl-prev:hover {
  padding-left: 30px;
  background-color: #313131;
}
.slider .owl-nav .owl-next {
  right: 0;
  padding-right: 20px;
}
.slider .owl-nav .owl-next:hover {
  padding-right: 30px;
  background-color: #313131;
}
.slider .owl-nav.disabled {
  visibility: hidden;
}
.slider .owl-dots {
  padding: 15px 0 10px 0;
  width: 100%;
  text-align: center;
}
.slider .owl-dots .owl-dot {
  display: inline-block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #DCDCDC;
  width: 12px;
  height: 12px;
  margin: 4px;
}
.slider .owl-dots .owl-dot.active {
  background-color: #B9B9B9;
}
.slider:hover .owl-nav {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.slider:hover .owl-nav .owl-prev:hover, .slider:hover .owl-nav .owl-next:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  background-color: transparent;
}
.slider:hover .owl-nav .owl-prev:hover svg polyline, .slider:hover .owl-nav .owl-next:hover svg polyline {
  fill: var(--color-secondary);
}

.banner-slider {
  position: relative;
  width: auto;
  background-color: #000;
}
.banner-slider .owl-stage {
  mix-blend-mode: darken;
}
.banner-slider .slide {
  display: flex;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: relative;
  height: 100dvh;
  width: 100%;
  background-size: cover;
  background-position: top center;
}
@media only screen and (max-width: 767.98px) {
  .banner-slider .slide {
    /* height: 0 !important;
     padding-bottom: $mobile-slider-ratio;*/
    height: 100dvh;
    position: relative;
  }
}
.banner-slider .slide video {
  object-fit: cover;
  width: 100%;
  height: 100dvh;
  position: absolute;
  left: 0;
  top: 0;
}
.banner-slider .slide .slider-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}
.banner-slider .slide {
  /**akcje */
}
.banner-slider .slide .slider-actions {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1199.98px) {
  .banner-slider .slider-description-container {
    align-items: center;
  }
}
.banner-slider .slider-description-container:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.banner-slider .slider-description-container .slider-description {
  position: relative;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  color: white;
}
.banner-slider .slider-description-container h1, .banner-slider .slider-description-container h2, .banner-slider .slider-description-container h3, .banner-slider .slider-description-container h4 {
  mix-blend-mode: exclusion;
  color: white;
  font-family: var(--font-header), sans-serif;
}
.banner-slider .slider-description-container h1 {
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 4rem;
  font-weight: 400;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-slider .slider-description-container h1 {
    font-size: 1.8rem;
  }
}
.banner-slider .slider-description-container h2 {
  mix-blend-mode: exclusion;
  font-weight: 100;
  font-size: 3.2rem;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container h2 {
    font-weight: 500;
    font-size: 1.6rem;
  }
}
.banner-slider .slider-description-container h3 {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  text-transform: none;
  font-weight: 100;
  font-size: 1.2rem;
}
.banner-slider .slider-description-container h4 {
  font-weight: 100;
  color: var(--color-primary);
}
.banner-slider .slider-description-container p {
  font-size: 1.25rem;
  line-height: 1.8rem;
}
.banner-slider .js-goto-button {
  -webkit-appearance: button;
  color: #fff;
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 320px;
  margin-left: -160px;
  text-align: center;
  background-color: transparent;
  border: 0;
  z-index: 110;
  text-transform: uppercase;
  font-family: var(--font-text), sans-serif;
  font-weight: bold;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.banner-slider .js-goto-button:hover, .banner-slider .js-goto-button:active, .banner-slider .js-goto-button:focus {
  outline: 0;
  border: none;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .js-goto-button {
    display: none;
  }
}
.banner-slider .js-goto-button span {
  display: block;
}
.banner-slider .js-goto-button span.text-holder {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}
.banner-slider .js-goto-button span.icon-holder {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  display: inline-block;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  text-align: center;
  border: 2px solid #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  animation: button-pulse 2s ease infinite;
  -webkit-animation: button-pulse 2s ease infinite;
}
.banner-slider .js-goto-button span.icon-holder:hover {
  background-color: var(--color-secondary);
}
.banner-slider .js-goto-button span.icon-holder i {
  width: 100%;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
}
.banner-slider .owl-dots {
  bottom: 0;
  position: absolute;
  width: 100%;
  right: 0;
  margin: 0;
  padding: 0;
}
.banner-slider .owl-dots .owl-dot {
  padding: 0;
  display: inline-block;
  height: auto;
  width: auto;
  border: none;
  margin: 0 2px;
}
.banner-slider .owl-dots .owl-dot.active {
  border: none;
  background: none;
}
.banner-slider .owl-dots .owl-dot.active span {
  background-color: #fff;
  border: 4px solid var(--color-primary);
}
.banner-slider .owl-dots .owl-dot span {
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  border: none;
}
@-webkit-keyframes button-pulse {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@-moz-keyframes button-pulse {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes button-pulse {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes zoom {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.2, 1.2);
  }
}
@keyframes zoom {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.2, 1.2);
  }
}
@media only screen and (max-width: 1199.98px) {
  div.slide.slide-1 {
    display: flex;
    flex-direction: column;
  }
  div.slide.slide-1 img {
    width: 50% !important;
    margin: 0 auto;
  }
}

.banner-slider .slider-description-container {
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 100px 200px;
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-sliderblend-mask);
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container {
    padding: 1rem;
  }
}
.banner-slider .slider-description-container.lb {
  justify-content: flex-start;
  align-items: flex-end;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container.lb {
    justify-content: center;
    align-items: center;
  }
}
.banner-slider .slider-description-container.lc {
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container.lc {
    justify-content: center;
    align-items: center;
  }
}
.banner-slider .slider-description-container.lt {
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container.lt {
    justify-content: center;
    align-items: center;
  }
}
.banner-slider .slider-description-container.cb {
  justify-content: center;
  align-items: flex-end;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container.cb {
    justify-content: center;
    align-items: center;
  }
}
.banner-slider .slider-description-container.cm {
  justify-content: center;
  align-items: center;
}
.banner-slider .slider-description-container.ct {
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container.ct {
    justify-content: center;
    align-items: center;
  }
}
.banner-slider .slider-description-container.rb {
  justify-content: flex-end;
  align-items: flex-end;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container.rb {
    justify-content: center;
    align-items: center;
  }
}
.banner-slider .slider-description-container.rm {
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container.rm {
    justify-content: center;
    align-items: center;
  }
}
.banner-slider .slider-description-container.rt {
  justify-content: flex-end;
  align-items: flex-start;
}
@media only screen and (max-width: 991.98px) {
  .banner-slider .slider-description-container.rt {
    justify-content: center;
    align-items: center;
  }
}

.slider-wrapper {
  position: relative;
}

.page-baner {
  position: relative;
  min-height: 60dvh !important;
  background: var(--color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-baner .gradient {
  display: flex;
  height: 100%;
  position: absolute;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.page-baner .gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  opacity: 0.42;
  pointer-events: none;
}
.page-baner h3 {
  z-index: 1;
  position: relative;
  font-weight: 100;
  font-size: 4rem;
  color: white;
  font-family: var(--font-header), sans-serif;
}
@media only screen and (max-width: 1199.98px) {
  .page-baner {
    padding: 1rem;
    text-align: center;
    min-height: 80dvh !important;
  }
}

.page-baner.page-baner-media {
  min-height: 60vh !important;
}
.page-baner.page-baner-media .gradient {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  position: absolute;
  height: 100%;
}
.page-baner.page-baner-media .gradient h1 {
  font-family: var(--font-header), serif;
  margin-left: 2rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: white;
  font-weight: 200;
}
@media only screen and (max-width: 991.98px) {
  .page-baner.page-baner-media .gradient h1 {
    font-size: 1.6rem;
  }
}

.white-cart {
  border: 15px solid white;
  padding: 0;
  background-size: cover;
}

.white-cart > .ge-content,
.white-cart-section .inner-content {
  overflow: hidden;
  padding: 0 15px;
  background: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 40%, rgba(255, 255, 255, 0) 70%);
  background: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 40%, rgba(255, 255, 255, 0) 70%);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 40%, rgba(255, 255, 255, 0) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
}

.padding-0 > .ge-content {
  padding: 0;
}

.margin-0 > .ge-content {
  margin: 0;
}

.white-cart-section .inner-content {
  margin: 0;
}

section.section {
  position: relative; /**important*/
}
section.section .ge-content {
  width: 100%;
}
section.section .col-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.section .footer-shadow {
  height: 5rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}
section.section .section-container {
  position: relative;
  z-index: 1;
}
section.section.other-items > div {
  padding: 2rem 0;
}
section.section > * {
  background-size: cover;
}
section.section figure {
  position: relative;
}
section.section .map-navigation {
  margin-bottom: 2rem;
}
section.section .inner-content > header {
  position: relative;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991.98px) {
  section.section .inner-content > header {
    margin-bottom: 0;
  }
}
section.section .header-line {
  text-align: center;
}
section.section .header-line svg path {
  fill: var(--color-secondary);
}
section.section blockquote {
  position: relative;
  font-family: var(--font-header);
  font-style: italic;
}
section.section blockquote p:before {
  content: "“";
  position: absolute;
  top: 35px;
  margin-left: -65px;
  color: #000;
  font-size: 6em;
  z-index: -1;
}
section.section blockquote p:after {
  content: "“";
  position: absolute;
  color: #000;
  font-size: 6em;
  z-index: -1;
}
section.section.decor {
  background: url("../images/pattern2.svg") repeat-x center bottom;
  padding-bottom: 64px;
}
section.section.decor2 .pattern {
  background: url("../images/pattern-white.svg") repeat-x center;
  width: 100%;
  height: 87px;
}
section.section.decor2 .pattern:first-child {
  border-top: 20px solid var(--color-primary);
}
section.section.decor2 .pattern:last-child {
  border-bottom: 20px solid var(--color-primary);
}
section.section .section-decor {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
}
section.section h1 {
  font-family: var(--font-header), serif;
  color: black;
  font-size: 2rem;
}
@media only screen and (max-width: 1199.98px) {
  section.section h1 {
    font-size: 1.8rem;
  }
}
section.section h2.header, section.section .stylize h2, section.section h2, section.section h1.header {
  font-weight: 500;
  margin: 0;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  font-size: 2.8rem;
  font-family: var(--font-header), serif;
  line-height: 2.6rem;
}
@media only screen and (max-width: 991.98px) {
  section.section h2.header, section.section .stylize h2, section.section h2, section.section h1.header {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767.98px) {
  section.section h2.header, section.section .stylize h2, section.section h2, section.section h1.header {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 16px;
  }
}
section.section h2.header, section.section .stylize h2, section.section h2 {
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199.98px) {
  section.section h2.header, section.section .stylize h2, section.section h2 {
    margin-bottom: 25px;
  }
}
section.section h2 {
  margin-bottom: 16px;
  text-transform: none;
  display: block;
  text-align: inherit;
}
@media only screen and (max-width: 991.98px) {
  section.section h2 {
    margin-bottom: 45px;
  }
}
section.section h3.sub-header {
  font-size: 1.5rem;
  color: var(--color-primary-lighten);
  text-align: center;
  margin-bottom: 48px;
}
section.section h3.sub-header:after {
  content: none;
}
section.section h3.sub-header span {
  margin: 0 auto;
  display: block;
  max-width: 50vw;
  position: relative;
}
@media only screen and (max-width: 1199.98px) {
  section.section h3.sub-header span {
    max-width: 100%;
  }
}
section.section h3.sub-header:before {
  content: none;
  display: none;
}
section.section h3, section.section h4 {
  margin: 1rem 0;
  font-family: var(--font-header), sans-serif;
  font-weight: normal;
  font-size: 1.5rem;
  color: var(--color-primary);
}
section.section .popupContentContainer h3 {
  margin-bottom: 0.3rem;
}
section.section h4 {
  color: var(--color-primary);
}
section.section h6 {
  margin-top: -40px;
  position: relative;
  letter-spacing: 14px;
  color: var(--color-secondary);
  width: 100%;
  display: block;
  text-align: center;
  font-family: var(--font-text);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.812rem;
}
@media only screen and (max-width: 991.98px) {
  section.section h6 {
    margin-top: 0;
  }
}
section.section .bottom-line {
  border-bottom: 1px solid var(--color-primary);
}
section.section .stylize .ge-content {
  background-color: white;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  color: #313131;
  padding: 2rem;
  position: relative;
  z-index: 2;
}
section.section .stylize .ge-content h1, section.section .stylize .ge-content h2, section.section .stylize .ge-content h3, section.section .stylize .ge-content h4, section.section .stylize .ge-content h5, section.section .stylize .ge-content h6 {
  color: var(--color-secondary);
}
section.section .stylize .ge-content::before {
  content: "";
  border: 1px solid rgba(var(--color-primary), 0.8);
  position: absolute;
  top: 1rem;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  section.section .stylize {
    margin: 0;
  }
}
section.section .stylize h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}
section.section .stylize h3 {
  font-weight: normal;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767.98px) {
  section.section .stylize {
    margin: 0 0 1rem;
  }
}
section.section .slider.comments {
  padding: 1rem;
}
section.section .slider.comments .comment {
  padding: 1rem;
}
@media only screen and (max-width: 767.98px) {
  section.section .slider.comments .comment {
    margin-bottom: 1rem;
  }
}
section.section .accordion-button {
  text-align: left;
  padding: 1rem;
  flex-direction: row;
  color: black;
}
section.section .move-right .ge-content:first-child {
  right: -3rem;
  left: auto;
}
section.section .move-left .ge-content:first-child {
  left: -3rem;
  right: auto;
}
section.section .move-left .ge-content:first-child, section.section .move-right .ge-content:first-child {
  z-index: 1;
}
@media only screen and (max-width: 767.98px) {
  section.section .move-left .ge-content:first-child, section.section .move-right .ge-content:first-child {
    left: 0;
    right: 0;
    margin-left: 1rem;
    margin-right: 1rem;
    width: calc(100% - 2rem);
  }
}
section.section .row-stylize .stylize {
  margin: 2rem 0;
}
@media only screen and (max-width: 767.98px) {
  section.section .row-stylize .stylize {
    margin-top: -2rem;
  }
}
@media only screen and (max-width: 767.98px) {
  section.section .row-stylize .stylize .ge-content:first-child {
    margin: 0 1rem;
  }
}
@media only screen and (max-width: 991.98px) {
  section.section .row-stylize .stylize .ge-content:first-child {
    margin-bottom: 0;
  }
}
section.section .row-stylize .stylize .ge-content:first-child h3 {
  font-weight: 900;
  font-size: 1.5rem;
}
section.section .row-stylize .stylize .ge-content:first-child h3:before {
  content: "";
  position: absolute;
  margin-left: -16px;
  height: 24px;
  border-left: 7px solid var(--color-primary);
}
section.section a {
  color: var(--color-primary);
}
section.section a:hover {
  color: var(--color-secondary);
}
section.section .light, section.section .white, section.section .white-stylize {
  color: #313131;
  background-size: contain;
}
section.section .light a, section.section .white a, section.section .white-stylize a {
  color: var(--color-primary);
}
section.section .light a:hover, section.section .white a:hover, section.section .white-stylize a:hover {
  color: var(--color-secondary);
}
section.section .light a.button, section.section .light a.button-outline, section.section .light .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light a, section.section .light a.button-outline-grey, section.section .light ul.buttons li a, ul.buttons li section.section .light a, section.section .light a.button-outline-grey2, section.section .light a.big-button, section.section .light a.button-reverse, section.section .white a.button, section.section .white .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .white a:hover, section.section .white a.big-button, section.section .white a.button-reverse, section.section .white-stylize a.button, section.section .white-stylize .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .white-stylize a:hover, section.section .white-stylize a.big-button, section.section .white-stylize a.button-reverse {
  color: #fff;
}
section.section .light a.button:hover, section.section .light .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .light a:hover, section.section .light a.button-outline:hover, section.section .light a.button-outline-grey:hover, section.section .light ul.buttons li a:hover, ul.buttons li section.section .light a:hover, section.section .light a.button-outline-grey2:hover, section.section .light a.big-button:hover, section.section .light a.button-reverse:hover, section.section .white a.button:hover, section.section .white .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .white a:hover, section.section .white a.big-button:hover, section.section .white a.button-reverse:hover, section.section .white-stylize a.button:hover, section.section .white-stylize .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .white-stylize a:hover, section.section .white-stylize a.big-button:hover, section.section .white-stylize a.button-reverse:hover {
  color: var(--color-secondary);
}
section.section .light a.button:hover.button, section.section .light .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .light a:hover, section.section .light a.button-outline:hover, section.section .light a.button-outline-grey:hover, section.section .light ul.buttons li a:hover, ul.buttons li section.section .light a:hover, section.section .light a.button-outline-grey2:hover, section.section .light a.big-button:hover, section.section .light a.button-reverse:hover, section.section .white a.button:hover.button, section.section .white .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .white a:hover, section.section .white a.big-button:hover, section.section .white a.button-reverse:hover, section.section .white-stylize a.button:hover.button, section.section .white-stylize .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .white-stylize a:hover, section.section .white-stylize a.big-button:hover, section.section .white-stylize a.button-reverse:hover {
  color: #fff;
}
section.section .light a.button:hover h3, section.section .light .main-category-list-tree-horizontal ul li a:hover h3, section.section .main-category-list-tree-horizontal ul li .light a:hover h3, section.section .light a.button-outline:hover h3, section.section .light a.button-outline-grey:hover h3, section.section .light ul.buttons li a:hover h3, ul.buttons li section.section .light a:hover h3, section.section .light a.button-outline-grey2:hover h3, section.section .light a.big-button:hover h3, section.section .light a.button-reverse:hover h3, section.section .white a.button:hover h3, section.section .white .main-category-list-tree-horizontal ul li a:hover h3, section.section .main-category-list-tree-horizontal ul li .white a:hover h3, section.section .white a.big-button:hover h3, section.section .white a.button-reverse:hover h3, section.section .white-stylize a.button:hover h3, section.section .white-stylize .main-category-list-tree-horizontal ul li a:hover h3, section.section .main-category-list-tree-horizontal ul li .white-stylize a:hover h3, section.section .white-stylize a.big-button:hover h3, section.section .white-stylize a.button-reverse:hover h3 {
  color: var(--color-secondary) !important;
}
section.section .light a.button-outline, section.section .light .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light a, section.section .light a.button-outline-grey, section.section .light ul.buttons li a, ul.buttons li section.section .light a, section.section .light a.button-outline-grey2, section.section .white a.button-outline, section.section .white .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .white a, section.section .white a.button-outline-grey, section.section .white a.button-outline-grey2, section.section .white ul.buttons li a, ul.buttons li section.section .white a, section.section .white-stylize a.button-outline, section.section .white-stylize .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .white-stylize a, section.section .white-stylize a.button-outline-grey, section.section .white-stylize a.button-outline-grey2, section.section .white-stylize ul.buttons li a, ul.buttons li section.section .white-stylize a {
  color: #fff;
}
section.section .light .group-pictogram-tiles .pictogram-container .pictogram-img svg path, section.section .white .group-pictogram-tiles .pictogram-container .pictogram-img svg path, section.section .white-stylize .group-pictogram-tiles .pictogram-container .pictogram-img svg path {
  fill: #313131;
}
section.section .white-stylize {
  background-size: 50%;
}
section.section .light {
  background-color: var(--section-light-color-bg);
}
section.section .light a.button-outline, section.section .light .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light a, section.section .light a.button-outline-grey, section.section .light ul.buttons li a, ul.buttons li section.section .light a, section.section .light a.button-outline-grey2 {
  border: 1px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
}
section.section .light a.button-outline:hover, section.section .light .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .light a:hover, section.section .light a.button-outline-grey:hover, section.section .light ul.buttons li a:hover, ul.buttons li section.section .light a:hover, section.section .light a.button-outline-grey2:hover {
  background-color: var(--color-secondary);
  color: white;
}
section.section .light .button-outline-grey, section.section .light ul.buttons li a, ul.buttons li section.section .light a {
  background-color: white;
  border-color: #d1d1d1;
  font-weight: 500;
  color: black;
}
section.section .white {
  background-color: white;
}
section.section {
  /**  dark  */
}
section.section .dark {
  color: #fff;
  background-color: #313131;
}
section.section .dark h1, section.section .dark h2, section.section .dark h3, section.section .dark h4, section.section .dark h5, section.section .dark h6 {
  color: #fff !important;
}
section.section .dark h2.header, section.section .dark h2 {
  color: #fff;
}
section.section .dark .header-line {
  display: none;
}
section.section .dark a {
  color: #f3f3f3;
}
section.section .dark a:hover {
  color: var(--color-primary);
}
section.section .dark .button:hover, section.section .dark .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .dark a:hover, section.section .dark .big-button:hover, section.section .dark .button-reverse:hover, section.section .dark .light a.button-outline:hover, section.section .light .dark a.button-outline:hover, section.section .dark .light a.button-outline-grey:hover, section.section .light .dark a.button-outline-grey:hover, section.section .dark .light a.button-outline-grey2:hover, section.section .light .dark a.button-outline-grey2:hover, section.section .dark .light ul.buttons li a:hover, section.section .light ul.buttons li .dark a:hover, ul.buttons li section.section .dark .light a:hover, ul.buttons li section.section .light .dark a:hover {
  color: white;
}
section.section .dark button {
  border: 1px solid var(--color-primary);
}
section.section .color-2 {
  position: relative;
  color: #fff;
  background: var(--color-secondary) repeat;
  background-size: 20%;
}
section.section .color-2 h2 {
  color: white;
}
section.section .color-2 h2:after, section.section .color-2 h2:before {
  background: rgba(255, 255, 255, 0.3);
}
section.section .color-2::after, section.section .color-2::before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  top: 1rem;
  left: 1rem;
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  z-index: 0;
  zoom: 1;
}
section.section .color-2::before {
  top: auto;
  left: auto;
  right: 1rem;
  bottom: 1rem;
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}
section.section .color-1 {
  color: white;
  background: var(--color-primary);
  background-size: 50%;
}
section.section .color-1 a {
  color: var(--color-secondary);
}
section.section .color-1 a:hover {
  color: white;
}
section.section .color-1 a.button, section.section .color-1 .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .color-1 a:hover, section.section .color-1 a.big-button, section.section .color-1 a.button-reverse, section.section .color-1 .light a.button-outline, section.section .color-1 .light .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .color-1 .light a, section.section .light .color-1 a.button-outline, section.section .light .color-1 .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light .color-1 a, section.section .color-1 .light a.button-outline-grey, section.section .light .color-1 a.button-outline-grey, section.section .color-1 .light a.button-outline-grey2, section.section .light .color-1 a.button-outline-grey2, section.section .color-1 .light ul.buttons li a, section.section .light ul.buttons li .color-1 a, ul.buttons li section.section .color-1 .light a, ul.buttons li section.section .light .color-1 a {
  font-weight: bold;
  text-transform: uppercase;
  background-color: white;
  color: var(--color-primary);
}
section.section .color-1 a.button:hover, section.section .color-1 .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .color-1 a:hover, section.section .color-1 a.big-button:hover, section.section .color-1 a.button-reverse:hover, section.section .color-1 .light a.button-outline:hover, section.section .light .color-1 a.button-outline:hover, section.section .color-1 .light a.button-outline-grey:hover, section.section .light .color-1 a.button-outline-grey:hover, section.section .color-1 .light a.button-outline-grey2:hover, section.section .light .color-1 a.button-outline-grey2:hover, section.section .color-1 .light ul.buttons li a:hover, section.section .light ul.buttons li .color-1 a:hover, ul.buttons li section.section .color-1 .light a:hover, ul.buttons li section.section .light .color-1 a:hover {
  color: white;
  background-color: var(--color-primary);
}
section.section .color-1 a.button:hover svg path, section.section .color-1 .main-category-list-tree-horizontal ul li a:hover svg path, section.section .main-category-list-tree-horizontal ul li .color-1 a:hover svg path, section.section .color-1 a.big-button:hover svg path, section.section .color-1 a.button-reverse:hover svg path, section.section .color-1 .light a.button-outline:hover svg path, section.section .light .color-1 a.button-outline:hover svg path, section.section .color-1 .light a.button-outline-grey:hover svg path, section.section .light .color-1 a.button-outline-grey:hover svg path, section.section .color-1 .light a.button-outline-grey2:hover svg path, section.section .light .color-1 a.button-outline-grey2:hover svg path, section.section .color-1 .light ul.buttons li a:hover svg path, section.section .light ul.buttons li .color-1 a:hover svg path, ul.buttons li section.section .color-1 .light a:hover svg path, ul.buttons li section.section .light .color-1 a:hover svg path {
  fill: white;
}
section.section .color-1 a.button svg path, section.section .color-1 .main-category-list-tree-horizontal ul li a:hover svg path, section.section .main-category-list-tree-horizontal ul li .color-1 a:hover svg path, section.section .color-1 a.big-button svg path, section.section .color-1 a.button-reverse svg path, section.section .color-1 .light a.button-outline svg path, section.section .color-1 .light .main-category-list-tree-horizontal ul li a svg path, section.section .main-category-list-tree-horizontal ul li .color-1 .light a svg path, section.section .light .color-1 a.button-outline svg path, section.section .light .color-1 .main-category-list-tree-horizontal ul li a svg path, section.section .main-category-list-tree-horizontal ul li .light .color-1 a svg path, section.section .color-1 .light a.button-outline-grey svg path, section.section .light .color-1 a.button-outline-grey svg path, section.section .color-1 .light a.button-outline-grey2 svg path, section.section .light .color-1 a.button-outline-grey2 svg path, section.section .color-1 .light ul.buttons li a svg path, section.section .light ul.buttons li .color-1 a svg path, ul.buttons li section.section .color-1 .light a svg path, ul.buttons li section.section .light .color-1 a svg path {
  fill: var(--color-primary);
}
section.section .color-1 .info-row .svg svg path {
  fill: white;
}
section.section .color-1 header:before {
  left: 50%;
  top: 50%;
  content: "";
  background-size: contain;
  width: 5rem;
  height: 5rem;
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section.section .color-1 h1, section.section .color-1 h2, section.section .color-1 h3, section.section .color-1 h4, section.section .color-1 h5, section.section .color-1 h6 {
  color: white;
}
section.section .color-1 h2.header, section.section .color-1 h2, section.section .color-1 h1.header {
  color: white;
}
section.section .color-1 h3.sub-header {
  margin-bottom: 48px;
}
section.section .color-1 .header-line {
  display: none;
}
section.section .color-1 a.button-outline, section.section .color-1 .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .color-1 a, section.section .color-1 a.button-outline-grey, section.section .color-1 a.button-outline-grey2, section.section .color-1 ul.buttons li a, ul.buttons li section.section .color-1 a, section.section .light ul.buttons li .color-1 a {
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
section.section .color-1 a.button-outline:hover, section.section .color-1 .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .color-1 a:hover, section.section .color-1 a.button-outline-grey:hover, section.section .color-1 a.button-outline-grey2:hover, section.section .color-1 ul.buttons li a:hover, ul.buttons li section.section .color-1 a:hover, section.section .light ul.buttons li .color-1 a:hover {
  border: 1px solid white;
}
section.section .color-1 .button:hover, section.section .color-1 .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .color-1 a:hover, section.section .color-1 .big-button:hover, section.section .color-1 .button-reverse:hover, section.section .color-1 .light a.button-outline:hover, section.section .light .color-1 a.button-outline:hover, section.section .color-1 .light a.button-outline-grey:hover, section.section .light .color-1 a.button-outline-grey:hover, section.section .color-1 .light a.button-outline-grey2:hover, section.section .light .color-1 a.button-outline-grey2:hover, section.section .color-1 .light ul.buttons li a:hover, section.section .light ul.buttons li .color-1 a:hover, ul.buttons li section.section .color-1 .light a:hover, ul.buttons li section.section .light .color-1 a:hover {
  color: white;
}
section.section .color-1 .group-pictogram-slider .pictogram-img svg path, section.section .color-1 .group-pictogram-slider .pictogram-img svg {
  width: 3rem;
}
section.section .color-1 .group-pictogram-slider .pictogram-img svg path polygon, section.section .color-1 .group-pictogram-slider .pictogram-img svg path path, section.section .color-1 .group-pictogram-slider .pictogram-img svg polygon, section.section .color-1 .group-pictogram-slider .pictogram-img svg path {
  fill: white;
}
section.section .color-1 button {
  border: 1px solid white;
}
section.section .color-1-light {
  color: #313131;
  background-color: rgba(var(--color-primary-lightest), 0.5);
}
section.section .color-1-light .group-pictogram-tiles .pictogram-container .pictogram-img svg path {
  fill: var(--color-secondary);
}
section.section .color-1-light .group-pictogram-tiles .pictogram-container h4 {
  fill: var(--color-secondary);
}
section.section .color-1-light header:before {
  left: 50%;
  top: 50%;
  content: "";
  background-size: contain;
  width: 5rem;
  height: 5rem;
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section.section .color-1-light h1, section.section .color-1-light h2, section.section .color-1-light h3, section.section .color-1-light h4, section.section .color-1-light h5, section.section .color-1-light h6 {
  color: var(--color-primary);
}
section.section .color-1-light h3.sub-header {
  font-weight: bold;
}
section.section .color-1-light h2.header, section.section .color-1-light h2, section.section .color-1-light h1.header {
  color: #313131;
}
section.section .color-1-light .header-line {
  display: none;
}
section.section .color-1-light a {
  color: #f3f3f3;
}
section.section .color-1-light a:hover {
  color: var(--color-primary);
}
section.section .color-1-light .button:hover, section.section .color-1-light .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .color-1-light a:hover, section.section .color-1-light .big-button:hover, section.section .color-1-light .button-reverse:hover, section.section .color-1-light .light a.button-outline:hover, section.section .light .color-1-light a.button-outline:hover, section.section .color-1-light .light a.button-outline-grey:hover, section.section .light .color-1-light a.button-outline-grey:hover, section.section .color-1-light .light a.button-outline-grey2:hover, section.section .light .color-1-light a.button-outline-grey2:hover, section.section .color-1-light .light ul.buttons li a:hover, section.section .light ul.buttons li .color-1-light a:hover, ul.buttons li section.section .color-1-light .light a:hover, ul.buttons li section.section .light .color-1-light a:hover {
  color: white;
}
section.section .color-1-light button {
  border: 1px solid white;
}
section.section .color-1-light::after {
  content: "";
  border: 1px solid white;
  position: absolute;
  top: 1rem;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  z-index: 0;
  zoom: 1;
}
@media only screen and (max-width: 991.98px) {
  section.section .color-1-light::after {
    display: none;
  }
}
section.section .color-2-light {
  color: #313131;
  background-color: var(--color-primary-lighten);
}
section.section .color-2-light .group-pictogram-tiles .pictogram-container .pictogram-img svg path {
  fill: #313131;
}
section.section .color-2-light header:before {
  left: 50%;
  top: 50%;
  content: "";
  background-size: contain;
  width: 5rem;
  height: 5rem;
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section.section .color-2-light h1, section.section .color-2-light h2, section.section .color-2-light h3, section.section .color-2-light h4, section.section .color-2-light h5, section.section .color-2-light h6 {
  color: var(--color-primary);
}
section.section .color-2-light h3.sub-header {
  font-weight: bold;
  text-align: center;
}
section.section .color-2-light h2.header, section.section .color-2-light h2, section.section .color-2-light h1.header {
  color: #313131;
}
section.section .color-2-light .header-line {
  display: none;
}
section.section .color-2-light a {
  color: #f3f3f3;
}
section.section .color-2-light a:hover {
  color: var(--color-primary);
}
section.section .color-2-light .button:hover, section.section .color-2-light .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .color-2-light a:hover, section.section .color-2-light .big-button:hover, section.section .color-2-light .button-reverse:hover, section.section .color-2-light .light a.button-outline:hover, section.section .light .color-2-light a.button-outline:hover, section.section .color-2-light .light a.button-outline-grey:hover, section.section .light .color-2-light a.button-outline-grey:hover, section.section .color-2-light .light a.button-outline-grey2:hover, section.section .light .color-2-light a.button-outline-grey2:hover, section.section .color-2-light .light ul.buttons li a:hover, section.section .light ul.buttons li .color-2-light a:hover, ul.buttons li section.section .color-2-light .light a:hover, ul.buttons li section.section .light .color-2-light a:hover {
  color: white;
}
section.section .color-2-light button {
  border: 1px solid white;
}
section.section .color-2-light::after {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 1rem;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  z-index: 0;
  zoom: 1;
}
@media only screen and (max-width: 991.98px) {
  section.section .color-2-light::after {
    display: none;
  }
}
section.section blockquote {
  text-align: center;
  border: none;
}
section.section blockquote h3 {
  margin: 0 auto;
  display: inline-block;
  text-align: center;
  position: relative;
  font-size: 40px;
  font-style: italic;
  color: #fff;
  line-height: 66px;
  border: none;
  padding: 15px 50px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  font-family: var(--font-header);
}
@media only screen and (max-width: 991.98px) {
  section.section blockquote h3 {
    padding: 10px;
  }
}
section.section blockquote h3:after {
  position: absolute;
  content: " ";
  width: 76px;
  height: 60px;
  right: 0;
  bottom: 0;
  margin-right: -30px;
}
section.section blockquote h3:before {
  position: absolute;
  content: " ";
  width: 76px;
  height: 60px;
  margin-left: -30px;
  left: 0;
  top: 0;
}
section.section blockquote h2, section.section blockquote h3 {
  color: #fff;
}
section.section.two-columns {
  background-color: var(--color-secondary);
  color: white;
  position: relative;
}
@media only screen and (max-width: 1199.98px) {
  section.section.two-columns {
    display: flex;
    flex-direction: column;
  }
}
section.section.two-columns .main-column {
  width: 50%;
  padding: 2rem;
}
@media only screen and (max-width: 1199.98px) {
  section.section.two-columns .main-column {
    order: 0;
  }
}
section.section.two-columns .main-column a.button, section.section.two-columns .main-column .main-category-list-tree-horizontal ul li a:hover, section.section.two-columns .main-category-list-tree-horizontal ul li .main-column a:hover, section.section.two-columns .main-column a.big-button, section.section.two-columns .main-column a.button-reverse, section.section.two-columns .main-column .light a.button-outline, section.section.two-columns .main-column .light .main-category-list-tree-horizontal ul li a, section.section.two-columns .main-category-list-tree-horizontal ul li .main-column .light a, section.section.two-columns .light .main-column a.button-outline, section.section.two-columns .light .main-column .main-category-list-tree-horizontal ul li a, section.section.two-columns .main-category-list-tree-horizontal ul li .light .main-column a, section.section.two-columns .main-column .light a.button-outline-grey, section.section.two-columns .light .main-column a.button-outline-grey, section.section.two-columns .main-column .light a.button-outline-grey2, section.section.two-columns .light .main-column a.button-outline-grey2, section.section.two-columns .main-column .light ul.buttons li a, section.section.two-columns .light ul.buttons li .main-column a, ul.buttons li section.section.two-columns .main-column .light a, ul.buttons li section.section.two-columns .light .main-column a {
  margin: 0.5rem;
  background-color: transparent;
  border: 1px solid var(--color-secondary);
}
section.section.two-columns .main-column a.button:hover, section.section.two-columns .main-column .main-category-list-tree-horizontal ul li a:hover, section.section.two-columns .main-category-list-tree-horizontal ul li .main-column a:hover, section.section.two-columns .main-column a.big-button:hover, section.section.two-columns .main-column a.button-reverse:hover, section.section.two-columns .main-column .light a.button-outline:hover, section.section.two-columns .light .main-column a.button-outline:hover, section.section.two-columns .main-column .light a.button-outline-grey:hover, section.section.two-columns .light .main-column a.button-outline-grey:hover, section.section.two-columns .main-column .light a.button-outline-grey2:hover, section.section.two-columns .light .main-column a.button-outline-grey2:hover, section.section.two-columns .main-column .light ul.buttons li a:hover, section.section.two-columns .light ul.buttons li .main-column a:hover, ul.buttons li section.section.two-columns .main-column .light a:hover, ul.buttons li section.section.two-columns .light .main-column a:hover {
  background-color: var(--color-secondary);
}
section.section.two-columns .main-column h3 {
  color: white;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 1199.98px) {
  section.section.two-columns .main-column {
    width: 100%;
  }
}
section.section.two-columns .page-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 1199.98px) {
  section.section.two-columns .page-content {
    position: relative;
    flex-direction: column;
    order: -1;
    height: 400px;
  }
}
section.section.two-columns .columns {
  width: 50%;
  order: 1;
}
@media only screen and (max-width: 991.98px) {
  section.section.two-columns .columns {
    width: 100%;
  }
}
@media only screen and (max-width: 991.98px) {
  section.section.two-columns .columns:last-child {
    order: 0;
    height: 100%;
  }
}
section.section.two-columns .columns:last-child .img-column-container {
  position: relative;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section.section.two-columns .columns:last-child .img-column-container .gradient {
  position: absolute;
  height: 100%;
  width: 100%;
  background: -moz-linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary-transparent) 15%);
  background: -webkit-linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary-transparent) 15%);
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary-transparent) 15%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-secondary)", endColorstr="var(--color-secondary)", GradientType=1);
}
@media only screen and (max-width: 991.98px) {
  section.section.two-columns .columns:last-child .img-column-container .gradient {
    background: -moz-linear-gradient(0deg, var(--color-secondary) 0%, var(--color-secondary-transparent) 15%);
    background: -webkit-linear-gradient(0deg, var(--color-secondary) 0%, var(--color-secondary-transparent) 15%);
    background: linear-gradient(0deg, var(--color-secondary) 0%, var(--color-secondary-transparent) 15%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--color-secondary)", endColorstr="var(--color-secondary)", GradientType=1);
  }
}
section.section .main-category-list {
  font-size: 1rem;
}
section.section .main-category-list ul {
  gap: 10px;
  flex-wrap: wrap;
  display: flex;
  margin: 0;
  padding: 0;
}
section.section .main-category-list ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}
section.section .main-category-list ul li:before {
  content: none;
}
section.section .main-category-list ul li a {
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  color: white;
  padding: 4px 10px;
  gap: 5px;
  background-color: var(--color-primary-lighten);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
section.section .main-category-list ul li.active a, section.section .main-category-list ul li:hover a {
  background-color: var(--color-primary);
}
section.section .info-block {
  flex-direction: row;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1199.98px) {
  section.section .info-block {
    flex-direction: column;
  }
}
section.section .info-block > div {
  overflow: hidden;
  background-color: white;
  display: block;
  width: 100%;
  margin: 0.5rem;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
section.section .info-block > div:first-child {
  margin-left: 0;
}
section.section .info-block > div:last-child {
  margin-right: 0;
}
section.section .info-block > div .wrapper {
  min-height: 7.5rem;
  color: black;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
section.section .info-block > div .wrapper:hover .svg {
  background-color: rgb(198.9611650485, 98.2524271845, 54.0388349515);
}
section.section .info-block > div .svg {
  background-color: var(--color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 5.938rem;
}
section.section .info-block > div .svg svg {
  width: auto;
  height: 1.688rem;
}
section.section .info-block > div .svg svg path {
  fill: white;
}
section.section .info-block > div .descp {
  font-size: 1.125rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.section .info-block > div .descp h3 {
  margin: 0;
  font-size: 1.125rem;
}
section.section .info-block > div .descp p {
  margin: 0;
  font-size: 0.938rem;
}
@media only screen and (max-width: 1199.98px) {
  section.section .info-block > div {
    margin: 0.5rem 0;
  }
}
section.section .info-list, section.section .info-row {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}
section.section .info-list > div > *, section.section .info-row > div > * {
  display: flex;
  flex-direction: row;
  margin: 0.5rem 0;
  justify-content: flex-start;
}
section.section .info-list .svg, section.section .info-row .svg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1.5rem;
}
section.section .info-list .svg svg, section.section .info-row .svg svg {
  width: auto;
  height: 1rem;
}
section.section .info-list .svg svg path, section.section .info-row .svg svg path {
  fill: var(--color-primary);
}
section.section .info-list .descp, section.section .info-row .descp {
  font-size: 1.125rem;
  width: 100%;
  text-align: left;
  display: flex;
}
section.section .info-list .descp h3, section.section .info-row .descp h3 {
  margin: 0;
  font-size: 1.125rem;
}
section.section .info-list .descp p, section.section .info-row .descp p {
  margin: 0;
  font-size: 0.938rem;
}
section.section .info-row {
  flex-direction: row;
}
@media only screen and (max-width: 991.98px) {
  section.section .info-row {
    flex-direction: column;
  }
}

.shadow-and-margin .inner-content {
  position: relative;
  z-index: 1000;
  background-color: white;
  padding: 2rem;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  margin-top: -7rem;
}

section.section .green-black .row .column {
  color: white;
  padding: 2rem !important;
}
section.section .green-black .row .column h1, section.section .green-black .row .column h2, section.section .green-black .row .column h3 {
  color: white;
}
section.section .green-black .row .column:nth-child(1) {
  background-color: var(--color-primary);
}
section.section .green-black .row .column:nth-child(2) {
  background-color: var(--color-secondary);
}

.post-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.row-tiles .ge-content {
  padding: 32px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.row-tiles .ge-content a.button, .row-tiles .ge-content section.section .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .row-tiles .ge-content a:hover, .row-tiles .ge-content a.big-button, .row-tiles .ge-content a.button-reverse, .row-tiles .ge-content section.section .light a.button-outline, .row-tiles .ge-content section.section .light .main-category-list-tree-horizontal ul li a, .row-tiles .ge-content section.section .main-category-list-tree-horizontal ul li .light a, section.section .light .row-tiles .ge-content a.button-outline, section.section .light .row-tiles .ge-content .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light .row-tiles .ge-content a, .row-tiles .ge-content section.section .light a.button-outline-grey, section.section .light .row-tiles .ge-content a.button-outline-grey, .row-tiles .ge-content section.section .light a.button-outline-grey2, section.section .light .row-tiles .ge-content a.button-outline-grey2, .row-tiles .ge-content section.section .light ul.buttons li a, section.section .light ul.buttons li .row-tiles .ge-content a, .row-tiles .ge-content ul.buttons li section.section .light a, ul.buttons li section.section .light .row-tiles .ge-content a {
  margin-top: 32px;
}
.row-tiles .ge-content hr {
  position: relative;
  top: -26px;
  background-color: #C7C7C7;
}
.row-tiles .ge-content h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-secondary);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  height: 50px;
}
@media only screen and (max-width: 991.98px) {
  .row-tiles {
    gap: 32px;
  }
}

.row-frame .ge-content {
  border-radius: 8px;
  border: solid 1px #A07E59;
  padding: 30px;
  color: #A07E59;
}
.row-frame .ge-content img {
  margin-right: 20px !important;
}
.row-frame .ge-content strong {
  font-size: 1.25rem;
}
.row-frame .ge-content p {
  padding: 0;
  margin: 0;
}

.row-tiles-advanced .ge-content {
  overflow: hidden;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.row-tiles-advanced .ge-content .button, .row-tiles-advanced .ge-content section.section .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .row-tiles-advanced .ge-content a:hover, .row-tiles-advanced .ge-content .big-button, .row-tiles-advanced .ge-content .button-reverse, .row-tiles-advanced .ge-content section.section .light a.button-outline, .row-tiles-advanced .ge-content section.section .light .main-category-list-tree-horizontal ul li a, .row-tiles-advanced .ge-content section.section .main-category-list-tree-horizontal ul li .light a, section.section .light .row-tiles-advanced .ge-content a.button-outline, section.section .light .row-tiles-advanced .ge-content .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light .row-tiles-advanced .ge-content a, .row-tiles-advanced .ge-content section.section .light a.button-outline-grey, section.section .light .row-tiles-advanced .ge-content a.button-outline-grey, .row-tiles-advanced .ge-content section.section .light a.button-outline-grey2, section.section .light .row-tiles-advanced .ge-content a.button-outline-grey2, .row-tiles-advanced .ge-content section.section .light ul.buttons li a, section.section .light ul.buttons li .row-tiles-advanced .ge-content a, .row-tiles-advanced .ge-content ul.buttons li section.section .light a, ul.buttons li section.section .light .row-tiles-advanced .ge-content a {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.25rem;
}
.row-tiles-advanced .ge-content p {
  margin: 0;
  padding: 16px;
}
.row-tiles-advanced .ge-content h3 {
  color: var(--color-secondary);
  text-align: center;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 16px;
  margin: 0;
}
@media only screen and (max-width: 991.98px) {
  .row-tiles-advanced {
    gap: 32px;
  }
}

section.section .row-contact .ge-content {
  height: auto;
}
section.section .row-contact .ge-content table.table tr td {
  padding: 0;
}
section.section .row-contact .ge-content h5 {
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: bold;
  color: #A3000C;
}

.reviewCounter {
  padding: 12px 40px;
  font-size: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  left: 50%;
  position: relative;
  margin: 30px auto;
  display: inline-flex;
  text-align: center;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.googleIcon {
  margin-top: 10px;
}

.group-page-item-slider {
  margin-top: -42px;
}

.blog-post-section {
  padding: 2rem 0;
}
.blog-post-section h1 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: bold;
  padding: 1rem 0;
}
.blog-post-section .short-content {
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 3rem;
  font-weight: bold;
}

.properties-container-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.properties-container {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.properties-container .properties-name {
  margin-right: 1rem;
  width: 1.5rem;
  height: auto;
}
@media only screen and (max-width: 767.98px) {
  .properties-container .properties-name {
    width: 1.2rem;
  }
}
.properties-container .properties-value {
  margin-top: 1px;
}
.properties-container:hover svg {
  path-fill: rgb(211, 129, 93);
}

.group-page-links .random-link {
  color: black;
  position: relative;
  display: block;
  text-align: center;
  padding: 1rem 0;
}
.group-page-links .random-link::before {
  left: 50%;
  transform: translateX(-50%);
  top: -0.2rem;
  position: absolute;
  content: "";
  width: 2rem;
  height: 2px;
  background-color: var(--color-primary);
}

.slider-center {
  width: 100%;
  overflow: hidden;
}
.slider-center .center {
  width: 1170px;
  margin: 0 auto;
}

.group-page-slider-transparent {
  position: relative;
}
.group-page-slider-transparent .owl-carousel .owl-stage-outer {
  overflow: visible !important;
}
.group-page-slider-transparent .owl-item {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
  border: 1px solid #DEDEDE;
}
.group-page-slider-transparent .owl-item.active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
@media only screen and (max-width: 991.98px) {
  .group-page-slider-transparent .owl-item.active {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
.group-page-slider-transparent .slider .owl-nav {
  top: 75px;
}
.group-page-slider-transparent .slider .owl-prev, .group-page-slider-transparent .slider .owl-next {
  padding: 11px 15px;
  font-size: 20px;
  background-color: var(--color-secondary);
}
@media only screen and (max-width: 991.98px) {
  .group-page-slider-transparent .slider .owl-prev i, .group-page-slider-transparent .slider .owl-next i {
    color: rgba(0, 0, 0, 0.6);
  }
}
@media only screen and (max-width: 991.98px) {
  .group-page-slider-transparent .slider .owl-prev, .group-page-slider-transparent .slider .owl-next {
    border-color: rgba(0, 0, 0, 0.6);
  }
}
.group-page-slider-transparent .slider .owl-prev {
  left: 0;
  margin-left: -20px;
}
.group-page-slider-transparent .slider .owl-next {
  right: 0;
  margin-right: -20px;
}
.group-page-slider-transparent .slider .owl-prev:hover, .group-page-slider-transparent .slider .owl-next:hover {
  background-color: var(--color-primary);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  color: #fff;
}
.group-page-slider-transparent .box {
  border-bottom: 10px solid transparent;
  padding-bottom: 15px;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.group-page-slider-transparent .box figcaption h3 {
  padding: 15px 0;
  text-align: center;
  margin: 0;
  font-size: 1.6px;
  color: var(--color-primary);
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.group-page-slider-transparent .box figcaption .short-content {
  color: var(--color-primary);
  margin: 1rem 0;
  padding: 0 1rem;
  font-family: var(--font-text);
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.group-page-slider-transparent .box figure {
  position: relative;
  overflow: hidden;
  display: block;
}
.group-page-slider-transparent .box figure img {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -ms-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
  position: relative;
  top: 0;
}
.group-page-slider-transparent .box figure img.lazy {
  border: none;
}
.group-page-slider-transparent .box .button-container {
  text-align: center;
}
.group-page-slider-transparent .box .button-container a {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 10px 30px;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.group-page-slider-transparent .box:hover {
  border-bottom: 10px solid var(--color-primary);
}
.group-page-slider-transparent .box:hover h3 {
  text-align: center;
  margin: 0;
  color: #fff;
}
.group-page-slider-transparent .box:hover .button-container a {
  background-color: var(--color-secondary);
}
.group-page-slider-transparent .box:hover figure {
  border: 1px solid var(--color-secondary);
  padding: 10px;
}
.group-page-slider-transparent .box:hover figure img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.tiles {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.tiles .button-container {
  margin-top: 16px;
}

.group-page-offer,
.group-page-attractions,
.group-page-item-list,
.group-page-tiles-blog,
.group-page-tiles,
.group-page-tiles2,
.group-page-slider {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.group-page-offer a .box,
.group-page-attractions a .box,
.group-page-item-list a .box,
.group-page-tiles-blog a .box,
.group-page-tiles a .box,
.group-page-tiles2 a .box,
.group-page-slider a .box {
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
@media only screen and (max-width: 767.98px) {
  .group-page-offer a .box,
  .group-page-attractions a .box,
  .group-page-item-list a .box,
  .group-page-tiles-blog a .box,
  .group-page-tiles a .box,
  .group-page-tiles2 a .box,
  .group-page-slider a .box {
    margin-bottom: 1rem;
  }
}
.group-page-offer a .box figure,
.group-page-attractions a .box figure,
.group-page-item-list a .box figure,
.group-page-tiles-blog a .box figure,
.group-page-tiles a .box figure,
.group-page-tiles2 a .box figure,
.group-page-slider a .box figure {
  margin: 0;
  overflow: hidden;
}
.group-page-offer a .box figure .background-img,
.group-page-attractions a .box figure .background-img,
.group-page-item-list a .box figure .background-img,
.group-page-tiles-blog a .box figure .background-img,
.group-page-tiles a .box figure .background-img,
.group-page-tiles2 a .box figure .background-img,
.group-page-slider a .box figure .background-img {
  height: 0;
  padding-bottom: 66%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.group-page-offer a .box .box-content,
.group-page-attractions a .box .box-content,
.group-page-item-list a .box .box-content,
.group-page-tiles-blog a .box .box-content,
.group-page-tiles a .box .box-content,
.group-page-tiles2 a .box .box-content,
.group-page-slider a .box .box-content {
  top: 0;
  position: relative;
  z-index: 2;
  color: #313131;
  padding: 1.5rem;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  background-color: white;
}
.group-page-offer a .box .box-content .box-simple-data,
.group-page-attractions a .box .box-content .box-simple-data,
.group-page-item-list a .box .box-content .box-simple-data,
.group-page-tiles-blog a .box .box-content .box-simple-data,
.group-page-tiles a .box .box-content .box-simple-data,
.group-page-tiles2 a .box .box-content .box-simple-data,
.group-page-slider a .box .box-content .box-simple-data {
  padding: 2rem;
}
.group-page-offer a .box .box-content h3.box-content-header,
.group-page-attractions a .box .box-content h3.box-content-header,
.group-page-item-list a .box .box-content h3.box-content-header,
.group-page-tiles-blog a .box .box-content h3.box-content-header,
.group-page-tiles a .box .box-content h3.box-content-header,
.group-page-tiles2 a .box .box-content h3.box-content-header,
.group-page-slider a .box .box-content h3.box-content-header {
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  height: 3.5rem;
  overflow: hidden;
  margin-top: 0;
  font-weight: 400;
  line-height: 1.8rem;
  font-size: 1.5rem;
  font-family: var(--font-header), serif;
  color: var(--color-primary);
}
@media only screen and (max-width: 1199.98px) {
  .group-page-offer a .box .box-content h3.box-content-header,
  .group-page-attractions a .box .box-content h3.box-content-header,
  .group-page-item-list a .box .box-content h3.box-content-header,
  .group-page-tiles-blog a .box .box-content h3.box-content-header,
  .group-page-tiles a .box .box-content h3.box-content-header,
  .group-page-tiles2 a .box .box-content h3.box-content-header,
  .group-page-slider a .box .box-content h3.box-content-header {
    height: auto;
  }
}
.group-page-offer a .box .box-content .box-content-short-text,
.group-page-attractions a .box .box-content .box-content-short-text,
.group-page-item-list a .box .box-content .box-content-short-text,
.group-page-tiles-blog a .box .box-content .box-content-short-text,
.group-page-tiles a .box .box-content .box-content-short-text,
.group-page-tiles2 a .box .box-content .box-content-short-text,
.group-page-slider a .box .box-content .box-content-short-text {
  color: #232323;
  margin-bottom: 1rem;
  overflow: hidden;
  min-height: 178px;
}
@media only screen and (max-width: 991.98px) {
  .group-page-offer a .box .box-content .box-content-short-text,
  .group-page-attractions a .box .box-content .box-content-short-text,
  .group-page-item-list a .box .box-content .box-content-short-text,
  .group-page-tiles-blog a .box .box-content .box-content-short-text,
  .group-page-tiles a .box .box-content .box-content-short-text,
  .group-page-tiles2 a .box .box-content .box-content-short-text,
  .group-page-slider a .box .box-content .box-content-short-text {
    overflow: visible;
    min-height: auto;
  }
}
.group-page-offer a .box .box-content .box-content-properties,
.group-page-attractions a .box .box-content .box-content-properties,
.group-page-item-list a .box .box-content .box-content-properties,
.group-page-tiles-blog a .box .box-content .box-content-properties,
.group-page-tiles a .box .box-content .box-content-properties,
.group-page-tiles2 a .box .box-content .box-content-properties,
.group-page-slider a .box .box-content .box-content-properties {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.group-page-offer a .box .box-content .box-content-properties .prop-val,
.group-page-attractions a .box .box-content .box-content-properties .prop-val,
.group-page-item-list a .box .box-content .box-content-properties .prop-val,
.group-page-tiles-blog a .box .box-content .box-content-properties .prop-val,
.group-page-tiles a .box .box-content .box-content-properties .prop-val,
.group-page-tiles2 a .box .box-content .box-content-properties .prop-val,
.group-page-slider a .box .box-content .box-content-properties .prop-val {
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0.2rem;
}
.group-page-offer a .box .box-content .box-content-properties .prop-val span,
.group-page-attractions a .box .box-content .box-content-properties .prop-val span,
.group-page-item-list a .box .box-content .box-content-properties .prop-val span,
.group-page-tiles-blog a .box .box-content .box-content-properties .prop-val span,
.group-page-tiles a .box .box-content .box-content-properties .prop-val span,
.group-page-tiles2 a .box .box-content .box-content-properties .prop-val span,
.group-page-slider a .box .box-content .box-content-properties .prop-val span {
  color: var(--color-primary);
  font-size: 1.8rem;
}
.group-page-offer a .box .box-content .box-content-properties .price-from span,
.group-page-attractions a .box .box-content .box-content-properties .price-from span,
.group-page-item-list a .box .box-content .box-content-properties .price-from span,
.group-page-tiles-blog a .box .box-content .box-content-properties .price-from span,
.group-page-tiles a .box .box-content .box-content-properties .price-from span,
.group-page-tiles2 a .box .box-content .box-content-properties .price-from span,
.group-page-slider a .box .box-content .box-content-properties .price-from span {
  font-size: 1.25rem;
  color: var(--color-primary);
}
.group-page-offer a .box .box-content .box-content-wrapper,
.group-page-attractions a .box .box-content .box-content-wrapper,
.group-page-item-list a .box .box-content .box-content-wrapper,
.group-page-tiles-blog a .box .box-content .box-content-wrapper,
.group-page-tiles a .box .box-content .box-content-wrapper,
.group-page-tiles2 a .box .box-content .box-content-wrapper,
.group-page-slider a .box .box-content .box-content-wrapper {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.group-page-offer a .box .box-content .box-content-wrapper .short-content,
.group-page-attractions a .box .box-content .box-content-wrapper .short-content,
.group-page-item-list a .box .box-content .box-content-wrapper .short-content,
.group-page-tiles-blog a .box .box-content .box-content-wrapper .short-content,
.group-page-tiles a .box .box-content .box-content-wrapper .short-content,
.group-page-tiles2 a .box .box-content .box-content-wrapper .short-content,
.group-page-slider a .box .box-content .box-content-wrapper .short-content {
  margin: 1.3rem 0;
}
.group-page-offer a .box .slider-box-button,
.group-page-attractions a .box .slider-box-button,
.group-page-item-list a .box .slider-box-button,
.group-page-tiles-blog a .box .slider-box-button,
.group-page-tiles a .box .slider-box-button,
.group-page-tiles2 a .box .slider-box-button,
.group-page-slider a .box .slider-box-button {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: absolute;
  width: 100%;
  height: 100%;
}
.group-page-offer a .box .slider-box-button .button, .group-page-offer a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .group-page-offer a .box .slider-box-button a:hover, .group-page-offer a .box .slider-box-button .big-button, .group-page-offer a .box .slider-box-button .button-reverse, .group-page-offer a .box .slider-box-button section.section .light a.button-outline, .group-page-offer a .box .slider-box-button section.section .light .main-category-list-tree-horizontal ul li a, .group-page-offer a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li .light a, section.section .light .group-page-offer a .box .slider-box-button a.button-outline, section.section .light .group-page-offer a .box .slider-box-button .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light .group-page-offer a .box .slider-box-button a, .group-page-offer a .box .slider-box-button section.section .light a.button-outline-grey, section.section .light .group-page-offer a .box .slider-box-button a.button-outline-grey, .group-page-offer a .box .slider-box-button section.section .light a.button-outline-grey2, section.section .light .group-page-offer a .box .slider-box-button a.button-outline-grey2, .group-page-offer a .box .slider-box-button section.section .light ul.buttons li a, section.section .light ul.buttons li .group-page-offer a .box .slider-box-button a, .group-page-offer a .box .slider-box-button ul.buttons li section.section .light a, ul.buttons li section.section .light .group-page-offer a .box .slider-box-button a,
.group-page-attractions a .box .slider-box-button .button,
.group-page-attractions a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li a:hover,
section.section .main-category-list-tree-horizontal ul li .group-page-attractions a .box .slider-box-button a:hover,
.group-page-attractions a .box .slider-box-button .big-button,
.group-page-attractions a .box .slider-box-button .button-reverse,
.group-page-attractions a .box .slider-box-button section.section .light a.button-outline,
.group-page-attractions a .box .slider-box-button section.section .light .main-category-list-tree-horizontal ul li a,
.group-page-attractions a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li .light a,
section.section .light .group-page-attractions a .box .slider-box-button a.button-outline,
section.section .light .group-page-attractions a .box .slider-box-button .main-category-list-tree-horizontal ul li a,
section.section .main-category-list-tree-horizontal ul li .light .group-page-attractions a .box .slider-box-button a,
.group-page-attractions a .box .slider-box-button section.section .light a.button-outline-grey,
section.section .light .group-page-attractions a .box .slider-box-button a.button-outline-grey,
.group-page-attractions a .box .slider-box-button section.section .light a.button-outline-grey2,
section.section .light .group-page-attractions a .box .slider-box-button a.button-outline-grey2,
.group-page-attractions a .box .slider-box-button section.section .light ul.buttons li a,
section.section .light ul.buttons li .group-page-attractions a .box .slider-box-button a,
.group-page-attractions a .box .slider-box-button ul.buttons li section.section .light a,
ul.buttons li section.section .light .group-page-attractions a .box .slider-box-button a,
.group-page-item-list a .box .slider-box-button .button,
.group-page-item-list a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li a:hover,
section.section .main-category-list-tree-horizontal ul li .group-page-item-list a .box .slider-box-button a:hover,
.group-page-item-list a .box .slider-box-button .big-button,
.group-page-item-list a .box .slider-box-button .button-reverse,
.group-page-item-list a .box .slider-box-button section.section .light a.button-outline,
.group-page-item-list a .box .slider-box-button section.section .light .main-category-list-tree-horizontal ul li a,
.group-page-item-list a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li .light a,
section.section .light .group-page-item-list a .box .slider-box-button a.button-outline,
section.section .light .group-page-item-list a .box .slider-box-button .main-category-list-tree-horizontal ul li a,
section.section .main-category-list-tree-horizontal ul li .light .group-page-item-list a .box .slider-box-button a,
.group-page-item-list a .box .slider-box-button section.section .light a.button-outline-grey,
section.section .light .group-page-item-list a .box .slider-box-button a.button-outline-grey,
.group-page-item-list a .box .slider-box-button section.section .light a.button-outline-grey2,
section.section .light .group-page-item-list a .box .slider-box-button a.button-outline-grey2,
.group-page-item-list a .box .slider-box-button section.section .light ul.buttons li a,
section.section .light ul.buttons li .group-page-item-list a .box .slider-box-button a,
.group-page-item-list a .box .slider-box-button ul.buttons li section.section .light a,
ul.buttons li section.section .light .group-page-item-list a .box .slider-box-button a,
.group-page-tiles-blog a .box .slider-box-button .button,
.group-page-tiles-blog a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li a:hover,
section.section .main-category-list-tree-horizontal ul li .group-page-tiles-blog a .box .slider-box-button a:hover,
.group-page-tiles-blog a .box .slider-box-button .big-button,
.group-page-tiles-blog a .box .slider-box-button .button-reverse,
.group-page-tiles-blog a .box .slider-box-button section.section .light a.button-outline,
.group-page-tiles-blog a .box .slider-box-button section.section .light .main-category-list-tree-horizontal ul li a,
.group-page-tiles-blog a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li .light a,
section.section .light .group-page-tiles-blog a .box .slider-box-button a.button-outline,
section.section .light .group-page-tiles-blog a .box .slider-box-button .main-category-list-tree-horizontal ul li a,
section.section .main-category-list-tree-horizontal ul li .light .group-page-tiles-blog a .box .slider-box-button a,
.group-page-tiles-blog a .box .slider-box-button section.section .light a.button-outline-grey,
section.section .light .group-page-tiles-blog a .box .slider-box-button a.button-outline-grey,
.group-page-tiles-blog a .box .slider-box-button section.section .light a.button-outline-grey2,
section.section .light .group-page-tiles-blog a .box .slider-box-button a.button-outline-grey2,
.group-page-tiles-blog a .box .slider-box-button section.section .light ul.buttons li a,
section.section .light ul.buttons li .group-page-tiles-blog a .box .slider-box-button a,
.group-page-tiles-blog a .box .slider-box-button ul.buttons li section.section .light a,
ul.buttons li section.section .light .group-page-tiles-blog a .box .slider-box-button a,
.group-page-tiles a .box .slider-box-button .button,
.group-page-tiles a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li a:hover,
section.section .main-category-list-tree-horizontal ul li .group-page-tiles a .box .slider-box-button a:hover,
.group-page-tiles a .box .slider-box-button .big-button,
.group-page-tiles a .box .slider-box-button .button-reverse,
.group-page-tiles a .box .slider-box-button section.section .light a.button-outline,
.group-page-tiles a .box .slider-box-button section.section .light .main-category-list-tree-horizontal ul li a,
.group-page-tiles a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li .light a,
section.section .light .group-page-tiles a .box .slider-box-button a.button-outline,
section.section .light .group-page-tiles a .box .slider-box-button .main-category-list-tree-horizontal ul li a,
section.section .main-category-list-tree-horizontal ul li .light .group-page-tiles a .box .slider-box-button a,
.group-page-tiles a .box .slider-box-button section.section .light a.button-outline-grey,
section.section .light .group-page-tiles a .box .slider-box-button a.button-outline-grey,
.group-page-tiles a .box .slider-box-button section.section .light a.button-outline-grey2,
section.section .light .group-page-tiles a .box .slider-box-button a.button-outline-grey2,
.group-page-tiles a .box .slider-box-button section.section .light ul.buttons li a,
section.section .light ul.buttons li .group-page-tiles a .box .slider-box-button a,
.group-page-tiles a .box .slider-box-button ul.buttons li section.section .light a,
ul.buttons li section.section .light .group-page-tiles a .box .slider-box-button a,
.group-page-tiles2 a .box .slider-box-button .button,
.group-page-tiles2 a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li a:hover,
section.section .main-category-list-tree-horizontal ul li .group-page-tiles2 a .box .slider-box-button a:hover,
.group-page-tiles2 a .box .slider-box-button .big-button,
.group-page-tiles2 a .box .slider-box-button .button-reverse,
.group-page-tiles2 a .box .slider-box-button section.section .light a.button-outline,
.group-page-tiles2 a .box .slider-box-button section.section .light .main-category-list-tree-horizontal ul li a,
.group-page-tiles2 a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li .light a,
section.section .light .group-page-tiles2 a .box .slider-box-button a.button-outline,
section.section .light .group-page-tiles2 a .box .slider-box-button .main-category-list-tree-horizontal ul li a,
section.section .main-category-list-tree-horizontal ul li .light .group-page-tiles2 a .box .slider-box-button a,
.group-page-tiles2 a .box .slider-box-button section.section .light a.button-outline-grey,
section.section .light .group-page-tiles2 a .box .slider-box-button a.button-outline-grey,
.group-page-tiles2 a .box .slider-box-button section.section .light a.button-outline-grey2,
section.section .light .group-page-tiles2 a .box .slider-box-button a.button-outline-grey2,
.group-page-tiles2 a .box .slider-box-button section.section .light ul.buttons li a,
section.section .light ul.buttons li .group-page-tiles2 a .box .slider-box-button a,
.group-page-tiles2 a .box .slider-box-button ul.buttons li section.section .light a,
ul.buttons li section.section .light .group-page-tiles2 a .box .slider-box-button a,
.group-page-slider a .box .slider-box-button .button,
.group-page-slider a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li a:hover,
section.section .main-category-list-tree-horizontal ul li .group-page-slider a .box .slider-box-button a:hover,
.group-page-slider a .box .slider-box-button .big-button,
.group-page-slider a .box .slider-box-button .button-reverse,
.group-page-slider a .box .slider-box-button section.section .light a.button-outline,
.group-page-slider a .box .slider-box-button section.section .light .main-category-list-tree-horizontal ul li a,
.group-page-slider a .box .slider-box-button section.section .main-category-list-tree-horizontal ul li .light a,
section.section .light .group-page-slider a .box .slider-box-button a.button-outline,
section.section .light .group-page-slider a .box .slider-box-button .main-category-list-tree-horizontal ul li a,
section.section .main-category-list-tree-horizontal ul li .light .group-page-slider a .box .slider-box-button a,
.group-page-slider a .box .slider-box-button section.section .light a.button-outline-grey,
section.section .light .group-page-slider a .box .slider-box-button a.button-outline-grey,
.group-page-slider a .box .slider-box-button section.section .light a.button-outline-grey2,
section.section .light .group-page-slider a .box .slider-box-button a.button-outline-grey2,
.group-page-slider a .box .slider-box-button section.section .light ul.buttons li a,
section.section .light ul.buttons li .group-page-slider a .box .slider-box-button a,
.group-page-slider a .box .slider-box-button ul.buttons li section.section .light a,
ul.buttons li section.section .light .group-page-slider a .box .slider-box-button a {
  display: block;
  width: 100%;
}
.group-page-offer a .box .slider-box-button,
.group-page-attractions a .box .slider-box-button,
.group-page-item-list a .box .slider-box-button,
.group-page-tiles-blog a .box .slider-box-button,
.group-page-tiles a .box .slider-box-button,
.group-page-tiles2 a .box .slider-box-button,
.group-page-slider a .box .slider-box-button {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.group-page-offer a .box:hover .slider-box-button,
.group-page-attractions a .box:hover .slider-box-button,
.group-page-item-list a .box:hover .slider-box-button,
.group-page-tiles-blog a .box:hover .slider-box-button,
.group-page-tiles a .box:hover .slider-box-button,
.group-page-tiles2 a .box:hover .slider-box-button,
.group-page-slider a .box:hover .slider-box-button {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.group-page-offer a .box:hover img,
.group-page-attractions a .box:hover img,
.group-page-item-list a .box:hover img,
.group-page-tiles-blog a .box:hover img,
.group-page-tiles a .box:hover img,
.group-page-tiles2 a .box:hover img,
.group-page-slider a .box:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.group-page-offer a img,
.group-page-attractions a img,
.group-page-item-list a img,
.group-page-tiles-blog a img,
.group-page-tiles a img,
.group-page-tiles2 a img,
.group-page-slider a img {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}

.group-page-slider {
  gap: 1rem;
}
.group-page-slider .slider .owl-nav .owl-prev, .group-page-slider .slider .owl-nav .owl-next {
  padding: 0.5rem;
}
.group-page-slider .slider .owl-nav .owl-prev svg, .group-page-slider .slider .owl-nav .owl-next svg {
  width: 1rem;
  height: auto;
}
.group-page-slider .slider .owl-nav .owl-prev svg polyline, .group-page-slider .slider .owl-nav .owl-next svg polyline {
  fill: var(--color-primary);
}
.group-page-slider .slider .owl-nav .owl-prev:hover,
.group-page-slider .slider .owl-nav .owl-next:hover {
  background: none;
}
.group-page-slider .slider .owl-nav .owl-prev:hover svg polyline,
.group-page-slider .slider .owl-nav .owl-next:hover svg polyline {
  fill: var(--color-secondary) !important;
}
.group-page-slider a {
  display: block;
  padding: 1rem;
}
.group-page-slider a figure {
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
}
.group-page-slider a .background-img {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.group-page-slider a .box {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  overflow: hidden;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
}
.group-page-slider a:hover .background-img {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  -moz-transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -o-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.group-page-slider a:hover .box {
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.3);
  -khtml-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.3);
}

.group-page-tiles-blog h3 {
  font-size: 1.25rem;
  font-weight: bold;
}
.group-page-tiles-blog a .box {
  margin: 0;
}
.group-page-tiles-blog p.description {
  overflow: hidden;
  height: 6rem;
  margin-bottom: 1.5rem;
}

section.section .group-page-tiles .box {
  overflow: hidden;
}
section.section .group-page-tiles .box .box-content {
  padding: 2rem 1rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.section .group-page-tiles .box a {
  width: 100%;
}
section.section .group-page-tiles .box a h3 {
  text-align: center;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 2.2rem;
  color: var(--color-secondary);
}
section.section .group-page-tiles .box a figure {
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid white;
  margin-bottom: 10px;
}
section.section .group-page-tiles .box a figure .background-img {
  min-height: 320px;
}
@media only screen and (max-width: 767.98px) {
  section.section .group-page-tiles .box a figure {
    padding: 0;
    margin-left: -24px;
    width: calc(100% + 48px);
  }
}
section.section .group-page-tiles .box a .box-content {
  background-color: white;
}
section.section .group-page-tiles .box a .box-content-short-text {
  overflow: hidden;
  height: 108px;
  color: black;
}
@media only screen and (max-width: 991.98px) {
  section.section .group-page-tiles .box a .box-content-short-text {
    overflow: visible;
    height: auto;
  }
}
section.section .group-page-tiles .box a:hover h3 {
  color: var(--color-primary);
}

.group-page-cols-2 {
  flex-direction: column;
  display: flex;
  gap: 16px;
}
.group-page-cols-2 .box {
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  padding: 2rem;
  background-color: var(--color-primary-lightest);
  position: relative;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 991.98px) {
  .group-page-cols-2 .box {
    flex-direction: column;
  }
}
.group-page-cols-2 .box figure {
  -webkit-border-radius: 14px;
  -khtml-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border-radius: 14px;
  overflow: hidden;
  order: 0;
  margin: 0;
  background-size: cover;
  background-position: center;
  width: 50%;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 991.98px) {
  .group-page-cols-2 .box figure {
    width: 100%;
    padding-bottom: 66.6666666667%;
  }
}
.group-page-cols-2 .box figure .background-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.group-page-cols-2 .box .box-content {
  position: relative;
  min-height: 25rem;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem;
  width: 50%;
  order: 1;
}
@media only screen and (max-width: 991.98px) {
  .group-page-cols-2 .box .box-content {
    width: 100%;
    min-height: auto;
    padding: 1.25rem;
  }
}
.group-page-cols-2 .box .box-content .button, .group-page-cols-2 .box .box-content section.section .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .group-page-cols-2 .box .box-content a:hover, .group-page-cols-2 .box .box-content .big-button, .group-page-cols-2 .box .box-content .button-reverse, .group-page-cols-2 .box .box-content section.section .light a.button-outline, .group-page-cols-2 .box .box-content section.section .light .main-category-list-tree-horizontal ul li a, .group-page-cols-2 .box .box-content section.section .main-category-list-tree-horizontal ul li .light a, section.section .light .group-page-cols-2 .box .box-content a.button-outline, section.section .light .group-page-cols-2 .box .box-content .main-category-list-tree-horizontal ul li a, section.section .main-category-list-tree-horizontal ul li .light .group-page-cols-2 .box .box-content a, .group-page-cols-2 .box .box-content section.section .light a.button-outline-grey, section.section .light .group-page-cols-2 .box .box-content a.button-outline-grey, .group-page-cols-2 .box .box-content section.section .light a.button-outline-grey2, section.section .light .group-page-cols-2 .box .box-content a.button-outline-grey2, .group-page-cols-2 .box .box-content section.section .light ul.buttons li a, section.section .light ul.buttons li .group-page-cols-2 .box .box-content a, .group-page-cols-2 .box .box-content ul.buttons li section.section .light a, ul.buttons li section.section .light .group-page-cols-2 .box .box-content a {
  margin-top: 2rem;
}
.group-page-cols-2 .box .box-content:after {
  -webkit-border-radius: 14px;
  -khtml-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border-radius: 14px;
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  border: 1px solid white;
  z-index: 1;
}
.group-page-cols-2 .box .box-content:before {
  z-index: 1;
  left: 0;
  bottom: 0rem;
  content: "";
  position: absolute;
  width: 100%;
  height: 3rem;
}
.group-page-cols-2 .box .box-content:before svg path {
  fill: black;
}
.group-page-cols-2 .box .box-content h3 {
  line-height: 2rem;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: var(--font-header);
  color: var(--color-primary);
}
.group-page-cols-2 .box .box-content > * {
  position: relative;
  z-index: 2;
}
.group-page-cols-2 .box:nth-child(odd) figure {
  order: 1;
}
@media only screen and (max-width: 991.98px) {
  .group-page-cols-2 .box:nth-child(odd) figure {
    order: 0;
  }
}
.group-page-cols-2 .box:nth-child(odd) .box-content {
  order: 0;
}
@media only screen and (max-width: 991.98px) {
  .group-page-cols-2 .box:nth-child(odd) .box-content {
    order: 1;
  }
}

.slider-nav-container {
  margin: 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767.98px) {
  .slider-nav-container {
    display: none;
  }
}
.slider-nav-container .owl-nav {
  margin-right: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.slider-nav-container .owl-prev, .slider-nav-container .owl-next {
  text-align: center;
  margin-left: 1px;
  position: relative;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #d1d1d1;
  color: black;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.slider-nav-container .owl-prev svg, .slider-nav-container .owl-next svg {
  width: 1rem;
  height: auto;
}
.slider-nav-container .owl-prev svg path, .slider-nav-container .owl-next svg path {
  fill: #d1d1d1;
}
.slider-nav-container .owl-prev:hover, .slider-nav-container .owl-next:hover {
  background-color: var(--color-secondary);
}
.slider-nav-container .owl-prev:hover svg path, .slider-nav-container .owl-next:hover svg path {
  fill: white;
}

.group-page-offer-wrapper {
  position: relative;
}
.group-page-offer-wrapper .group-page-offer {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
}
.group-page-offer-wrapper .group-page-offer .box {
  overflow: hidden;
  margin: 0 1rem;
  background-color: white;
}
@media only screen and (max-width: 991.98px) {
  .group-page-offer-wrapper .group-page-offer .box {
    margin: 0;
  }
}
.group-page-offer-wrapper .group-page-offer .box figure {
  position: relative;
}
.group-page-offer-wrapper .group-page-offer .box figure .box-price {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0.5rem 1.5rem;
  background-color: var(--color-secondary);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
  letter-spacing: 0.02px;
  font-family: var(--font-header);
}
.group-page-offer-wrapper .group-page-offer .box figure .box-price .price-from span {
  font-weight: lighter;
  font-size: 1.8rem;
  color: var(--color-primary);
}
.group-page-offer-wrapper .group-page-offer .box figure .background-img {
  padding-bottom: 66%;
}
.group-page-offer-wrapper .group-page-offer .box figure .box-content-short-text {
  z-index: 99;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -ms-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  position: absolute;
  background-color: var(--color-secondary);
  color: white;
  font-size: 0.812rem;
  letter-spacing: 1px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.group-page-offer-wrapper .group-page-offer .box .box-content {
  padding: 1rem;
  text-align: center;
}
.group-page-offer-wrapper .group-page-offer .box .box-content h3 {
  font-size: 1.1rem;
  color: var(--color-secondary);
  height: 2.8rem;
  overflow: hidden;
}
.group-page-offer-wrapper .group-page-offer .box:hover .box-content-short-text {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.group-page-attractions .box {
  margin: 1rem;
  height: auto;
  box-shadow: none;
  background-color: transparent;
}
.group-page-attractions .box figure .background-img {
  min-height: 15rem;
}
.group-page-attractions .header-container {
  background-color: white;
  text-align: center;
  margin: -1rem 1rem 0 1rem;
  width: calc(100% - 2rem);
  padding: 2rem;
  position: relative;
}
.group-page-attractions .header-container h4 {
  color: black;
  margin: 0;
  font-size: 1.4rem;
  font-weight: normal;
}

.group-page-list time {
  display: block;
  text-align: right;
  color: #313131;
  font-size: 0.8rem;
}
.group-page-list .box-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
.group-page-list .box-content span {
  display: block;
  color: #313131;
}
.group-page-list .box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: none;
  padding-bottom: 1rem;
  min-height: 235px;
}
@media only screen and (max-width: 991.98px) {
  .group-page-list .box {
    flex-direction: column;
    min-height: auto;
  }
}
.group-page-list .box .background-img {
  width: 40%;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 991.98px) {
  .group-page-list .box .background-img {
    width: 100%;
    padding-bottom: 66.6666666667%;
  }
}
.group-page-list .box .content-wrapper {
  width: 60%;
  padding: 2rem;
  background-color: white;
}
@media only screen and (max-width: 991.98px) {
  .group-page-list .box .content-wrapper {
    width: 100%;
  }
}
.group-page-list .box a {
  color: var(--color-primary);
  text-transform: uppercase;
}
.group-page-list .box p {
  color: #313131;
  margin-bottom: 2rem;
}
.group-page-list .box h3 {
  margin-top: 0;
  font-size: 1.375rem;
  font-family: var(--font-text);
  color: black;
  text-transform: none;
  font-weight: 700;
}
.group-page-list .box h3:before {
  content: none;
  display: none;
}
.group-page-list .box .button-container {
  position: absolute;
  margin-top: 20px;
  text-align: right;
  bottom: 2.5rem;
  right: 2rem;
}
.group-page-list .row:nth-child(even) .box h3 {
  color: var(--color-secondary);
}
.group-page-list .row:nth-child(even) .box .button-container {
  text-align: right;
}
.group-page-list .row:nth-child(even) .box .button-container a {
  background-color: var(--color-secondary);
  border: solid var(--color-secondary);
  color: #fff;
  padding: 10px 20px;
}
.group-page-list .row:nth-child(even) .box .button-container a:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.group-page-list.small time {
  text-align: left;
}
.group-page-list.small a:nth-child(1) {
  flex-direction: column;
  display: flex;
  flex: 2;
  width: calc(100% - 6rem);
}
.group-page-list.small a:nth-child(2) {
  flex: 1;
  display: flex;
  margin-left: 1rem;
  position: relative;
}
.group-page-list.small a:nth-child(2) img {
  object-fit: cover;
}

.group-page-item-list .box {
  position: relative;
  min-height: 20rem;
  margin: 1rem 0;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 991.98px) {
  .group-page-item-list .box {
    flex-direction: column;
  }
}
.group-page-item-list .box .img-wrapper {
  position: relative;
  display: flex;
  width: 50%;
  margin-right: 1rem;
}
@media only screen and (max-width: 991.98px) {
  .group-page-item-list .box .img-wrapper {
    width: 100%;
    padding-bottom: 66.6666666667%;
  }
}
.group-page-item-list .box .img-wrapper .background-img {
  -webkit-transition: all 3s ease 0ms;
  -moz-transition: all 3s ease 0ms;
  -ms-transition: all 3s ease 0ms;
  -o-transition: all 3s ease 0ms;
  transition: all 3s ease 0ms;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
}
.group-page-item-list .box .img-wrapper:hover .background-img {
  background-position: top;
}
.group-page-item-list .box .box-item-data {
  display: flex;
  flex-direction: row;
  padding: 2rem;
  width: 50%;
}
@media only screen and (max-width: 1199.98px) {
  .group-page-item-list .box .box-item-data {
    flex-direction: column;
  }
}
@media only screen and (max-width: 991.98px) {
  .group-page-item-list .box .box-item-data {
    width: 100%;
  }
}
.group-page-item-list .box .box-item-data .box-col-1 {
  display: flex;
  flex-direction: column;
  flex: 3;
  justify-content: space-between;
}
@media only screen and (max-width: 991.98px) {
  .group-page-item-list .box .box-item-data .box-col-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.group-page-item-list .box .box-item-data .box-col-1 .box-item-data-header {
  display: flex;
  justify-content: space-between;
}
.group-page-item-list .box .box-item-data .box-col-1 .box-item-data-header .box-item-data-header-title h3 {
  font-family: var(--font-text);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding-bottom: 0.3rem;
}
@media only screen and (max-width: 991.98px) {
  .group-page-item-list .box .box-item-data .box-col-1 .box-item-data-header .box-item-data-header-title h3 {
    text-align: center;
  }
}
.group-page-item-list .box .box-item-data .box-col-2 {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
@media only screen and (max-width: 1199.98px) {
  .group-page-item-list .box .box-item-data .box-col-2 {
    justify-content: flex-start;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 991.98px) {
  .group-page-item-list .box .box-item-data .box-col-2 {
    margin-top: 1rem;
  }
}
.group-page-item-list .box .box-item-data .box-col-2 .box-item-data-header-price-from {
  display: flex;
  width: 7rem;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
@media only screen and (max-width: 1199.98px) {
  .group-page-item-list .box .box-item-data .box-col-2 .box-item-data-header-price-from {
    align-items: flex-start;
    justify-content: center;
    top: 0.5rem;
    position: relative;
  }
}
.group-page-item-list .box .box-item-data .box-col-2 .box-item-data-header-price-from small {
  margin-top: -0.3rem;
}
.group-page-item-list .box .box-item-data .box-col-2 .box-item-data-header-price-from .currency {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.group-page-item-list .box .box-item-data .box-col-2 .box-item-data-header-price-from .currency h5 {
  margin: 0 0.2rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.group-page-item-list .box .box-item-data .box-col-2 .box-item-data-header-price-from .currency small {
  font-size: 0.7rem;
}
.group-page-item-list .box a.button-link {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

.group-page-item-tile {
  display: flex;
  flex-wrap: wrap;
}
.group-page-item-tile .box {
  background-color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(50% - 1rem);
  margin: 0.5rem;
}
@media only screen and (max-width: 1199.98px) {
  .group-page-item-tile .box {
    width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  .group-page-item-tile .box {
    width: 100%;
    padding: 0;
  }
}
.group-page-item-tile .box .img-wrapper {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: relative;
  width: 100%;
  display: block;
  height: 0;
  padding-bottom: 66.6666666667%;
}
.group-page-item-tile .box .img-wrapper div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.group-page-item-tile .box .box-item-data {
  overflow: hidden;
  flex-direction: column;
  display: flex;
  padding: 2rem;
}
.group-page-item-tile .box .box-item-data .stick-price {
  position: absolute;
  top: 0;
}
.group-page-item-tile .box .box-item-data .box-item-data-header-title h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 300;
  font-family: var(--font-header);
  color: black;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8rem;
  height: 4.2rem;
}
.group-page-item-tile .box .box-item-data .box-item-data-header-price-from {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
}
.group-page-item-tile .box .box-item-data .box-item-data-header-price-from .currency {
  align-items: baseline;
  display: flex;
  flex-direction: row;
}
.group-page-item-tile .box .box-item-data .box-item-data-header-price-from .currency h5 {
  font-family: var(--font-header);
  font-size: 2rem;
  color: var(--color-primary);
  margin: 0 0.2rem;
}
.group-page-item-tile .box .box-item-data .box-property-wrapper {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  height: 0;
}
.group-page-item-tile .box .box-item-data .box-property-wrapper .properties-container-wrapper .properties-container {
  display: flex;
  flex-direction: row;
}
.group-page-item-tile .box .box-item-data .box-property-wrapper .properties-container-wrapper .properties-container .properties-name svg {
  margin-right: 1rem;
  width: 1rem;
  height: auto;
}
.group-page-item-tile .box:hover .img-wrapper {
  padding-bottom: calc(66.6666666667% - 122px);
}
.group-page-item-tile .box:hover .box-property-wrapper {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  height: 122px;
}

.attractions_descp .box {
  background-color: white;
}
.attractions_descp .box .short-content {
  padding: 2rem;
  text-align: center;
}

.slider-scroller .stage {
  width: 100%;
  overflow-x: auto;
  display: block;
}
.slider-scroller .box-container {
  float: left;
  display: inline-block;
}
.slider-scroller .box-container .box {
  padding: 19px;
}
.slider-scroller .box-container .box .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  left: 0;
  top: 0;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.slider-scroller .box-container .box figure {
  border: 1px solid #3b563b;
  position: relative;
  overflow: hidden;
  padding: 13px;
}
.slider-scroller .box-container .box h2 {
  color: #fff;
}
.slider-scroller .box-container .box h2:before {
  content: " ";
  padding-left: 70px;
}
@media only screen and (max-width: 991.98px) {
  .slider-scroller .box-container .box h2:before {
    padding-left: 15px;
  }
}
.slider-scroller .box-container .box h2:after {
  content: " ";
  padding-right: 70px;
}
@media only screen and (max-width: 991.98px) {
  .slider-scroller .box-container .box h2:after {
    padding-right: 15px;
  }
}
.slider-scroller .box-container .box .short-content {
  color: #fff;
  font-family: var(--font-header);
  text-align: center;
}
.slider-scroller .box-container .box .box-link-container {
  text-align: center;
  margin-top: 20px;
}
.slider-scroller .box-container .box .box-link-container span {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  display: inline-block;
  background-color: rgb(211, 129, 93);
  color: var(--color-primary);
  padding: 7px 25px;
  text-transform: uppercase;
}
.slider-scroller .box-container .box:hover .cover {
  background-color: rgba(211, 129, 93, 0.2);
}
.slider-scroller .box-container .box:hover span {
  background-color: var(--color-secondary);
}

.group-page-tiles2 .box figure .background-img {
  height: 0;
  padding-bottom: 56.25%;
  background-size: cover;
  background-repeat: no-repeat;
}
.group-page-tiles2 .box .box-content {
  padding: 0;
  box-shadow: none;
  text-align: left;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.group-page-tiles2 .box .box-content h3.box-content-header {
  height: auto;
  margin: 1rem 0;
  text-align: left;
}
.group-page-tiles2 .box .box-content .box-content-short-text {
  text-align: left;
}

.group-page-item-slider .box {
  overflow: hidden;
  background-color: white;
  margin: 0.5rem;
  position: relative;
}
.group-page-item-slider .box:hover .stick-price {
  left: 0;
}
.group-page-item-slider .box .box-link-container {
  padding: 1rem;
  text-align: center;
}
.group-page-item-slider .box .text-container {
  padding: 1rem;
}
.group-page-item-slider .box .text-container h3 {
  margin: 16px 0 0;
  color: var(--color-primary);
  height: 3rem;
  padding: 0;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 2rem;
}
.group-page-item-slider .stick-price {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  flex-direction: column;
  display: flex;
  align-items: center;
  position: absolute;
  left: -0.5rem;
  bottom: 0;
  background-color: #f3f3f3;
  padding: 0.5rem;
}
.group-page-item-slider .stick-price small {
  font-size: 0.8rem;
}
.group-page-item-slider .stick-price h5 {
  margin: 0;
  font-family: var(--font-header);
  font-weight: 300;
  color: black;
  font-size: 2rem;
}
.group-page-item-slider .stick-price h5 span {
  font-size: 1rem;
}
.group-page-item-slider .tile-header {
  color: var(--color-primary);
  text-align: center;
}
.group-page-item-slider .tile-header h3 {
  font-family: var(--font-header);
}

.group-page-tiles3 .box {
  overflow: hidden;
}
.group-page-tiles3 .box figure {
  background-color: black;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.group-page-tiles3 .box .background-img {
  background-size: 100%;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  padding-bottom: 66%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.group-page-tiles3 .box .box-content {
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: absolute;
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 999;
  top: 100%;
  background: none;
  width: 100%;
  font-size: 0.825rem;
}
.group-page-tiles3 .box .box-content svg {
  height: 0.8rem;
  width: auto;
}
.group-page-tiles3 .box .box-content svg path {
  fill: white;
}
.group-page-tiles3 .box .box-content .stripe, .group-page-tiles3 .box .box-content .prop-val {
  width: fit-content;
  background: rgba(var(--color-primary), 0.1);
  padding: 0.1rem 0.5rem;
  margin-top: 1px;
}
.group-page-tiles3 .box .box-content .stripe {
  display: inline;
}
.group-page-tiles3 .box .box-content h3 {
  display: inline;
  width: fit-content;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
}
.group-page-tiles3 .box:hover .background-img {
  background-size: 110%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

.theme1 .group-page-item-tile .box .box-item-data .box-item-data-header-price-from .currency h5,
.theme1 .group-page-cols-2 .box .box-content h3 {
  color: var(--color-primary);
}

.theme2 .group-page-item-tile .box .box-item-data .box-item-data-header-price-from .currency h5,
.theme2 .group-page-cols-2 .box .box-content h3 {
  color: rgb(211, 129, 93);
}

.group-page-blog-item {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.group-page-blog-item .box figure {
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  overflow: hidden;
}
.group-page-blog-item .box footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.section .widget-tabs ul.nav-tabs li::before {
  display: none !important;
}
section.section .widget-tabs .tab-content {
  padding-top: 1rem;
}
section.section .widget-tabs .tab-content h2.header, section.section .widget-tabs .tab-content h2 {
  color: #fff;
  background: none;
}
section.section .widget-tabs h3 {
  border-bottom: 1px solid #d1d1d1;
  margin-bottom: 2rem;
  font-family: var(--font-text), sans-serif;
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-tabs .tab-content {
    margin-top: 2rem;
  }
}
section.section .widget-tabs .nav-pills {
  text-align: left;
  margin: 0;
}
section.section .widget-tabs .nav-pills li {
  margin: 0;
  float: none;
  display: block;
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
section.section .widget-tabs .nav-pills li a {
  font-weight: bold;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: none;
  color: var(--color-primary);
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-tabs .nav-pills li a {
    padding: 0;
  }
}
section.section .widget-tabs .nav-pills li.active a, section.section .widget-tabs .nav-pills li:hover a {
  background: none;
  color: var(--color-secondary);
}
section.section .widget-list figcaption {
  font-weight: bold;
}
section.section .widget-list figure {
  cursor: pointer;
  position: relative;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
section.section .widget-list figure .img-mask {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  font-size: 3rem;
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(211, 129, 93, 0.4);
}
section.section .widget-list figure:hover .img-mask {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
section.section .widget-accordion {
  background-color: white;
}
section.section .widget-accordion .accordion-button {
  font-weight: normal;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  font-size: 1.1rem;
  color: var(--color-primary) !important;
}
section.section .widget-accordion .accordion-collapse {
  border: none;
}
section.section .widget-accordion .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background-color: transparent;
}
section.section .widget-accordion .accordion-item .accordion-header {
  margin: 0;
}
section.section .widget-accordion .accordion-item button.accordion-button {
  background-color: transparent;
  border: none;
  font-family: var(--font-text), sans-serif;
  color: black;
  font-weight: bold;
}
section.section .widget-accordion .accordion-item button.accordion-button span {
  padding-right: 10px;
}
section.section .widget-accordion .accordion-item .accordion-button.collapsed {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--color-primary);
}
section.section .widget-accordion .accordion-item .accordion-body {
  padding: 1.25rem 1rem;
}
section.section .widget-accordion .accordion-item .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='%23657566'%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");
  transform: rotate(180deg);
}
section.section .wrapper-item-container-stylize {
  position: relative;
}
section.section .wrapper-item-container-stylize:after, section.section .wrapper-item-container-stylize:before {
  content: "";
  position: absolute;
  left: 1.1875rem;
  bottom: 1.1875rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary-lighten);
  background: transparent;
  z-index: -2;
  transform: translateZ(-1em);
}
@media only screen and (max-width: 991.98px) {
  section.section .wrapper-item-container-stylize:after, section.section .wrapper-item-container-stylize:before {
    display: none;
  }
}
section.section .wrapper-item-container-stylize:before {
  left: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid var(--color-primary);
}
section.section .widget-wrapper-item .wrapper-item {
  margin-bottom: 50px;
  position: relative;
  flex-direction: row;
  display: flex;
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-wrapper-item .wrapper-item {
    flex-direction: column;
    margin-left: -24px;
    width: calc(100% + 48px);
  }
}
section.section .widget-wrapper-item .wrapper-item figure {
  border: none;
  margin: 0;
  background-size: cover;
  background-position: center;
  width: 50%;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-wrapper-item .wrapper-item figure {
    width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-wrapper-item .wrapper-item figure {
    width: 100%;
    order: 0;
    padding-bottom: calc(66.6666666667% + 2rem);
  }
}
section.section .widget-wrapper-item .wrapper-item .wrapper-item-container {
  width: 55%;
  margin: 4rem 0;
  position: relative;
  z-index: 11;
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-wrapper-item .wrapper-item .wrapper-item-container {
    width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-wrapper-item .wrapper-item .wrapper-item-container {
    width: calc(100% - 2rem);
    margin: -2rem 1rem 0 1rem;
  }
}
section.section .widget-wrapper-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 19rem;
  padding: 3rem;
  margin-left: -3rem;
  margin-right: 0;
  width: calc(100% + 2rem);
  background-color: white;
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-wrapper-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize {
    margin: 0;
    width: 100%;
    padding: 2rem;
  }
}
section.section .widget-wrapper-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize .row {
  margin: 0;
  position: relative;
  z-index: 99;
}
section.section .widget-wrapper-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize .row > .column {
  padding: 0;
}
section.section .widget-wrapper-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize h3 {
  font-weight: 400;
  margin-top: 0;
  font-family: var(--font-header), serif;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 32px;
}
section.section .widget-wrapper-item > div:nth-child(even) .wrapper-item figure {
  order: 2;
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-wrapper-item > div:nth-child(even) .wrapper-item figure {
    order: 0;
  }
}
section.section .widget-wrapper-item > div:nth-child(even) .wrapper-item .wrapper-item-container-stylize {
  margin-left: 0;
  margin-right: -4rem;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}
section.section .widget-cols2-item a {
  color: white;
}
section.section .widget-cols2-item figure {
  overflow: hidden;
  box-shadow: none;
  padding: 1rem;
  border: 0;
}
section.section .widget-cols2-item .wrapper-item {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: relative;
  flex-direction: row;
  display: flex;
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-cols2-item .wrapper-item {
    flex-direction: column;
  }
}
section.section .widget-cols2-item .wrapper-item figure {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  overflow: hidden;
  margin: 0;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  width: 50%;
  position: relative;
  z-index: 10;
}
section.section .widget-cols2-item .wrapper-item figure a {
  display: block;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
section.section .widget-cols2-item .wrapper-item figure a:hover {
  -moz-transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -o-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-cols2-item .wrapper-item figure {
    width: 100%;
    margin-left: 0;
    order: 0;
    padding-bottom: calc(66.6666666667% + 2rem);
  }
}
section.section .widget-cols2-item .wrapper-item .wrapper-item-container {
  display: flex;
  align-items: center;
  width: 50%;
  position: relative;
  z-index: 11;
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-cols2-item .wrapper-item .wrapper-item-container {
    width: 100%;
  }
}
section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize {
    margin: 0;
    width: 100%;
  }
}
section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize .wrapper-item-container-stylize-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15%;
  margin-left: 0;
  z-index: 2;
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize .wrapper-item-container-stylize-inner {
    margin: 0;
    padding: 2rem;
    background-position: bottom center;
    display: block;
    min-height: auto;
    text-align: left;
  }
}
section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize h2 {
  color: var(--color-primary);
  line-height: 3.2rem;
  font-size: 2.5rem;
}
section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize h2:after, section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize h2:before {
  display: none;
}
section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize h2 {
  margin-top: 0;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 991.98px) {
  section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize h2 {
    margin-bottom: 1.2rem;
    line-height: 2.8rem;
    font-size: 2rem;
    justify-content: center;
  }
}
section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize h4 {
  color: var(--color-secondary);
  font-size: 1.125rem;
  font-family: var(--font-text), sans-serif;
}
section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize p {
  margin-bottom: 0;
}
section.section .widget-cols2-item > div:nth-child(even) .wrapper-item figure {
  order: 2;
}
section.section .widget-cols2-item > div:nth-child(even) .wrapper-item figure img {
  box-shadow: none;
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-cols2-item > div:nth-child(even) .wrapper-item figure {
    order: 0;
  }
}
section.section .widget-cols2-item > div:nth-child(even) .wrapper-item .wrapper-item-container-stylize .wrapper-item-container-stylize-inner {
  padding: 15%;
  text-align: left;
  margin-left: 0;
  z-index: 2;
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-cols2-item > div:nth-child(even) .wrapper-item .wrapper-item-container-stylize .wrapper-item-container-stylize-inner {
    text-align: left;
    margin: 0;
    padding: 2rem;
    background-position: bottom center;
  }
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-cols2-item > div:nth-child(even) .wrapper-item .wrapper-item-container-stylize .row {
    text-align: left;
  }
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-cols2-item > div:nth-child(even) .wrapper-item .wrapper-item-container-stylize {
    margin: 0;
  }
}
section.section .widget-tiles {
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
}
section.section .widget-tiles .box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(33.3% - 2rem);
  margin: 1rem;
}
@media only screen and (max-width: 1199.98px) {
  section.section .widget-tiles .box {
    width: calc(50% - 2rem);
  }
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-tiles .box {
    width: 100%;
    margin: 0;
  }
}
section.section .widget-tiles .box figure {
  margin: 0;
  width: 100%;
  padding-bottom: 66.6666666667%;
  background-size: cover;
  background-position: center;
}
section.section .widget-tiles .box .box-container {
  min-height: 195px;
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  width: calc(100% - 2rem);
  margin: -1rem 1rem 1rem 1rem;
  padding: 2rem;
  position: relative;
  z-index: 2;
  background-color: white;
}
@media only screen and (max-width: 767.98px) {
  section.section .widget-tiles .box .box-container {
    min-height: auto;
  }
}
section.section .widget-tiles .box .box-container .wrapper-item-container-stylize h3 {
  margin-top: 0;
}

.theme1 section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize h2 {
  color: var(--color-primary);
}

.theme2 section.section .widget-cols2-item .wrapper-item .wrapper-item-container .wrapper-item-container-stylize h2 {
  color: rgb(211, 129, 93);
}

section.section .widget-cols2-item .wrapper-item-container-stylize:after, section.section .widget-cols2-item .wrapper-item-container-stylize:before {
  display: none;
}

.airbnb-gallery-template {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  height: 27rem;
  overflow: hidden;
}
.airbnb-gallery-template a {
  overflow: hidden;
  position: relative;
}
.airbnb-gallery-template a:after {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 300;
  color: white;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 2a8 8 0 105.29 14.29l4.7 4.7 1.41-1.41-4.7-4.7A8 8 0 0010 2zm0 2a6 6 0 110 12 6 6 0 010-12z'/%3E%3C/svg%3E") center/34px no-repeat, radial-gradient(circle at center, rgba(0, 0, 0, 0.45) 0 34px, transparent 36px);
  pointer-events: none;
}
.airbnb-gallery-template a .background-img {
  transition: transform 0.35s ease;
  transform: scale(1);
  will-change: transform;
}
.airbnb-gallery-template a:hover .background-img {
  transform: scale(1.03);
}
.airbnb-gallery-template a:hover:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.airbnb-gallery-template .img-counter {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  z-index: 10;
  color: white;
}
@media only screen and (max-width: 991.98px) {
  .airbnb-gallery-template {
    flex-direction: column;
    height: 54rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .airbnb-gallery-template {
    height: auto;
  }
}
.airbnb-gallery-template .background-img {
  height: 100%;
}
@media only screen and (max-width: 767.98px) {
  .airbnb-gallery-template .background-img {
    height: auto;
    padding-bottom: 56.25%;
  }
}
.airbnb-gallery-template .main-photo {
  position: relative;
  height: 100%;
  width: 50%;
}
@media only screen and (max-width: 991.98px) {
  .airbnb-gallery-template .main-photo {
    width: 100%;
  }
}
.airbnb-gallery-template .other-photos {
  width: calc(50% - 1px);
  margin-left: 1px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media only screen and (max-width: 991.98px) {
  .airbnb-gallery-template .other-photos {
    width: 100%;
    height: calc(50% - 1px);
    margin-left: 0;
    margin-top: 1px;
  }
}
@media only screen and (max-width: 767.98px) {
  .airbnb-gallery-template .other-photos {
    height: auto;
  }
}
.airbnb-gallery-template .other-photos > a {
  position: relative;
  display: none;
  width: 50%;
  height: 13.5rem;
}
@media only screen and (max-width: 767.98px) {
  .airbnb-gallery-template .other-photos > a {
    width: 100%;
    height: auto;
    margin-bottom: 1px;
  }
}
.airbnb-gallery-template .other-photos > a:nth-child(3), .airbnb-gallery-template .other-photos > a:nth-child(5) {
  width: calc(50% - 1px);
  margin-left: 1px;
}
@media only screen and (max-width: 767.98px) {
  .airbnb-gallery-template .other-photos > a:nth-child(3), .airbnb-gallery-template .other-photos > a:nth-child(5) {
    width: 100%;
    margin-left: 0;
  }
}
.airbnb-gallery-template .other-photos > a.visible-photo {
  display: block;
}
@media only screen and (max-width: 767.98px) {
  .airbnb-gallery-template .other-photos > a.visible-photo:nth-child(2), .airbnb-gallery-template .other-photos > a.visible-photo:nth-child(3) {
    display: none;
  }
}

.group-media-grid-container {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
}
.group-media-grid-container a {
  overflow: hidden;
  border-radius: 8px;
  display: block;
  position: relative;
  cursor: pointer;
}
.group-media-grid-container a p {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  position: absolute;
  font-size: 0.7rem;
  top: 0;
  right: 0;
  padding: 0.4rem;
  z-index: 10;
}
.group-media-grid-container a .background-img {
  height: 100%;
  width: 100%;
}
.group-media-grid-container a:nth-of-type(2n) {
  grid-column: span 2;
}
.group-media-grid-container a:nth-of-type(3n) {
  grid-row: span 2;
}
.group-media-grid-container a:nth-of-type(4n) {
  grid-column: span 2;
  grid-row: span 2;
}
.group-media-grid-container a:before {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
  background: var(--color-primary);
}
.group-media-grid-container a:hover:before {
  opacity: 0.7;
}
.group-media-grid-container a:hover p {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.group-media-freewall {
  margin-bottom: 1rem;
}
.group-media-freewall .freewall-cell {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.group-media-slider.slider {
  width: 100%;
  margin: 0;
}
.group-media-slider.slider:hover .owl-nav .owl-next {
  margin-right: -1rem !important;
}
.group-media-slider.slider:hover .owl-nav .owl-prev {
  margin-left: -1rem !important;
}
.group-media-slider.slider:hover .owl-nav .owl-prev svg path, .group-media-slider.slider:hover .owl-nav .owl-prev svg polyline, .group-media-slider.slider:hover .owl-nav .owl-next svg path, .group-media-slider.slider:hover .owl-nav .owl-next svg polyline {
  stroke-width: 3px;
  stroke: var(--color-primary);
  fill: transparent;
}
.group-media-slider.slider .owl-item {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
}
.group-media-slider.slider .owl-item .item {
  position: relative;
  padding: 1rem;
}
.group-media-slider.slider .owl-item .item a p {
  display: none;
  /*@include transition();
  @include opacity(0);
  margin: 0;
  padding: 0.5rem;
  position: absolute;
  width: 100%;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  color: $color-white;*/
}
.group-media-slider.slider .owl-item.active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  .group-media-slider.slider .owl-carousel .owl-stage-outer {
    overflow: visible;
  }
}
.group-media-slider.slider figure {
  background-color: transparent;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-color: transparent;
  border-radius: 24px;
}
.group-media-slider.slider figure:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
@media only screen and (max-width: 1199.98px) {
  .group-media-slider.slider figure {
    padding: 0.2rem;
  }
}
.group-media-slider.slider .owl-nav {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.group-media-slider.slider .owl-nav .owl-prev {
  left: 0 !important;
  margin-left: 1rem !important;
}
.group-media-slider.slider .owl-nav .owl-prev svg {
  transform: rotate(180deg);
}
.group-media-slider.slider .owl-nav .owl-next {
  right: 0 !important;
  margin-right: 1rem !important;
}
.group-media-slider.slider .owl-nav .owl-prev, .group-media-slider.slider .owl-nav .owl-next {
  color: #DEDEDE;
}
.group-media-slider.slider .owl-nav .owl-prev button, .group-media-slider.slider .owl-nav .owl-next button {
  padding: 1rem;
}
.group-media-slider.slider .owl-nav .owl-prev svg, .group-media-slider.slider .owl-nav .owl-next svg {
  width: 1.2rem;
  height: auto;
}
.group-media-slider.slider .owl-nav .owl-prev svg path, .group-media-slider.slider .owl-nav .owl-prev svg polyline, .group-media-slider.slider .owl-nav .owl-next svg path, .group-media-slider.slider .owl-nav .owl-next svg polyline {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  stroke-width: 3px;
  stroke: white;
  fill: transparent;
}
.group-media-slider.slider .owl-nav .owl-prev:focus, .group-media-slider.slider .owl-nav .owl-next:focus, .group-media-slider.slider .owl-nav .owl-prev:hover, .group-media-slider.slider .owl-nav .owl-next:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  background: none;
  border: 0;
  outline: none;
  color: var(--color-primary);
}

.group-media-pinterest a,
.group-media-tiles a {
  /* Circle */
}
.group-media-pinterest a figure,
.group-media-tiles a figure {
  position: relative;
  border-radius: 8px;
  text-align: center;
}
.group-media-pinterest a figure .img-mask,
.group-media-tiles a figure .img-mask {
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: 1000;
  margin-top: -10px;
}
.group-media-pinterest a figure .img-mask svg,
.group-media-tiles a figure .img-mask svg {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  color: #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  width: 2rem;
  height: auto;
}
.group-media-pinterest a figure img,
.group-media-tiles a figure img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  display: block;
  position: relative;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.group-media-pinterest a figure img.lazy,
.group-media-tiles a figure img.lazy {
  -webkit-transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  -o-transition: all 500ms ease 0ms;
  transition: all 500ms ease 0ms;
  max-width: 100%;
}
.group-media-pinterest a p,
.group-media-tiles a p {
  display: none;
}
.group-media-pinterest a:hover figure img,
.group-media-tiles a:hover figure img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
.group-media-pinterest a:hover figure .img-mask svg,
.group-media-tiles a:hover figure .img-mask svg {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.group-media-pinterest p,
.group-media-tiles p {
  margin: 0;
}

.group-media-grid figure,
.group-media-pinterest figure,
.group-media-tiles figure,
.group-media-slider figure {
  position: relative;
  overflow: hidden;
}
.group-media-grid figure::before,
.group-media-pinterest figure::before,
.group-media-tiles figure::before,
.group-media-slider figure::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: " ";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.group-media-grid figure:hover::before,
.group-media-pinterest figure:hover::before,
.group-media-tiles figure:hover::before,
.group-media-slider figure:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

#main .group-media-slider2 .owl-carousel .owl-stage-outer {
  overflow: visible !important;
}

.group-media-slider2 .slider .slider-center {
  position: relative;
}
.group-media-slider2 .slider .slider .owl-nav {
  width: 100%;
  margin: 0 auto;
  left: auto;
  bottom: 50%;
}
.group-media-slider2 .slider .owl-item {
  overflow: hidden;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
.group-media-slider2 .slider .owl-item.active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
@media only screen and (max-width: 991.98px) {
  .group-media-slider2 .slider .owl-item.active {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
.group-media-slider2 .slider .owl-item img {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.group-media-slider2 .slider .owl-item:hover img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
}
.group-media-slider2 .slider .owl-prev, .group-media-slider2 .slider .owl-next {
  position: absolute;
  padding: 15px;
  cursor: pointer;
  background-color: var(--color-secondary);
  color: #fff;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.group-media-slider2 .slider .owl-prev i, .group-media-slider2 .slider .owl-next i {
  font-size: 20px;
  margin-top: 2px;
}
.group-media-slider2 .slider .owl-prev {
  text-align: right;
  left: 0;
  padding-left: 20px;
  margin: 0;
}
.group-media-slider2 .slider .owl-prev:hover {
  padding-left: 30px;
  background-color: var(--color-primary);
}
.group-media-slider2 .slider .owl-next {
  right: 0;
  padding-right: 20px;
  margin: 0;
}
.group-media-slider2 .slider .owl-next:hover {
  padding-right: 30px;
  background-color: var(--color-primary);
}

.group-media-pinterest {
  /* clear fix */
}
.group-media-pinterest .grid:after {
  content: "";
  display: block;
  clear: both;
}
.group-media-pinterest .grid-sizer,
.group-media-pinterest .grid-item {
  float: left;
  width: 33%;
}
@media only screen and (max-width: 1199.98px) {
  .group-media-pinterest .grid-sizer,
  .group-media-pinterest .grid-item {
    width: 50%;
  }
}
@media only screen and (max-width: 991.98px) {
  .group-media-pinterest .grid-sizer,
  .group-media-pinterest .grid-item {
    width: 100%;
  }
}
.group-media-pinterest .grid-sizer figure p,
.group-media-pinterest .grid-item figure p {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 600ms ease 0ms;
  -moz-transition: all 600ms ease 0ms;
  -ms-transition: all 600ms ease 0ms;
  -o-transition: all 600ms ease 0ms;
  transition: all 600ms ease 0ms;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media only screen and (max-width: 991.98px) {
  .group-media-pinterest .grid-sizer figure p,
  .group-media-pinterest .grid-item figure p {
    position: relative;
    height: auto;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
.group-media-pinterest .grid-sizer figure:hover p,
.group-media-pinterest .grid-item figure:hover p {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.group-media-pinterest .gutter-sizer {
  width: 4%;
}
.group-media-pinterest {
  /* spans 2 columns: 22% + 4% + 22% = 48% */
}
.group-media-pinterest .grid-item--width2 {
  width: 48%;
}

.group-media-slider-embed {
  position: absolute;
  width: 100%;
  height: 100%;
}
.group-media-slider-embed * {
  width: 100%;
  height: 100%;
}
.group-media-slider-embed .owl-nav {
  height: auto;
}
.group-media-slider-embed .owl-nav button {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
}
.group-media-slider-embed .owl-nav button svg {
  width: auto;
  height: 1rem;
}
.group-media-slider-embed .owl-nav button svg path {
  fill: var(--color-secondary);
}

.parallax {
  color: #fff;
  text-align: center;
}
.parallax h2 {
  background: url("../images/accomodation-header.png") left center no-repeat;
  padding-left: 110px;
  display: inline-block;
  font-size: 30px;
  color: #fff !important;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
}
.parallax blockquote {
  margin: 0 auto;
  border: none;
  display: inline-block;
  max-width: 700px;
  background: url("../images/quote-r.png") right bottom no-repeat;
}
.parallax blockquote p {
  background: url("../images/quote-l.png") left top no-repeat;
  padding: 40px 90px;
  display: block;
  font-size: 24px;
}
.parallax a {
  border: 2px solid #fff;
  padding: 20px;
  color: #fff !important;
  font-size: 18px;
}
.parallax a:hover {
  color: #cccccc !important;
}

footer#footer {
  background: var(--footer-color-bg);
  position: relative;
  z-index: 1;
  color: var(--footer-color);
}
footer#footer hr {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  width: 80%;
  background-size: contain;
  margin: 16px 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
footer#footer .pattern {
  border-top: 20px solid var(--color-primary);
  width: 100%;
  height: 87px;
}
footer#footer ul.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer#footer .paper-edge {
  display: none;
}
footer#footer .footer-section {
  flex-direction: column;
  display: flex;
  gap: 20px;
  padding: 4rem 2rem;
  z-index: 1;
  position: relative;
  background-image: var(--footer-img-bg);
  background-repeat: repeat;
  background-attachment: fixed;
  height: 100%;
  background-size: 20%;
}
footer#footer .footer-section:after {
  content: "";
  position: absolute;
  height: auto;
  background: url(../images/divider.svg) no-repeat;
  left: 50%;
  top: -38px;
  right: 0;
  bottom: 0;
  width: 60px;
  z-index: -1;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
footer#footer .social-media {
  margin-top: 0.5rem;
}
@media only screen and (max-width: 1199.98px) {
  footer#footer {
    margin-left: 0;
    margin-right: 0;
    z-index: 1;
  }
}
footer#footer .column-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem;
  justify-content: space-between;
}
footer#footer .column {
  flex-direction: column;
  display: flex;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 991.98px) {
  footer#footer .column {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
footer#footer .column .logo-container {
  padding: 0;
}
footer#footer .column ul.navigation {
  text-align: left;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer#footer .column ul.navigation li {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer#footer .column ul.navigation li ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 1199.98px) {
  footer#footer .column ul.navigation {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  footer#footer .column ul.navigation a {
    display: block;
    padding: 0.5rem;
    font-size: 1.25rem;
  }
}
footer#footer .column .logo-container svg {
  max-width: 15rem;
  height: auto;
  margin: 0 auto;
  width: var(--footer-logo-width-xxl);
}
@media only screen and (max-width: 991.98px) {
  footer#footer .column .logo-container svg {
    width: var(--footer-logo-width-lg);
  }
}
@media only screen and (max-width: 767.98px) {
  footer#footer .column .logo-container svg {
    width: var(--footer-logo-width-sm);
  }
}
@media only screen and (max-width: 991.98px) {
  footer#footer .column:first-child a {
    text-align: center;
    align-items: center;
  }
}
footer#footer .column img, footer#footer .column svg {
  width: 100%;
  max-width: var(--footer-logo-width-xxl);
}
@media only screen and (max-width: 1199.98px) {
  footer#footer .column img, footer#footer .column svg {
    max-width: var(--footer-logo-width-lg);
  }
}
@media only screen and (max-width: 767.98px) {
  footer#footer .column img, footer#footer .column svg {
    max-width: var(--footer-logo-width-sm);
  }
}
footer#footer .column.column-centered {
  align-items: center;
  justify-content: center;
  text-align: center;
}
footer#footer h3 {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1199.98px) {
  footer#footer .column {
    flex: 0 0 100%;
    margin-bottom: 1rem;
    padding: 1rem 1rem;
  }
}
footer#footer .phone-info-wrapper {
  display: flex;
  flex-direction: column;
}
footer#footer .social-media ul.list-inline, footer#footer .social-media #slider-nav ul, #slider-nav footer#footer .social-media ul {
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  footer#footer .social-media ul.list-inline, footer#footer .social-media #slider-nav ul, #slider-nav footer#footer .social-media ul {
    text-align: center;
    justify-content: center;
  }
}
footer#footer .social-media.center ul.list-inline, footer#footer .social-media.center #slider-nav ul, #slider-nav footer#footer .social-media.center ul {
  text-align: center;
  justify-content: center;
}
footer#footer a {
  color: var(--footer-color-link);
}
footer#footer a:hover {
  color: var(--footer-color-link-hover);
}
footer#footer .contact-data a {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 767.98px) {
  footer#footer .contact-data a {
    text-align: center;
    justify-content: center;
  }
}
footer#footer .contact-data svg {
  width: 1rem;
  height: auto;
  margin-right: 0.5rem;
}
footer#footer .contact-data svg path, footer#footer .contact-data svg polygon {
  fill: white;
}
footer#footer .reservation-button {
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: 1px solid var(--color-primary-lightest);
  text-transform: uppercase;
}
footer#footer .nav-footer {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .nav-footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer h3 {
  color: var(--footer-color-h);
  font-family: var(--font-header), sans-serif;
  font-size: 1.5rem;
  font-weight: 100;
}
@media only screen and (max-width: 1199.98px) {
  footer#footer h3 {
    font-size: 1.5rem;
  }
}

.footer-strip {
  gap: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 767.98px) {
  .footer-strip {
    flex-direction: column;
  }
  .footer-strip .copyright {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
.footer-strip a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-strip a:hover {
  color: white;
}

.menu-footer:before {
  content: "";
  position: absolute;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  width: 30%;
  height: 2px;
  left: 50%;
  -moz-transform: translate(-50%, 0px);
  -webkit-transform: translate(-50%, 0px);
  -o-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.menu-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767.98px) {
  .menu-footer ul {
    margin-top: 2rem;
    flex-direction: column;
  }
}
.menu-footer ul li {
  margin: 1rem;
}
@media only screen and (max-width: 767.98px) {
  .menu-footer ul li {
    margin: 0.4rem;
  }
}
.menu-footer ul li a {
  text-transform: uppercase;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 767.98px) {
  .menu-footer ul li a {
    font-size: 0.9rem;
  }
}

.footer-strip-wrapper {
  background-color: var(--color-copyrights-bg);
}
@media only screen and (max-width: 1199.98px) {
  .footer-strip-wrapper {
    margin-bottom: 80px;
  }
}

.footer-decor {
  background: no-repeat center;
  width: 100%;
  height: 2rem;
  margin-top: 2rem;
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  z-index: 100;
}
@media only screen and (max-width: 1199.98px) {
  .footer-decor {
    display: none;
  }
}

.footer-item-links {
  display: none;
}
.footer-item-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  column-count: 4;
  column-gap: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 1199.98px) {
  .footer-item-links ul {
    column-count: 2;
    column-gap: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .footer-item-links ul {
    column-count: 1;
    column-gap: 0;
  }
}

.search-form input, .search-form button {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: #fff 1px solid;
  background-color: var(--color-primary);
  color: #fff;
}
.search-form input:focus {
  border-right: none;
}
.search-form button {
  border-left: none;
}
.search-form button:hover, .search-form button:focus {
  background-color: transparent;
  color: #fff;
  border: #fff 1px solid;
  border-left: none;
}
.search-form [placeholder]::-webkit-input-placeholder {
  color: #313131;
}
.search-form [placeholder]:-moz-placeholder {
  color: #313131;
}
.search-form [placeholder]::-moz-placeholder {
  color: #313131;
}
.search-form [placeholder]:-ms-input-placeholder {
  color: #313131;
}

section.section .form-container button.button, section.section .form-container button.big-button, section.section .form-container button.button-reverse {
  padding-left: 3rem;
  padding-right: 3rem;
}
section.section .form-container label {
  font-weight: normal;
  display: none;
}
section.section .form-container .contact-form textarea {
  height: 10rem;
}
section.section .form-container [placeholder]::-webkit-input-placeholder {
  color: #313131;
}
section.section .form-container [placeholder]:-moz-placeholder {
  color: #313131;
}
section.section .form-container [placeholder]::-moz-placeholder {
  color: #313131;
}
section.section .form-container [placeholder]:-ms-input-placeholder {
  color: #313131;
}
section.section .form-container .form-control {
  padding: 0;
}
section.section .form-container input, section.section .form-container input[readonly], section.section .form-container textarea {
  color: #313131;
  line-height: 3rem;
  font-family: var(--font-text);
  letter-spacing: 0.05em;
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #DEDEDE;
  outline: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  text-align: left;
  font-size: 1rem;
}
section.section .form-container input .input-daterange input, section.section .form-container input[readonly] .input-daterange input, section.section .form-container textarea .input-daterange input {
  text-align: left;
}
section.section .form-container input:focus, section.section .form-container input[readonly]:focus, section.section .form-container textarea:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid var(--color-primary);
}
section.section .form-container h2 {
  text-align: center;
  font-family: var(--font-header);
  font-size: 36px;
  font-weight: 300;
}
section.section .form-container h3 {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
}
section.section .agree-control .form-group {
  display: flex;
  flex-direction: row-reverse;
  font-size: 0.9rem;
}
section.section .agree-control .form-group input {
  margin-top: 10px;
}
section.section .agree-control label {
  display: block;
}

.input-daterange input {
  background: url("../images/common/ico_cal.png") no-repeat center right;
}
@media only screen and (max-width: 1199.98px) {
  .input-daterange input {
    background-image: none;
  }
}

#reservation_form_email {
  background: url("../images/common/ico_envelope.png") no-repeat center right;
}
@media only screen and (max-width: 1199.98px) {
  #reservation_form_email {
    background-image: none;
  }
}

#reservation_form_persons {
  background: url("../images/common/ico_person.png") no-repeat center right;
}
@media only screen and (max-width: 1199.98px) {
  #reservation_form_persons {
    background-image: none;
  }
}

.reservation-inline-form {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  max-width: 360px;
  top: 100%;
  right: 0;
  position: fixed;
  width: 100%;
  background-color: #313131;
  text-align: center;
  padding: 10px;
  z-index: 999;
  margin-top: -40px;
}
.reservation-inline-form.form-open {
  margin-top: 0;
  top: auto;
  bottom: 0;
}
@media only screen and (max-width: 1199.98px) {
  .reservation-inline-form {
    display: block;
    max-width: none;
    margin-top: 0;
  }
}
.reservation-inline-form .form-switcher {
  color: #fff;
}
.reservation-inline-form .form-switcher span {
  position: absolute;
  right: 0;
  top: 0;
}
.reservation-inline-form .form-switcher span i {
  font-size: 20px;
}
.reservation-inline-form h3 {
  margin-top: 5px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  padding-bottom: 10px;
}
.reservation-inline-form form.form-inline .form-group {
  position: relative;
  margin: 3px 0;
}
.reservation-inline-form form.form-inline input, .reservation-inline-form form.form-inline button {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  width: 100%;
  text-align: left;
}
.reservation-inline-form form.form-inline i {
  position: absolute;
  top: 11px;
  right: 24px;
  color: var(--color-primary);
}
.reservation-inline-form form.form-inline .button .form-group, .reservation-inline-form form.form-inline section.section .main-category-list-tree-horizontal ul li a:hover .form-group, section.section .main-category-list-tree-horizontal ul li .reservation-inline-form form.form-inline a:hover .form-group, .reservation-inline-form form.form-inline .big-button .form-group, .reservation-inline-form form.form-inline .button-reverse .form-group, .reservation-inline-form form.form-inline section.section .light a.button-outline .form-group, .reservation-inline-form form.form-inline section.section .light .main-category-list-tree-horizontal ul li a .form-group, .reservation-inline-form form.form-inline section.section .main-category-list-tree-horizontal ul li .light a .form-group, section.section .light .reservation-inline-form form.form-inline a.button-outline .form-group, section.section .light .reservation-inline-form form.form-inline .main-category-list-tree-horizontal ul li a .form-group, section.section .main-category-list-tree-horizontal ul li .light .reservation-inline-form form.form-inline a .form-group, .reservation-inline-form form.form-inline section.section .light a.button-outline-grey .form-group, section.section .light .reservation-inline-form form.form-inline a.button-outline-grey .form-group, .reservation-inline-form form.form-inline section.section .light a.button-outline-grey2 .form-group, section.section .light .reservation-inline-form form.form-inline a.button-outline-grey2 .form-group, .reservation-inline-form form.form-inline section.section .light ul.buttons li a .form-group, section.section .light ul.buttons li .reservation-inline-form form.form-inline a .form-group, .reservation-inline-form form.form-inline ul.buttons li section.section .light a .form-group, ul.buttons li section.section .light .reservation-inline-form form.form-inline a .form-group {
  display: block;
}
.reservation-inline-form form.form-inline .form-group {
  display: block;
}
.reservation-inline-form form.form-inline .form-control {
  width: 100%;
}
.reservation-inline-form form.form-inline button {
  text-align: center;
  width: 100%;
  display: block;
  background-color: var(--color-primary);
  color: #fff;
}
.reservation-inline-form form.form-inline button:hover, .reservation-inline-form form.form-inline button:focus {
  background-color: var(--color-primary-lighten);
  color: #fff;
}

.top-content .social-media ul.list-inline, .top-content .social-media #slider-nav ul, #slider-nav .top-content .social-media ul {
  gap: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  .top-content .social-media ul.list-inline, .top-content .social-media #slider-nav ul, #slider-nav .top-content .social-media ul {
    justify-content: space-around;
    margin: 0;
  }
}
.top-content .social-media ul.list-inline li, .top-content .social-media #slider-nav ul li, #slider-nav .top-content .social-media ul li {
  width: auto;
}
.top-content .social-media ul.list-inline li a, .top-content .social-media #slider-nav ul li a, #slider-nav .top-content .social-media ul li a {
  min-width: auto;
  border: 1px solid var(--color-primary);
  width: 1.6rem;
  height: 1.6rem;
  margin: 0.2rem;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-content .social-media ul.list-inline li a span, .top-content .social-media #slider-nav ul li a span, #slider-nav .top-content .social-media ul li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin: 0 0.2rem;
}
.top-content .social-media ul.list-inline li a span svg, .top-content .social-media #slider-nav ul li a span svg, #slider-nav .top-content .social-media ul li a span svg {
  height: 0.8rem;
  width: auto;
  margin: 0;
}
.top-content .social-media ul.list-inline li a span svg g, .top-content .social-media #slider-nav ul li a span svg g, #slider-nav .top-content .social-media ul li a span svg g, .top-content .social-media ul.list-inline li a span svg path, .top-content .social-media #slider-nav ul li a span svg path, #slider-nav .top-content .social-media ul li a span svg path {
  fill: white;
}
.top-content .social-media ul.list-inline li:hover a, .top-content .social-media #slider-nav ul li:hover a, #slider-nav .top-content .social-media ul li:hover a {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.top-content .social-media ul.list-inline li:hover a span svg path, .top-content .social-media #slider-nav ul li:hover a span svg path, #slider-nav .top-content .social-media ul li:hover a span svg path, .top-content .social-media ul.list-inline li:hover a span svg g, .top-content .social-media #slider-nav ul li:hover a span svg g, #slider-nav .top-content .social-media ul li:hover a span svg g {
  fill: rgba(255, 255, 255, 0.5);
}
.top-content .social-media p {
  display: none;
}
.top-content .social-media ul.list-inline, .top-content .social-media #slider-nav ul, #slider-nav .top-content .social-media ul {
  margin: 0 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  .top-content .social-media ul.list-inline, .top-content .social-media #slider-nav ul, #slider-nav .top-content .social-media ul {
    justify-content: space-around;
    margin: 0;
  }
}
.top-content .social-media ul.list-inline li, .top-content .social-media #slider-nav ul li, #slider-nav .top-content .social-media ul li {
  width: auto;
}
.top-content .social-media ul.list-inline li a, .top-content .social-media #slider-nav ul li a, #slider-nav .top-content .social-media ul li a {
  min-width: auto !important;
  border: 1px solid var(--top-color-link);
  width: 1.7rem;
  height: 1.7rem;
  margin: 0.2rem;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-content .social-media ul.list-inline li a span, .top-content .social-media #slider-nav ul li a span, #slider-nav .top-content .social-media ul li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin: 0 0.2rem;
}
.top-content .social-media ul.list-inline li a span svg, .top-content .social-media #slider-nav ul li a span svg, #slider-nav .top-content .social-media ul li a span svg {
  height: 0.8rem;
  width: auto;
  margin: 0 !important;
}
.top-content .social-media ul.list-inline li a span svg g, .top-content .social-media #slider-nav ul li a span svg g, #slider-nav .top-content .social-media ul li a span svg g, .top-content .social-media ul.list-inline li a span svg path, .top-content .social-media #slider-nav ul li a span svg path, #slider-nav .top-content .social-media ul li a span svg path {
  fill: var(--top-color-link);
}
.top-content .social-media ul.list-inline li:hover a, .top-content .social-media #slider-nav ul li:hover a, #slider-nav .top-content .social-media ul li:hover a {
  border: 1px solid var(--top-color-link-hover);
}
.top-content .social-media ul.list-inline li:hover a span svg path, .top-content .social-media #slider-nav ul li:hover a span svg path, #slider-nav .top-content .social-media ul li:hover a span svg path, .top-content .social-media ul.list-inline li:hover a span svg g, .top-content .social-media #slider-nav ul li:hover a span svg g, #slider-nav .top-content .social-media ul li:hover a span svg g {
  fill: var(--top-color-link-hover);
}

.mobile-panel .social-media p {
  display: none;
}

footer#footer .social-media {
  margin-top: 20px;
  width: 100%;
}
footer#footer .social-media ul.list-inline, footer#footer .social-media #slider-nav ul, #slider-nav footer#footer .social-media ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  footer#footer .social-media ul.list-inline, footer#footer .social-media #slider-nav ul, #slider-nav footer#footer .social-media ul {
    justify-content: center;
    margin: 0;
  }
}
footer#footer .social-media ul.list-inline li, footer#footer .social-media #slider-nav ul li, #slider-nav footer#footer .social-media ul li {
  width: auto;
}
footer#footer .social-media ul.list-inline li a, footer#footer .social-media #slider-nav ul li a, #slider-nav footer#footer .social-media ul li a {
  min-width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer#footer .social-media ul.list-inline li a span, footer#footer .social-media #slider-nav ul li a span, #slider-nav footer#footer .social-media ul li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin: 0 0.2rem;
}
footer#footer .social-media ul.list-inline li a span svg, footer#footer .social-media #slider-nav ul li a span svg, #slider-nav footer#footer .social-media ul li a span svg {
  height: 0.8rem;
  width: auto;
  margin: 0;
}
footer#footer .social-media ul.list-inline li a span svg g, footer#footer .social-media #slider-nav ul li a span svg g, #slider-nav footer#footer .social-media ul li a span svg g, footer#footer .social-media ul.list-inline li a span svg path, footer#footer .social-media #slider-nav ul li a span svg path, #slider-nav footer#footer .social-media ul li a span svg path {
  fill: white;
}
footer#footer .social-media p {
  display: none;
}
footer#footer .social-media ul.list-inline, footer#footer .social-media #slider-nav ul, #slider-nav footer#footer .social-media ul {
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  footer#footer .social-media ul.list-inline, footer#footer .social-media #slider-nav ul, #slider-nav footer#footer .social-media ul {
    justify-content: space-around;
    margin: 0;
  }
}
footer#footer .social-media ul.list-inline li, footer#footer .social-media #slider-nav ul li, #slider-nav footer#footer .social-media ul li {
  width: auto;
}
footer#footer .social-media ul.list-inline li a, footer#footer .social-media #slider-nav ul li a, #slider-nav footer#footer .social-media ul li a {
  min-width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer#footer .social-media ul.list-inline li a span, footer#footer .social-media #slider-nav ul li a span, #slider-nav footer#footer .social-media ul li a span {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer#footer .social-media ul.list-inline li a span svg, footer#footer .social-media #slider-nav ul li a span svg, #slider-nav footer#footer .social-media ul li a span svg {
  height: 1.8rem;
  width: auto;
  margin: 0;
}
footer#footer .social-media ul.list-inline li a span svg g, footer#footer .social-media #slider-nav ul li a span svg g, #slider-nav footer#footer .social-media ul li a span svg g, footer#footer .social-media ul.list-inline li a span svg path, footer#footer .social-media #slider-nav ul li a span svg path, #slider-nav footer#footer .social-media ul li a span svg path {
  fill: white;
}

.guest-book .buttons {
  text-align: right;
}
@media only screen and (max-width: 991.98px) {
  .guest-book .buttons {
    text-align: center;
    display: block;
  }
}
.guest-book label {
  display: none;
}
.guest-book em {
  text-align: center;
  width: 100%;
  display: block;
  padding: 7px;
  font-weight: bold;
}

section.section .tile-comments {
  gap: 2rem 1rem;
  flex-wrap: wrap;
  display: flex;
}
section.section .tile-comments .comment {
  position: relative;
  flex-direction: column;
  flex: 0 1 calc(50% - 2rem);
  display: flex;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-primary);
}
@media only screen and (max-width: 991.98px) {
  section.section .tile-comments .comment {
    flex: 1 1 calc(100% - 2rem);
  }
}
section.section .tile-comments .comment:hover .comment-icon {
  background-color: var(--color-secondary);
}
section.section .tile-comments .comment-icon {
  position: absolute;
  -moz-transform: translate(-50%, -133%);
  -webkit-transform: translate(-50%, -133%);
  -o-transform: translate(-50%, -133%);
  -ms-transform: translate(-50%, -133%);
  transform: translate(-50%, -133%);
  left: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  padding: 5px;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section .tile-comments .comment-icon svg path {
  fill: white;
}
section.section .tile-comments .comment-text {
  font-size: 1rem;
}
section.section .comments-container .comment {
  text-align: center;
  position: relative;
  padding: 4rem 1rem 1rem 1rem;
}
section.section .comments-container .comment:before {
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  width: 170px;
  height: 170px;
}
@media only screen and (max-width: 991.98px) {
  section.section .comments-container .comment:before {
    top: 3rem;
    left: calc(50% - 26px);
    margin-left: 0;
    position: absolute;
    content: "";
    width: 57px;
    height: 70px;
  }
}
section.section .comments-container .comment .comment-date,
section.section .comments-container .comment .comment-username {
  text-align: right;
}
section.section .comments-container .comment .comment-date {
  font-size: 0.725rem;
}
section.section .comments-container .comment .comment-username {
  margin-top: 2rem;
  font-size: 1.1rem;
  font-style: italic;
}
section.section .comments-container .comment .comment-text {
  color: var(--color-primary);
  line-height: 3rem;
  font-size: 1.4rem;
  font-style: italic;
  font-family: var(--font-header);
}
section.section .comments-container .owl-nav {
  top: 0;
  position: absolute;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  display: flex;
  justify-content: space-between;
}
section.section .comments-container .owl-nav .owl-next, section.section .comments-container .owl-nav .owl-prev {
  position: relative;
  padding: 1rem;
  cursor: pointer;
}
section.section .comments-container .owl-nav .owl-next:focus, section.section .comments-container .owl-nav .owl-prev:focus {
  outline: none;
  border: 0;
}
section.section .comments-container .owl-nav .owl-next i, section.section .comments-container .owl-nav .owl-prev i {
  font-size: 28px;
}
section.section .comments-container .owl-nav .owl-prev {
  float: left;
}
section.section .comments-container .owl-nav .owl-next {
  float: right;
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

#cookie-container {
  text-align: center;
  font-size: 12px;
  position: fixed;
  display: block;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 99999;
  color: #fff;
  background-color: #313131;
  padding: 5px;
}
#cookie-container a {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  display: inline-block;
  border: 1px solid #fff;
  padding: 0 7px;
  color: #fff;
  text-align: center;
}
#cookie-container a:hover {
  background-color: rgb(216.75, 216.75, 216.75);
  color: #313131;
}
#cookie-container a i {
  display: none;
}
#cookie-container p {
  display: inline;
}

.popup {
  position: relative;
  background-color: white;
  padding: 1rem;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
}
.popup h4 {
  font-size: 1.1rem;
  text-align: center;
  padding: 0.3rem;
  margin: 0;
}
.popup p {
  margin: 0;
}
.popup .popup-btn-close {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0.5rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  background-color: white;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.popup .popup-btn-close svg {
  width: 1rem;
  height: 1rem;
}
.popup .popup-btn-close:hover {
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}

.popup-background {
  display: flex;
}

.popup-background.left {
  justify-content: flex-start;
}

.popup-background.right {
  justify-content: flex-end;
}

.popup-background.bottom {
  align-items: flex-end;
}

.popup-background.top {
  align-items: flex-start;
}

.popup-background.centerH {
  justify-content: center;
}

.popup-background.centerV {
  align-items: center;
}

.popup-background.center {
  justify-content: center;
  align-items: center;
}

table.table {
  background: transparent !important;
}
table.table tr {
  margin: 2px 0;
}
table.table tr td {
  background: transparent !important;
  padding: 0.8rem;
  border: none;
}

table.table-responsive-cms-style-1 {
  width: calc(100% - 4rem) !important;
  margin: 0 2rem;
}
@media only screen and (max-width: 767.98px) {
  table.table-responsive-cms-style-1 {
    width: 100% !important;
    margin: 0;
  }
}
table.table-responsive-cms-style-1 tr td {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f3f3f3;
}
@media only screen and (max-width: 767.98px) {
  table.table-responsive-cms-style-1 tr td:first-child {
    width: 70% !important;
  }
}

table.table.restaurant-menu {
  margin-top: 3rem;
}
table.table.restaurant-menu tr {
  border: 1px solid var(--color-primary);
}
table.table.restaurant-menu tr td {
  background-color: rgba(255, 255, 255, 0.5);
}
table.table.restaurant-menu tr td:last-child {
  text-align: right;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.video-background {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#vidtop-content {
  top: 0;
  color: #fff;
}

.vid-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 1rem;
  font-family: Avenir, Helvetica, sans-serif;
}

.vid-info h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
}

.vid-info a {
  display: block;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.6s background;
  border-bottom: none;
  margin: 1rem auto;
  text-align: center;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}
@media all and (max-width: 600px) {
  .vid-info {
    width: 50%;
    padding: 0.5rem;
  }
  .vid-info h1 {
    margin-bottom: 0.2rem;
  }
}
@media all and (max-width: 500px) {
  .vid-info .acronym {
    display: none;
  }
}
.thumbnails.owl-carousel {
  margin-top: 1px;
  position: relative;
}
.thumbnails.owl-carousel .owl-nav {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  font-size: 2rem;
  height: 100%;
}
.thumbnails.owl-carousel .owl-nav .owl-prev, .thumbnails.owl-carousel .owl-nav .owl-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5) !important;
  padding: 1rem !important;
  height: 100%;
}
.thumbnails.owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.thumbnails.owl-carousel .owl-nav .owl-next {
  right: 0;
}

.item-show header {
  margin-bottom: 0;
}

.reservation-main-propeties {
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.reservation-main-propeties > div {
  margin: 5px;
  border: 1px solid white;
  padding: 0.5rem;
  width: 50%;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reservation-main-propeties > div span {
  padding: 0.2rem 0;
  font-weight: 500;
  font-size: 2rem;
  color: var(--color-primary);
}
.reservation-main-propeties > div:after {
  content: "";
  border: 1px solid var(--color-primary);
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  position: absolute;
}

.panel-reservation {
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  background-color: white;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 80%;
  margin-left: -80%;
}
@media only screen and (max-width: 991.98px) {
  .panel-reservation {
    width: 100%;
    margin-left: -100%;
    height: calc(100vh - 3rem);
    overflow-y: auto;
  }
}

.panel-reservation.active {
  margin-left: 0;
}

.sticky-flow-container {
  background-color: #f3f3f3;
  padding: 1rem;
  margin-top: 1rem;
}

a.button-reservation {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  background-color: var(--color-primary);
  color: white !important;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
}
a.button-reservation:after {
  content: " ";
  border: 1px solid white;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  position: absolute;
}
a.button-reservation svg {
  margin-right: 0.5rem;
  width: 1.3rem;
  height: auto;
}
a.button-reservation:hover {
  background-color: var(--color-secondary);
}
a.button-reservation:hover:after {
  content: "";
  border: 1px solid white;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  position: absolute;
}

.pop-up-overlay {
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}

.visible-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.visible-photos-grid a {
  height: 30dvh;
  width: 100%;
}

.item-show {
  background-color: #FCFCFC;
}
.item-show a.button-more-photos {
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  width: auto !important;
  height: auto !important;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  position: absolute !important;
  background-color: white;
  display: block !important;
  font-size: 0.815rem;
  border: 1px solid #DEDEDE;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
.item-show a.button-more-photos:hover {
  background-color: var(--color-primary);
  color: white;
}
.item-show .button.button-item-search, .item-show section.section .main-category-list-tree-horizontal ul li a.button-item-search:hover, section.section .main-category-list-tree-horizontal ul li .item-show a.button-item-search:hover, .item-show .button-item-search.big-button, .item-show .button-item-search.button-reverse, .item-show section.section .light a.button-item-search.button-outline, .item-show section.section .light .main-category-list-tree-horizontal ul li a.button-item-search, .item-show section.section .main-category-list-tree-horizontal ul li .light a.button-item-search, section.section .light .item-show a.button-item-search.button-outline, section.section .light .item-show .main-category-list-tree-horizontal ul li a.button-item-search, section.section .main-category-list-tree-horizontal ul li .light .item-show a.button-item-search, .item-show section.section .light a.button-item-search.button-outline-grey, section.section .light .item-show a.button-item-search.button-outline-grey, .item-show section.section .light a.button-item-search.button-outline-grey2, section.section .light .item-show a.button-item-search.button-outline-grey2, .item-show section.section .light ul.buttons li a.button-item-search, section.section .light ul.buttons li .item-show a.button-item-search, .item-show ul.buttons li section.section .light a.button-item-search, ul.buttons li section.section .light .item-show a.button-item-search {
  background-color: var(--color-primary);
}
.item-show .button.button-item-search:hover, .item-show section.section .main-category-list-tree-horizontal ul li a.button-item-search:hover, section.section .main-category-list-tree-horizontal ul li .item-show a.button-item-search:hover, .item-show .button-item-search.big-button:hover, .item-show .button-item-search.button-reverse:hover, .item-show section.section .light a.button-item-search.button-outline:hover, section.section .light .item-show a.button-item-search.button-outline:hover, section.section .light .item-show .main-category-list-tree-horizontal ul li a.button-item-search:hover, .item-show section.section .light a.button-item-search.button-outline-grey:hover, section.section .light .item-show a.button-item-search.button-outline-grey:hover, .item-show section.section .light a.button-item-search.button-outline-grey2:hover, section.section .light .item-show a.button-item-search.button-outline-grey2:hover, .item-show section.section .light ul.buttons li a.button-item-search:hover, section.section .light ul.buttons li .item-show a.button-item-search:hover, .item-show ul.buttons li section.section .light a.button-item-search:hover, ul.buttons li section.section .light .item-show a.button-item-search:hover {
  background-color: var(--color-secondary);
}
.item-show .sticky-column {
  border-radius: 12px;
  background-color: #f3f3f3;
}
.item-show .search-box {
  box-shadow: none;
  border-radius: 12px;
  border: 1px solid #DEDEDE;
}
.item-show .container-photos {
  padding: 0 1rem;
  position: relative;
  width: 100%;
  max-width: 2000px;
  height: auto;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1199.98px) {
  .item-show .container-photos {
    padding: 0;
  }
}
@media only screen and (max-width: 1199.98px) {
  .item-show {
    margin-top: 0;
  }
}
.item-show .description ul {
  list-style: disc;
}
.item-show .navigation-button {
  display: block;
  font-weight: 500;
  margin: 2rem 0;
}
.item-show .navigation-button svg {
  margin-right: 0.25rem;
}
.item-show .phone-social-wrapper {
  gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991.98px) {
  .item-show .phone-social-wrapper {
    align-items: flex-start;
  }
}
.item-show .item-header {
  padding: 2rem 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991.98px) {
  .item-show .item-header {
    flex-direction: column;
  }
}
.item-show h1.item-h {
  font-size: 1.75rem;
  font-weight: bold;
  color: black;
}
.item-show .important-information {
  margin: 0;
  padding: 0;
}
.item-show .important-information li {
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.item-show .important-information li svg {
  height: auto;
  min-width: 1.2rem;
  max-width: 1.2rem;
}
.item-show .important-information li svg path {
  fill: var(--color-primary);
}
.item-show .beds-container {
  display: flex;
  justify-content: space-around;
}
.item-show .beds-container .bed {
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}
.item-show .beds-container .bed .bed-details {
  font-size: 1.6rem;
}
.item-show .beds-container .bed svg {
  width: auto;
  height: 2.9rem;
  padding: 0.5rem;
}
.item-show .item-properties {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.item-show .item-properties .properties-container {
  width: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
@media only screen and (max-width: 991.98px) {
  .item-show .item-properties .properties-container {
    width: 6rem;
    justify-content: space-around;
  }
}
.item-show .item-properties .properties-container .properties-name,
.item-show .item-properties .properties-container .properties-value {
  text-align: center;
}
.item-show .item-properties .properties-container .properties-value {
  margin-top: 0.5rem;
}
@media only screen and (max-width: 1199.98px) {
  .item-show .item-properties .properties-container .properties-value {
    font-size: 0.813rem;
  }
}
.item-show .item-properties .properties-container svg {
  width: 2.5rem;
  height: 2.5rem;
}
@media only screen and (max-width: 1199.98px) {
  .item-show .item-properties .properties-container svg {
    width: 2.5rem;
    height: auto;
  }
}
.item-show .item-properties .properties-container svg path {
  fill: var(--color-primary);
}
@media only screen and (max-width: 767.98px) {
  .item-show section.section header {
    margin-top: 1rem;
  }
}
.item-show section.section header p {
  margin-bottom: 0;
}
.item-show section.section .item-photos {
  gap: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  height: 60dvh;
  overflow: hidden;
}
@media only screen and (max-width: 991.98px) {
  .item-show section.section .item-photos {
    -webkit-border-radius: 0 0 18px 18px;
    -moz-border-radius: 0 0 18px 18px;
    border-radius: 0 0 18px 18px;
  }
}
.item-show section.section .item-photos a {
  overflow: hidden;
  position: relative;
}
.item-show section.section .item-photos a .background-img {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.item-show section.section .item-photos a:hover .background-img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
}
.item-show section.section .item-photos .img-counter {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  z-index: 10;
  color: white;
}
@media only screen and (max-width: 991.98px) {
  .item-show section.section .item-photos {
    flex-direction: column;
    height: 20rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .item-show section.section .item-photos {
    height: auto;
  }
}
.item-show section.section .item-photos .background-img {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767.98px) {
  .item-show section.section .item-photos .background-img {
    height: 100%;
    padding-bottom: 56.25%;
  }
}
@media only screen and (max-width: 767.98px) {
  .item-show section.section .item-photos .background-img {
    height: 100%;
    padding-bottom: 56.25%;
  }
}
.item-show section.section .item-photos .main-photo {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 50%;
}
@media only screen and (max-width: 991.98px) {
  .item-show section.section .item-photos .main-photo {
    width: 100%;
    height: 60dvh;
  }
}
.item-show section.section .item-photos .other-photos {
  width: 50%;
  margin-left: 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
@media only screen and (max-width: 991.98px) {
  .item-show section.section .item-photos .other-photos {
    width: 100%;
    height: calc(50% - 1px);
    margin-left: 0;
    margin-top: 1px;
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  .item-show section.section .item-photos .other-photos {
    height: auto;
    display: none;
  }
}
.item-show section.section #hotres-reservation-container .showHideWrapper {
  margin-top: 1rem;
  -webkit-border-radius: 12px;
  -khtml-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid #dedede;
  background-color: white;
}
@media only screen and (max-width: 991.98px) {
  .item-show section.section #hotres-reservation-container .showHideWrapper {
    background-color: var(--color-primary-lighten);
  }
}
.item-show section.section #hotres-reservation-container .showHideWrapper a {
  position: relative;
  padding: 1rem;
  color: black;
  font-weight: 500;
}
@media only screen and (max-width: 991.98px) {
  .item-show section.section #hotres-reservation-container .showHideWrapper a {
    color: white;
  }
}
.item-show section.section #hotres-reservation-container .showHideWrapper a:hover {
  color: var(--color-primary);
}
@media only screen and (max-width: 991.98px) {
  .item-show section.section #hotres-reservation-container .showHideWrapper a:hover {
    color: white;
  }
}
.item-show section.section #hotres-reservation-container .showHideWrapper a:after {
  margin-left: 0.5rem;
  margin-top: 0.25rem;
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  transform: rotate(180deg);
}
.item-show section.section #hotres-reservation-container .showHideWrapper a.uncollapsed:after {
  transform: rotate(0deg);
}
.item-show section.section #hotres-reservation-container .rate-chooser {
  position: relative;
  padding: 1rem;
  background-color: white;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
}
@media only screen and (max-width: 1199.98px) {
  .item-show section.section #hotres-reservation-container .rate-chooser {
    background-color: white;
    padding: 1rem;
  }
}
.item-show section.section #hotres-reservation-container .rate-chooser .promo-text {
  margin-bottom: 0.5rem;
  position: relative;
  top: -6px;
}
.item-show section.section #hotres-reservation-container .rate-chooser.hidden {
  display: none;
}
.item-show section.section #hotres-reservation-container .rate-chooser.rate-chooser-for-hide {
  border-top: 1px solid #dedede;
  margin-top: 1rem;
}
@media only screen and (max-width: 991.98px) {
  .item-show section.section #hotres-reservation-container .rate-chooser.rate-chooser-for-hide {
    margin-top: 0;
  }
}
.item-show section.section #hotres-reservation-container .rate-chooser > h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 900;
}
.item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-info {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-primary-lighten);
}
.item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-info li {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.5rem;
}
.item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-info li:before {
  content: "";
  display: none;
}
.item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991.98px) {
  .item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-footer {
    margin-top: 0;
  }
}
.item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-footer .rate-chooser-price {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-footer .rate-chooser-price .total-price {
  color: #313131;
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 900;
}
.item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-footer .rate-chooser-price .discountBox {
  display: flex;
  flex-direction: row;
  font-size: 1.125rem;
  font-weight: 500;
}
.item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-footer .rate-chooser-price .discountBox .discountPrice {
  text-decoration-line: line-through;
  color: red;
  font-weight: bold;
}
.item-show section.section #hotres-reservation-container .rate-chooser .rate-chooser-footer .rate-chooser-price .discountBox .discount {
  color: white;
  width: 2rem;
  height: 2rem;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: red;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  position: absolute;
  z-index: 999;
  right: 0;
  bottom: 3rem;
}
.item-show section.section .stylized-column {
  background-color: #FCFCFC;
  padding: 1rem;
  margin-bottom: 1rem;
}
.item-show section.section .item-wrapper-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
}
.item-show section.section .item-wrapper {
  background-color: white;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  padding: 24px;
  overflow: hidden;
}
.item-show section.section .item-wrapper.sticky-flow {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.item-show section.section .item-wrapper #reservation-section {
  margin-top: 2rem;
}
.item-show section.section .item-wrapper > h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}
.item-show section.section .item-wrapper .distances {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.item-show section.section .item-wrapper .distances > div {
  display: flex;
  width: 50%;
  margin-bottom: 1.5rem;
  align-items: center;
}
.item-show section.section .item-wrapper .distances > div .small-lh {
  line-height: 1.1rem;
}
.item-show section.section .item-wrapper .distances > div .small-lh:last-child {
  font-weight: 500;
}
.item-show section.section .item-wrapper .distances > div svg {
  margin-right: 1rem;
  width: 36px;
  height: 36px;
}
.item-show section.section .item-wrapper .pictograms ul {
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
}
.item-show section.section .item-wrapper .pictograms ul:before {
  content: none;
}
.item-show section.section .item-wrapper .pictograms ul li {
  flex: 50%;
  display: flex;
  flex-direction: row;
  margin: 0.5rem 0;
  justify-content: flex-start;
  align-items: center;
}
.item-show section.section .item-wrapper .pictograms ul li:before {
  content: none;
}
@media only screen and (max-width: 1199.98px) {
  .item-show section.section .item-wrapper .pictograms ul li {
    flex: 100%;
    margin: 0.5rem 0;
  }
}
.item-show section.section .item-wrapper .pictograms ul li p {
  padding: 0;
  margin: 0;
}
.item-show section.section .item-wrapper .pictograms ul li svg {
  width: 36px;
  height: 36px;
  margin-right: 1rem;
}
.item-show section.section .item-wrapper .pictograms ul li svg path {
  fill: var(--color-primary);
}
.item-show section.section .item-wrapper .pictograms ul li.hidden {
  display: none;
}
.item-show section.section .item-wrapper .pictograms.bed {
  margin-right: -1rem;
}
.item-show section.section .item-wrapper .pictograms.bed ul {
  display: flex;
  flex-wrap: wrap;
  flex: 33.33%;
}
.item-show section.section .item-wrapper .pictograms.bed ul li {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 155px;
  border: 1px solid #DEDEDE;
  margin: 0 1rem 1rem 0;
}
.item-show section.section .item-wrapper .pictograms.bed ul li svg, .item-show section.section .item-wrapper .pictograms.bed ul li img {
  margin: 0;
  width: 46px;
  height: 46px;
}
.item-show section.section .item-wrapper .pictograms.room ul li strong, .item-show section.section .item-wrapper .pictograms.object ul li strong {
  font-weight: normal;
}
.item-show section.section .item-wrapper .pictograms.room ul li p, .item-show section.section .item-wrapper .pictograms.object ul li p {
  display: none;
}
.item-show section.section .item-wrapper .pictograms.room ul li img, .item-show section.section .item-wrapper .pictograms.room ul li svg, .item-show section.section .item-wrapper .pictograms.object ul li img, .item-show section.section .item-wrapper .pictograms.object ul li svg {
  margin-right: 1rem;
  width: 36px;
  height: 36px;
}
.item-show section.section .item-wrapper .beds {
  display: flex;
  flex-wrap: wrap;
}
.item-show section.section .item-wrapper .beds .properties-container {
  flex: 50%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  .item-show section.section .item-wrapper .beds .properties-container {
    flex: 100%;
    margin: 1rem 0;
  }
}
.item-show section.section .item-wrapper .beds .properties-container .properties-name {
  width: 2rem;
  margin-right: 1rem;
}
.item-show section.section .item-wrapper .beds .properties-container .properties-name svg {
  width: 36px;
  height: 36px;
}
.item-show section.section .item-wrapper .beds .properties-container .properties-value {
  padding: 0;
}

.popup-btn-close {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0.5rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  background-color: white;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.popup-btn-close svg {
  width: 1rem;
  height: 1rem;
}
.popup-btn-close:hover {
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}

/**---------------------------------------------*/
.calendarWrap {
  padding: 0px;
  overflow: hidden;
  position: relative;
}

.calendarWrap p {
  margin: 0px;
  padding: 0px;
}

.calendarWrap::after {
  clear: both;
  content: "";
}

.calendar {
  margin: 10px;
}

.chooserDateCalendarNav {
  position: relative;
  z-index: 2;
}

.chooserCalendarNavPrev, .chooserCalendarNavNext {
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  background: #eee;
  cursor: pointer;
  border-radius: 3px;
  position: absolute;
  top: 20px;
}

.chooserCalendarNavPrev:hover, .chooserCalendarNavNext:hover {
  background: #ccc;
}

.chooserCalendarNavPrev {
  left: 10px;
}

.chooserCalendarNavNext {
  right: 10px;
}

.chooserCalendarNavPrev::before, .chooserCalendarNavNext::before {
  line-height: 40px;
}

.chooserCalendarNavNext {
  float: right;
}

.calendar > div {
  font-size: 14px;
  width: 14.25%;
  float: left;
  height: 45px;
  line-height: 45px;
  background-color: #fff;
  box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.062745098);
  text-align: center;
  position: relative;
}

.calendar > div price {
  opacity: 0.8;
  position: absolute;
  font-size: 9px;
  font-weight: normal;
  top: 4px;
  right: 0px;
  width: 100%;
  text-align: center;
  height: auto;
  line-height: 10px;
}

.calendarMonth {
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  margin-top: 0;
  font-weight: bold;
}

.calendar .calendarDayTitle {
  font-size: 14px;
  background: #eee;
  background: #fafafa;
  color: #808080;
}

.cAvb {
  cursor: pointer;
  font-weight: bold;
}

.cRes {
  background-image: repeating-linear-gradient(45deg, #fff, #fff 10px, #fff2d9 10px, #fff2d9 16px);
}

.cDis {
  color: #ddd;
}

.cDis::before {
  content: "";
  position: absolute;
  left: 30%;
  right: 0;
  top: 22px;
  height: 1px;
  width: 40%;
  background: #ccc;
  transform: rotate(45deg);
}

.arrivalDate {
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.arrivalDate:after {
  position: absolute;
  background-color: #3CB766;
  width: 80%;
  left: -20px;
  top: 0px;
  height: 45px;
  content: " ";
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -ms-transform: skewX(-30deg); /* IE 9 */
  -webkit-transform: skewX(-30deg); /* Safari */
  transform: skewX(-30deg);
}

.departureDate {
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.departureDate:after {
  position: absolute;
  width: 80%;
  right: -20px;
  top: 0px;
  height: 45px;
  content: " ";
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -ms-transform: skewX(-30deg); /* IE 9 */
  -webkit-transform: skewX(-30deg); /* Safari */
  transform: skewX(-30deg);
}

.chCalRangeSelect {
  background: #1f65b9 !important;
  color: #fff !important;
}

.chArrival::after {
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-left: 0px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  top: 0px;
  left: 0px;
  content: " ";
}

.chDeparture::after {
  width: 0;
  height: 0;
  border-right: 10px solid #fff;
  border-left: 0px solid transparent;
  border-top: 10px solid transparent;
  position: absolute;
  right: 0px;
  bottom: 0px;
  content: " ";
}

.chArrivalInfo, .chDepartureInfo, .chRestrictionInfo, .chNightsInfo {
  position: absolute;
  bottom: -12px;
  left: 0px;
  z-index: 999;
  background: #242424;
  border-radius: 3px;
  font-size: 10px;
  padding: 4px 7px;
  line-height: 12px;
  z-index: 1;
  color: #fff;
  font-weight: normal;
}

.chDepartureInfo {
  right: 0px;
  left: inherit;
}

.chRestrictionInfo, .chNightsInfo {
  top: -20px;
  left: 0px;
  right: inherit;
  bottom: inherit;
  background: #0a3161;
  z-index: 2;
}

.chRestrictionInfo {
  top: -30px;
  background: #c74c4c;
  display: block;
  height: auto;
  z-index: 3;
}

@media only screen and (max-width: 991.98px) {
  .hidePhone {
    display: none;
  }
}

.adjustCalendarWrap {
  position: relative;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.062745098);
  border-radius: 2px;
  margin-top: 15px;
  min-height: 360px;
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.calendarWrap .msg {
  text-align: left;
  font-weight: normal;
  position: absolute;
  right: 0px;
  top: 120px;
  line-height: 20px;
  z-index: 99;
}

/*Navidation*/
.wrap > .row {
  display: flex;
  justify-content: center;
}
.wrap > .row > div {
  text-align: center;
}

.adjustColorfulCalendarWrapNav {
  max-width: 500px;
  margin: auto;
  margin-top: 20px;
}
.adjustColorfulCalendarWrapNav .row {
  display: flex;
}
.adjustColorfulCalendarWrapNav > .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.adjustColorfulCalendarWrapNav > .row > div {
  width: auto;
}

/*Available*/
.adjustColorfulCalendarWrap .cDep:after, .adjustColorfulCalendarWrap .cArr:after {
  width: 0;
  height: 0;
  position: absolute;
  content: " ";
}

.adjustColorfulCalendarWrap .cAvb {
  background: #3CB766;
  color: #fff;
}

.adjustColorfulCalendarWrap .cAvb:hover {
  background: #3c6bff;
  box-shadow: inset 0px 0px 0px 2px #3c6bff;
}

.adjustColorfulCalendarWrap .chCalRangeSelect {
  background: #3c6bff !important;
}

.adjustColorfulCalendarWrap .calendar > div {
  height: 55px;
  line-height: 55px;
  font-size: 16px;
  box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.062745098);
}

.adjustColorfulCalendarWrap .calendar > div price {
  top: 8px;
  right: 8px;
  text-align: right;
}

.adjustColorfulCalendarWrap .cDis price {
  display: none;
}

.adjustColorfulCalendarWrap .chArrival::after {
  border-right: 30px solid transparent;
  border-top: 30px solid #3CB766;
}

.adjustColorfulCalendarWrap .chDeparture::after {
  border-right: 30px solid #3CB766;
  border-top: 30px solid transparent;
}

.adjustColorfulCalendarWrap .cRes {
  background-image: repeating-linear-gradient(45deg, #3cb766, #3cb766 10px, #64d089 10px, #64d089 16px) !important;
}

/*Unavailable*/
.adjustColorfulCalendarWrap .cDis {
  color: #ddd;
}

.adjustColorfulCalendarWrap .cDep:after {
  border-right: 30px solid #f75a60 !important;
  border-left: 0px solid transparent;
  border-top: 30px solid transparent;
  right: 0px;
  bottom: 0px;
}

.adjustColorfulCalendarWrap .cArr:after {
  border-right: 30px solid transparent;
  border-left: 0px solid transparent;
  border-top: 30px solid #f75a60 !important;
  top: 0px;
  left: 0px;
}

.adjustColorfulCalendarWrap .cDis::before {
  display: none;
}

.adjustColorfulCalendarWrap .cDis {
  background: #f75a60;
}

.adjustColorfulCalendarWrap .cDep:after {
  border-right-color: #f75a60;
}

.adjustColorfulCalendarWrap.cArr:after {
  border-top-color: #f75a60;
}

/*Legend*/
.adjustColorfulLegendWrap {
  margin-top: 10px;
}

.adjustColorfulLegendWrap div {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  margin-right: 10px;
}

/*phone*/
@media only screen and (max-width: 47em) {
  .adjustCalendarWrap {
    max-height: 70vh;
  }
}
.adjustSubmitDate b {
  padding: 0;
}

.adjustClearDate {
  background: none;
  border: none;
  color: grey;
}

.adjustColorfulCalendarWrapNav .button.adjustCalendarNext, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li a.adjustCalendarNext:hover, section.section .main-category-list-tree-horizontal ul li .adjustColorfulCalendarWrapNav a.adjustCalendarNext:hover, .adjustColorfulCalendarWrapNav .adjustCalendarNext.big-button, .adjustColorfulCalendarWrapNav .adjustCalendarNext.button-reverse, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarNext.button-outline, .adjustColorfulCalendarWrapNav section.section .light .main-category-list-tree-horizontal ul li a.adjustCalendarNext, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li .light a.adjustCalendarNext, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext.button-outline, section.section .light .adjustColorfulCalendarWrapNav .main-category-list-tree-horizontal ul li a.adjustCalendarNext, section.section .main-category-list-tree-horizontal ul li .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarNext.button-outline-grey, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext.button-outline-grey, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarNext.button-outline-grey2, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext.button-outline-grey2, .adjustColorfulCalendarWrapNav section.section .light ul.buttons li a.adjustCalendarNext, section.section .light ul.buttons li .adjustColorfulCalendarWrapNav a.adjustCalendarNext, .adjustColorfulCalendarWrapNav ul.buttons li section.section .light a.adjustCalendarNext, ul.buttons li section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext, .adjustColorfulCalendarWrapNav .button.adjustCalendarPrev, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li a.adjustCalendarPrev:hover, section.section .main-category-list-tree-horizontal ul li .adjustColorfulCalendarWrapNav a.adjustCalendarPrev:hover, .adjustColorfulCalendarWrapNav .adjustCalendarPrev.big-button, .adjustColorfulCalendarWrapNav .adjustCalendarPrev.button-reverse, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarPrev.button-outline, .adjustColorfulCalendarWrapNav section.section .light .main-category-list-tree-horizontal ul li a.adjustCalendarPrev, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li .light a.adjustCalendarPrev, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev.button-outline, section.section .light .adjustColorfulCalendarWrapNav .main-category-list-tree-horizontal ul li a.adjustCalendarPrev, section.section .main-category-list-tree-horizontal ul li .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarPrev.button-outline-grey, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev.button-outline-grey, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarPrev.button-outline-grey2, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev.button-outline-grey2, .adjustColorfulCalendarWrapNav section.section .light ul.buttons li a.adjustCalendarPrev, section.section .light ul.buttons li .adjustColorfulCalendarWrapNav a.adjustCalendarPrev, .adjustColorfulCalendarWrapNav ul.buttons li section.section .light a.adjustCalendarPrev, ul.buttons li section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev {
  cursor: pointer;
  background: none;
  border: none;
  color: black;
  font-weight: bold;
}
.adjustColorfulCalendarWrapNav .button.adjustCalendarNext:before, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li a.adjustCalendarNext:hover:before, section.section .main-category-list-tree-horizontal ul li .adjustColorfulCalendarWrapNav a.adjustCalendarNext:hover:before, .adjustColorfulCalendarWrapNav .adjustCalendarNext.big-button:before, .adjustColorfulCalendarWrapNav .adjustCalendarNext.button-reverse:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarNext.button-outline:before, .adjustColorfulCalendarWrapNav section.section .light .main-category-list-tree-horizontal ul li a.adjustCalendarNext:before, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li .light a.adjustCalendarNext:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext.button-outline:before, section.section .light .adjustColorfulCalendarWrapNav .main-category-list-tree-horizontal ul li a.adjustCalendarNext:before, section.section .main-category-list-tree-horizontal ul li .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarNext.button-outline-grey:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext.button-outline-grey:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarNext.button-outline-grey2:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext.button-outline-grey2:before, .adjustColorfulCalendarWrapNav section.section .light ul.buttons li a.adjustCalendarNext:before, section.section .light ul.buttons li .adjustColorfulCalendarWrapNav a.adjustCalendarNext:before, .adjustColorfulCalendarWrapNav ul.buttons li section.section .light a.adjustCalendarNext:before, ul.buttons li section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext:before, .adjustColorfulCalendarWrapNav .button.adjustCalendarPrev:before, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li a.adjustCalendarPrev:hover:before, section.section .main-category-list-tree-horizontal ul li .adjustColorfulCalendarWrapNav a.adjustCalendarPrev:hover:before, .adjustColorfulCalendarWrapNav .adjustCalendarPrev.big-button:before, .adjustColorfulCalendarWrapNav .adjustCalendarPrev.button-reverse:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarPrev.button-outline:before, .adjustColorfulCalendarWrapNav section.section .light .main-category-list-tree-horizontal ul li a.adjustCalendarPrev:before, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li .light a.adjustCalendarPrev:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev.button-outline:before, section.section .light .adjustColorfulCalendarWrapNav .main-category-list-tree-horizontal ul li a.adjustCalendarPrev:before, section.section .main-category-list-tree-horizontal ul li .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarPrev.button-outline-grey:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev.button-outline-grey:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarPrev.button-outline-grey2:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev.button-outline-grey2:before, .adjustColorfulCalendarWrapNav section.section .light ul.buttons li a.adjustCalendarPrev:before, section.section .light ul.buttons li .adjustColorfulCalendarWrapNav a.adjustCalendarPrev:before, .adjustColorfulCalendarWrapNav ul.buttons li section.section .light a.adjustCalendarPrev:before, ul.buttons li section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev:before {
  border-color: black;
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  height: 0.6em;
  left: 0.15em;
  top: calc(50% - 0.3em);
  transform: rotate(-45deg);
  vertical-align: top;
  width: 0.6em;
}
.adjustColorfulCalendarWrapNav .button.adjustCalendarNext:before, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li a.adjustCalendarNext:hover:before, section.section .main-category-list-tree-horizontal ul li .adjustColorfulCalendarWrapNav a.adjustCalendarNext:hover:before, .adjustColorfulCalendarWrapNav .adjustCalendarNext.big-button:before, .adjustColorfulCalendarWrapNav .adjustCalendarNext.button-reverse:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarNext.button-outline:before, .adjustColorfulCalendarWrapNav section.section .light .main-category-list-tree-horizontal ul li a.adjustCalendarNext:before, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li .light a.adjustCalendarNext:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext.button-outline:before, section.section .light .adjustColorfulCalendarWrapNav .main-category-list-tree-horizontal ul li a.adjustCalendarNext:before, section.section .main-category-list-tree-horizontal ul li .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarNext.button-outline-grey:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext.button-outline-grey:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarNext.button-outline-grey2:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext.button-outline-grey2:before, .adjustColorfulCalendarWrapNav section.section .light ul.buttons li a.adjustCalendarNext:before, section.section .light ul.buttons li .adjustColorfulCalendarWrapNav a.adjustCalendarNext:before, .adjustColorfulCalendarWrapNav ul.buttons li section.section .light a.adjustCalendarNext:before, ul.buttons li section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarNext:before {
  left: auto;
  right: 0;
  transform: rotate(45deg);
}
.adjustColorfulCalendarWrapNav .button.adjustCalendarPrev:before, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li a.adjustCalendarPrev:hover:before, section.section .main-category-list-tree-horizontal ul li .adjustColorfulCalendarWrapNav a.adjustCalendarPrev:hover:before, .adjustColorfulCalendarWrapNav .adjustCalendarPrev.big-button:before, .adjustColorfulCalendarWrapNav .adjustCalendarPrev.button-reverse:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarPrev.button-outline:before, .adjustColorfulCalendarWrapNav section.section .light .main-category-list-tree-horizontal ul li a.adjustCalendarPrev:before, .adjustColorfulCalendarWrapNav section.section .main-category-list-tree-horizontal ul li .light a.adjustCalendarPrev:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev.button-outline:before, section.section .light .adjustColorfulCalendarWrapNav .main-category-list-tree-horizontal ul li a.adjustCalendarPrev:before, section.section .main-category-list-tree-horizontal ul li .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarPrev.button-outline-grey:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev.button-outline-grey:before, .adjustColorfulCalendarWrapNav section.section .light a.adjustCalendarPrev.button-outline-grey2:before, section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev.button-outline-grey2:before, .adjustColorfulCalendarWrapNav section.section .light ul.buttons li a.adjustCalendarPrev:before, section.section .light ul.buttons li .adjustColorfulCalendarWrapNav a.adjustCalendarPrev:before, .adjustColorfulCalendarWrapNav ul.buttons li section.section .light a.adjustCalendarPrev:before, ul.buttons li section.section .light .adjustColorfulCalendarWrapNav a.adjustCalendarPrev:before {
  left: 0.25em;
  transform: rotate(-135deg);
}

#hotres-reservation-container.active {
  margin: 1rem 0;
}
@media only screen and (max-width: 991.98px) {
  #hotres-reservation-container.active {
    padding: 0;
  }
}
@media only screen and (max-width: 991.98px) {
  #hotres-reservation-container {
    padding: 0;
    flex-direction: column;
    display: none;
    position: relative;
  }
  #hotres-reservation-container.active {
    display: flex;
  }
}

@media only screen and (max-width: 991.98px) {
  .item .sb-container-mobile {
    height: 100%;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    position: fixed;
    bottom: 4rem;
    width: 100%;
    left: 0;
    align-items: flex-end;
  }
  .item .sb-container-mobile.active {
    display: flex;
  }
}

.map-wrapper map {
  height: 30rem;
}
@media only screen and (max-width: 991.98px) {
  .map-wrapper map {
    height: 12rem;
  }
}

.msg {
  background: rgba(0, 0, 0, 0.062745098);
  padding: 20px;
  border-radius: 4px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.062745098);
  cursor: pointer;
  margin-bottom: 10px;
}

.msg hr {
  border: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.062745098);
  border-top: 1px solid rgba(0, 0, 0, 0.062745098);
}

.msg.msgFixed {
  position: fixed;
  right: 40px;
  top: 40px;
  max-width: 250px;
  z-index: 2;
}

.msg h3, .msg h2, .msg h1 {
  margin: 0px;
  padding: 0px;
}

.msg.info {
  background: #b1d8ff;
}

.msg.error {
  background: #ff3434;
  color: #fff;
}

.msg.notice {
  background: #f3d379;
}

.msg.success {
  background: #c3eaa0;
}

.item-show .add-to-favorite {
  position: relative;
  z-index: 999;
  margin-top: 10px;
}

#item-list-container-ajax {
  padding-top: 1rem;
}
@media only screen and (max-width: 767.98px) {
  #item-list-container-ajax {
    margin-top: 0;
  }
}
#item-list-container-ajax p {
  margin-bottom: 0;
}

@media only screen and (max-width: 767.98px) {
  .item-list-container {
    margin-top: 0.5rem;
  }
}

.item-list {
  gap: 2rem 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  justify-content: space-between;
}
@media only screen and (max-width: 767.98px) {
  .item-list {
    margin-left: -15px;
    width: calc(100% + 30px);
  }
}
.item-list h3 {
  text-align: center;
  width: 100%;
  overflow: hidden;
  min-height: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 991.98px) {
  .item-list h3 {
    overflow: unset;
    min-height: auto;
  }
}
.item-list .info-rate-restrictions {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  color: var(--color-primary);
  font-weight: bold;
  text-align: center;
  -webkit-border-radius: 0 0 16px 0;
  -moz-border-radius: 0 0 16px 0;
  border-radius: 0 0 16px 0;
}
.item-list .item {
  padding: 0.6rem;
  -webkit-transition: all 0.6s ease 0ms;
  -moz-transition: all 0.6s ease 0ms;
  -ms-transition: all 0.6s ease 0ms;
  -o-transition: all 0.6s ease 0ms;
  transition: all 0.6s ease 0ms;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  flex-direction: column;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media only screen and (max-width: 991.98px) {
  .item-list .item {
    flex-direction: column;
  }
}
.item-list .item .prop-val {
  position: absolute;
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  z-index: 999;
  padding: 0.1rem 0.5rem;
  margin-top: 1rem;
}
.item-list .item .prop-val svg {
  width: auto;
  height: 0.8rem;
}
.item-list .item .prop-val svg path {
  fill: white;
}
.item-list .item > a {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 991.98px) {
  .item-list .item > a {
    min-height: auto;
    width: 100%;
    margin: 0;
  }
}
.item-list .item > a {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.item-list .item > a:hover .img-container {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.item-list .item .item-main-data {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.item-list .item .reservation-data-request {
  padding: 1rem;
  flex-direction: row;
  display: flex;
  justify-content: space-between;
  right: 0;
  bottom: 0;
  width: 100%;
}
.item-list .item .reservation-data-request .price-container {
  gap: 10px;
  display: flex;
  font-size: 1rem;
  text-align: left;
  align-items: baseline;
  justify-content: flex-end;
}
.item-list .item .reservation-data-request .price-container span.price-wrapper {
  justify-content: flex-end;
  align-items: baseline;
  display: flex;
}
.item-list .item .reservation-data-request .price-container span.price-wrapper span.price {
  white-space: nowrap;
  font-weight: bold;
  font-size: 1.625rem;
  font-family: var(--font-header), sans-serif;
  color: var(--color-secondary);
}
.item-list .item .reservation-data-request .price-container span.price-wrapper span.currency {
  font-size: 1rem;
  font-weight: normal;
  margin-left: 0.2rem;
}
.item-list .item .reservation-data-request .small-info {
  font-size: 0.812rem;
}
.item-list .item .img-container {
  overflow: hidden;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  height: 240px;
  width: 100%;
  position: relative;
}
.item-list .item .img-container .group-item-media {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.item-list .item .img-container .group-item-media .slide-item {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.item-list .item .img-container .group-item-media .slide-item:hover .slide-item {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.item-list .item .item-data {
  position: relative;
  z-index: 2;
  padding: 1rem;
  background-color: white;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 991.98px) {
  .item-list .item .item-data {
    width: 100%;
    margin: 0;
  }
}
.item-list .item .item-data .header-props {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.item-list .item .item-data .header-props a {
  width: 100%;
  display: block;
}
.item-list .item .item-data .header-props .name-address-wrapper {
  justify-content: center;
  display: flex;
  flex-direction: column;
  flex: 6;
}
.item-list .item .item-data .header-props h3 {
  margin: 0;
  color: black;
  font-size: 1.25rem;
  text-align: left;
  font-weight: 500;
  min-height: auto;
  line-height: 1.8rem;
}
@media only screen and (max-width: 767.98px) {
  .item-list .item .item-data .header-props h3 {
    min-height: auto;
  }
}
.item-list .item .item-data .header-props address {
  padding-top: 0.5rem;
  font-size: 0.875rem;
}
.item-list .item .item-data header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
}
.item-list .item .item-data header .price-from-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #d1d1d1;
}
.item-list .item .item-data header .price-from-wrapper .prop-detail {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.item-list .item .item-data header .price-from-wrapper span.price-from-value {
  font-weight: bold;
  font-size: 1.2rem;
}
.item-list .item .item-data header .price-from-wrapper span.price-from-txt {
  font-weight: normal;
}
.item-list .item .item-properties {
  gap: 0.5rem;
  flex: 1;
  color: #d1d1d1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.item-list .item .item-properties .item-properties-group {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.item-list .item .item-properties .item-properties-group > * {
  padding-right: 0.1rem;
}
.item-list .item .item-properties svg, .item-list .item .item-properties img {
  width: auto;
  height: 1.5rem;
}
.item-list .item .button-wrapper {
  flex: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}
.item-list .item .button-wrapper > * {
  margin: 0.2rem 0;
}
@media only screen and (max-width: 767.98px) {
  .item-list .item .button-wrapper {
    flex-direction: column;
  }
}
.item-list .item .button-wrapper .book-now {
  flex: 1;
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.item-list .item .button-wrapper .book-now:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.item-list .item .prop-detail {
  gap: 0 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--color-primary);
}
.item-list .item .prop-detail sup {
  top: 0.5rem;
}
.item-list .item small {
  margin-bottom: 1rem;
  margin-top: -1.5rem;
  display: block;
  text-align: center;
  font-size: 0.9rem;
}
.item-list .item:hover {
  -webkit-transition: all 0.2s ease 0ms;
  -moz-transition: all 0.2s ease 0ms;
  -ms-transition: all 0.2s ease 0ms;
  -o-transition: all 0.2s ease 0ms;
  transition: all 0.2s ease 0ms;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  -khtml-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  -moz-transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.item-list .item-actions {
  display: flex;
  justify-content: space-between;
}

section.section .filter-container {
  margin-bottom: 1rem;
}
section.section .filter-container .filters-label {
  font-weight: 500;
}
section.section .filter-container ul {
  padding: 0;
  display: flex;
  flex-direction: row;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}
section.section .filter-container ul li:before {
  display: none;
}
section.section .filter-container ul li {
  list-style: none;
  margin: 0.2rem;
}
section.section .filter-container ul li .filter-tag, section.section .filter-container ul li a.remove-filter {
  background-color: white;
  color: var(--color-primary);
  font-size: 0.875rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 1rem;
  border: 1px solid #DEDEDE;
  -webkit-border-radius: 1rem;
  -khtml-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  border-radius: 1rem;
}
section.section .filter-container ul li .filter-tag svg, section.section .filter-container ul li a.remove-filter svg {
  margin-left: 0.3rem;
}
section.section .filter-container ul li .filter-tag.active, section.section .filter-container ul li .filter-tag:hover, section.section .filter-container ul li a.remove-filter.active, section.section .filter-container ul li a.remove-filter:hover {
  background-color: var(--color-primary);
  color: white;
}
section.section .filter-container ul li .filter-tag.active svg path, section.section .filter-container ul li .filter-tag:hover svg path, section.section .filter-container ul li a.remove-filter.active svg path, section.section .filter-container ul li a.remove-filter:hover svg path {
  fill: white;
}

.amount-3.item-list {
  gap: 1.5rem;
}
@media only screen and (max-width: 991.98px) {
  .amount-3.item-list {
    gap: 1rem 0;
  }
}
.amount-3 .item {
  width: calc(33.3333333333% - 1rem);
}
@media only screen and (max-width: 991.98px) {
  .amount-3 .item {
    width: 100%;
  }
}

.item-list:hover .item {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
.item-list:hover .item:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.item-img-container {
  position: relative;
}

.add-to-favorite {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 8px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  width: 38px;
  height: 38px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  background-color: var(--color-primary);
}
.add-to-favorite img {
  width: auto;
}
.add-to-favorite:hover, .add-to-favorite.active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  background-color: var(--color-secondary);
}

address {
  text-align: left;
}
address svg, address img {
  width: auto;
  height: 14px;
  margin-right: 0;
}

.sort-filter-tab {
  gap: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767.98px) {
  .sort-filter-tab {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sort-filter-tab .sort-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sort-filter-tab .sort-filter .sort-filter-label {
  font-weight: 500;
  margin-right: 0.5rem;
}
.sort-filter-tab .sort-filter .sort-filter-select {
  width: auto;
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  background-color: white;
  color: var(--color-primary);
  font-size: 0.875rem;
}
.sort-filter-tab .sort-filter .sort-filter-select:hover {
  background-color: var(--color-primary);
  color: white;
}

#search-item-input {
  min-width: 200px;
}

.button.fast-booking, section.section .main-category-list-tree-horizontal ul li a.fast-booking:hover, .fast-booking.big-button, .fast-booking.button-reverse, section.section .light a.fast-booking.button-outline, section.section .light .main-category-list-tree-horizontal ul li a.fast-booking, section.section .main-category-list-tree-horizontal ul li .light a.fast-booking, section.section .light a.fast-booking.button-outline-grey, section.section .light a.fast-booking.button-outline-grey2, section.section .light ul.buttons li a.fast-booking, ul.buttons li section.section .light a.fast-booking {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.group-page-item-slider .item {
  margin: 0 0.5rem;
}
.group-page-item-slider .item .box-container {
  -webkit-border-radius: 16px;
  -khtml-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  border: 1px solid #DEDEDE;
  width: 100%;
}
@media only screen and (max-width: 991.98px) {
  .group-page-item-slider .item .box-container {
    width: 100%;
  }
}
.group-page-item-slider .item .box-container .figure-wrapper {
  overflow: hidden;
  -webkit-border-radius: 12px;
  -khtml-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
}

.filter-choose-field {
  display: none;
}

body.popup-active > *:not(.date-picker-wrapper, .boxShow) {
  filter: blur(10px) !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.search-box-board {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  z-index: 9;
  width: 100%;
  position: absolute;
  margin-top: -18rem;
}
@media only screen and (max-width: 991.98px) {
  .search-box-board {
    position: relative;
    margin-top: 2rem;
  }
}
.search-box-board.no-homepage {
  padding-top: 3rem;
  position: relative;
  margin-top: 0;
  padding-bottom: 1rem;
}
.search-box-board.no-homepage h2 {
  font-size: 1.125rem;
}
.search-box-board h2 {
  font-family: var(--font-header);
  text-align: center;
  z-index: 99999;
  position: relative;
  color: white;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 991.98px) {
  .search-box-board h2 {
    font-size: 1.75rem;
  }
}
.search-box-board h4 {
  text-align: center;
  z-index: 99999;
  position: relative;
  color: white;
}
@media only screen and (max-width: 991.98px) {
  .search-box-board h4 {
    color: var(--color-primary);
    margin-bottom: 2rem;
  }
}
.search-box-board .is-sticky .sticky {
  background: rgb(91, 84, 74);
  background: linear-gradient(0deg, rgb(91, 84, 74) 0%, rgb(49, 49, 49) 100%);
}

.large-header {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 300;
  margin-right: 0.5rem;
  width: 2.7rem;
}
@media only screen and (max-width: 991.98px) {
  .large-header {
    font-size: 1.8rem;
    font-weight: 300;
  }
}

.search-alert {
  text-align: center;
  font-weight: bold;
  color: rgb(211, 129, 93);
  padding: 1rem;
}

.search-box-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 191px;
}
.search-box-wrapper h4 {
  color: white;
  font-size: 1.125rem;
}
.search-box-wrapper .search-box-container {
  width: 80%;
}

.search-box-container {
  z-index: 999999;
  margin: 0 auto;
  position: absolute;
  width: 80%;
  max-width: 960px;
  left: 50%;
  -moz-transform: translate(-50%, -200%);
  -webkit-transform: translate(-50%, -200%);
  -o-transform: translate(-50%, -200%);
  -ms-transform: translate(-50%, -200%);
  transform: translate(-50%, -200%);
}
@media only screen and (max-width: 1399.98px) {
  .search-box-container {
    -moz-transform: translate(-50%, -11rem);
    -webkit-transform: translate(-50%, -11rem);
    -o-transform: translate(-50%, -11rem);
    -ms-transform: translate(-50%, -11rem);
    transform: translate(-50%, -11rem);
  }
}
@media only screen and (max-width: 991.98px) {
  .search-box-container {
    bottom: 80px;
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
    left: 0;
    padding: 0 1rem;
    margin-bottom: 0;
    width: 100%;
    z-index: 9998;
  }
}
@media only screen and (max-width: 767.98px) {
  .search-box-container {
    padding: 0 1rem;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
  }
}
.search-box-container.width-xs, .search-box-container.width-xxs {
  padding: 0 1rem;
  margin-bottom: 0;
  margin-top: 1rem;
  position: relative;
}

section.section .search-box-container {
  position: sticky;
  left: 0;
  top: 0;
}

@media only screen and (max-width: 991.98px) {
  .search-box-container.active {
    top: auto;
    display: flex;
    align-items: flex-end;
  }
}

.search-box {
  backdrop-filter: blur(5px);
  border-radius: 5px;
  right: 2rem;
  color: #fff !important;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  margin: 0 auto;
  font-family: var(--font-header), sans-serif;
}
.search-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  opacity: 0.8;
  pointer-events: none;
}
@media only screen and (max-width: 991.98px) {
  .search-box {
    -webkit-border-radius: 0.5rem;
    -khtml-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    border-radius: 0.5rem;
    width: 100%;
    background-color: black;
  }
}
.search-box .discount-code input {
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  font-size: 0.813rem;
  padding: 0.5rem;
  border: 1px solid #DEDEDE;
}
.search-box {
  /**fields*/
}
.search-box .placeholder {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  display: flex;
  position: relative;
  z-index: 1;
  background-color: transparent;
}
.search-box .placeholder-replace {
  display: none;
}
.search-box .active .placeholder-replace {
  display: flex;
}
.search-box .active .placeholder {
  display: none;
}
.search-box .person-choose-field .child-adult-box {
  line-height: 1rem;
}
.search-box .person-choose-field .child-adult-box .adult-text {
  font-size: 1rem;
}
.search-box .person-choose-field .child-adult-box .child-box {
  font-size: 13px;
}
.search-box #two-inputs:after {
  content: "";
  position: absolute;
  left: 50%;
  height: 1rem;
  width: 1rem;
  top: 50%;
  -moz-transform: translate(-123%, -50%);
  -webkit-transform: translate(-123%, -50%);
  -o-transform: translate(-123%, -50%);
  -ms-transform: translate(-123%, -50%);
  transform: translate(-123%, -50%);
  margin-top: 0rem;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512%3B' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M506.134 241.843c-0.006-0.006-0.011-0.013-0.018-0.019l-104.504-104c-7.829-7.791-20.492-7.762-28.285 0.068c-7.792 7.829-7.762 20.492 0.067 28.284L443.558 236H20c-11.046 0-20 8.954-20 20c0 11.046 8.954 20 20 20h423.557l-70.162 69.824c-7.829 7.792-7.859 20.455-0.067 28.284c7.793 7.831 20.457 7.858 28.285 0.068l104.504-104c0.006-0.006 0.011-0.013 0.018-0.019C513.968 262.339 513.943 249.635 506.134 241.843z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 991.98px) {
  .search-box #two-inputs {
    flex: 1;
  }
}
@media only screen and (max-width: 767.98px) {
  .search-box #two-inputs #search_checkout {
    border-left: 1px solid #DEDEDE;
    padding-left: 1rem;
  }
}
.search-box #two-inputs .formated-date {
  align-content: center;
  margin-top: 1px;
}
.search-box #two-inputs .formated-date .day-number {
  margin-top: 12px;
  display: flex;
  align-content: center;
  font-size: 4rem;
  font-weight: 100;
  font-family: var(--font-header), sans-serif;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 767.98px) {
  .search-box #two-inputs .formated-date .day-number {
    font-size: 3rem;
  }
}
.search-box #two-inputs .formated-date > .flex-column {
  margin: 1px 0 0 24px;
  flex: auto;
  justify-content: flex-start;
  align-content: center;
  line-height: 1rem;
}
.search-box #two-inputs .formated-date > .flex-column .date-month {
  font-weight: bold;
  font-size: 1rem;
  margin-right: 0.3rem;
}
.search-box #two-inputs .formated-date > .flex-column .date-year {
  font-size: 15px;
}
.search-box #two-inputs .formated-date > .flex-column .date-day-of-week {
  margin-top: 1px;
  font-size: 13px;
}
.search-box {
  /**======*/
}
.search-box div.list-inline {
  padding: 1rem;
  width: 100%;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
@media only screen and (max-width: 991.98px) {
  .search-box div.list-inline {
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
}
.search-box div.list-inline span#two-inputs {
  display: flex;
  flex-direction: row;
  flex: 4;
  position: relative;
}
@media only screen and (max-width: 991.98px) {
  .search-box div.list-inline span#two-inputs {
    padding: 0.8rem 0;
  }
}
.search-box div.list-inline span#two-inputs > div {
  flex: 1;
  position: relative;
  margin: 0 0.75rem;
}
.search-box div.list-inline span#two-inputs > div h4 {
  font-weight: bold;
  text-align: left;
  margin: 0;
  font-size: 1rem;
  line-height: normal;
}
.search-box div.list-inline span#two-inputs > div p {
  padding: 0;
  margin: 0;
  font-size: 13px !important;
}
.search-box div.list-inline > div {
  cursor: pointer;
  position: relative;
  flex: 2;
  margin: 0 0.75rem;
  z-index: 1;
}
.search-box div.list-inline > div h4 {
  font-weight: bold;
  text-align: left;
  margin: 0 0 5px 0;
  font-size: 1rem;
}
.search-box div.list-inline > div p {
  padding: 0;
  margin: 0;
  font-size: 13px !important;
}
.search-box div.list-inline > div div:last-child {
  margin: 1px 0 0 0;
  align-items: center;
}
.search-box div.list-inline > div div:last-child:after {
  display: none;
}
.search-box div.list-inline div.filter-choose-field:after {
  display: none;
  margin-right: 0;
}
@media only screen and (max-width: 991.98px) {
  .search-box div.list-inline div.arrow {
    padding: 0.8rem 0;
    border-top: 1px solid #DEDEDE;
  }
}
.search-box div.list-inline div.arrow::before {
  z-index: -1;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7.41' viewBox='0 0 12 7.41'%3E%3Cpath id='Path_646' data-name='Path 646' d='M225.923,252.923l-4.59,4.58-4.59-4.58-1.41,1.41,6,6,6-6Z' transform='translate(-215.333 -252.923)' fill='%237b7b7b'/%3E%3C/svg%3E");
  clear: both;
  display: flex;
  position: absolute;
  width: 12px;
  height: 7px;
  content: "";
  right: 1rem;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width: 991.98px) {
  .search-box div.list-inline div.arrow::before {
    display: none;
  }
}
.search-box div.list-inline div:last-child {
  flex: 0;
  margin: 0;
}
.search-box button.search-btn {
  border-radius: 4px;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  padding: 0rem 2.5rem;
  height: 100%;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: white;
}
.search-box button.search-btn span {
  text-transform: uppercase;
  padding: 0 0.5rem;
  color: white;
}
.search-box button.search-btn svg {
  -webkit-transition: all 100ms ease 0ms;
  -moz-transition: all 100ms ease 0ms;
  -ms-transition: all 100ms ease 0ms;
  -o-transition: all 100ms ease 0ms;
  transition: all 100ms ease 0ms;
  width: 1.2rem;
  height: 1.2rem;
}
@media only screen and (max-width: 991.98px) {
  .search-box button.search-btn svg {
    width: 1rem;
    height: 1rem;
  }
}
.search-box button.search-btn svg path {
  fill: white;
}
.search-box button.search-btn:hover {
  background-color: var(--color-secondary);
}
@media only screen and (max-width: 991.98px) {
  .search-box button.search-btn {
    -webkit-border-radius: 2rem;
    -khtml-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    border-radius: 2rem;
    width: calc(100% - 5rem);
    margin: 0 auto;
    min-height: 66px;
  }
}
.search-box .person-show {
  display: flex;
}
.search-box .person-show .child-adult-box {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767.98px) {
  .search-box .person-show .child-adult-box .adult-text {
    font-size: 1rem;
  }
}
.search-box .person-show .adults-cnt {
  margin-top: 12px;
  font-weight: 100;
  font-family: var(--font-header), sans-serif;
  display: flex;
  align-items: center;
  font-size: 4rem;
  margin-right: 0.5rem;
}
.search-box.width-xs div.list-inline, .search-box.width-xxs div.list-inline {
  padding: 0.5rem 10px 0.5rem 10px;
  flex-direction: column;
  align-items: stretch;
}
.search-box.width-xs div.list-inline span#two-inputs, .search-box.width-xxs div.list-inline span#two-inputs {
  display: flex;
  flex-direction: row;
  flex: 4;
  position: relative;
  padding: 0.8rem 0;
}
.search-box.width-xs div.list-inline span#two-inputs > div:after, .search-box.width-xxs div.list-inline span#two-inputs > div:after {
  display: none;
}
.search-box.width-xs div.list-inline > div:not(:last-child):not(.highlight):after, .search-box.width-xxs div.list-inline > div:not(:last-child):not(.highlight):after {
  display: none;
}
.search-box.width-xs div.list-inline div.arrow, .search-box.width-xxs div.list-inline div.arrow {
  padding: 0.8rem 0;
}
@media only screen and (max-width: 991.98px) {
  .search-box.width-xs div.list-inline div.arrow, .search-box.width-xxs div.list-inline div.arrow {
    border-top: 1px solid #DEDEDE;
  }
}
.search-box.width-xs button.search-btn, .search-box.width-xxs button.search-btn {
  width: calc(100% - 5rem);
  margin: 0.25rem auto 0 auto;
}
.search-box.width-xs button.search-btn span, .search-box.width-xxs button.search-btn span {
  display: block;
}
.search-box.width-xxs button.search-btn {
  margin: 1rem auto;
  width: calc(100% - 1rem);
}
.search-box.width-xxs div.list-inline #two-inputs:after {
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
  margin-top: -1rem;
  display: none;
}
.search-box.width-xxs div.list-inline span#two-inputs {
  flex-direction: column;
}
.search-box.width-xxs div.list-inline span#two-inputs #search_checkout {
  padding: 0;
  border: 0;
  margin-top: 1rem;
}
.search-box.width-xs button.search-btn, .search-box.width-xxs button.search-btn {
  -webkit-border-radius: 2rem;
  -khtml-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  border-radius: 2rem;
}
.search-box.width-xs div.list-inline span#two-inputs, .search-box.width-xxs div.list-inline span#two-inputs {
  flex-direction: row;
}
.search-box.width-xs div.list-inline span#two-inputs > *, .search-box.width-xxs div.list-inline span#two-inputs > * {
  margin: 0 0.75rem !important;
}

.item-show .search-box {
  color: var(--color-secondary) !important;
}
.item-show .search-box::after {
  content: none;
  display: none;
}

.personBox, .filterBox {
  overflow: hidden;
  -moz-transform: translate(-50%, 0px);
  -webkit-transform: translate(-50%, 0px);
  -o-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
  -webkit-border-radius: 0.8rem;
  -khtml-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  border-radius: 0.8rem;
  z-index: 999;
  left: 50%;
  font-size: 0.8rem;
  min-width: 22.5rem;
  top: 100%;
  position: absolute;
  padding: 16px 24px 24px 24px;
  background-color: #fff;
  display: none;
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 991.98px) {
  .personBox, .filterBox {
    -webkit-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    -khtml-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    -moz-transform: translate(0, 0px);
    -webkit-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
    width: 100%;
    left: 50%;
    min-width: auto;
  }
}
.personBox.boxShow, .boxShow.filterBox {
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: fixed;
  flex-direction: column;
  display: flex;
}
.personBox.boxShow .box-footer, .boxShow.filterBox .box-footer {
  text-align: right;
  margin-top: 1rem;
}
.personBox.boxShow .box-header, .boxShow.filterBox .box-header {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.personBox.boxShow .box-header span.label, .boxShow.filterBox .box-header span.label {
  font-size: 1rem;
}
.personBox.boxShow .box-header a.personCancel svg, .boxShow.filterBox .box-header a.personCancel svg {
  width: 14px;
  height: 14px;
  position: relative;
}
.personBox.boxShow.showBottom, .boxShow.showBottom.filterBox {
  top: 3.4rem;
  bottom: auto;
  left: 0;
}
.personBox .chooserPersonBoxItem, .filterBox .chooserPersonBoxItem {
  margin: 0.7rem 0;
}
.personBox .chooserPersonBoxItem svg, .filterBox .chooserPersonBoxItem svg {
  position: relative;
  width: 20px;
  height: 20px;
}
.personBox .chooserPersonBoxItem > .box-row, .filterBox .chooserPersonBoxItem > .box-row {
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.personBox .chooserPersonBoxItem > .box-row .col, .filterBox .chooserPersonBoxItem > .box-row .col {
  display: flex;
}
.personBox .chooserPersonBoxItem > .box-row .col:last-child, .filterBox .chooserPersonBoxItem > .box-row .col:last-child {
  justify-content: flex-end;
}
.personBox .chooserPersonBoxItem > .box-row .chooserWrap, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus {
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 2.2rem;
  height: 2.2rem;
  line-height: 2.2rem;
  border-radius: 100%;
  margin: 0;
  font-size: 10px;
  padding: 0;
}
.personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus:hover, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus:hover, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus:hover, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus:hover {
  -webkit-box-shadow: 1px 1px 12px 1px rgba(var(--color-primary), 0.7);
  box-shadow: 1px 1px 12px 1px rgba(var(--color-primary), 0.7);
  border: 1px solid var(--color-primary);
}
.personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus:hover svg path, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus:hover svg path, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus:hover svg polygon, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus:hover svg polygon, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus:hover svg g, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus:hover svg g, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus:hover svg path, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus:hover svg path, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus:hover svg polygon, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus:hover svg polygon, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus:hover svg g, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus:hover svg g {
  fill: var(--color-secondary);
}
.personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus svg, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus svg, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus svg, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus svg {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  left: 0;
}
.personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus svg path, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus svg path, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus svg polygon, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus svg polygon, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus svg g, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserMinus svg g, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus svg path, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus svg path, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus svg polygon, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus svg polygon, .personBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus svg g, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap .chooserPlus svg g {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  fill-opacity: 1;
  display: flex;
  fill: var(--color-primary);
}
.personBox .chooserPersonBoxItem > .box-row .chooserWrap input.chooserCnt, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap input.chooserCnt {
  background: transparent;
  border: none;
  display: block;
  text-align: center;
  width: 2rem;
  font-size: 1.1rem;
}
.personBox .chooserPersonBoxItem > .box-row .chooserWrap input.chooserCnt:focus, .filterBox .chooserPersonBoxItem > .box-row .chooserWrap input.chooserCnt:focus {
  outline: none;
  border: none;
}
.personBox .chooserPersonBoxItem .chooserPersonLabel, .filterBox .chooserPersonBoxItem .chooserPersonLabel {
  display: flex;
  align-items: center;
}
.personBox .chooserPersonBoxItem .chooserPersonLabel > svg, .filterBox .chooserPersonBoxItem .chooserPersonLabel > svg {
  margin-right: 0.5rem;
}
.personBox .chooserPersonBoxItem .chooserPersonLabel .person-label, .filterBox .chooserPersonBoxItem .chooserPersonLabel .person-label {
  display: flex;
  flex-direction: column;
}
.personBox .chooserPersonBoxItem .chooserPersonLabel .person-label span, .filterBox .chooserPersonBoxItem .chooserPersonLabel .person-label span {
  line-height: 1.1rem;
  font-size: 1rem;
  font-weight: bold;
}
.personBox .chooserPersonBoxItem .chooserPersonLabel .person-label small, .filterBox .chooserPersonBoxItem .chooserPersonLabel .person-label small {
  line-height: 1rem;
  font-size: 0.8rem;
}

.filterBox {
  -moz-transform: translate(0, 0px);
  -webkit-transform: translate(0, 0px);
  -o-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
  transform: translate(0, 0px);
  padding: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  flex-direction: column;
  position: fixed;
}
.filterBox .search-filter-container .search-input {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  width: 100%;
  border: 1px solid #d1d1d1;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.filterBox .filterCancel {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  display: inline-block;
}
.filterBox .filterCancel svg {
  width: 1rem;
  height: 1rem;
  position: relative;
}
.filterBox h4 {
  text-transform: uppercase;
  margin-top: 2rem;
  color: var(--color-primary);
  display: block;
  width: 100%;
  text-align: center;
}
.filterBox h5 {
  font-weight: 500;
  padding-bottom: 0.4rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  width: 100%;
}
.filterBox .group-filter-wrapper-body {
  padding: 1rem;
}
.filterBox .group-filter-wrapper {
  margin: 0.5rem 0;
  background-color: #f5f7fb;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991.98px) {
  .filterBox .group-filter-wrapper {
    padding: 1rem 2rem;
  }
}
.filterBox .group-filter-wrapper label {
  cursor: pointer;
}
.filterBox .group-filter-wrapper label:before {
  position: absolute;
  vertical-align: middle;
  transform: translateY(-50%);
  top: 50%;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  min-width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-left: -28px;
  border: 1px solid #d1d1d1;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.filterBox .group-filter-wrapper label:after {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  height: 6px;
  border: 0;
  left: 5px;
  top: 50%;
  transform: translateY(20%) rotate(-45deg);
  width: 12px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  content: "";
  display: inline-block;
  position: absolute;
  background: hsla(0, 0%, 100%, 0);
  transform-origin: top left;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.filterBox .group-filter-wrapper label h6 {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 0;
}
.filterBox .group-filter-wrapper label p {
  font-size: 12px;
  margin-bottom: 0;
}
.filterBox .group-filter-wrapper input {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  margin-top: 0.1rem;
  margin-right: 0.5rem;
}
.filterBox .group-filter-wrapper input:checked ~ label:before {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.filterBox .group-filter-wrapper input:checked ~ label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  border-color: white;
}
.filterBox footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  background-color: #f5f7fb;
}
.filterBox footer span.clear-filters {
  font-size: 0.875rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #DEDEDE;
  text-decoration: underline;
  margin-right: 1rem;
  display: flex;
}
.filterBox footer span.clear-filters.active {
  color: #313131;
}
.filterBox .group-filter-container, .filterBox .group-page-filter-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.filterBox .group-filter-container .groupFilter, .filterBox .group-page-filter-container .groupFilter {
  width: 33.33%;
  padding: 1rem 1rem 1rem 0;
}
@media only screen and (max-width: 991.98px) {
  .filterBox .group-filter-container .groupFilter, .filterBox .group-page-filter-container .groupFilter {
    width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  .filterBox .group-filter-container .groupFilter, .filterBox .group-page-filter-container .groupFilter {
    width: 100%;
  }
}
.filterBox .group-filter-container .groupPageFilter, .filterBox .group-page-filter-container .groupPageFilter {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
}
.filterBox .group-filter-container .groupPageFilter .filter-container, .filterBox .group-page-filter-container .groupPageFilter .filter-container {
  width: 33.333%;
  align-items: center;
}
@media only screen and (max-width: 991.98px) {
  .filterBox .group-filter-container .groupPageFilter .filter-container, .filterBox .group-page-filter-container .groupPageFilter .filter-container {
    width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  .filterBox .group-filter-container .groupPageFilter .filter-container, .filterBox .group-page-filter-container .groupPageFilter .filter-container {
    width: 100%;
  }
}
.filterBox .group-filter-container .groupFilterBody, .filterBox .group-page-filter-container .groupFilterBody {
  display: flex;
  flex-direction: column;
}
.filterBox .group-filter-container .groupFilterBody.showAll .showMoreItem, .filterBox .group-page-filter-container .groupFilterBody.showAll .showMoreItem {
  display: flex;
}
.filterBox .filter-container {
  position: relative;
  cursor: pointer;
  font-size: 0.938rem;
  display: flex;
  align-items: center;
  position: relative;
  padding: 5px 0 5px 8px;
  line-height: 20px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.filterBox .filter-container.showMoreItem {
  display: none;
}
.filterBox .filter-container.active {
  color: var(--color-primary);
}
.filterBox .filter-container-row {
  flex-direction: row;
}

.filterBox.boxShow {
  margin: 0;
  min-width: 0;
  width: auto;
  height: auto;
  z-index: 9999;
  top: 50%;
  left: 50%;
}
@media only screen and (max-width: 991.98px) {
  .filterBox.boxShow {
    width: 100%;
    height: 100dvh;
    max-height: calc(100dvh - 3rem);
    overflow-y: auto;
    left: 0;
    top: 0;
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .filterBox.boxShow footer {
    flex-direction: column;
  }
}
.filterBox.boxShow .filterHeader {
  padding: 1rem;
}
.filterBox.boxShow .filterHeader h3 {
  font-size: 1.2rem;
  margin: 0;
}
.filterBox.boxShow .filter-category-wrapper {
  width: 100%;
}
.filterBox.boxShow .filter-category-wrapper ul {
  column-count: 2;
  column-gap: 20px;
}

.filterBox.boxShow ~ .pop-up-overlay {
  display: flex;
}

.search-box-item-container {
  margin-top: 1rem;
  position: relative;
  z-index: 9999999;
}
.search-box-item-container .alert {
  text-align: center;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  margin: 1rem 0;
  padding: 1rem;
  background-color: white;
}
.search-box-item-container .alert p {
  font-size: 1.2rem;
  font-weight: bold;
}

.search-box-item-container .search-box {
  padding: 1.875rem;
}
@media only screen and (max-width: 767.98px) {
  .search-box-item-container .search-box {
    padding: 1rem;
  }
}
.search-box-item-container .search-box #sb-form {
  box-shadow: none;
}
.search-box-item-container .search-box div.list-inline {
  box-shadow: none;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #DEDEDE;
}
.search-box-item-container .search-box #two-inputs .formated-date .day-number,
.search-box-item-container .search-box .person-show .adults-cnt {
  width: 2.5rem;
}
.search-box-item-container .search-box div.list-inline div.arrow {
  border-top: 1px solid #DEDEDE;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0.8rem 0;
}
.search-box-item-container .search-box div.list-inline div.arrow > div {
  margin: 0 0.75rem;
  flex: 2;
}
.search-box-item-container .search-box div.list-inline div.arrow::before {
  display: none;
}
.search-box-item-container .search-box .button-item-search {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 991.98px) {
  .search-box {
    left: 0;
    width: 100%;
    bottom: 3rem;
    flex-direction: column;
  }
}

@media only screen and (max-width: 991.98px) {
  .active .search-box {
    display: flex;
  }
}

.showMore {
  cursor: pointer;
}

main#main .search-box-container {
  position: relative;
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.item-show .search-box-item-container .search-box div.list-inline {
  display: flex;
  flex-direction: column;
}

.main-category-list .main-category {
  margin: 10px 0;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
}
.main-category-list .main-category figure {
  position: relative;
  overflow: hidden;
}
.main-category-list .main-category figure img {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.main-category-list .main-category figure figcaption {
  position: absolute;
  display: table;
  width: 100%;
  bottom: 0;
  padding: 7px;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  z-index: 1;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.main-category-list .main-category figure figcaption h2 {
  font-family: var(--font-text);
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}
.main-category-list .main-category:hover, .main-category-list .main-category.active {
  -webkit-box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5);
}
.main-category-list .main-category:hover figure img, .main-category-list .main-category.active figure img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.main-category-list .main-category:hover figure figcaption, .main-category-list .main-category.active figure figcaption {
  background-color: var(--color-secondary);
}

section.section .main-category-list-tree-horizontal ul {
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: center;
}
section.section .main-category-list-tree-horizontal ul li {
  list-style: none;
  padding: 0;
  margin: 0.5rem;
}
section.section .main-category-list-tree-horizontal ul li:before {
  display: none;
}
section.section .main-category-list-tree-horizontal ul li a .category-img svg {
  height: auto;
  width: 1.5rem;
}
.cms-block {
  height: calc(100% - 4rem);
}
.cms-block h3 {
  color: #A07E59 !important;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.cms-block table {
  border: none;
}
.cms-block .square {
  height: 100%;
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  background: #FFF;
}
.cms-block .square .svg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.cms-block .square svg {
  height: auto;
}
.cms-block iframe.square {
  padding: 0;
}
@media only screen and (max-width: 1199.98px) {
  .cms-block iframe.square {
    height: revert-layer;
  }
}

.fbLikebox {
  cursor: pointer;
  position: fixed;
  width: 300px;
  height: 400px;
  top: 50%;
  margin-top: -43px;
  z-index: 9999;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.fbLikebox .fb-button {
  position: absolute;
  width: 33px;
  height: 87px;
}
.fbLikebox .fbLikeboxContainer {
  width: 300px;
  height: 400px;
  float: left;
}

.fbLikebox.right {
  right: -300px;
}
.fbLikebox.right.open {
  right: 0;
}
.fbLikebox.right .fb-button {
  float: left;
  margin-left: -33px;
  background: url("../images/common/facebook-right.png") no-repeat;
}

.fbLikebox.left {
  left: -300px;
}
.fbLikebox.left.open {
  left: 0;
}
.fbLikebox.left .fb-button {
  right: -33px;
  background: url("../images/common/facebook-left.png") no-repeat;
}

.mobile-fixed {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  display: none;
  position: fixed;
  z-index: 99999;
  width: 100%;
  bottom: 0;
  left: 0;
  right: auto;
  -webkit-transform: translateZ(0);
}
@media only screen and (max-width: 1199.98px) {
  .mobile-fixed {
    display: flex;
    flex-direction: row;
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.mobile-fixed .reservation-button svg {
  margin: 0;
}
.mobile-fixed .mobile-fixed-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-fixed .mobile-fixed-container > div.nav-buttons {
  position: relative;
  z-index: 2;
  padding: 12px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--color-primary);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
.mobile-fixed .mobile-fixed-container > div.nav-buttons a {
  height: 56px;
  position: relative;
  flex: 1;
  width: 100%;
  display: block;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  color: white;
}
.mobile-fixed .mobile-fixed-container > div.nav-buttons a.mobile-button {
  flex: 2;
  color: var(--color-primary);
  background: white;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-fixed .mobile-fixed-container > div.nav-buttons a.active {
  background-color: var(--color-primary);
}
.mobile-fixed .mobile-fixed-container > div.nav-buttons a.hamburger-nav {
  padding: 0;
}
.mobile-fixed .mobile-fixed-container > div.nav-buttons a svg {
  height: 28px;
  width: auto;
  margin-bottom: 4px;
}
.mobile-fixed .mobile-fixed-container > div.nav-buttons a svg path, .mobile-fixed .mobile-fixed-container > div.nav-buttons a svg circle, .mobile-fixed .mobile-fixed-container > div.nav-buttons a svg ellipse {
  fill: white;
}
.mobile-fixed .mobile-fixed-container > div.nav-buttons a span {
  text-transform: uppercase;
  display: block;
  color: white;
  font-size: 0.7rem;
}

.mobile-fixed .mobile-fixed-container a.reservation-button {
  background-color: var(--color-primary);
}

@media only screen and (max-width: 1199.98px) {
  .mobile-fixed .mobile-fixed-container a.reservation-button svg {
    width: 2rem;
    height: auto;
    margin: auto;
    padding: 0;
  }
}

@media only screen and (max-width: 1199.98px) {
  body.navigation-opened .mobile-fixed,
  body.navigation-opened.inView .mobile-fixed {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
  }
}

#ticket-menu {
  bottom: -56px;
  position: relative;
  z-index: 1;
  display: none;
  width: 100%;
  background-color: var(--color-primary);
  -webkit-border-radius: 32px;
  -khtml-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  border-radius: 32px;
  padding: 8px 30px 56px 30px;
}

.mobile-fixed-container.active #ticket-menu {
  display: flex;
  flex-direction: column;
}
.mobile-fixed-container.active div.nav-buttons a.mobile-button {
  color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  background-color: transparent;
}

body.scrolled .mobile-fixed, body.inView .mobile-fixed {
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/*=======  Preloader  =======*/
.preloader {
  color: var(--header-color-bg);
  background: var(--color-bg-preloader);
  background-size: 20%;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.preloader::after, .preloader::before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  top: 1rem;
  left: 1rem;
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  z-index: 0;
  zoom: 1;
}
.preloader .loader-logo {
  z-index: 5;
  width: 160px;
  height: 160px;
  padding-bottom: 10px;
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: center;
}
.preloader .loader-circle {
  border-top: 1px solid var(--color-bg-animated-element);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
.preloader img.logoSpin {
  display: inline-block;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  transform: translate(-50%, -50%);
}
.preloader svg {
  width: 10rem;
  height: auto;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.newsletter-confirmation {
  position: absolute;
  text-align: center;
  padding: 3rem;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: auto;
  max-width: 32rem;
}

.newsletter-confirmation.notice {
  background-color: #c8f4e1;
}

.newsletter-confirmation.error {
  background-color: #f4c8c8;
}

.newsletter-component form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  .newsletter-component form {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.newsletter-component form label {
  display: none;
}
.newsletter-component form input, .newsletter-component form button {
  font-family: var(--font-text);
  padding: 1.5rem;
  height: 46px;
  border: 1px solid white;
  background-color: var(--color-primary);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: white;
}
@media only screen and (max-width: 767.98px) {
  .newsletter-component form input, .newsletter-component form button {
    width: 100%;
  }
}
.newsletter-component form input::placeholder {
  color: white;
}
.newsletter-component form input {
  margin: 0 1rem 0 0;
  min-width: 20rem;
}
@media only screen and (max-width: 767.98px) {
  .newsletter-component form input {
    margin: 0;
    min-width: auto;
  }
}
.newsletter-component .newsletter-button {
  background-color: var(--color-secondary);
  border: 1px solid white !important;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 1.5rem;
  height: 46px;
  position: relative;
  transition: all 0.2s ease-in-out 0s;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 767.98px) {
  .newsletter-component .newsletter-button {
    margin-top: 5px;
    width: 100%;
  }
}
.newsletter-component .newsletter-button:hover {
  background-color: var(--color-primary);
}
.newsletter-component .newsletter-button span {
  white-space: nowrap;
}
.newsletter-component .newsletter-button svg {
  margin-left: 1rem;
  height: 1.5rem;
  width: auto;
}
.newsletter-component .newsletter-button svg path {
  fill: #fff;
}

.date-picker {
  width: 170px;
  height: 25px;
  padding: 0;
  border: 0;
  line-height: 25px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  color: var(--color-primary);
  position: relative;
  z-index: 2;
}

.date-picker-wrapper {
  z-index: 99999;
  top: 50% !important;
  left: 50% !important;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 0.8rem;
  -khtml-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  border-radius: 0.8rem;
  position: fixed;
  background-color: #fff;
  padding: 25px;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #aaa;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-sizing: initial;
}
@media only screen and (max-width: 991.98px) {
  .date-picker-wrapper {
    top: 50% !important;
    left: 0 !important;
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    -khtml-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.3);
  }
}

.dp-clearfix {
  clear: both;
  height: 0;
  font-size: 0;
}

.date-picker-wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.date-picker-wrapper.inline-wrapper {
  position: relative;
  box-shadow: none;
  display: inline-block;
}
.date-picker-wrapper.single-date {
  width: auto;
}
.date-picker-wrapper b {
  color: var(--color-primary);
  font-weight: 700;
}
.date-picker-wrapper a {
  color: rgb(107, 180, 214);
  text-decoration: underline;
}
.date-picker-wrapper .select-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.date-picker-wrapper .select-wrapper:hover {
  text-decoration: underline;
}
.date-picker-wrapper .month-element {
  text-transform: capitalize;
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
}
.date-picker-wrapper .select-wrapper select {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
  top: -1px;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-transform: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
  opacity: 0.01;
}
.date-picker-wrapper .month-wrapper {
  background-color: #fff;
  cursor: default;
  position: relative;
  _overflow: hidden;
}
@media only screen and (max-width: 991.98px) {
  .date-picker-wrapper .month-wrapper {
    width: 100% !important;
  }
}
.date-picker-wrapper .month-wrapper table {
  width: 14rem;
  float: left;
}
@media only screen and (max-width: 991.98px) {
  .date-picker-wrapper .month-wrapper table {
    width: 100%;
  }
}
.date-picker-wrapper .month-wrapper table.month2 {
  width: 14rem;
}
@media only screen and (max-width: 991.98px) {
  .date-picker-wrapper .month-wrapper table.month2 {
    width: 100%;
  }
}
.date-picker-wrapper .month-wrapper table.month2 {
  float: left;
}
.date-picker-wrapper .month-wrapper table th, .date-picker-wrapper .month-wrapper table td {
  width: 45px;
  vertical-align: middle;
  text-align: center;
  line-height: 14px;
  margin: 0px;
  padding: 0px;
  font-weight: normal;
}
.date-picker-wrapper .month-wrapper table .day {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2rem;
  font-size: 1rem;
  margin-bottom: 1px;
  color: #ccc;
  cursor: default;
  width: 2.5rem;
  height: 2.5rem;
}
@media only screen and (max-width: 991.98px) {
  .date-picker-wrapper .month-wrapper table .day {
    width: 100%;
  }
}
.date-picker-wrapper .month-wrapper table div.day.lastMonth, .date-picker-wrapper .month-wrapper table div.day.nextMonth {
  color: #999;
  cursor: default;
}
.date-picker-wrapper .month-wrapper table .day.checked {
  background-color: #d1d1d1;
}
.date-picker-wrapper .month-wrapper table .week-name {
  height: 3rem;
  line-height: 20px;
  font-weight: 100;
}
.date-picker-wrapper .month-wrapper table .day.has-tooltip {
  cursor: help !important;
}
.date-picker-wrapper .month-wrapper table .day.has-tooltip .tooltip {
  white-space: nowrap;
}
.date-picker-wrapper .time label {
  white-space: nowrap;
}
.date-picker-wrapper .month-wrapper table .day {
  position: relative;
}
.date-picker-wrapper .month-wrapper table .day:hover {
  background-color: rgb(178.3333333333, 228.1666666667, 197.5);
  color: white;
}
.date-picker-wrapper .month-wrapper table .day.checked {
  background-color: black;
}
.date-picker-wrapper .month-wrapper table .day.toMonth.valid {
  cursor: pointer;
  background-color: #f5f7fb;
  color: var(--color-primary);
}
.date-picker-wrapper .month-wrapper table .day.toMonth.checked {
  background-color: var(--color-primary);
  color: white;
}
.date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
  background-color: var(--color-primary);
  color: var(--color-primary-lightest);
}
.date-picker-wrapper .month-wrapper table .day.toMonth:hover {
  background-color: var(--color-primary);
  color: white;
}
.date-picker-wrapper .month-wrapper table .day.nextMonth, .date-picker-wrapper .month-wrapper table .day.lastMonth {
  display: none;
}
.date-picker-wrapper .month-wrapper table .day.toMonth.real-today {
  background-color: var(--color-secondary);
  color: white !important;
}
.date-picker-wrapper .month-wrapper table .day.toMonth.real-today.checked, .date-picker-wrapper .month-wrapper table .day.toMonth.real-today.hovering {
  background-color: var(--color-primary-lightest);
}
.date-picker-wrapper table .caption {
  height: 2rem;
}
.date-picker-wrapper table .caption > th:first-of-type, .date-picker-wrapper table .caption > th:last-of-type {
  width: 27px;
}
.date-picker-wrapper table .caption .next, .date-picker-wrapper table .caption .prev {
  padding: 0 5px;
  cursor: pointer;
}
.date-picker-wrapper table .caption .next:hover, .date-picker-wrapper table .caption .prev:hover {
  background-color: #ccc;
  color: white;
}
.date-picker-wrapper .gap {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 100%;
  font-size: 0;
  line-height: 0;
  float: left;
  top: -5px;
  margin: 0 10px -10px;
  visibility: hidden;
  height: 0;
}
@media only screen and (max-width: 991.98px) {
  .date-picker-wrapper .gap {
    display: none;
  }
}
.date-picker-wrapper .gap .gap-lines {
  height: 100%;
  overflow: hidden;
}
.date-picker-wrapper .gap .gap-line {
  height: 15px;
  width: 15px;
  position: relative;
}
.date-picker-wrapper .gap .gap-line .gap-1 {
  z-index: 1;
  height: 0;
  border-left: 8px solid white;
  border-top: 8px solid #eee;
  border-bottom: 8px solid #eee;
}
.date-picker-wrapper .gap .gap-line .gap-2 {
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 2;
  height: 0;
  border-left: 8px solid transparent;
  border-top: 8px solid white;
}
.date-picker-wrapper .gap .gap-line .gap-3 {
  position: absolute;
  right: 0;
  top: 8px;
  z-index: 2;
  height: 0;
  border-left: 8px solid transparent;
  border-bottom: 8px solid white;
}
.date-picker-wrapper .gap .gap-top-mask {
  width: 6px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 1px;
  background-color: #eee;
  z-index: 3;
}
.date-picker-wrapper .gap .gap-bottom-mask {
  width: 6px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 7px;
  background-color: #eee;
  z-index: 3;
}
.date-picker-wrapper .selected-days {
  display: none;
}
.date-picker-wrapper .drp_top-bar {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
  position: relative;
}
@media only screen and (max-width: 991.98px) {
  .date-picker-wrapper .drp_top-bar {
    flex-direction: column;
  }
}
.date-picker-wrapper .drp_top-bar .error-top, .date-picker-wrapper .drp_top-bar .normal-top {
  display: none;
}
.date-picker-wrapper .drp_top-bar .default-top {
  display: block;
}
.date-picker-wrapper .drp_top-bar.error .default-top {
  display: none;
}
.date-picker-wrapper .drp_top-bar.error .error-top {
  display: block;
  color: red;
}
.date-picker-wrapper .drp_top-bar.normal .default-top {
  display: none;
}
.date-picker-wrapper .drp_top-bar.normal .normal-top {
  display: block;
}
.date-picker-wrapper .drp_top-bar.normal .normal-top .selection-top {
  color: #333;
}
.date-picker-wrapper .drp_top-bar .apply-btn.disabled {
  cursor: pointer;
  color: #666;
  border: solid 1px #ddd;
  background: #fff;
}
.date-picker-wrapper .time {
  position: relative;
}
.date-picker-wrapper.single-month .time {
  display: block;
}
.date-picker-wrapper .time input[type=range] {
  vertical-align: middle;
  width: 129px;
  padding: 0;
  margin: 0;
  height: 20px;
}
.date-picker-wrapper .time1 {
  width: 180px;
  padding: 0 5px;
  text-align: center;
}

/*time styling*/
.time2 {
  width: 180px;
  padding: 0 5px;
  text-align: center;
}

.date-picker-wrapper .time1 {
  float: left;
}
.date-picker-wrapper .time2 {
  float: right;
}
.date-picker-wrapper .hour {
  text-align: right;
}

.minute {
  text-align: right;
}

.date-picker-wrapper .hide {
  display: none;
}
.date-picker-wrapper .first-date-selected, .date-picker-wrapper .last-date-selected {
  background-color: var(--color-primary) !important;
  color: white !important;
}
.date-picker-wrapper .first-date-selected {
  -webkit-border-radius: 50% 0 0 50%;
  -moz-border-radius: 50% 0 0 50%;
  border-radius: 50% 0 0 50%;
}
.date-picker-wrapper .last-date-selected {
  -webkit-border-radius: 0 50% 50% 0;
  -moz-border-radius: 0 50% 50% 0;
  border-radius: 0 50% 50% 0;
}
.date-picker-wrapper .date-range-length-tip {
  color: white !important;
  position: absolute;
  margin-top: -4px;
  margin-left: -8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  display: none;
  background-color: var(--color-primary-lighten);
  padding: 0 6px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 16px;
  -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -o-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}
.date-picker-wrapper .date-range-length-tip:after {
  content: "";
  position: absolute;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--color-primary-lighten);
  left: 50%;
  margin-left: -4px;
  bottom: -4px;
}
.date-picker-wrapper.two-months.no-gap .month1 .next, .date-picker-wrapper.two-months.no-gap .month2 .prev {
  display: none;
}
.date-picker-wrapper .week-number {
  padding: 5px 0;
  line-height: 1;
  font-size: 12px;
  margin-bottom: 1px;
  color: #999;
  cursor: pointer;
}
.date-picker-wrapper .week-number.week-number-selected {
  color: #49e;
  font-weight: bold;
}

/*!
 * modified Simple lightbox effect in pure JS
 * @see {@link https://github.com/squeral/lightbox}
 * @see {@link https://github.com/squeral/lightbox/blob/master/lightbox.js}
 * passes jshint
 */
.iframe-lightbox,
.iframe-lightbox .backdrop {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.iframe-lightbox {
  display: none;
  position: fixed;
  opacity: 0;
  transition: opacity 0.2s ease;
  /*!
   * @see {@link https://github.com/englishextra/iframe-lightbox/issues/10}
   * @see {@link https://github.com/englishextra/iframe-lightbox/issues/14}
   */
  z-index: 999999;
}

.iframe-lightbox .backdrop {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: default;
}

.iframe-lightbox .content-holder {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-right: -50%;
}
@media only screen and (max-width: 1199.98px) {
  .iframe-lightbox .content-holder {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    transform: translate(0, 0);
  }
}

.iframe-lightbox .content {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #fff;
}
@media only screen and (max-width: 1199.98px) {
  .iframe-lightbox .content {
    height: 100%;
  }
}

.iframe-lightbox .content > .body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*!
 * another pure css spinner
 * @see {@link https://epic-spinners.epicmax.co/}
 */
.iframe-lightbox .content > .body .half-circle-spinner,
.iframe-lightbox .content > .body .half-circle-spinner * {
  box-sizing: border-box;
}

.iframe-lightbox .content > .body .half-circle-spinner {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
  margin: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.iframe-lightbox .content > .body .half-circle-spinner .circle {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 6px solid transparent;
}

.iframe-lightbox .content > .body .half-circle-spinner .circle.circle-1 {
  border-top-color: #FFFFFF;
  animation: half-circle-spinner-animation 1s infinite;
}

.iframe-lightbox .content > .body .half-circle-spinner .circle.circle-2 {
  border-bottom-color: #FFFFFF;
  animation: half-circle-spinner-animation 1s infinite alternate;
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.iframe-lightbox .content > .body.is-loaded .half-circle-spinner {
  display: none;
}

.iframe-lightbox iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: 0.267rem 0.267rem 0.267rem 0 rgba(3, 3, 3, 0.3);
  /*!
   * in js: iframe onload="this.style.opacity=1;" style="opacity:0;border:none;"
   */
  /* opacity: 0; */
  transition: opacity 0.2s ease;
}

.iframe-lightbox.is-showing {
  display: block;
}

.iframe-lightbox.is-opened {
  opacity: 1;
}

.iframe-lightbox .btn-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
}

/*!
 * pure css version
 * @see {@link https://codepen.io/brissmyr/pen/egidw}
 */
.iframe-lightbox .btn-close:before,
.iframe-lightbox .btn-close:after {
  content: " ";
  width: 0.125em;
  height: 1.5em;
  position: absolute;
  right: 0.625em;
  background-color: #FFFFFF;
}

.iframe-lightbox .btn-close:before {
  transform: rotate(45deg);
}

.iframe-lightbox .btn-close:after {
  transform: rotate(-45deg);
}

/*!
 * @see {@link https://github.com/englishextra/iframe-lightbox/issues/12}
 */
.iframe-lightbox--open {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  height: auto;
}

.naviPage {
  border-bottom: var(--color-primary) 1px solid;
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
}
.naviPage a {
  color: var(--color-primary);
  font-size: 0.813rem;
}
.naviPage a svg {
  margin-right: 1rem;
}
@media only screen and (max-width: 1199.98px) {
  .naviPage a svg {
    margin-right: 0;
  }
  .naviPage a span {
    display: none;
  }
}

.breadCrumbs {
  width: 100%;
  gap: 10px;
  justify-content: flex-start;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-primary-lightest);
}
.breadCrumbs a svg {
  height: 1.2rem;
}
.breadCrumbs a svg path {
  fill: var(--color-secondary);
}
.breadCrumbs a:hover svg path {
  fill: var(--color-primary);
}
.breadCrumbs nav {
  display: flex;
  justify-content: center;
  width: 100%;
}
.breadCrumbs .breadcrumb {
  width: 100%;
  position: relative;
  display: inline-flex;
  flex-wrap: inherit;
  justify-content: flex-end;
  background: none;
  margin: 0;
}
@media only screen and (max-width: 767.98px) {
  .breadCrumbs .breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    flex-wrap: wrap;
  }
}
.breadCrumbs .breadcrumb a {
  font-size: 0.812rem;
  color: black;
}
.breadCrumbs .breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "»";
}
@media only screen and (max-width: 767.98px) {
  .breadcrumb-item + .breadcrumb-item {
    padding: 0;
  }
}

#share-box {
  min-width: 18.125rem;
  z-index: 9999;
  display: none;
  position: fixed;
  background-color: white;
  -webkit-border-radius: 1rem;
  -khtml-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  border-radius: 1rem;
  padding: 1.25rem;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#share-box header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
#share-box header div:first-child svg {
  margin-right: 1rem;
}
#share-box .share-box-body {
  display: flex;
  flex-direction: column;
}
#share-box .share-box-body a {
  margin: 0.3rem 0;
  padding: 0.8rem 1rem;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  color: #313131;
}
#share-box .share-box-body a:hover {
  color: var(--color-primary);
}
#share-box .share-box-body a svg {
  width: 1.375rem;
  height: 1.375rem;
}
#share-box .share-box-body a span {
  margin-left: 1rem;
}

#share-box.active {
  display: block;
}

#share-box.active ~ .pop-up-overlay {
  display: flex;
}

ul.contact-data {
  list-style: none;
  margin: 0;
}
ul.contact-data a.phone {
  color: #313131;
  font-weight: bold;
  font-family: var(--font-header);
}
ul.contact-data a.phone:hover {
  color: var(--color-primary);
}
ul.contact-data li {
  overflow-wrap: anywhere;
  display: flex;
  padding: 0.5rem;
  align-items: center;
  font-size: 1.2rem;
}
ul.contact-data li img {
  margin-right: 1rem;
  height: auto;
}
ul.contact-data li::before {
  content: none;
}

.properties {
  padding: 1rem;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.properties .box-properties {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.properties .box-properties .properties-name svg {
  width: 1.6rem;
  height: auto;
  margin-right: 1rem;
}
.properties .box-properties .properties-name svg path {
  fill: var(--color-primary);
}
.properties .box-properties .properties-value {
  padding: 0.2rem 0;
}

.theme1 .properties .box-properties .properties-name svg path {
  fill: var(--color-primary);
}

.theme2 .properties .box-properties .properties-name svg path {
  fill: rgb(211, 129, 93);
}

.box .properties {
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}
.box .properties .box-properties {
  margin: 0.2rem 0;
  flex-direction: row;
}
.box .properties .box-properties .prop-name svg {
  height: auto;
  width: 1.7rem;
  margin-right: 1rem;
}

.page-properties {
  background-color: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-properties .property {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page-properties .property .name svg {
  width: 3rem;
  height: auto;
}
.page-properties .property .value {
  font-size: 1rem;
}

.chees-gallery .ge-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991.98px) {
  .chees-gallery .ge-content {
    gap: 1rem;
  }
}
.chees-gallery .ge-content a {
  display: block;
  top: 0;
  position: absolute;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 991.98px) {
  .chees-gallery .ge-content a {
    position: relative;
    flex-direction: column;
    gap: 1rem;
  }
}
.chees-gallery .ge-content a img {
  object-fit: cover;
  position: relative;
  height: 100%;
  width: auto;
}
.chees-gallery .ge-content a:first-child {
  margin-top: -2rem;
  display: flex;
  width: calc(50% - 10px);
  margin-right: 10px;
}
@media only screen and (max-width: 991.98px) {
  .chees-gallery .ge-content a:first-child {
    margin: 0;
    height: auto;
    width: 100%;
  }
}
.chees-gallery .ge-content a:nth-child(2) {
  display: flex;
  z-index: 1;
  margin-left: 50%;
  margin-top: 3rem;
  width: 50%;
}
@media only screen and (max-width: 991.98px) {
  .chees-gallery .ge-content a:nth-child(2) {
    margin: 0;
    height: auto;
    width: 100%;
  }
}

.business-cart .ge-content {
  padding: 2rem;
  border: 8px solid var(--color-primary-lighten);
  background-color: var(--color-primary-lightest);
  color: var(--color-primary);
}
.business-cart .ge-content h3 {
  color: var(--color-secondary);
}
.business-cart h1 {
  font-size: 3rem !important;
}

.dark .business-cart .ge-content {
  border-color: var(--color-secondary);
  background-color: white;
}
.dark .business-cart .ge-content h3, .dark .business-cart .ge-content h2, .dark .business-cart .ge-content h1 {
  color: var(--color-secondary) !important;
}

.row-centered-line {
  position: relative;
}
.row-centered-line:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 2px solid #DEDEDE;
  transform: translate(-50%);
}
@media only screen and (max-width: 991.98px) {
  .row-centered-line:after {
    display: none;
  }
}

.row-left-line {
  position: relative;
  padding: 1rem 0 1rem 2rem;
}
.row-left-line:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 8px solid var(--color-primary);
  transform: translate(-50%);
}
@media only screen and (max-width: 767.98px) {
  .row-left-line:after {
    transform: translate(200%);
  }
}

.text-right {
  text-align: right;
}

.frame .ge-content {
  margin-bottom: 1rem;
  padding: 2rem 1rem;
  border: 1px solid #DEDEDE;
}

.cms-flex > div {
  display: flex;
}

.cms-flex-column > div {
  align-items: baseline;
  flex-direction: column;
}

.cms-flex-row > div {
  flex-direction: row;
}

.center-vertical {
  display: flex !important;
}
.center-vertical > div {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.center-horizontal > div {
  display: flex;
  align-items: center;
}

.flex-column > div {
  display: flex;
  flex-direction: column;
}

.flex-row > div {
  display: flex;
  flex-direction: row;
}

@media only screen and (min-width: 1200px) {
  .desktop-pr {
    padding-right: 2.5rem;
  }
  .desktop-pl {
    padding-left: 2.5rem;
  }
  .desktop-pt {
    padding-top: 2.5rem;
  }
  .desktop-pb {
    padding-bottom: 2.5rem;
  }
  .desktop-mt {
    margin-top: 2rem;
  }
  .desktop-mb {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .tablet-pr {
    padding-right: 2rem;
  }
  .tablet-pl {
    padding-left: 2rem;
  }
  .tablet-pt {
    padding-top: 2rem;
  }
  .tablet-pb {
    padding-bottom: 2rem;
  }
  .tablet-mt {
    margin-top: 2rem;
  }
  .tablet-mb {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .mobile-pr {
    padding-right: 1.7rem;
  }
  .mobile-pl {
    padding-left: 1.7rem;
  }
  .mobile-pt {
    padding-top: 1.7rem;
  }
  .mobile-pb {
    padding-bottom: 1.7rem;
  }
  .mobile-mt {
    margin-top: 1.5rem;
  }
  .mobile-mb {
    margin-bottom: 1.5rem;
  }
}
.flex-center-col {
  display: flex;
  align-items: center;
}
.flowing-tile.right {
  justify-content: flex-end;
}
.flowing-tile.left {
  justify-content: flex-start;
}
.flowing-tile.center {
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  .flowing-tile {
    justify-content: center !important;
    width: auto;
    margin: 0;
  }
}
.flowing-tile .column {
  position: relative;
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  max-width: 50%;
  padding: 2rem;
  color: #313131;
  background-color: rgba(255, 255, 255, 0.8);
  --header-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--header-backdrop-blur);
  backdrop-filter: var(--header-backdrop-blur);
}
@media only screen and (max-width: 991.98px) {
  .flowing-tile .column {
    max-width: 80%;
  }
}
@media only screen and (max-width: 767.98px) {
  .flowing-tile .column {
    max-width: 100%;
  }
}
.flowing-tile .column h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-secondary);
  font-family: var(--font-header);
  line-height: 2.625rem;
}
.flowing-tile .column .ge-content {
  padding: 2rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991.98px) {
  .flowing-tile .column .ge-content {
    padding: 1rem;
  }
}
.flowing-tile .column .ge-content:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(211, 129, 93, 0.5);
}
.flowing-tile .column .ge-content:before {
  left: 0;
  bottom: -1.5rem;
  content: "";
  position: absolute;
  width: 100%;
  height: 3rem;
}
.flowing-tile .column .ge-content:before svg path {
  fill: black;
}
@media only screen and (max-width: 767.98px) {
  .flowing-tile .column {
    max-width: 100%;
  }
}

.img-border {
  border: 1px solid rgba(211, 129, 93, 0.5);
  position: relative;
}

.img-circle {
  padding: 1rem;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.img-circle:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}

.row-stylize {
  background-color: white;
  visibility: visible;
  z-index: 9999;
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  padding: 2rem 1rem;
  margin-top: -10rem;
}
@media only screen and (max-width: 767.98px) {
  .row-stylize {
    margin-top: 0;
    padding: 1rem 0.5rem;
  }
}

.video-yt > .ge-content > p {
  padding-bottom: 56.25%;
}

.video-yt > .ge-content > p iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.row-contact .column:last-child .info-list {
  align-items: flex-end;
}
@media only screen and (max-width: 991.98px) {
  .row-contact .column .info-list {
    align-items: center;
  }
  .row-contact .column {
    text-align: center;
    align-items: center;
  }
  .row-contact .column:last-child .info-list {
    align-items: center;
  }
  .row-contact .column:nth-child(2) {
    order: 10;
  }
}

.sticky-flow-wrapper {
  position: sticky;
  top: 89px;
}
@media only screen and (max-width: 1199.98px) {
  .sticky-flow-wrapper {
    top: auto;
  }
}

.sticky-flow-column .ge-content {
  position: sticky !important;
  top: 78px;
}

.numeric-list ul {
  gap: 1rem;
  list-style: none;
  counter-reset: list-counter;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991.98px) {
  .numeric-list ul {
    margin-top: 2rem;
  }
}
.numeric-list ul li {
  flex: 0 1 calc(50% - 2rem);
  counter-increment: list-counter;
  position: relative;
  padding-left: 5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 991.98px) {
  .numeric-list ul li {
    flex: 0 1 100%;
    position: relative;
    padding-left: 0;
  }
}
.numeric-list ul li::before {
  border: 1px solid white;
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 30px;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-primary);
  color: white;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media only screen and (max-width: 991.98px) {
  .numeric-list ul li::before {
    -moz-transform: translate(-50%, -75%);
    -webkit-transform: translate(-50%, -75%);
    -o-transform: translate(-50%, -75%);
    -ms-transform: translate(-50%, -75%);
    transform: translate(-50%, -75%);
    left: 50%;
    position: relative;
    padding-left: 0;
  }
}

.review-slider {
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.review-slider .owl-dots {
  position: relative;
  bottom: -40px;
}
.review-slider .owl-stage-outer {
  height: 100%;
  padding: 0;
}
.review-slider .owl-stage-outer .owl-stage {
  display: flex;
  height: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
}
.review-slider .owl-stage-outer .owl-stage .owl-item {
  min-height: 100%;
  padding: 1rem;
}
.review-slider .review {
  background: white;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: black;
}
.review-slider .review svg {
  height: auto;
}
.review-slider .review svg path {
  fill: var(--color-primary-lighten);
}
.review-slider .review .review-data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
}
.review-slider .review .reviewNameRate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.review-slider .review .reviewNameRate .reviewRate {
  font-size: 1.8rem;
  font-family: var(--font-header);
}
.review-slider .review .reviewNameRate .reviewName {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  font-family: var(--font-header);
  font-weight: bold;
  color: var(--color-secondary);
}
.review-slider .review .reviewNameRate .reviewName span {
  text-transform: uppercase;
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(211, 129, 93, 0.65);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.4rem;
}
@media only screen and (max-width: 767.98px) {
  .review-slider .review .reviewNameRate .reviewName span {
    height: auto;
  }
}
.review-slider .review .reviewText {
  text-align: center;
  margin: 2rem 0;
  flex: 3;
  max-height: 206px;
  overflow: hidden;
}
.review-slider .review .reviewSource {
  text-align: center;
}
.review-slider .review .reviewDate {
  text-align: right;
  font-style: italic;
  color: white;
}
.review-slider .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.review-slider .owl-dots button {
  border: none !important;
  display: flex;
  margin: 0.2rem;
  width: 0.75rem;
  height: 0.75rem;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: white;
}
.review-slider .owl-dots button:hover, .review-slider .owl-dots button.active {
  background-color: rgba(255, 255, 255, 0.3);
}

.theme1 .review-slider .review {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.theme1 .review-slider .review .reviewNameRate .reviewName span {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  background-color: var(--color-primary);
}
.theme1 .reviewDate {
  color: var(--color-primary);
}
.theme1 .review-slider .review:hover {
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
}
.theme1 .review-slider .review:hover .reviewNameRate .reviewName span {
  background-color: var(--color-secondary);
}

.theme2 .review-slider .review {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.theme2 .review-slider .review .reviewNameRate .reviewName span {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  background-color: rgb(211, 129, 93);
}
.theme2 .reviewDate {
  color: rgb(211, 129, 93);
}
.theme2 .review-slider .review:hover {
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
}
.theme2 .review-slider .review:hover .reviewNameRate .reviewName span {
  background-color: var(--color-secondary);
}

.group-pictogram-list,
section .group-pictogram-tiles {
  gap: 0;
}
@media only screen and (max-width: 991.98px) {
  .group-pictogram-list,
  section .group-pictogram-tiles {
    margin-top: 32px;
    row-gap: 32px;
  }
}
.group-pictogram-list .pictogram-container.oval .shape,
section .group-pictogram-tiles .pictogram-container.oval .shape {
  border: 3px solid var(--color-primary);
  position: relative;
  background-color: white;
  width: 12rem;
  height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: var(--color-primary) !important;
}
.group-pictogram-list .pictogram-container.oval .shape:after,
section .group-pictogram-tiles .pictogram-container.oval .shape:after {
  position: absolute;
  border: 1rem solid #313131;
  content: "";
  width: 110%;
  height: 110%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  transform: scale(1);
  animation: pulse 2s infinite;
}
.group-pictogram-list .pictogram-container.oval .shape .pictogram-wrapper h4,
section .group-pictogram-tiles .pictogram-container.oval .shape .pictogram-wrapper h4 {
  color: var(--color-primary);
}
.group-pictogram-list .pictogram-container.oval .shape .pictogram-img,
section .group-pictogram-tiles .pictogram-container.oval .shape .pictogram-img {
  position: relative;
}
.group-pictogram-list .pictogram-container.oval .shape .pictogram-img svg path,
section .group-pictogram-tiles .pictogram-container.oval .shape .pictogram-img svg path {
  fill: var(--color-primary) !important;
}
.group-pictogram-list .pictogram-container,
section .group-pictogram-tiles .pictogram-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.group-pictogram-list .pictogram-container .pictogram-img,
section .group-pictogram-tiles .pictogram-container .pictogram-img {
  top: 0;
  position: relative;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.group-pictogram-list .pictogram-container .pictogram-img:after,
section .group-pictogram-tiles .pictogram-container .pictogram-img:after {
  -webkit-transition: all 600ms ease 0ms;
  -moz-transition: all 600ms ease 0ms;
  -ms-transition: all 600ms ease 0ms;
  -o-transition: all 600ms ease 0ms;
  transition: all 600ms ease 0ms;
  position: absolute;
  content: "";
  width: 6rem;
  height: 6rem;
  z-index: -1;
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-border-radius: 12px;
  -khtml-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 20px 0px rgba(150, 150, 150, 0.3);
  -khtml-box-shadow: 0 0 20px 0px rgba(150, 150, 150, 0.3);
  -moz-box-shadow: 0 0 20px 0px rgba(150, 150, 150, 0.3);
  -ms-box-shadow: 0 0 20px 0px rgba(150, 150, 150, 0.3);
  -o-box-shadow: 0 0 20px 0px rgba(150, 150, 150, 0.3);
  box-shadow: 0 0 20px 0px rgba(150, 150, 150, 0.3);
}
.group-pictogram-list .pictogram-container .pictogram-img svg,
section .group-pictogram-tiles .pictogram-container .pictogram-img svg {
  height: 3rem;
  width: auto;
}
.group-pictogram-list .pictogram-container .pictogram-img svg path, .group-pictogram-list .pictogram-container .pictogram-img svg circle,
section .group-pictogram-tiles .pictogram-container .pictogram-img svg path,
section .group-pictogram-tiles .pictogram-container .pictogram-img svg circle {
  fill: var(--color-primary) !important;
}
@media only screen and (max-width: 991.98px) {
  .group-pictogram-list .pictogram-container .pictogram-img .box,
  section .group-pictogram-tiles .pictogram-container .pictogram-img .box {
    margin: 2rem;
  }
}
.group-pictogram-list .pictogram-container .pictogram-wrapper,
section .group-pictogram-tiles .pictogram-container .pictogram-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2rem;
  flex-direction: column;
}
.group-pictogram-list .pictogram-container .pictogram-wrapper h4,
section .group-pictogram-tiles .pictogram-container .pictogram-wrapper h4 {
  text-align: center;
  font-family: var(--font-header), sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}
.group-pictogram-list .pictogram-container .pictogram-wrapper p,
section .group-pictogram-tiles .pictogram-container .pictogram-wrapper p {
  text-align: center;
}
.group-pictogram-list .pictogram-container:hover .pictogram-img,
section .group-pictogram-tiles .pictogram-container:hover .pictogram-img {
  top: -0.5rem;
}
.group-pictogram-list .pictogram-container:hover .pictogram-img:after,
section .group-pictogram-tiles .pictogram-container:hover .pictogram-img:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  width: 6rem;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0.03);
  -webkit-box-shadow: 0 0 42px 30px rgba(255, 255, 255, 0.03);
  -khtml-box-shadow: 0 0 42px 30px rgba(255, 255, 255, 0.03);
  -moz-box-shadow: 0 0 42px 30px rgba(255, 255, 255, 0.03);
  -ms-box-shadow: 0 0 42px 30px rgba(255, 255, 255, 0.03);
  -o-box-shadow: 0 0 42px 30px rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 42px 30px rgba(255, 255, 255, 0.03);
}

.group-pictogram-slider.slider .owl-prev svg {
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}
.group-pictogram-slider.slider .pictogram-img {
  text-align: center;
  padding: 0.5rem;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.group-pictogram-slider.slider .pictogram-img h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
}
.group-pictogram-slider.slider .pictogram-img svg {
  width: 4rem !important;
  height: auto;
}
.group-pictogram-slider.slider .pictogram-img svg path, .group-pictogram-slider.slider .pictogram-img svg polygon {
  fill: var(--color-primary);
}
.group-pictogram-slider.slider .pictogram-img svg use {
  stroke: var(--color-primary);
}

section.section .group-pictogram-amenities {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
section.section .group-pictogram-amenities h3 {
  font-size: 1.1rem;
}
section.section .group-pictogram-amenities .pictogram-tile {
  padding: 2rem 1rem;
  background-color: white;
  width: calc(25% - 2rem);
  margin: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  overflow: hidden;
}
@media only screen and (max-width: 991.98px) {
  section.section .group-pictogram-amenities .pictogram-tile {
    width: calc(50% - 2rem);
  }
}
@media only screen and (max-width: 767.98px) {
  section.section .group-pictogram-amenities .pictogram-tile {
    width: calc(100% - 2rem);
  }
}
section.section .group-pictogram-amenities .pictogram-tile .pictogram-img {
  margin: 1rem 0;
}
section.section .group-pictogram-amenities .pictogram-tile .pictogram-img img {
  height: 2.875rem;
  width: auto;
}
section.section .group-pictogram-amenities .pictogram-tile h5 {
  font-size: 15px;
  font-weight: normal;
  margin: 0;
}
section.section .group-pictogram-amenities .pictogram-tile h6 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
section.section .group-pictogram-amenities .pictogram-tile:hover {
  -webkit-box-shadow: 1px 1px 12px 1px rgba(var(--color-primary), 0.7);
  box-shadow: 1px 1px 12px 1px rgba(var(--color-primary), 0.7);
}
section.section .group-pictogram-amenities .pictogram-tile:hover h5 {
  color: var(--color-primary);
}
section.section .group-pictogram-amenities .pictogram-tile:hover h6 {
  color: var(--color-primary);
}
section.section .group-pictogram-amenities .pictogram-tile a {
  display: block;
  height: 100%;
  width: 100%;
}

.group-pictogram-tiles3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.8rem;
  width: 100%;
  margin: 4rem 0;
}
@media (max-width: 768px) {
  .group-pictogram-tiles3 {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin: 2.5rem 0;
  }
}
.group-pictogram-tiles3 .pictogram-tile {
  position: relative;
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-primary-lighten);
  padding: 2.8rem 3rem;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 2.4rem;
  align-items: flex-start;
  isolation: isolate;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  /* GŁĘBIA – dolna warstwa */
}
.group-pictogram-tiles3 .pictogram-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.group-pictogram-tiles3 .pictogram-tile {
  /* AKCENT – cienka linia */
}
.group-pictogram-tiles3 .pictogram-tile::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-secondary);
  opacity: 0.25;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scaleY(0.6);
  transform-origin: top;
}
.group-pictogram-tiles3 .pictogram-tile:hover {
  border-color: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06), 0 30px 60px rgba(0, 0, 0, 0.04);
}
.group-pictogram-tiles3 .pictogram-tile:hover::before {
  opacity: 1;
}
.group-pictogram-tiles3 .pictogram-tile:hover::after {
  opacity: 1;
  transform: scaleY(1);
}
.group-pictogram-tiles3 .pictogram-tile:hover .pictogram-img::after {
  opacity: 0.14;
}
.group-pictogram-tiles3 .pictogram-tile:hover .pictogram-img svg {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .group-pictogram-tiles3 .pictogram-tile {
    padding: 1.9rem 1.6rem;
    grid-template-columns: 56px 1fr;
    column-gap: 1.4rem;
  }
}
.group-pictogram-tiles3 .pictogram-tile {
  /* IKONA */
}
.group-pictogram-tiles3 .pictogram-tile .pictogram-img {
  position: relative;
  width: 72px;
  height: 72px;
  background: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  /* półcień / przyciemnienie */
}
.group-pictogram-tiles3 .pictogram-tile .pictogram-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0));
  opacity: 0.08;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.group-pictogram-tiles3 .pictogram-tile .pictogram-img svg {
  width: 44px;
  height: 44px;
  fill: var(--color-primary);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}
.group-pictogram-tiles3 .pictogram-tile {
  /* TEKST */
}
.group-pictogram-tiles3 .pictogram-tile h3 {
  grid-column: 2;
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-primary);
}
.group-pictogram-tiles3 .pictogram-tile p {
  grid-column: 2;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-secondary);
  max-width: 68ch;
}

.group-pictogram-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.group-pictogram-list .group-pictogram-list-header {
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.group-pictogram-list .group-pictogram-list-header h3 {
  margin: 0;
  font-weight: bold !important;
  font-size: 1.375rem !important;
  color: #313131 !important;
}
.group-pictogram-list .group-pictogram-list-header .pictogram-img {
  margin-right: 0.8rem;
}
.group-pictogram-list .pictogram-wrapper a {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.8rem 0;
  display: block;
  font-size: 1.125rem;
  font-weight: bold;
  color: #313131;
}
.group-pictogram-list .pictogram-wrapper a:hover {
  color: var(--color-primary);
}
.group-pictogram-list .pictogram-wrapper h4 {
  font-size: 1.2rem;
  margin: 0;
}
.group-pictogram-list .pictogram-wrapper p {
  margin: 0;
}
.group-pictogram-list .pictogram-container {
  margin-bottom: 0.5rem;
}
.group-pictogram-list .pictogram-container .pictogram-img {
  flex: 2rem;
  margin-right: 1rem;
  padding: 0;
  margin-top: 0.2rem;
}
.group-pictogram-list .pictogram-container .pictogram-img svg {
  width: 2rem;
}
.group-pictogram-list .pictogram-container:hover .pictogram-img {
  margin-top: 0.2rem;
}

.theme1 .pictogram-container .pictogram-img svg path {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  fill: var(--color-primary);
}
.theme1 .pictogram-container:hover .pictogram-img svg path {
  fill: var(--color-secondary);
}

.theme2 .pictogram-container .pictogram-img svg path {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -ms-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  fill: rgb(211, 129, 93);
}
.theme2 .pictogram-container:hover .pictogram-img svg path {
  fill: var(--color-secondary);
}

section.section .map-wrapper {
  position: relative;
}
section.section .map-wrapper .map-items {
  position: absolute;
  z-index: 10;
  bottom: 1rem;
  left: 1rem;
}

section.section ul.pagination {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
section.section ul.pagination li:after, section.section ul.pagination li:before {
  content: none;
}
section.section ul.pagination li a, section.section ul.pagination li span {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  display: flex;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
}
section.section ul.pagination li a.arrow, section.section ul.pagination li span.arrow {
  font-size: 1.4rem;
}
section.section ul.pagination li:hover > a, section.section ul.pagination li:hover > span, section.section ul.pagination li.active > a, section.section ul.pagination li.active > span {
  background-color: var(--color-primary);
  color: white;
}

.auth-container {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.auth-container h3 {
  text-align: center;
}
.auth-container .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}
.auth-container .logo svg, .auth-container .logo img {
  width: 80%;
  height: auto;
}
.auth-container .logo svg path, .auth-container .logo svg polygon, .auth-container .logo img path, .auth-container .logo img polygon {
  fill: black;
}
.auth-container .form-control {
  padding: 0.75rem 1rem;
}
.auth-container .auth-box {
  width: 30rem;
  -moz-border-radius: 1rem;
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
  padding: 2rem;
  -webkit-box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 32px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
}
@media only screen and (max-width: 767.98px) {
  .auth-container .auth-box {
    min-width: auto;
    width: 100%;
  }
}
.auth-container .auth-box a {
  color: #313131 !important;
}
.auth-container .form-group {
  padding: 0.5rem 0;
}
.auth-container .login-footer {
  margin-top: 1rem;
}
.auth-container .login-buttons .btn-group {
  display: block;
  width: 100%;
}
.auth-container .login-buttons .btn-group .button, .auth-container .login-buttons .btn-group .big-button, .auth-container .login-buttons .btn-group .button-reverse, .auth-container .login-buttons .btn-group section.section .light a.button-outline, section.section .light .auth-container .login-buttons .btn-group a.button-outline, .auth-container .login-buttons .btn-group section.section .light a.button-outline-grey, section.section .light .auth-container .login-buttons .btn-group a.button-outline-grey, .auth-container .login-buttons .btn-group section.section .light a.button-outline-grey2, section.section .light .auth-container .login-buttons .btn-group a.button-outline-grey2, .auth-container .login-buttons .btn-group section.section .light ul.buttons li a, section.section .light ul.buttons li .auth-container .login-buttons .btn-group a, .auth-container .login-buttons .btn-group ul.buttons li section.section .light a, ul.buttons li section.section .light .auth-container .login-buttons .btn-group a, .auth-container .login-buttons .btn-group section.section .light .main-category-list-tree-horizontal ul li a, section.section .light .main-category-list-tree-horizontal ul li .auth-container .login-buttons .btn-group a, .auth-container .login-buttons .btn-group section.section .main-category-list-tree-horizontal ul li .light a, section.section .main-category-list-tree-horizontal ul li .light .auth-container .login-buttons .btn-group a, .auth-container .login-buttons .btn-group section.section .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .auth-container .login-buttons .btn-group a:hover {
  justify-content: center;
  width: 100%;
  display: flex;
  margin: 16px 0;
  background-color: #0a001f;
  min-height: 44px;
  text-transform: uppercase;
  border: 0 solid #0a001f;
  padding: 0.5rem 2.5rem;
  text-align: center;
  gap: 0.5rem;
  font-weight: bold;
}
.auth-container .login-buttons .btn-group .button:hover, .auth-container .login-buttons .btn-group .big-button:hover, .auth-container .login-buttons .btn-group .button-reverse:hover, .auth-container .login-buttons .btn-group section.section .light a.button-outline:hover, section.section .light .auth-container .login-buttons .btn-group a.button-outline:hover, .auth-container .login-buttons .btn-group section.section .light a.button-outline-grey:hover, section.section .light .auth-container .login-buttons .btn-group a.button-outline-grey:hover, .auth-container .login-buttons .btn-group section.section .light a.button-outline-grey2:hover, section.section .light .auth-container .login-buttons .btn-group a.button-outline-grey2:hover, .auth-container .login-buttons .btn-group section.section .light ul.buttons li a:hover, section.section .light ul.buttons li .auth-container .login-buttons .btn-group a:hover, .auth-container .login-buttons .btn-group ul.buttons li section.section .light a:hover, ul.buttons li section.section .light .auth-container .login-buttons .btn-group a:hover, .auth-container .login-buttons .btn-group section.section .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .auth-container .login-buttons .btn-group a:hover {
  background-color: #334262;
}

::-ms-reveal {
  display: none;
}

div.input-password-eye {
  position: absolute;
  top: 3px;
  right: 4px;
  z-index: 9;
  width: 28px;
  height: 30px;
  background-repeat: no-repeat;
  border: 0;
}

div.input-password-eye:active,
div.input-password-eye:focus,
div.input-password-eye:hover {
  cursor: pointer;
}

div.input-password-eye:focus {
  outline: none !important;
}

.input-password[type=password] ~ div.input-password-eye {
  background-image: url("data:image/svg+xml,%3Csvg width='1em' height='1em' viewBox='0 0 16 16' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.359 11.238C15.06 9.72 16 8 16 8s-3-5.5-8-5.5a7.028 7.028 0 0 0-2.79.588l.77.771A5.944 5.944 0 0 1 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.134 13.134 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755-.165.165-.337.328-.517.486l.708.709z'/%3E%3Cpath d='M11.297 9.176a3.5 3.5 0 0 0-4.474-4.474l.823.823a2.5 2.5 0 0 1 2.829 2.829l.822.822zm-2.943 1.299l.822.822a3.5 3.5 0 0 1-4.474-4.474l.823.823a2.5 2.5 0 0 0 2.829 2.829z'/%3E%3Cpath d='M3.35 5.47c-.18.16-.353.322-.518.487A13.134 13.134 0 0 0 1.172 8l.195.288c.335.48.83 1.12 1.465 1.755C4.121 11.332 5.881 12.5 8 12.5c.716 0 1.39-.133 2.02-.36l.77.772A7.029 7.029 0 0 1 8 13.5C3 13.5 0 8 0 8s.939-1.721 2.641-3.238l.708.709z'/%3E%3Cpath fill-rule='evenodd' d='M13.646 14.354l-12-12 .708-.708 12 12-.708.708z'/%3E%3C/svg%3E") !important;
}

.input-password[type=text] ~ div.input-password-eye {
  background-image: url("data:image/svg+xml,%3Csvg width='1em' height='1em' viewBox='0 0 16 16' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.134 13.134 0 0 0 1.66 2.043C4.12 11.332 5.88 12.5 8 12.5c2.12 0 3.879-1.168 5.168-2.457A13.134 13.134 0 0 0 14.828 8a13.133 13.133 0 0 0-1.66-2.043C11.879 4.668 10.119 3.5 8 3.5c-2.12 0-3.879 1.168-5.168 2.457A13.133 13.133 0 0 0 1.172 8z'/%3E%3Cpath fill-rule='evenodd' d='M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z'/%3E%3C/svg%3E") !important;
}

.theme1 header#header .header-wrapper {
  background: #fef9e9 url("../images/white-sand.png");
}

.theme2 .social-media,
.theme2 header#header .header-wrapper {
  background: #666 url("../images/dark-sand.png");
}
.theme2 header#header .navbar ul.navigation > li.active:not(.highlight) > a, .theme2 header#header .navbar ul.navigation > li.active > a, .theme2 header#header .navbar ul.navigation > li:hover:not(.highlight) > a, .theme2 header#header .navbar ul.navigation > li:hover > a {
  color: #9a5922;
}

.counter-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem;
  min-height: 6rem;
}
.counter-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-right: 1px solid black; /* kolor narożnika */
  border-bottom: 1px solid black; /* kolor narożnika */
}
.counter-wrapper .counter {
  font-weight: bold;
  padding: 0.4rem;
  font-size: 3rem;
  color: var(--color-secondary);
}
.counter-wrapper .counter-content {
  text-align: left;
  font-weight: bold;
  padding: 0.4rem;
  font-size: 1.2rem;
}

/**
 * Minified by jsDelivr using clean-css v5.3.3.
 * Original file: /npm/toastify-js@1.12.0/src/toastify.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */
.toastify {
  padding: 12px 20px;
  color: #fff;
  display: inline-block;
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  background: 0 0;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: 0.4;
  padding: 0 5px;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
  .toastify-left, .toastify-right {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
  }
}
.toastify.on.error {
  background-color: red;
}
.toastify.on.success {
  background-color: green;
}

.leaflet-container .button, .leaflet-container .big-button, .leaflet-container .button-reverse, .leaflet-container section.section .light a.button-outline, section.section .light .leaflet-container a.button-outline, .leaflet-container section.section .light a.button-outline-grey, section.section .light .leaflet-container a.button-outline-grey, .leaflet-container section.section .light a.button-outline-grey2, section.section .light .leaflet-container a.button-outline-grey2, .leaflet-container section.section .light ul.buttons li a, section.section .light ul.buttons li .leaflet-container a, .leaflet-container ul.buttons li section.section .light a, ul.buttons li section.section .light .leaflet-container a, .leaflet-container section.section .light .main-category-list-tree-horizontal ul li a, section.section .light .main-category-list-tree-horizontal ul li .leaflet-container a, .leaflet-container section.section .main-category-list-tree-horizontal ul li .light a, section.section .main-category-list-tree-horizontal ul li .light .leaflet-container a, .leaflet-container section.section .main-category-list-tree-horizontal ul li a:hover, section.section .main-category-list-tree-horizontal ul li .leaflet-container a:hover {
  color: #fff !important;
  border: 0px;
  display: block;
  margin: 0;
  margin-top: 5px !important; /* 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, .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;
}

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

.leaflet-container.leaflet-touch-drag { /* Fallback for FF which doesn't support pinch-zoom */
  -ms-touch-action: 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; /* IE 9-10 doesn't have auto */
  pointer-events: visiblePainted;
  pointer-events: auto;
}

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

.leaflet-top {
  bottom: 80px;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  right: 10px;
}

.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-tile {
  will-change: opacity;
}

.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;
}

.leaflet-zoom-anim .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 { /* IE 9-10 doesn't have auto */
  pointer-events: visiblePainted;
  pointer-events: auto; /* visual tweaks */
}

.leaflet-container {
  background: #ddd;
  outline: 0;
}

.leaflet-container a {
  color: #000;
  border: 0px;
}

.leaflet-container a:hover {
  border: 0;
  color: #007fc8 !important;
  background: transparent;
}

.leaflet-container a.leaflet-active {
  outline: 2px solid var(--color-secondary);
}

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

.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; /* general toolbar styles */
}

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

.leaflet-bar a, .leaflet-bar a:hover {
  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 {
  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;
}

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

.leaflet-default-icon-path {
  background-image: url("../images/pin.svg"); /* attribution and scale controls */
}

.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

.leaflet-control-attribution a {
  text-decoration: none;
  color: var(--color-primary);
}

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

.leaflet-container .leaflet-control-attribution, .leaflet-container .leaflet-control-scale {
  font-size: 11px;
}

.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;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.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: 10px 0;
  text-align: left;
  border-radius: 2px;
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
  text-align: center;
}

.leaflet-popup-content span {
  text-align: center;
  display: block;
  margin: 4px 0 5px;
  color: #464646;
}

.leaflet-popup-content img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.leaflet-popup-content p {
  margin: 18px 0;
}

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

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

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: #fff;
  color: #fff;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
}

.leaflet-popup-content-wrapper h3, .leaflet-popup-tip h3 {
  color: var(--color-primary);
  font-size: 14px;
  text-align: center;
  padding: 0;
  font-weight: 500;
  margin: 10px 0 0;
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 6px;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  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-popup-tip-container {
  margin-top: -1px;
}

.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-clickable {
  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;
}

.marker-cluster-small {
  background-color: transparent;
}

.marker-cluster-small div {
  background-color: var(--color-primary-lighten);
  color: #fff;
}

.marker-cluster-medium {
  background-color: transparent;
}

.marker-cluster-medium div {
  background-color: var(--color-primary);
  color: #fff;
}

.marker-cluster-large {
  background-color: transparent;
}

.marker-cluster-large div {
  background-color: var(--color-primary-lightest);
  color: #fff; /* IE 6-8 fallback colors */
}

.leaflet-oldie .marker-cluster-small {
  background-color: #b5e28c;
}

.leaflet-oldie .marker-cluster-small div {
  background-color: #6ecc39;
}

.leaflet-oldie .marker-cluster-medium {
  background-color: #f1d357;
}

.leaflet-oldie .marker-cluster-medium div {
  background-color: #f0c20c;
}

.leaflet-oldie .marker-cluster-large {
  background-color: #fd9c73;
}

.leaflet-oldie .marker-cluster-large div {
  background-color: #f18017;
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
  line-height: 30px;
  font-family: proxima-nova, sans-serif;
}

.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 {
  -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;
}

.infobox_map {
  font-size: 0.7rem;
  -webkit-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 16px 0 rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  z-index: 999;
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: rgb(255, 255, 255);
  padding: 10px 18px;
}
.infobox_map img {
  max-width: 15px;
}

/**the end*/

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