/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* SLIDER */

.custom-slider {
  overflow: hidden !important;
  background: var(--awb-custom_color_2);
}

.custom-slider .fusion-builder-row {
  position: static !important;
}

.custom-slider .custom-slide {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.custom-slider .custom-slide .fusion-column-wrapper > div,
.custom-slider .custom-slide .fusion-column-wrapper > div > span,
.custom-slider .custom-slide .fusion-column-wrapper div > span > img {
  width: 100% !important;
  height: 100% !important;
}

.custom-slider .custom-slide .fusion-column-wrapper div > span > img {
  object-fit: cover !important;
}

.custom-slider .custom-slide.active {
  z-index: 10;
  opacity: 1;
}

.custom-slider .custom-slider-content {
  z-index: 99;
}

.custom-slider .custom-slide .fusion-column-wrapper {
  margin: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
}

.custom-slider .custom-slide .fusion-column-wrapper:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    50deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.08) 100%
  );
  mix-blend-mode: overlay;
  z-index: 1;
}

.custom-slider .custom-slide .fusion-column-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    45deg,
    var(--awb-custom_color_2) 15%,
    rgba(0, 0, 0, 0.3)
  );
  z-index: 2;
}

.slider-nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 20px 15px;
  position: absolute;
  bottom: -60px;
}
.slider-nav-btn {
  transform: scale(0.7);
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  transition: 0.15s ease-out;
  cursor: pointer;
}
.slider-nav-btn:not(:last-of-type) {
  margin-right: 10px;
}
.slider-nav-btn.active {
  transform: scale(1);
}

.slider-nav-btn {
  background: rgba(255, 255, 255, 0.5) !important;
}

.slider-nav-btn.active:before {
  background: var(--awb-custom_color_1) !important;
}

.slider-nav-btn:before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: rgba(255, 255, 255, 0);
  border-radius: 50%;
  transform: scale(0);
  transition: 0.15s ease-in-out;
}

.slider-nav-btn.active:before {
  transform: scale(1);
}

.slider-nav-btn:not(.active):hover:before {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1);
}

.custom-slider {
  position: relative;
}

/* .custom-slider:before {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(0, 0, 0, 1);
    opacity: 0.5;
    z-index: 11;
} */

/* .custom-slider .fusion-button {
    outline: 3px solid rgba(255,255,255,0.5) !important;
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.custom-slider .fusion-button:hover {
    outline-color: rgba(255, 255, 255, 0) !important;
    outline-offset: 15px;
} */

/* General */

.fusion-sticky-transition {
  margin-top: 0 !important;
  transition: 0.25s ease all !important;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16) !important;
}

.btnWrap {
  display: flex !important;
  flex-direction: row !important;
}

.textDarkBlue {
  color: var(--awb-color5) !important;
  text-transform: uppercase !important;
}

.custTextShadow p {
  text-shadow: rgba(0, 0, 0, 0.5) 3px 3px 1px !important;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 1) !important;
}

/* Custom link */

.custText-link {
}

.custText-link p {
  display: inline-block !important;
  position: relative !important;
  text-transform: uppercase !important;
  font-size: 24px !important;
  text-align: center !important;
  color: var(--awb-color4) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.custText-link p::after {
  content: "" !important;
  position: absolute !important;
  width: 100% !important;
  transform: scaleX(0) !important;
  height: 2px !important;
  bottom: 0 !important;
  left: 0 !important;
  background-color: #0087ca !important;
  transform-origin: bottom right !important;
  transition: transform 0.25s ease-out !important;
}

.custText-link p:hover::after {
  transform: scaleX(1) !important;
  transform-origin: bottom left !important;
}

/* Buttons */

/* btn primary */
.btn-prim,
.btn-sec {
  /* border: 1px solid #00abfd; */
  text-transform: uppercase !important;
  overflow: hidden;
  z-index: 1;
  transition: all 1s ease !important;
  border-radius: 40px !important;
}

.btn-prim:before,
.btn-prim:after,
.btn-sec::before,
.btn-sec:after {
  content: "";
  height: 500px;
  width: 500px;
  position: absolute;
  z-index: -1;
  top: 150%;
  transition: all 1.4s ease;
}
.btn-prim:before {
  border-radius: 60% 70% 20% 40%;
  background: #00abfd;
  opacity: 0.2;
  -webkit-animation: water 13s ease-in-out infinite both alternate;
  animation: water 13s ease-in-out infinite both alternate;
}
.btn-prim:after {
  border-radius: 60% 70% 20% 40%;
  background: #00abfd;
  opacity: 0.5;
  -webkit-animation: water 14s ease-in-out infinite both alternate;
  animation: water 14s ease-in-out infinite both alternate;
}
.btn-prim:hover {
  background: #00abfd;
  color: white;
}
.btn-prim:hover:before,
.btn-prim:hover:after {
  opacity: 1;
  top: -100%;
}

@-webkit-keyframes water {
  0% {
    transform: rotate(0);
  }

  20% {
    border-radius: 50% 63% 80% 49%;
  }
  40% {
    border-radius: 60% 64% 64% 48%;
  }
  60% {
    border-radius: 80% 63% 51% 49%;
  }
  80% {
    border-radius: 40% 60% 42% 58%;
  }
  100% {
    border-radius: 62% 67% 70% 53%;
    transform: rotate(180deg);
  }
}

@keyframes water {
  0% {
    transform: rotate(0);
  }

  20% {
    border-radius: 50% 63% 80% 49%;
  }
  40% {
    border-radius: 60% 64% 64% 48%;
  }
  60% {
    border-radius: 80% 63% 51% 49%;
  }
  80% {
    border-radius: 40% 60% 42% 58%;
  }
  100% {
    border-radius: 62% 67% 70% 53%;
    transform: rotate(180deg);
  }
}

/* btn sec */

.btn-sec {
}

.btn-sec:before {
  border-radius: 60% 70% 20% 40%;
  background: var(--awb-color5) !important;
  opacity: 0.2;
  -webkit-animation: water 13s ease-in-out infinite both alternate;
  animation: water 13s ease-in-out infinite both alternate;
}
.btn-sec:after {
  border-radius: 60% 70% 20% 40%;
  background: var(--awb-color5) !important;
  opacity: 0.5;
  -webkit-animation: water 14s ease-in-out infinite both alternate;
  animation: water 14s ease-in-out infinite both alternate;
}
.btn-sec:hover {
  background: var(--awb-color5) !important;
  color: white;
}
.btn-sec:hover:before,
.btn-sec:hover:after {
  opacity: 1;
  top: -100%;
}

/* Header */

.logo {
  width: 150px !important;
  height: 75px;
}

.topNavInfo_col div > p {
  margin: 5px 0px !important;
}

/* Info boxy HERO */

.hero-infoBoxWrap .fusion-column-wrapper {
  display: flex;
  z-index: 150;
}

.infoBox1,
.infoBox2 {
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 30px !important;
  justify-self: flex-start !important;
  align-self: flex-start !important;
  margin-top: 50px !important;
}

.blurLayer {
  position: absolute !important;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(13px) !important;
  -moz-filter: blur(13px) !important;
  -o-filter: blur(13px) !important;
  -ms-filter: blur(13px) !important;
  filter: blur(13px) !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  filter: blur(10px) !important;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  border-radius: 30px !important;
}

/* .infoBox .fusion-column-wrapper {
    background: var(--awb-color1)!important;
    padding: 25px!important;
    border-radius: 40px!important;
    box-shadow: 0px 26px 20px rgba(0,0,0,0.05)!important;
    display: flex!important;
    align-items: center!important;
    min-height: 409px!important;
} */

.infoBox.box1 {
  position: relative;
}

/* .infoBox.box1::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 25%;
    background-image: url(/wp-content/uploads/2023/03/not_clock.svg);
    background-repeat: no-repeat;
    width: 50%;
    height: 50%;
    opacity: 0.1;
    background-size: contain;
    background-position: center;
} */

.infoBox-ico {
  width: 40px;
  height: 40px;
  align-self: center;
  margin-top: -20px;
}
.infoBox1.sub .infoBox-ico {
  position: absolute;
  top: -10px;
}
.infoBox1.inImg {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
  border-bottom-right-radius: 0 !important;
}
/* Rozcestnik Sluzby */

.rozcestnik-container {
  position: relative;
}

.rozcestnik-container::before {
  content: "";
  position: absolute !important;
  top: 45px;
  left: 85px;
  background: url(/wp-content/uploads/2023/03/logo_notext.svg) no-repeat;
  background-size: contain;
  width: 55%;
  height: 45%;
  opacity: 0.05;
  filter: grayscale(100%);
}

.sluzbyBox {
  min-height: 250px;
  overflow: hidden !important;
  /* margin: 10px!important */
  border-radius: 30px !important;
  transition: all 0.3s ease-in-out !important;
}

.sluzbyBox > span {
  margin-right: 0;
}

.sluzbyBox > .fusion-column-wrapper {
  min-height: 350px;
  border-radius: 30px !important;
  padding: 50px !important;
  /* border: 5px solid var(--awb-color3)!important; */
  overflow: visible !important;
  /*     box-shadow: 1px 2px 2px 1px rgba(0,0,0,0.5) inset!important;
    -webkit-box-shadow: 1px 2px 2px 1px rgba(0,0,0,0.5) inset!important;
    -moz-box-shadow: 1px 2px 2px 1px rgba(0,0,0,0.5) inset!important; */
  transition: all 0.3s ease-in-out !important;
  transform: scale(1) !important;
}

.sluzbyBox > .fusion-column-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /*     background: rgba(0, 0, 0, 0.4)!important;
    background: rgb(0,0,0); */
  background: linear-gradient(
    180deg,
    rgba(0, 159, 218, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  ) !important;
  width: 110%;
  height: 100%;
  z-index: -1;
  overflow: visible;
  border-radius: 30px !important;
}

.sluzbyIco-wrap {
  background: var(--awb-color1);
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0 0 0 20px;
}

.sluzbyIco {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  margin-bottom: 20px;
  fill: var(--awb-color4);
  align-self: flex-end;
  padding: 5px;
  transition: all 0.3s ease-in-out !important;
}

.sluzbyBox-title h2 {
  color: var(--awb-color1) !important;
  text-transform: uppercase !important;
  text-align: center !important;
  font-size: 36px !important;
}

.sluzbyBox-content {
  font-size: 13px !important;
  opacity: 0;
}

.sluzbyBox-link {
  color: var(--awb-color1) !important;
  position: absolute !important;
  display: flex;
  bottom: -80%;
  left: 0%;
  /*  transform: translate(-50%, -50%); */
  opacity: 0;
  color: var(--awb-color1) !important;
  width: 100% !important;
  padding: 30px !important;
}

.sluzbyBox > .fusion-column-wrapper .sluzbyBox-link {
  transform: translateY(0px);
  opacity: 0;
  color: var(--awb-color1) !important;
}

/* hover */

.sluzbyBox:hover {
  transform: scale(1.03) !important;
}

.sluzbyBox:hover > .fusion-column-wrapper::before {
  background: rgb(0, 159, 218) !important;
  background: linear-gradient(
    180deg,
    rgba(0, 159, 218, 0) 0%,
    rgba(28, 43, 125, 1) 100%
  ) !important;
  background: linear-gradient(
    180deg,
    rgba(0, 159, 218, 0) 0%,
    rgba(54, 159, 222, 1) 100%
  ) !important;
}

.sluzbyBox:hover > .fusion-column-wrapper .sluzbyIco {
  fill: var(--awb-color5);
}

.sluzbyBox:hover > .fusion-column-wrapper .sluzbyBox-title h2 {
  opacity: 0.5;
}

.sluzbyBox:hover > .fusion-column-wrapper .sluzbyBox-link {
  transform: translateY(30px) !important;
  transition: 0.5s;
  opacity: 1;
  /* text-transform: uppercase!important; */
  color: var(--awb-color1) !important;
  bottom: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5) !important;
}

/* About */

.aboutMiddle-col > .fusion-column-wrapper {
  /* box-shadow: 1px 2px 2px 1px rgba(0,0,0,0.5) inset!important; */
}

.aboutMiddle-col .btnWrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.aboutMiddle-col .btnWrap > div {
  margin-top: 25px !important;
  margin-right: 25px !important;
}

.about_img1 img {
  width: 100%;
  top: 70% !important;
  left: 10%;
  z-index: -1;
  opacity: 1;
  /*     box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
        rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
        rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset,
        rgba(0, 0, 0, 0.06) 0px 2px 1px, 
        rgba(0, 0, 0, 0.09) 0px 4px 2px, 
        rgba(0, 0, 0, 0.09) 0px 8px 4px, 
        rgba(0, 0, 0, 0.09) 0px 16px 8px, 
        rgba(0, 0, 0, 0.09) 0px 32px 16px!important; */
}

.about_img2 {
  left: -208%;
  z-index: -1 !important;
  top: -84%;
  width: 60%;
  opacity: 1;
  /*     box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
        rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
        rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset,
        rgba(0, 0, 0, 0.06) 0px 2px 1px, 
        rgba(0, 0, 0, 0.09) 0px 4px 2px, 
        rgba(0, 0, 0, 0.09) 0px 8px 4px, 
        rgba(0, 0, 0, 0.09) 0px 16px 8px, 
        rgba(0, 0, 0, 0.09) 0px 32px 16px!important; */
}

.about_img3 {
  width: 78%;
  top: -20% !important;
  right: -62%;
  z-index: -1 !important;
  position: absolute !important;
  opacity: 1;
  /*     box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
        rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
        rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset,
        rgba(0, 0, 0, 0.06) 0px 2px 1px, 
        rgba(0, 0, 0, 0.09) 0px 4px 2px, 
        rgba(0, 0, 0, 0.09) 0px 8px 4px, 
        rgba(0, 0, 0, 0.09) 0px 16px 8px, 
        rgba(0, 0, 0, 0.09) 0px 32px 16px!important; */
}

/* .imgCircleOutline.img2 {
    width: 50%;
    top: -5%;
    left: -10%;
    border-radius: 50%;
}


.imgCircleOutline.img2 img {
    width: 350px;
    height: 292px;
}


.imgCircleOutline.img3 {
    width: 40%;
    bottom: -520px;
    right: 1%;
    border-radius: 50%;
    width: 40%;
}

.imgCircleOutline.img3 img {
    width: 250px;
    height: 229px;
} */

.vyhodyBox > .fusion-column-wrapper {
  background: var(--awb-color2) !important;
  padding: 25px !important;
  border-radius: 30px !important;
  box-shadow: 1px 3px 1px rgba(0, 0, 0, 0.1) !important;
}

.vyhodyBox > .fusion-column-wrapper h2 {
  font-size: 22px !important;
}

.vyhodyBox > .fusion-column-wrapper .icon-wrap > svg {
  max-height: 60px;
  max-width: 60px;
  height: 60px;
}

.vyhodyBox4 > .fusion-column-wrapper .icon-wrap > svg {
  width: 50px;
}

.icon-wrap {
  width: 100px;
  display: flex;
  justify-content: center;
  align-self: center;
  background: var(--awb-color4);
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.5) inset;
  -moz-box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.5) inset;
}
.uspIco {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  fill: var(--awb-color1);
  align-self: center;
}
.icon-wrap .uspIco {
  margin-bottom: 0px;
}

/* .vyhodyBox > .usp-title h2 {
    font-size: 28px!important;
} */

/* Ceny */

/* CUSTOM TABS */

.tab-content {
  transform: scale(0);
  position: absolute !important;
  top: 0;
  left: 0;
}

.tab-content.active {
  opacity: 1;
  pointer-events: all;
  transform: scale(1) !important;
  background-color: var(--awb-color1);
  padding: 44px;
  /* margin: 15px 5px 0 !important; */
  position: static !important;
  top: 0;
  left: 0;
}

.tabs .tab-btn {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--awb-color5) !important;
  color: var(--awb-color1) !important;
  padding: 10px 20px !important;
  font-weight: bold;
  margin-right: 5px !important;
  transition: all 200ms ease;
}

.tabs .tab-btn:first-of-type {
  border-radius: 20px 0px 0px 0px !important;
}

.tabs .tab-btn:last-of-type {
  border-radius: 0px 20px 0px 0px !important;
}

/*.tabs .tab-btn:hover {
	background-color: #128934;
    transition: all 200ms ease;
}*/

.tabs .tab-btn.active {
  /* transform: scale(0.95); */
  color: #333 !important;
  background-color: var(--awb-color1) !important;
  /* box-shadow: inset 0px 8px 5px #c9c9c9, inset 0px 40px 30px  var(--awb-color2); */
  transition: all 200ms ease;
}

.tabs .tab-btn.active i.tab-icon,
.tabs .tab-btn.active i.tab-icon:hover {
  color: var(--awb-color3);
}

.tab-content
  > .fusion-column-wrapper
  > .fusion-builder-row
  .fusion-layout-column
  > .fusion-column-wrapper {
  padding: 30px !important;
  overflow: hidden !important;
  background-color: #f2f2f2 !important;
  margin-bottom: 20px !important;
}

@media only screen and (max-width: 600px) {
  .tab-btn {
    display: block;
    width: 100%;
  }
}

.aquaCenik table {
  width: 100%;
}

/* Hero */

.sliderSeparator-container {
  position: relative;
}

.sliderSeparator-container::before {
}

/* Kontakt */

/* Left column */
.contact-left-col > .fusion-column-wrapper,
.contact-right-col > .fusion-column-wrapper {
  box-shadow: 1px 3px 1px rgba(0, 0, 0, 0.1) !important;
  /* background: var(--awb-color3)!important; */
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 30px !important;
}

/* mapa */
iframe .gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom > .gmnoprint {
  top: -50px !important;
}

/* Right column - kontaktni formular */

.fusion-form-247 .fusion-column-wrapper .fusion-form-field {
  margin-bottom: 0 !important;
}

.fusion-form-247
  .fusion-column-wrapper
  .fusion-form-field
  .fusion-form-input-with-icon
  i {
  color: var(--awb-color4) !important;
}

.fusion-form-submit-field {
  width: 30% !important;
}

/* Aktuality PostCard */

.pcAktuality .fusion-column-wrapper {
  background: var(--awb-color2) !important;
  padding: 0px !important;
  border-radius: 30px !important;
  /* box-shadow: 1px 3px 1px rgba(0,0,0,0.1) !important; */
}

.pcAktuality .fusion-column-wrapper .fusion-image-element,
.pcAktuality .fusion-column-wrapper .fusion-image-element .pcAktuality-Img img {
  height: 100% !important;
}

.pcAktuality-Img img {
  height: 200px !important;
  object-fit: cover !important;
  box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.5) inset !important;
}

.pcAktuality-contentWrap {
  /* padding: 25px !important; */
  position: absolute !important;
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  width: 100%;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.pcAktuality-title {
  font-size: 24px !important;
}

.pcAktuality-content {
}
/* NEW AKTUALITY  */
.aktuality_psd > ul {
  justify-content: center;
}

#novinky-item-- {
  min-height: 350px;
  flex: auto;
}
.Aktuality-contentWrap {
  position: relative;
}
.Aktuality-contentWrap::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  width: 116%;
  height: 160%;
  bottom: -43px;
  left: -41px;
  z-index: 4;
}
.Aktuality-contentWrap * {
  position: relative;
  z-index: 10;
}

/* Aktuality */

.customPostCardLayout ul {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-template-rows: repeat(2, 1fr) !important;
  grid-column-gap: 0px !important;
  grid-row-gap: 0px !important;
  overflow: hidden !important;
  border-radius: 30px !important;
  box-shadow: 1px 3px 1px rgba(0, 0, 0, 0.1) !important;
}

.customPostCardLayout ul li {
  width: auto !important;
  padding: 0px !important;
  border-radius: 0px 0px 0px 0px !important;
}

/* Velka novinka 1. */
.customPostCardLayout ul li:first-of-type {
  grid-column: span 3;
  grid-row: span 3;
  height: 100% !important;
}

.customPostCardLayout
  ul
  li:first-of-type
  .fusion-column-wrapper
  .pcAktuality-contentWrap {
  padding: 30px !important;
}

.customPostCardLayout
  ul
  li:first-of-type
  .fusion-column-wrapper
  .fusion-image-element
  .pcAktuality-Img
  img {
  border-radius: 30px 0 0 30px !important;
}

/* Ostatni - mensi novinky */
.customPostCardLayout
  ul
  li:nth-of-type(2)
  .fusion-column-wrapper
  .fusion-image-element
  .pcAktuality-Img
  img {
  border-radius: 0 30px 0 0 !important;
}

.customPostCardLayout
  ul
  li:nth-of-type(4)
  .fusion-column-wrapper
  .fusion-image-element
  .pcAktuality-Img
  img {
  border-radius: 0 0 30px 0 !important;
  background: blue !important;
}

.customPostCardLayout
  ul
  li:not(:first-of-type)
  .fusion-column-wrapper
  .pcAktuality-contentWrap {
  height: 100%;
  background: rgba(255, 255, 255, 0.8) !important;
}

/* .customPostCardLayout ul li:not(:first-of-type) .fusion-column-wrapper:hover {
    background: #0087ca!important;
} */

.customPostCardLayout ul li:hover {
  background: #0087ca !important;
}

/* Služby podstránky */
/* O nás - mapa, legenda */
.legenda-items {
  max-height: 500px;
  overflow: overlay;
  padding: 30px 0;
  scrollbar-color: var(--awb-color5) rgb(25 172 227 / 9%) !important;
}
.legenda-item {
  display: flex;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid #19ace31f;
}
.legenda-number {
  background: var(--awb-color5);
  border-radius: 100%;
  min-width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
/* Provozní doba */
.provoz-den,
.provoz-datum {
  margin-right: 20px;
  margin-bottom: 8px;
  padding: 2px 8px;
  min-width: 60px;
  display: inline-block;
  white-space: nowrap;
  border-radius: 16px;
  background-color: var(--awb-color4);
  color: white;
}
/* CENÍK */
.tabulka_cenik {
  width: 100%;
  border-collapse: collapse;
  margin: 2em auto;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  background-color: #fdfdfd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
}

.tabulka_cenik td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.tabulka_cenik tr:first-child td {
  background-color: var(--awb-color4);
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: none;
}

.tabulka_cenik tr:not(:first-child):hover {
  background-color: #f5faff;
  transition: background-color 0.3s ease;
}

.tabulka_cenik td:nth-child(1) {
  font-weight: bold;
  width: 20%;
  white-space: nowrap;
}

.tabulka_cenik td:nth-child(2) {
  color: var(--awb-color4);
  font-weight: 500;
  width: 25%;
  white-space: nowrap;
}

.tabulka_cenik td:nth-child(3) {
  width: 55%;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .tabulka_cenik td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  .tabulka_cenik tr {
    display: block;
    margin-bottom: 1em;
  }

  .tabulka_cenik tr:first-child td {
    display: block;
    text-align: center;
  }
}
/* RESPO ceník */
@media (max-width: 600px) {
  .tabulka_cenik td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .tabulka_cenik tr {
    display: block;
    margin-bottom: 1em;
  }

  .tabulka_cenik tr:first-child td {
    display: block;
    text-align: center;
  }
}
#reservationFrame {
  width: 100%;
}
/* CENÍK end */

/* Footer */

.bottom-footer-container .fworks_consent_bar_mini-inner {
  display: inline-block !important;
}

.bottom-footer-container .fworks_consent_bar_mini-inner span {
  color: var(--awb-color1);
  transition: 0.2s linear;
  text-decoration: none;
}

.bottom-footer-container .fworks_consent_bar_mini-inner span:hover {
  color: var(--awb-color3);
}

.statistiky_footer,
.statistiky_bar {
  color: #fff;
}

.cislo_karty {
  max-width: 80px;
}

        .section-title {
            font-size: 24px !important;
            font-weight: bold;
            margin: 30px 0 10px 0;
            text-transform: uppercase;
        }
        
        .purple-section { color: #A855A3; }
        .green-section { color: #7CB342; }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            /*margin-bottom: 30px;*/
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .price-table th,
        .price-table td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
        }
        
        .visitor-type-cell {
            font-weight: bold;
            text-transform: uppercase;
            font-size: 18px;
            color: white;
            text-align: left;
            padding: 20px;
            width: 200px;
        }
        
        .day-type-cell {
            font-weight: bold;
            text-transform: uppercase;
            width: 150px;
        }
        
        .time-slot-cell {
            font-size: 12px;
            padding: 8px;
        }
        
        .period-header {
            font-weight: bold;
            color: #666;
            padding: 8px;
            background-color: #f8f8f8;
        }
        
        .price-cell {
            font-weight: bold;
            font-size: 14px;
        }
        
        .purple-bg { background-color: #E8B4D8; }
        .purple-header { background-color: #D490C4; }
        .green-bg { background-color: #B8D98A; }
        .green-header { background-color: #9BC468; }
        
        
        /* ranní plavání */
        
        .visitor-type-header {
            background-color: #FFB5A0;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 16px;
            padding: 15px;
        }
        
        .day-time-cell {
            background-color: #FFD5C5;
            text-align: left;
            font-weight: bold;
            text-transform: uppercase;
            min-width: 300px;
        }
        
        .time-cell {
            background-color: #FFD5C5;
            font-weight: bold;
            min-width: 150px;
        }
        
        .rano-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .rano-table td {
            border: 1px solid #FFB5A0;
            padding: 12px;
            text-align: center;
        }
        
        .rano-title {
            font-size: 28px !important;
            font-weight: bold;
            color: #FF6B35 !important;
            text-transform: uppercase;
            margin-bottom: 20px;
        }